@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: #191919;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #191919;
}
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: #191919;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #191919;
  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: #191919;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.pgmp .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.pgmp .buttons .btn-blue,
.pgmp .buttons .btn-transparent {
  display: flex;
  font-weight: 600;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  outline: 0;
  font-size: 14px;
  min-width: 160px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pgmp .buttons .btn-blue img,
.pgmp .buttons .btn-transparent img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.pgmp .buttons .btn-blue::after,
.pgmp .buttons .btn-transparent::after,
.pgmp .buttons .btn-blue::before,
.pgmp .buttons .btn-transparent::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 2s ease-in-out;
  z-index: -1;
}
.pgmp .buttons .btn-blue::before,
.pgmp .buttons .btn-transparent::before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.pgmp .buttons .btn-blue::after,
.pgmp .buttons .btn-transparent::after {
  right: -20px;
  transform: translate(50%, -50%);
}
.pgmp .buttons .btn-blue:hover,
.pgmp .buttons .btn-transparent:hover {
  box-shadow: 0 0px 4px #FFFFFF;
}
.pgmp .buttons .btn-blue:hover::before,
.pgmp .buttons .btn-transparent:hover::before {
  animation: criss-cross-left 1.2s both;
  animation-direction: alternate;
}
.pgmp .buttons .btn-blue:hover::after,
.pgmp .buttons .btn-transparent:hover::after {
  animation: criss-cross-right 0.8s both;
  animation-direction: alternate;
}
.pgmp .buttons .btn-blue {
  color: #FFFFFF;
  background-color: #00BFE0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.pgmp .buttons .btn-blue::after,
.pgmp .buttons .btn-blue::before {
  background-color: #191919;
}
.pgmp .buttons .btn-transparent {
  border: 2px solid #191919;
}
.pgmp .buttons .btn-transparent::after,
.pgmp .buttons .btn-transparent::before {
  background-color: #F5F5F5;
}
.pgmp .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.pgmp .heading p {
  margin-top: 1rem;
}
.pgmp .heading h2 {
  width: 100%;
}
.pgmp .center-heading {
  justify-content: center;
  align-items: center;
}
.pgmp .center-heading h2,
.pgmp .center-heading p {
  text-align: center;
}
.pgmp .white-heading h2,
.pgmp .white-heading p {
  color: #FFFFFF;
}
@keyframes criss-cross-left {
  0% {
    left: -10px;
  }
  50% {
    left: 35%;
    width: 20px;
    height: 20px;
  }
  70% {
    left: 20%;
  }
  100% {
    left: 110%;
    width: 700px;
    height: 600px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  30% {
    right: 30%;
    width: 15px;
    height: 15px;
  }
  40% {
    right: 20%;
  }
  100% {
    right: 80%;
    width: 100px;
    height: 100px;
  }
}
@keyframes circleMover {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pgmp .banner {
  flex-direction: column;
  padding: 0;
  background: #F5F5F5;
}
.pgmp .banner .logo-container,
.pgmp .banner .tka-logo,
.pgmp .banner .menu,
.pgmp .banner .menu-toggle {
  display: flex;
}
.pgmp .banner .logo-container {
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.pgmp .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.pgmp .banner .tka-logo {
  max-width: 182px;
}
.pgmp .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.pgmp .banner .menu {
  margin-left: auto;
}
.pgmp .banner .menu img {
  width: 22px;
  height: 23px;
}
.pgmp .banner .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.pgmp .banner .menu-toggle {
  font-weight: 500;
}
.pgmp .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.pgmp .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #191919;
  font-weight: 600;
}
.pgmp .banner ul .links-li:first-child {
  padding-top: 0;
}
.pgmp .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.pgmp .banner ul .links-li:last-child {
  display: none;
}
.pgmp .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.pgmp .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.pgmp .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
}
.pgmp .banner .sticky .container {
  border-radius: 0px;
}
.pgmp .banner .sticky-down {
  top: -100px;
}
.pgmp .banner .container {
  height: 100%;
}
.pgmp .banner .banner-container,
.pgmp .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.pgmp .banner .banner-container {
  padding: 1.5rem 1.5rem 3rem;
  align-items: flex-start;
}
.pgmp .banner .banner-content {
  width: 100%;
}
.pgmp .banner .banner-content h1 {
  width: 100%;
  font-size: 26px;
  margin-bottom: 1.5rem;
}
.pgmp .banner .banner-content h1 span {
  color: #00BFE0;
}
.pgmp .banner .banner-content h1 img {
  width: 40px;
  height: 40px;
  transform: translateY(10px);
  margin-right: 0.2rem;
}
.pgmp .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
  width: 100%;
  padding: 1rem;
  background-color: #191919;
}
.pgmp .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.pgmp .fact {
  background-color: #00BFE0;
}
.pgmp .fact .fact-container,
.pgmp .fact .fact-list,
.pgmp .fact .fact-item {
  display: flex;
  flex-direction: column;
}
.pgmp .fact .fact-container h2 {
  color: rgba(255, 255, 255, 0.19);
  font-size: 76px;
  text-align: center;
  line-height: 1;
}
.pgmp .fact .fact-item {
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  width: 255px;
  align-self: center;
}
.pgmp .fact .fact-item img {
  width: 35px;
  height: 35px;
}
.pgmp .fact .fact-item p {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
}
.pgmp .fact .fact-count {
  display: flex;
  justify-content: center;
  margin: 0.2rem 0;
}
.pgmp .fact .fact-count h4,
.pgmp .fact .fact-count span {
  color: #FFFFFF;
}
.pgmp .fact .fact-count h4,
.pgmp .fact .fact-count span {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}
.pgmp .overview .overview-container,
.pgmp .overview .overview-content,
.pgmp .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.pgmp .overview .overview-content p:nth-child(3) {
  margin-top: 0.8rem;
}
.pgmp .overview .overview-info {
  margin-top: 2rem;
  background-color: #191919;
  padding: 2.5rem 2rem;
}
.pgmp .overview .overview-info .image {
  width: 65px;
  height: 65px;
}
.pgmp .overview .overview-info p,
.pgmp .overview .overview-info h3 {
  color: #FFFFFF;
}
.pgmp .overview .overview-info h3 {
  font-size: 17px;
  margin: 1rem 0;
}
.pgmp .overview .overview-info p {
  font-size: 13px;
}
.pgmp .overview .overview-info p:nth-child(4) {
  margin-top: 0.5rem;
}
.pgmp .overview .overview-info .buttons {
  margin-top: 1rem;
}
.pgmp .overview .overview-info .buttons .btn-orange {
  min-width: 130px;
  font-size: 14px;
}
.pgmp .overview .overview-info .buttons .btn-orange img {
  width: 18px;
  height: 18px;
}
.pgmp .course {
  padding-top: 0;
}
.pgmp .course .course-container,
.pgmp .course .course-list,
.pgmp .course .course-item,
.pgmp .course .content,
.pgmp .course .info {
  display: flex;
  flex-direction: column;
}
.pgmp .course .heading {
  margin-bottom: 0;
}
.pgmp .course .heading p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.pgmp .course .heading p strong {
  color: #00BFE0;
}
.pgmp .course .course-item {
  padding: 1rem;
  margin-top: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  transition: 1s all;
}
.pgmp .course .course-item h3 {
  font-size: 14px;
  margin-bottom: 1rem;
}
.pgmp .course .course-item p {
  font-size: 11px;
  font-weight: 600;
  color: #cdcdcd;
}
.pgmp .course .course-item p:nth-child(3) {
  margin-top: 0.2rem;
}
.pgmp .course .course-item .buttons .btn-blue {
  min-width: 120px;
  padding: 7px 12px;
  font-size: 12px;
}
.pgmp .course .course-item .buttons .btn-blue img {
  width: 14px;
  height: 14px;
}
.pgmp .course .course-item span {
  display: none;
  height: 45px;
  width: 45px;
  padding: 0.5rem 0 0 0.5rem;
  background-image: url(/_public/images/pgmp/grid.png);
  background-size: 73% 57%;
  background-repeat: no-repeat;
}
.pgmp .course .course-item span img {
  width: 100%;
  height: 100%;
}
.pgmp .course .course-item span img:last-child {
  display: none;
}
.pgmp .course .course-item:hover {
  background: #191919;
}
.pgmp .course .course-item:hover h3 {
  color: #FFFFFF;
}
.pgmp .course .course-item:hover p {
  color: #FFFFFF;
}
.pgmp .course .course-item:hover span img:first-child {
  display: none;
}
.pgmp .course .course-item:hover span img:last-child {
  display: flex;
}
.pgmp .method {
  background-color: #191919;
}
.pgmp .method .method-container,
.pgmp .method .method-list,
.pgmp .method .content {
  display: flex;
  flex-direction: column;
}
.pgmp .method .heading {
  margin-bottom: 0;
}
.pgmp .method .method-list {
  align-items: flex-start;
}
.pgmp .method .method-item {
  display: flex;
  align-items: flex-end;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: 2rem;
  transition: 1s all;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
}
.pgmp .method .method-item:first-child {
  background-image: url(/_public/images/pgmp/classroom.png);
}
.pgmp .method .method-item:nth-child(2) {
  background-image: url(/_public/images/pgmp/led.png);
}
.pgmp .method .method-item:nth-child(3) {
  background-image: url(/_public/images/pgmp/self.png);
}
.pgmp .method .method-item:last-child {
  background-image: url(/_public/images/pgmp/onsite.png);
}
.pgmp .method .method-item .content {
  background-image: linear-gradient(180deg, rgba(63, 63, 63, 0.8), rgba(126, 126, 126, 0.8));
  width: 100%;
  padding: 1rem 0;
}
.pgmp .method .method-item h3,
.pgmp .method .method-item p,
.pgmp .method .method-item a {
  color: #FFFFFF;
  padding: 0 1rem;
}
.pgmp .method .method-item h3 {
  font-size: 16px;
}
.pgmp .method .method-item p {
  font-size: 13px;
  margin: 0.5rem 0 1rem;
}
.pgmp .method .method-item a {
  display: flex;
  align-items: center;
  font-size: 14px;
  border-top: 1px solid #cdcdcd;
  font-weight: 500;
  transition: 1s all;
  padding-top: 1rem;
}
.pgmp .method .method-item a span {
  display: flex;
  margin-left: 0.5rem;
}
.pgmp .method .method-item a span img {
  width: 18px;
  height: 18px;
}
.pgmp .method .method-item a span img:last-child {
  display: none;
}
.pgmp .method .method-item:hover a {
  color: #00BFE0;
}
.pgmp .method .method-item:hover a span img:first-child {
  display: none;
}
.pgmp .method .method-item:hover a span img:last-child {
  display: flex;
}
.pgmp .help .help-container,
.pgmp .help .help-content,
.pgmp .help .help-info {
  display: flex;
  flex-direction: column;
}
.pgmp .help .help-container {
  align-items: flex-start;
}
.pgmp .help .help-content {
  width: 100%;
}
.pgmp .help .help-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.pgmp .help .help-content ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/pgmp/cube.svg);
  background-size: 100% 100%;
  width: 16px;
  height: 16px;
  left: 0;
  top: 4px;
  animation: turn 4s linear infinite;
}
.pgmp .help .help-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.pgmp .help .help-info .heading h2 {
  font-size: 16px;
}
.pgmp .help .help-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.pgmp .help .help-info .image img {
  width: 100%;
  height: 100%;
}
.pgmp .choose {
  background-color: #F5F5F5;
}
.pgmp .choose .choose-container,
.pgmp .choose .choose-list {
  display: flex;
  flex-direction: column;
}
.pgmp .choose .heading {
  margin-bottom: 0;
}
.pgmp .choose .choose-list {
  display: flex;
  counter-reset: my-sec-counter;
}
.pgmp .choose .choose-item {
  display: flex;
  flex-flow: wrap;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-top: 5rem;
  background-color: #FFFFFF;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.pgmp .choose .choose-item span {
  display: flex;
  background-color: #191919;
  border-radius: 50px;
  width: 70px;
  height: 70px;
  padding: 0.8rem;
  position: absolute;
  top: -40px;
}
.pgmp .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.pgmp .choose .choose-item h3 {
  font-size: 14px;
  width: 76%;
  margin-bottom: 1rem;
  min-height: 40px;
}
.pgmp .choose .choose-item::after {
  content: '';
  position: absolute;
  background-color: rgba(112, 112, 112, 0.34);
  width: 100%;
  height: 1px;
  top: 83px;
  left: 0;
}
.pgmp .choose .choose-item::before {
  position: absolute;
  content: counter(my-sec-counter, decimal-leading-zero);
  counter-increment: my-sec-counter;
  color: #cdcdcd;
  font-size: 32px;
  font-weight: 600;
  right: 22px;
  top: 22px;
}
.pgmp .choose .choose-item p {
  font-size: 13px;
}
.pgmp .framework .framework-container,
.pgmp .framework .content,
.pgmp .framework .info {
  display: flex;
  flex-direction: column;
}
.pgmp .framework .framework-container {
  align-items: flex-start;
}
.pgmp .framework .content {
  width: 100%;
}
.pgmp .framework .content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.pgmp .framework .content ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/pgmp/cube.svg);
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
  left: 0;
  top: 4px;
}
.pgmp .framework .info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.pgmp .framework .info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.pgmp .framework .info span img {
  width: 100%;
  height: 100%;
}
.pgmp .package {
  padding-top: 0;
}
.pgmp .package .package-container,
.pgmp .package .package-list,
.pgmp .package .package-item {
  display: flex;
  flex-direction: column;
}
.pgmp .package .package-container .heading,
.pgmp .package .package-list .heading,
.pgmp .package .package-item .heading {
  margin-bottom: 0;
}
.pgmp .package .package-item {
  background-color: #FFFFFF;
  margin-top: 3rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 8px -7px 0 3px rgba(225, 225, 225, 0.35);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background-image: url(/_public/images/pgmp/package-bg.png);
  background-size: 70% 48%;
  background-repeat: no-repeat;
  background-position: right top;
  transition: 1s all;
}
.pgmp .package .package-item .icon {
  display: flex;
  width: 50px;
  height: 50px;
  align-self: flex-end;
}
.pgmp .package .package-item .icon img {
  width: 100%;
  height: 100%;
}
.pgmp .package .package-item .icon img:last-child {
  display: none;
}
.pgmp .package .package-item h3 {
  font-size: 14px;
  color: #00BFE0;
  width: 159px;
  background-color: #191919;
  padding: 1rem 1rem 1rem 1.5rem;
  position: relative;
  transform: translateX(-24px);
}
.pgmp .package .package-item h3::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  border-top: 26px solid transparent;
  border-right: 35px solid #FFFFFF;
  border-bottom: 27px solid transparent;
  width: 0;
  height: 0;
  z-index: 1;
  transition: 1s all;
}
.pgmp .package .package-item h4 {
  font-size: 14px;
  margin: 1rem 0 ;
}
.pgmp .package .package-item ul {
  border-bottom: 1px solid rgba(0, 191, 224, 0.35);
  padding-bottom: 1.2rem;
}
.pgmp .package .package-item ul li {
  margin-top: 0.5rem;
  position: relative;
  padding-left: 1rem;
  font-size: 12px;
}
.pgmp .package .package-item ul li:nth-child(1) {
  margin-top: 0;
}
.pgmp .package .package-item ul li::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #00BFE0;
  left: 0;
  animation: circleMover 5s linear infinite;
  top: 4px;
}
.pgmp .package .package-item a {
  display: flex;
  color: #00BFE0;
  padding-top: 1.2rem;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  justify-content: space-between;
}
.pgmp .package .package-item a span {
  display: flex;
  width: 20px;
  height: 20px;
}
.pgmp .package .package-item a span img {
  width: 100%;
  height: 100%;
}
.pgmp .package .package-item a span img:nth-child(2) {
  display: none;
}
.pgmp .package .package-item:hover {
  background-color: #191919;
  background-image: url(/_public/images/pgmp/black-bg.png);
}
.pgmp .package .package-item:hover h3 {
  background-color: #FFFFFF;
}
.pgmp .package .package-item:hover h3::before {
  border-right: 35px solid #191919;
}
.pgmp .package .package-item:hover .icon img:first-child {
  display: none;
}
.pgmp .package .package-item:hover .icon img:last-child {
  display: flex;
}
.pgmp .package .package-item:hover h4,
.pgmp .package .package-item:hover li {
  color: #FFFFFF;
}
.pgmp .package .package-item:hover ul {
  border-bottom: 1px solid rgba(225, 225, 225, 0.35);
}
.pgmp .package .package-item:hover ul li {
  color: #FFFFFF;
}
.pgmp .package .package-item:hover a {
  color: #FFFFFF;
}
.pgmp .package .package-item:hover a span img:first-child {
  display: none;
}
.pgmp .package .package-item:hover a span img:last-child {
  display: flex;
}
.pgmp .client {
  background: #191919;
  background-size: 100% 100%;
}
.pgmp .client .client-container,
.pgmp .client .client-list,
.pgmp .client .client-item {
  display: flex;
  flex-direction: column;
}
.pgmp .client .client-item {
  padding: 1.5rem 1.2rem;
  border-radius: 4px;
  background-color: #FFFFFF;
  position: relative;
  width: 95%;
}
.pgmp .client .client-item::before {
  content: '';
  background-image: url(/_public/images/pgmp/quote.svg);
  background-size: 100% 100%;
  position: absolute;
  width: 65px;
  height: 65px;
  right: 24px;
  top: 22px;
}
.pgmp .client .client-item span {
  display: flex;
  background-color: #191919;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.pgmp .client .client-item span img {
  width: 100%;
  height: 100%;
}
.pgmp .client .client-item p {
  font-size: 13px;
}
.pgmp .client .client-item h3 {
  margin: 1rem 0 0.2rem;
  border-top: 1px solid #cdcdcd;
  padding-top: 1rem;
}
.pgmp .client .client-item .stars {
  width: 95px;
  height: 17px;
}
.pgmp .client .owl-nav {
  display: flex;
  width: 110px;
  justify-content: space-between;
  margin-top: 2rem;
}
.pgmp .client .owl-nav .owl-prev,
.pgmp .client .owl-nav .owl-next {
  background-image: url(/_public/images/pgmp/nav-arrow.svg);
  background-size: 100% 100%;
  width: 42px;
  height: 42px;
  opacity: 0.5;
}
.pgmp .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.pgmp .client .owl-nav .btn-active {
  opacity: 1;
}
.pgmp .benefit .benefit-container,
.pgmp .benefit .benefit-content,
.pgmp .benefit .benefit-info {
  display: flex;
  flex-direction: column;
}
.pgmp .benefit .benefit-container {
  align-items: flex-start;
}
.pgmp .benefit .benefit-content {
  width: 100%;
  align-items: center;
}
.pgmp .benefit .benefit-content p {
  text-align: center;
}
.pgmp .benefit .benefit-content p:nth-child(3) {
  margin-top: 1rem;
}
.pgmp .benefit .benefit-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.pgmp .benefit .benefit-info span {
  display: flex;
  height: 100%;
}
.pgmp .benefit .benefit-info span img {
  width: 100%;
  height: 100%;
}
.pgmp .faq {
  padding-top: 0;
}
.pgmp .faq .faq-container,
.pgmp .faq .form,
.pgmp .faq .input-list,
.pgmp .faq .faq-content,
.pgmp .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.pgmp .faq form {
  margin-bottom: 0;
  background: #F5F5F5;
  padding: 1rem;
  margin-top: 2rem;
  height: 100%;
}
.pgmp .faq form .input-list .input-error {
  border-bottom: 1px solid #ff0000;
}
.pgmp .faq form .input-list .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.pgmp .faq form .input-list .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.pgmp .faq form .input-list .input-error ::placeholder {
  color: #ff0000;
}
.pgmp .faq form .input-list .input-error span .white {
  display: none;
}
.pgmp .faq form .input-list .input-error span .red {
  display: flex;
}
.pgmp .faq form .buttons {
  align-self: center;
}
.pgmp .faq form .buttons .btn-blue {
  min-width: 120px;
  font-size: 14px;
}
.pgmp .faq form .buttons img {
  width: 16px;
  height: 16px;
}
.pgmp .faq .input-container {
  display: flex;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(7, 7, 7, 0.4);
}
.pgmp .faq .input-container input,
.pgmp .faq .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  color: #191919;
}
.pgmp .faq .input-container textarea {
  resize: none;
  overflow: auto;
  min-height: 50px;
}
.pgmp .faq .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.pgmp .faq .input-container span img {
  width: 100%;
  height: 100%;
}
.pgmp .faq .input-container span .white {
  display: flex;
}
.pgmp .faq .input-container span .red {
  display: none;
}
.pgmp .faq .input-container ::-webkit-input-placeholder {
  color: rgba(7, 7, 7, 0.4);
}
.pgmp .faq .input-container :-ms-input-placeholder {
  color: rgba(7, 7, 7, 0.4);
}
.pgmp .faq .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.pgmp .faq .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.pgmp .faq .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 90%;
}
.pgmp .faq .form-consent p {
  font-size: 11px;
}
.pgmp .faq .form-consent a {
  color: #00BFE0;
  font-weight: 600;
}
.pgmp .faq .consent-error p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.pgmp .faq .faq-item {
  margin-top: 1.2rem;
}
.pgmp .faq .faq-item:first-child {
  margin-top: 0;
}
.pgmp .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
.pgmp .faq .faq-item .ques h3 {
  font-size: 14px;
  font-weight: 500;
  width: calc(100% - 20px);
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
}
.pgmp .faq .faq-item .ques h3::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 20px;
  left: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/_public/images/pgmp/book.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  border-right: 1px solid #707070;
}
.pgmp .faq .faq-item .ques span {
  display: flex;
  width: 53px;
  height: auto;
  background-color: #F5F5F5;
  padding: 1rem;
  border-top-left-radius: 30px;
}
.pgmp .faq .faq-item .ques span img {
  width: 20px;
  height: 20px;
  transition: 1s all;
  align-self: center;
}
.pgmp .faq .faq-item .ans {
  display: none;
  margin-top: 1rem;
}
.pgmp .faq .faq-item .ans p {
  font-size: 13px;
}
.pgmp .faq .active .ques span img {
  transform: rotate(180deg);
}
.pgmp .footer {
  background-color: #191919;
}
.pgmp .footer .footer-container,
.pgmp .footer .contact-list,
.pgmp .footer .info {
  display: flex;
  flex-direction: column;
}
.pgmp .footer .buttons {
  margin-top: 0;
  align-self: center;
}
.pgmp .footer .contact-item {
  display: flex;
  justify-content: space-between;
  background-color: #3F3F3F;
  padding: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}
.pgmp .footer .info {
  width: calc(100% - 40px);
}
.pgmp .footer .info h3,
.pgmp .footer .info a {
  color: #FFFFFF;
}
.pgmp .footer .info h3 {
  font-size: 15px;
  margin-bottom: 0.3rem;
}
.pgmp .footer .info a {
  font-size: 12px;
  font-weight: 500;
}
.pgmp .footer .image {
  width: 32px;
  height: 32px;
}
.pgmp .footer .star {
  width: 100px;
  height: 18px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .pgmp .banner .menu.active + .menu-links {
    width: 50%;
  }
  .pgmp .banner .logo-container {
    padding: 1rem 2rem;
  }
  .pgmp .banner .banner-container {
    padding: 1.5rem 2rem 3rem;
  }
  .pgmp .banner .banner-info {
    display: none;
  }
  .pgmp .fact .fact-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .pgmp .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .pgmp .overview .overview-content {
    width: 50%;
  }
  .pgmp .overview .overview-info {
    width: 45%;
    position: sticky;
    top: 60px;
    margin-top: 0;
    background-image: url(/_public/images/pgmp/square.svg);
    background-size: 100px 100px;
    background-position: top right;
    background-repeat: no-repeat;
  }
  .pgmp .overview .overview-info::before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 76px);
    left: 6%;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFFFFF;
  }
  .pgmp .overview .overview-info h3 {
    margin: 1.5rem 0;
  }
  .pgmp .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .pgmp .course .course-item {
    width: 45%;
    margin-right: 1.5rem;
  }
  .pgmp .course .course-item h3 {
    min-height: 42px;
  }
  .pgmp .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .pgmp .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .pgmp .method .method-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pgmp .method .heading {
    width: 64%;
  }
  .pgmp .method .buttons {
    align-items: flex-end;
    justify-content: flex-end;
    width: 30%;
    margin-top: 0;
  }
  .pgmp .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pgmp .method .method-item {
    width: 48%;
  }
  .pgmp .help .help-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .pgmp .help .help-content {
    width: 52%;
  }
  .pgmp .help .help-info {
    width: 42%;
    padding: 1.5rem;
    position: sticky;
    top: 60px;
    margin-top: 0px;
  }
  .pgmp .choose .heading h2,
  .pgmp .choose .heading p {
    text-align: center;
  }
  .pgmp .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pgmp .choose .choose-item {
    width: 31%;
  }
  .pgmp .choose .choose-item p {
    min-height: 124px;
  }
  .pgmp .framework .framework-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .pgmp .framework .content {
    width: 48%;
  }
  .pgmp .framework .info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .pgmp .package .package-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .pgmp .package .package-item {
    width: 42%;
  }
  .pgmp .package .package-item:first-child {
    margin-right: 3rem;
  }
  .pgmp .package .package-item ul {
    min-height: 127px;
  }
  .pgmp .client .client-container {
    position: relative;
  }
  .pgmp .client .heading {
    width: 76%;
  }
  .pgmp .client .client-list {
    position: static;
  }
  .pgmp .client .client-item p {
    min-height: 228px;
  }
  .pgmp .client .owl-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    margin-top: 0;
  }
  .pgmp .benefit .benefit-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .pgmp .benefit .benefit-content {
    width: 50%;
    align-items: flex-start;
  }
  .pgmp .benefit .benefit-content .heading h2 {
    text-align: left;
  }
  .pgmp .benefit .benefit-content p {
    text-align: left;
  }
  .pgmp .benefit .benefit-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .pgmp .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .pgmp .faq .faq-content {
    width: 50%;
  }
  .pgmp .faq .faq-list {
    max-height: 645px;
    overflow: auto;
    padding: 0.6rem 1rem 0.6rem 0.6rem;
  }
  .pgmp .faq .form {
    width: 48%;
    margin-top: 0;
    padding: 2rem 1.5rem;
  }
  .pgmp .footer .contact-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .pgmp .footer .contact-item {
    width: 48%;
  }
  .pgmp .footer .contact-item:first-child {
    margin-right: 1.5rem;
  }
  .pgmp .footer .info {
    width: calc(100% - 48px);
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .pgmp .heading h2 {
    font-size: 28px;
  }
  .pgmp .buttons .btn-blue,
  .pgmp .buttons .btn-transparent {
    font-size: 16px;
  }
  .pgmp .banner {
    position: relative;
    background-image: url(/_public/images/pgmp/banner-bg.png);
    background-size: 100% 100%;
    z-index: 8;
  }
  .pgmp .banner::after {
    content: '';
    position: absolute;
    background-color: #191919;
    width: 24%;
    height: 100%;
    right: 0;
    z-index: -2;
    top: 0;
  }
  .pgmp .banner .menu-links {
    width: 78%;
    flex-direction: row;
    box-shadow: none;
    position: relative;
  }
  .pgmp .banner .logo-container {
    background-color: transparent;
    box-shadow: none;
  }
  .pgmp .banner .logo-container::before {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    height: 80px;
    width: 76%;
    right: 0;
    top: 0;
    border-bottom-left-radius: 6px;
    z-index: -1;
  }
  .pgmp .banner .sticky {
    background-color: #F5F5F5;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .pgmp .banner .sticky::before {
    border-radius: 0;
  }
  .pgmp .banner .menu {
    display: none;
  }
  .pgmp .banner .menu-toggle {
    display: none;
  }
  .pgmp .banner .menu-links {
    background-color: transparent;
  }
  .pgmp .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .pgmp .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
    z-index: 1;
    font-size: 15px;
    position: relative;
  }
  .pgmp .banner ul .links-li::before {
    content: "•";
    position: absolute;
    color: transparent;
    text-shadow: transparent 0px 0px;
    font-size: 15px;
    bottom: -15px;
    left: 0px;
    right: 0px;
    width: 8px;
    height: 100%;
    transition: text-shadow 0.5s ease 0s, color 1s ease 0s;
    margin: auto;
  }
  .pgmp .banner ul .links-li:hover::before {
    color: #00BFE0;
    text-shadow: 10px 0 #00BFE0, -10px 0 #00BFE0;
  }
  .pgmp .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .pgmp .banner ul .links-li:last-child::before {
    content: none;
  }
  .pgmp .banner ul .links-li:nth-child(4) {
    display: none;
  }
  .pgmp .banner ul .links-li .btn-transparent {
    margin-right: 1rem;
  }
  .pgmp .banner ul .links-li .btn-blue,
  .pgmp .banner ul .links-li .btn-transparent {
    min-width: 167px;
  }
  .pgmp .banner .banner-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
  }
  .pgmp .banner .banner-content {
    width: 50%;
  }
  .pgmp .banner .banner-content h1 {
    font-size: 29px;
  }
  .pgmp .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
    padding: 0;
    background-color: transparent;
  }
  .pgmp .fact {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .pgmp .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .pgmp .fact .fact-container h2 {
    font-size: 98px;
  }
  .pgmp .fact .fact-list {
    width: 65%;
  }
  .pgmp .fact .fact-item {
    margin-top: 0;
  }
  .pgmp .overview .overview-container {
    align-items: center;
  }
  .pgmp .overview .overview-content {
    width: 55%;
  }
  .pgmp .overview .overview-info {
    width: 38%;
    padding: 2.5rem;
    position: relative;
    top: 0;
  }
  .pgmp .course .course-item {
    flex-direction: row;
    justify-content: space-between;
  }
  .pgmp .course .course-item span {
    display: flex;
    align-self: center;
  }
  .pgmp .course .content {
    width: 58%;
    padding-right: 1rem;
    border-right: 1px solid #cdcdcd;
  }
  .pgmp .course .info {
    width: 33%;
    align-items: flex-end;
  }
  .pgmp .method {
    background-image: url(/_public/images/pgmp/method-bg.png);
    background-size: 100% 100%;
  }
  .pgmp .method .heading {
    width: 76%;
  }
  .pgmp .method .buttons {
    width: 24%;
  }
  .pgmp .method .method-item {
    width: 24%;
    margin-top: 3rem;
  }
  .pgmp .method .method-item h3 {
    min-height: 50px;
  }
  .pgmp .method .method-item p {
    min-height: 93px;
  }
  .pgmp .choose .choose-container {
    width: 90%;
    margin: auto;
  }
  .pgmp .choose .heading {
    width: 95%;
    margin: auto;
  }
  .pgmp .choose .choose-item span {
    left: -22px;
  }
  .pgmp .choose .choose-item h3 {
    width: 134px;
  }
  .pgmp .choose .choose-item::before {
    right: 24px;
  }
  .pgmp .package .package-list {
    justify-content: space-between;
  }
  .pgmp .package .package-item {
    width: 30%;
  }
  .pgmp .package .package-item:first-child {
    margin-right: 0;
  }
  .pgmp .client {
    background: url(/_public/images/pgmp/client-bg.png);
  }
  .pgmp .client .client-item p {
    min-height: 187px;
  }
  .pgmp .client .owl-nav {
    top: 62px;
  }
  .pgmp .faq {
    background-image: url(/_public/images/pgmp/dots.png);
    background-size: 42% 70%;
    background-position: top left;
    background-repeat: no-repeat;
  }
  .pgmp .faq .faq-content {
    width: 45%;
  }
  .pgmp .faq .faq-list {
    max-height: 495px;
  }
  .pgmp .faq .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pgmp .faq .input-container {
    width: 47%;
  }
  .pgmp .faq .input-container:last-child {
    width: 100%;
  }
  .pgmp .footer {
    background-image: url(/_public/images/pgmp/square.svg);
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position: top right;
  }
  .pgmp .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pgmp .footer .heading {
    width: 60%;
    margin-bottom: 0;
  }
  .pgmp .footer .heading h2,
  .pgmp .footer .heading p {
    text-align: left;
  }
  .pgmp .footer .buttons {
    width: 31%;
    align-self: flex-end;
    justify-content: flex-end;
  }
  .pgmp .footer .contact-list {
    justify-content: space-between;
    width: 100%;
    margin-top: 2.5rem;
    border-top: 1px solid #FFFFFF;
  }
  .pgmp .footer .contact-item {
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    width: 31%;
  }
  .pgmp .footer .contact-item:first-child {
    margin-right: 0;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .pgmp .heading h2 {
    font-size: 30px;
  }
  .pgmp .banner::after {
    width: 26%;
  }
  .pgmp .banner .tka-logo {
    max-width: 245px;
  }
  .pgmp .banner .logo-container {
    padding: 1.3rem 0;
  }
  .pgmp .banner .logo-container::before {
    height: 86px;
    width: 66%;
  }
  .pgmp .banner ul .links-li:nth-child(4) {
    display: flex;
  }
  .pgmp .banner .banner-container {
    padding: 4rem 0rem 3rem;
  }
  .pgmp .banner .banner-content h1 {
    font-size: 45px;
    line-height: 1.3;
  }
  .pgmp .banner .banner-content h1 img {
    width: 48px;
    height: 48px;
    transform: translateY(8px);
  }
  .pgmp .fact {
    position: relative;
  }
  .pgmp .fact .fact-container {
    justify-content: flex-end;
  }
  .pgmp .fact .fact-container h2 {
    font-size: 135px;
    position: absolute;
    left: 10px;
    top: 30px;
  }
  .pgmp .overview .overview-content {
    width: 60%;
  }
  .pgmp .overview .overview-info {
    width: 33%;
  }
  .pgmp .course .content {
    width: 62%;
  }
  .pgmp .course .info {
    width: 35%;
  }
  .pgmp .course .course-item {
    width: 32%;
  }
  .pgmp .course .course-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .pgmp .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .pgmp .method .method-item {
    width: 23.5%;
  }
  .pgmp .method .method-item h3 {
    min-height: auto;
  }
  .pgmp .method .method-item p {
    min-height: 71px;
  }
  .pgmp .help .help-info {
    position: static;
    top: 0px;
    align-self: center;
  }
  .pgmp .choose .choose-item {
    width: 27%;
  }
  .pgmp .choose .choose-item p {
    min-height: 98px;
  }
  .pgmp .framework .info {
    position: static;
    top: 0;
  }
  .pgmp .package .package-container {
    width: 90%;
    margin: auto;
  }
  .pgmp .package .package-item h4 {
    font-size: 16px;
  }
  .pgmp .package .package-item ul {
    min-height: 113px;
  }
  .pgmp .client .client-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .pgmp .client .heading {
    width: 27%;
    margin-bottom: 0;
  }
  .pgmp .client .client-list {
    width: 72%;
  }
  .pgmp .client .client-item {
    width: 88%;
    margin-left: auto;
  }
  .pgmp .client .client-item p {
    min-height: 233px;
  }
  .pgmp .client .owl-nav {
    top: 257px;
    left: 0;
  }
  .pgmp .benefit .benefit-info {
    align-self: center;
    position: static;
    top: 0;
  }
  .pgmp .faq .faq-list {
    max-height: 480px;
  }
  .pgmp .footer .contact-item {
    width: 29.5%;
  }
}
@media (min-width : 1500px) {
  .pgmp .banner {
    background-repeat: cover;
  }
  .pgmp .fact .fact-container {
    position: relative;
  }
  .pgmp .fact .fact-container h2 {
    left: 0px;
    top: 0px;
  }
  .pgmp .footer {
    background-image: none;
  }
}
