@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: #000000;
  font-weight: 700;
  font-size: 10px;
}

input[type="checkbox"]:checked:before {
  content: '\2713';
}

input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  min-width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  background-color: #FFFFFF;
  border: 1px solid #DADADA;
  border-radius: 2px;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: #5153FF;
}

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  font-family: 'poppins';
}

ul,
li,
p {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  font-size: 14px;
}

ul,
li {
  padding: 0;
  list-style: none;
}

p strong,
p b {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  font-weight: 600;
  font-style: normal;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: 100%;
}

section {
  display: flex;
  padding: 3rem 1.5rem;
}

.cipd .buttons {
  display: flex;
  margin-top: 1.5rem;
}

.cipd .buttons .btn-transparent,
.cipd .buttons .btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 10px 15px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 1s all;
}

.cipd .buttons .btn-transparent img,
.cipd .buttons .btn-blue img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.cipd .buttons .btn-transparent::before,
.cipd .buttons .btn-blue::before,
.cipd .buttons .btn-transparent::after,
.cipd .buttons .btn-blue::after {
  content: '';
  position: absolute;
  transition: 0.7s ease;
  width: 0;
  height: 0;
  top: 0;
  z-index: -1;
}

.cipd .buttons .btn-transparent::before,
.cipd .buttons .btn-blue::before {
  left: 6px;
}

.cipd .buttons .btn-transparent:after,
.cipd .buttons .btn-blue:after {
  right: 6px;
}

.cipd .buttons .btn-transparent:hover::before,
.cipd .buttons .btn-blue:hover::before,
.cipd .buttons .btn-transparent:hover::after,
.cipd .buttons .btn-blue:hover::after {
  width: 100%;
  height: 100%;
}

.cipd .buttons .btn-transparent:hover::before,
.cipd .buttons .btn-blue:hover::before {
  left: 0;
}

.cipd .buttons .btn-transparent:hover::after,
.cipd .buttons .btn-blue:hover::after {
  right: 0;
}

.cipd .buttons .btn-blue {
  background-color: #5153FF;
  color: #FFFFFF;
  min-width: 160px;
  border-radius: 5px;
}

.cipd .buttons .btn-blue::before,
.cipd .buttons .btn-blue::after {
  background-color: #ff0000;
  border-radius: 5px;
  opacity: 0.2;
}

.cipd .buttons .btn-transparent {
  border: 1px solid #5153FF;
  background-color: #FFFFFF;
  min-width: 46px;
  height: 46px;
  border-radius: 7px;
}

.cipd .buttons .btn-transparent::before,
.cipd .buttons .btn-transparent::after {
  background-color: #E1E1E1;
  border-radius: 7px;
}

.cipd .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}

.cipd .heading p {
  margin-top: 1rem;
}

.cipd .heading h2 {
  width: 100%;
  font-size: 22px;
}

.cipd .center-heading {
  justify-content: center;
  align-items: center;
}

.cipd .center-heading h2,
.cipd .center-heading p {
  text-align: center;
}

.cipd .white-heading h2,
.cipd .white-heading p {
  color: #FFFFFF;
}

@keyframes scale {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.cipd .banner {
  flex-direction: column;
  background-image: url(/_public/images/cipd/gradient-bg.png);
  background-size: cover;
  padding-top: 1.5rem;
}

.cipd .banner .banner-container,
.cipd .banner .banner-content {
  display: flex;
  flex-direction: column;
}

.cipd .banner .logo-container,
.cipd .banner .tka-logo,
.cipd .banner .menu,
.cipd .banner .menu-toggle {
  display: flex;
}

.cipd .banner .logo-container {
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}

.cipd .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cipd .banner .logo-container .tka-logo img,
.cipd .banner .logo-container .menu img {
  height: 100%;
  width: 100%;
}

.cipd .banner .logo-container .tka-logo {
  min-width: 222px;
}

.cipd .banner .logo-container .menu {
  height: 23px;
  width: 23px;
}

.cipd .banner .logo-container .menu-links {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  padding: 1rem;
  width: 80%;
  transition: 1s all;
  transform: translateX(100%);
  background-color: #FFFFFF;
}

.cipd .banner .logo-container .menu-links .menu-toggle {
  align-items: center;
  justify-content: flex-end;
  font-weight: 500;
}

.cipd .banner .logo-container .menu-links .menu-toggle img {
  height: 15px;
  width: 15px;
  margin-right: 0.5rem;
}

.cipd .banner .logo-container .menu-links .links-li {
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #000000;
}

.cipd .banner .logo-container .menu-links .links-li:first-child {
  padding-top: 0;
}

.cipd .banner .logo-container .menu-links .links-li:nth-of-type(7) {
  padding-bottom: 0;
  border-bottom: 0;
}

.cipd .banner .logo-container .menu-links .links-li:last-child {
  display: none;
}

.cipd .banner .logo-container .active+.menu-links {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  transform: translateX(0);
}

.cipd .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: 1s all;
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  border-bottom: none;
}

.cipd .banner .sticky-down {
  top: -100px;
}

.cipd .banner .banner-container {
  padding-top: 2rem;
}

.cipd .banner .banner-content {
  align-items: center;
}

.cipd .banner .banner-content h1,
.cipd .banner .banner-content p {
  text-align: center;
}

.cipd .banner .banner-content h1 {
  display: flex;
  font-size: 32px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.cipd .banner .banner-content h1 b {
  color: #5153FF;
  font-weight: 500;
}

.cipd .banner .banner-content span {
  line-height: 25px;
  margin-top: 12px;
  text-align: center;
}

.cipd .banner .banner-content span a{
  font-weight: 600;
  color: #5153FF;
  border-bottom: 2px solid #5153FF;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.cipd .banner .banner-content h1 span {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-weight: 600;
  line-height: 1;
  -webkit-text-fill-color: #FFFFFF;
  -webkit-text-stroke: 2px #000000;
  text-shadow: 5px 3px #d2d2d2;
}

.cipd .banner .banner-content h1 img {
  width: 100px;
  height: auto;
  margin-right: 0.5rem;
}

.cipd .banner .banner-content .buttons .btn-blue {
  font-size: 12px;
}

.cipd .banner .banner-info {
  display: flex;
  margin-top: 2rem;
}

.cipd .banner .banner-info img {
  width: 100%;
  height: 100%;
}

.cipd .link {
  display: none;
  margin: 0 auto;
  width: 100%;
}

.cipd .link .link-container {
  display: flex;
  flex-direction: column;
}

.cipd .overview .overview-content,
.cipd .overview .overview-container,
.cipd .overview .overview-info,
.cipd .overview .info,
.cipd .overview .chart-list,
.cipd .overview .chart-overview {
  display: flex;
  flex-direction: column;
}

.cipd .overview .overview-info {
  margin-top: 2rem;
  background-image: linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
  padding: 2rem 1.5rem;
  border-radius: 12px;
}

.cipd .overview .overview-info .chart-info {
  display: none;
}

.cipd .overview .overview-info .info {
  background: #FFFFFF url(/_public/images/cipd/map.png) center / 255px 100px no-repeat;
  box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 1.8rem 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

.cipd .overview .overview-info .info b {
  color: #5153FF;
  font-size: 22px;
}

.cipd .overview .overview-info .info p {
  font-size: 12px;
}

.cipd .overview .chart-list strong {
  font-size: 18px;
  margin-bottom: 1rem;
}

.cipd .overview .chart-list ul li {
  display: flex;
  font-size: 12px;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 0.7rem;
  margin-top: 0.5rem;
}

.cipd .overview .chart-list ul li:first-child {
  margin-top: 0;
}

.cipd .overview .chart-list ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cipd .overview .chart-list ul li span {
  display: flex;
  margin: 0.3rem 0.6rem 0 0;
  min-width: 10px;
  height: 10px;
}

.cipd .course {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cipd .course .course-container,
.cipd .course .list,
.cipd .course .course-info,
.cipd .course .course-list,
.cipd .course .course-item,
.cipd .course .info,
.cipd .course form {
  display: flex;
  flex-direction: column;
}

.cipd .course .course-info {
  margin-top: 3rem;
}

.cipd .course .course-info .heading {
  margin-bottom: 0.5rem;
}

.cipd .course .course-info:first-child {
  margin-top: 0;
}

.cipd .course .course-info h3 {
  font-size: 18px;
}

.cipd .course .list {
  border: 1px solid #5153FF;
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cipd .course .list:first-child {
  margin-top: 0;
}

.cipd .course .course-item {
  padding-bottom: 1.5rem;
  margin-top: 1.3rem;
  border-bottom: 1px solid #DADADA;
}

.cipd .course .course-item:first-child {
  margin-top: 0;
}

.cipd .course .course-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cipd .course .course-item span {
  display: flex;
  width: 70px;
  height: 70px;
  padding: 0.6rem 1.2rem 0.8rem 1.5rem;
  margin-bottom: 0.5rem;
  background-image: url(/_public/images/cipd/polygon.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

.cipd .course .course-item span img {
  width: 100%;
  height: 100%;
}

.cipd .course .course-item .info h4 {
  font-size: 14px;
  margin-bottom: 0.7rem;
}

.cipd .course .course-item .info p {
  color: #A4A4A4;
  font-size: 12px;
}

.cipd .course .course-item .info p strong {
  font-weight: 600;
}

.cipd .course .course-item .info p:nth-of-type(1) {
  margin-bottom: 0.2rem;
}

.cipd .course .course-item .buttons a img {
  width: 16px;
  height: 16px;
  margin: 0 0 0 8px;
}

.cipd .course form {
  margin: 3.5rem 0 0;
  padding: 2rem 1.8rem;
  border-radius: 15px;
  background-image: linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
}

.cipd .course form .input-container {
  display: flex;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 0.7rem;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1px solid #DADADA;
}

.cipd .course form .input-container span {
  display: flex;
  width: 18px;
  height: 18px;
}

.cipd .course form .input-container span img {
  width: 100%;
  height: 100%;
}

.cipd .course form .input-container span img:last-child {
  display: none;
}

.cipd .course form .input-container input,
.cipd .course form .input-container textarea {
  border: none;
  padding: 0;
  outline: 0;
  font-size: 14px;
  width: calc(100% - 30px);
  background-color: transparent;
}

.cipd .course form .input-container textarea {
  resize: none;
  overflow: auto;
  height: 60px;
}

.cipd .course form .input-container:nth-of-type(6) {
  align-items: flex-start;
  margin-bottom: 0;
}

.cipd .course form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #8C8C8C;
}

.cipd .course form .input-container :-ms-input-placeholder {
  /* Firefox */
  color: #8C8C8C;
}

.cipd .course form .input-container ::placeholder {
  /* Chrome */
  font-size: 14px;
  font-weight: 500;
  color: #8C8C8C;
}

.cipd .course form .input-error {
  border: 1px solid #ff0000;
}

.cipd .course form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}

.cipd .course form .input-error :-ms-input-placeholder {
  /* Firefox */
  color: #ff0000;
}

.cipd .course form .input-error ::placeholder {
  /* Chrome */
  color: #ff0000;
}

.cipd .course form .input-error span img:first-child {
  display: none;
}

.cipd .course form .input-error span img:last-child {
  display: flex;
}

.cipd .course form p {
  font-size: 11px;
  line-height: 1.5;
}

.cipd .course form .form-consent {
  display: flex;
  margin-top: 0.5rem;
}

.cipd .course form .form-consent label {
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
  margin-left: 0.5rem;
}

.cipd .course form .form-consent p a {
  font-weight: 600;
  color: #5153FF;
}

.cipd .course form .consent-error {
  margin-top: 0.5rem;
}

.cipd .course form .consent-error p {
  color: #ff0000;
}

.cipd .course form .buttons .btn-blue {
  min-width: 135px;
}

.cipd .course form .buttons .btn-blue img {
  width: 16px;
  height: 16px;
}

.cipd .method .method-container,
.cipd .method .method-list,
.cipd .method .method-item {
  display: flex;
  flex-direction: column;
}

.cipd .method .heading p {
  margin-top: 0.5rem;
}

.cipd .method .method-list {
  background-image: url(/_public/images/cipd/online-bg.png);
  background-size: cover;
  padding: 2rem 1rem;
}

.cipd .method .method-item {
  margin-top: 2rem;
}

.cipd .method .method-item:nth-of-type(1) {
  margin-top: 0;
}

.cipd .method .method-item h3 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  justify-content: space-between;
}

.cipd .method .method-item h3>img {
  display: none;
  width: 100%;
  height: 100%;
}

.cipd .method .method-item h3 a {
  width: 18px;
  height: 18px;
}

.cipd .method .method-item h3 a img {
  width: 100%;
  height: 100%;
}

.cipd .method .method-item span {
  display: none;
}

.cipd .fact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cipd .fact .fact-container,
.cipd .fact .fact-item {
  display: flex;
  flex-direction: column;
}

.cipd .fact .heading {
  margin-bottom: 0;
}

.cipd .fact .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cipd .fact .fact-item {
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  width: 150px;
  position: relative;
}

.cipd .fact .fact-item span {
  display: flex;
  width: 52px;
  height: 52px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 5px solid transparent;
  border-radius: 50px;
  padding: 0.7rem;
  position: absolute;
  left: 0;
}

.cipd .fact .fact-item span img {
  width: 100%;
  height: 100%;
}

.cipd .fact .fact-item .count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 122px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 5px solid transparent;
  border-radius: 100%;
}

.cipd .fact .fact-item .count strong {
  font-size: 22px;
}

.cipd .fact .fact-item p {
  font-size: 13px;
  margin-top: 1rem;
  font-weight: 500;
}

.cipd .career .career-container,
.cipd .career .career-content {
  display: flex;
  flex-direction: column;
}

.cipd .career .career-content {
  align-items: center;
}

.cipd .career .career-content p {
  text-align: center;
}

.cipd .career .career-info {
  display: flex;
  margin-top: 3rem;
}

.cipd .career .career-info img {
  width: 100%;
  height: 100%;
}

.cipd .stage {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cipd .stage .stage-container,
.cipd .stage .stage-item,
.cipd .stage .stage-list {
  display: flex;
  flex-direction: column;
}

.cipd .stage .heading {
  margin-bottom: 0.5rem;
}

.cipd .stage .stage-item {
  align-items: center;
  margin-top: 1.5rem;
}

.cipd .stage .stage-item span {
  display: flex;
  width: 84px;
  height: 84px;
  padding: 1.2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}

.cipd .stage .stage-item span::before {
  content: '';
  position: absolute;
  background-image: radial-gradient(83.69% 67.74% at 50% 50%, rgba(81, 83, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cipd .stage .stage-item span img {
  width: 100%;
  height: 100%;
}

.cipd .stage .stage-item b {
  margin: 1.2rem 0 0.5rem;
}

.cipd .stage .stage-item p {
  text-align: center;
  font-size: 13px;
}

.cipd .journey .journey-container,
.cipd .journey .journey-content {
  display: flex;
  flex-direction: column;
}

.cipd .journey .journey-content {
  align-items: center;
}

.cipd .journey .journey-content p {
  text-align: center;
}

.cipd .journey .journey-info {
  display: flex;
  margin-top: 2rem;
}

.cipd .journey .journey-info img {
  width: 100%;
  height: 100%;
}

.cipd .choose {
  padding-top: 1.5rem;
}

.cipd .choose .choose-container,
.cipd .choose .choose-list,
.cipd .choose .choose-item {
  display: flex;
  flex-direction: column;
}

.cipd .choose .heading {
  margin-bottom: 0;
}

.cipd .choose .choose-item {
  align-items: center;
  z-index: 1;
  margin-top: 2.5rem;
}

.cipd .choose .choose-item span {
  display: flex;
  width: 57px;
  height: 57px;
  border-radius: 5px;
  border: 1px solid #5153FF;
  background-color: #FFFFFF;
  padding: 0.5rem;
  position: relative;
}

.cipd .choose .choose-item span img {
  width: 100%;
  height: 100%;
}

.cipd .choose .choose-item span:before {
  content: '';
  width: 63px;
  height: 63px;
  background-image: linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
  border-radius: 50%;
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: -1;
}

.cipd .choose .choose-item h3 {
  font-size: 15px;
  margin: 1rem 0 0.5rem;
}

.cipd .choose .choose-item h3,
.cipd .choose .choose-item p {
  text-align: center;
}

.cipd .level {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cipd .level .level-container,
.cipd .level .level-content,
.cipd .level .level-list,
.cipd .level .level-item,
.cipd .level .level-info {
  display: flex;
  flex-direction: column;
}

.cipd .level .level-container {
  border-radius: 30px;
  background: linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
  padding: 2rem 1.5rem;
}

.cipd .level .level-content .heading {
  margin-bottom: 0;
}

.cipd .level .level-list {
  counter-reset: number;
}

.cipd .level .level-item {
  margin-top: 1.5rem;
}

.cipd .level .level-item span {
  display: flex;
  border-radius: 6px;
  border: 1px solid #DADADA;
  background: #FFFFFF;
  padding: 0.7rem 0.8rem;
  font-size: 14px;
  font-weight: 500;
}

.cipd .level .level-item span::before {
  content: counter(number) '.';
  counter-increment: number;
  margin-right: 0.3rem;
}

.cipd .level .level-item p {
  font-size: 12px;
  padding: 1rem 0.8rem 0;
}

.cipd .level .level-info {
  margin-top: 2rem;
}

.cipd .level .level-info span {
  display: flex;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 2px 4px 18px 0px rgba(0, 0, 0, 0.15);
  padding: 1rem 0.8rem;
  margin-top: 2rem;
}

.cipd .level .level-info span img {
  width: 100%;
  height: 100%;
}

.cipd .level .info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cipd .level .info-list p {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 0.5rem;
  font-size: 10px;
  text-align: center;
  width: 47%;
  line-height: 1.4;
}

.cipd .level .info-list p:last-child {
  width: 100%;
  margin-top: 1rem;
}

.cipd .level .info-list p .stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 41px;
  height: 41px;
  border-radius: 57px;
  background: #FFFFFF;
  margin-bottom: 0.6rem;
  font-size: 12px;
}

.cipd .pursue .pursue-container,
.cipd .pursue .pursue-content,
.cipd .pursue .pursue-info {
  display: flex;
  flex-direction: column;
}

.cipd .pursue .pursue-content {
  align-items: center;
}

.cipd .pursue .pursue-content p {
  text-align: center;
}

.cipd .pursue .pursue-info {
  margin-top: 2rem;
}

.cipd .pursue .pursue-info .heading {
  margin-bottom: 0.7rem;
}

.cipd .pursue .pursue-info span {
  display: flex;
}

.cipd .pursue .pursue-info span img {
  width: 100%;
  height: 100%;
}

.cipd .review {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.cipd .review .review-container,
.cipd .review .review-list,
.cipd .review .review-item {
  display: flex;
  flex-direction: column;
}

.cipd .review .review-item {
  align-items: center;
  text-align: center;
  width: 95%;
  margin: 0 auto;
}

.cipd .review .review-item span {
  display: flex;
  width: 173px;
  height: 173px;
  border: 6px solid #FFFFFF;
  box-shadow: 3px 8px 10px 0px rgba(107, 89, 89, 0.25);
  border-radius: 100%;
}

.cipd .review .review-item span img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.cipd .review .review-item strong {
  font-size: 14px;
  color: #5153FF;
  margin: 1.8rem 0 0.3rem;
}

.cipd .review .review-item b {
  font-size: 12px;
  color: #8C8C8C;
  font-weight: 500;
}

.cipd .review .review-item>img {
  width: 110px;
  height: 20px;
}

.cipd .review .review-item p {
  margin: 1rem 0;
}

.cipd .review .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 120px;
  align-self: center;
  margin-top: 2rem;
}

.cipd .review .owl-nav .owl-prev,
.cipd .review .owl-nav .owl-next {
  display: flex;
  width: 47px;
  height: 47px;
  border: 1px solid #5153FF;
  background-color: #FFFFFF;
  border-radius: 50px;
  background-image: url(/_public/images/cipd/nav-arrow.svg);
  background-size: 25px 21px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 1s all;
}

.cipd .review .owl-nav .owl-prev img,
.cipd .review .owl-nav .owl-next img {
  width: 100%;
  height: 100%;
}

.cipd .review .owl-nav .owl-prev.active,
.cipd .review .owl-nav .owl-next.active {
  background-color: #5153FF;
  border: 1px solid transparent;
  background-image: url(/_public/images/cipd/white.svg);
}

.cipd .review .owl-nav .owl-prev {
  transform: rotate(-180deg);
}

.cipd .faq .faq-container,
.cipd .faq .faq-item {
  display: flex;
  flex-direction: column;
}

.cipd .faq .heading {
  margin-bottom: 1rem;
}

.cipd .faq .faq-item {
  margin-top: 1rem;
}

.cipd .faq .faq-item.active .ques {
  border: 1px solid #5153FF;
}

.cipd .faq .faq-item.active .ques::after {
  transform: rotate(180deg);
}

.cipd .faq .ques {
  display: flex;
  justify-content: space-between;
  border: 1px solid #E1E1E1;
  cursor: pointer;
  border-radius: 6px;
  padding: 1rem;
}

.cipd .faq .ques::after {
  content: '';
  background-image: url(/_public/images/cipd/black-arrow.svg);
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
  margin-top: 0.3rem;
  transition: 0.5s all;
}

.cipd .faq .ques h3 {
  width: calc(100% - 25px);
  font-size: 16px;
}

.cipd .faq .ans {
  display: none;
  margin: 1rem 0 1rem 1rem;
  padding-left: 0.7rem;
  border-left: 2px solid #5153FF;
}

.cipd .footer {
  background-image: url(/_public/images/cipd/gradient-bg.png);
  background-size: cover;
  background-position: center;
}

.cipd .footer .footer-container,
.cipd .footer .footer-list,
.cipd .footer .info {
  display: flex;
  flex-direction: column;
}

.cipd .footer .heading {
  margin-bottom: 0;
}

.cipd .footer .footer-item {
  display: flex;
  margin-top: 1.8rem;
  align-items: center;
}

.cipd .footer .footer-item span {
  display: flex;
  border-radius: 10px;
  width: 55px;
  height: 55px;
  background-color: #FFFFFF;
  padding: 1rem;
  margin-right: 1.2rem;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.07);
}

.cipd .footer .footer-item span img {
  width: 100%;
  height: 100%;
}

.cipd .footer .footer-item .info a {
  margin-top: 0.2rem;
  font-size: 14px;
}

@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }

  .cipd .banner .logo-container .active+.menu-links {
    width: 50%;
  }

  .cipd .banner .banner-container {
    align-items: center;
  }

  .cipd .banner .sticky {
    padding: 1rem 2rem !important;
  }

  .cipd .banner .banner-content .buttons .btn-blue {
    font-size: 14px;
  }

  .cipd .link .link-content li:nth-of-type(3n) {
    border-right: 1px solid #DCDCDC;
  }
  .cipd .banner .banner-content span a{
    margin-left: .5rem;
  }

  .cipd .overview .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .cipd .overview .overview-content {
    width: 50%;
  }

  .cipd .overview .overview-info {
    width: 45%;
    margin-top: 0;
  }

  .cipd .course .course-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cipd .course .course-list {
    width: 45%;
  }

  .cipd .course form {
    width: 50%;
    margin: 0;
    position: sticky;
    top: 160px;
  }

  .cipd .method .method-container {
    transition: 0.8s all;
  }

  .cipd .method .method-list {
    align-items: center;
    counter-reset: counter;
  }

  .cipd .method .method-item {
    align-items: center;
  }

  .cipd .method .method-item h3 {
    text-align: center;
    opacity: 0.7;
    transition: 1s all;
    line-height: 1.2;
    cursor: pointer;
  }

  .cipd .method .method-item h3 a {
    display: none;
  }

  .cipd .method .method-item h3 a img {
    transition: 1s all;
  }

  .cipd .method .method-item span {
    display: flex;
    width: 0;
    height: 0;
    transition: 1s all;
    position: relative;
    overflow: hidden;
  }

  .cipd .method .method-item span::before {
    content: counter(counter, decimal-leading-zero) ".";
    counter-increment: counter;
    font-size: 12px;
    color: #FFFFFF;
    transition: 1s all;
  }

  .cipd .method .method-item span img {
    width: 39px;
    height: 33px;
    margin-left: 0.5rem;
  }

  .cipd .method .method-item.active h3 {
    -webkit-text-stroke: 1px #FFFFFF;
    color: transparent;
    opacity: 1;
  }

  .cipd .method .method-item.active h3 a {
    display: flex;
    margin: 0.5rem 0 0 1rem;
  }

  .cipd .method .method-item.active .show {
    display: flex;
    width: 104px;
    height: 46px;
    background-color: #8887F5;
    border-radius: 5px;
    padding: 0.5rem 1.3rem;
    margin-top: 1.6rem;
  }

  .cipd .career .career-container {
    align-items: center;
  }

  .cipd .career .career-info {
    width: 55%;
  }

  .cipd .stage .stage-list {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .cipd .stage .stage-item {
    width: 47%;
  }

  .cipd .journey .journey-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .cipd .journey .journey-content {
    width: 50%;
    align-items: flex-start;
  }

  .cipd .journey .journey-content .heading h2 {
    text-align: left;
  }

  .cipd .journey .journey-content p {
    text-align: left;
  }

  .cipd .journey .journey-info {
    width: 45%;
    margin-top: 0;
  }

  .cipd .choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .choose .choose-item {
    width: 32%;
  }

  .cipd .level .level-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .level .level-item {
    width: 31%;
  }

  .cipd .level .level-info {
    background-image: url(/_public/images/cipd/laptop.png);
    background-size: 100% 100%;
    padding: 2.2rem 6rem 3rem 6rem;
  }

  .cipd .level .level-info span {
    background-image: url(/_public/images/cipd/women.png);
    background-size: 42px 167px;
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding: 1rem 1.5rem 1rem 5rem;
    margin-top: 1rem;
  }

  .cipd .level .info-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .level .info-list p {
    width: 31.8%;
    flex-direction: row;
    text-align: left;
    border-radius: 50px;
    padding: 0.5rem;
  }

  .cipd .level .info-list p:last-child {
    width: 31.8%;
    margin-top: 0;
  }

  .cipd .level .info-list p .stat-number {
    margin: 0 0.5rem 0 0;
  }

  .cipd .pursue .pursue-container {
    align-items: center;
  }

  .cipd .faq .faq-item.active .ques::before {
    background-image: url(/_public/images/cipd/ques-blue.svg), linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
    background-size: 18px 18px, 100% 100%;
    background-color: transparent;
  }

  .cipd .faq .ques {
    padding: 0.4rem 1.1rem 0.4rem 0.4rem;
  }

  .cipd .faq .ques::before {
    content: '';
    background-color: #F5F5F5;
    border-radius: 6px 0px 0px 6px;
    background-image: url(/_public/images/cipd/ques-black.svg);
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    width: 17px;
    height: 28px;
    padding: 0.5rem;
  }

  .cipd .faq .ques::after {
    margin-top: 0.8rem;
  }

  .cipd .faq .ques h3 {
    align-self: center;
    width: calc(100% - 80px);
  }

  .cipd .faq .ans {
    margin-left: 3.5rem;
  }

  .cipd .footer .footer-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .footer .footer-item {
    width: 48%;
  }
}

@media (min-width : 1024px) {

  p,
  li {
    line-height: 1.8;
  }

  .cipd .heading h2 {
    font-size: 28px;
  }

  .cipd .buttons .btn-blue,
  .cipd .buttons .btn-transparent {
    font-size: 16px;
  }

  .cipd .banner .logo-container {
    padding-bottom: 0;
    border-bottom: none;
  }

  .cipd .banner .logo-container .menu,
  .cipd .banner .logo-container .menu-toggle {
    display: none;
  }

  .cipd .banner .logo-container .menu-links {
    position: relative;
    width: auto;
    transform: translateX(0);
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .cipd .banner .logo-container .menu-links ul {
    display: flex;
    align-items: center;
  }

  .cipd .banner .logo-container .menu-links .links-li {
    border-bottom: 0;
    padding: 0;
    display: none;
  }

  .cipd .banner .logo-container .menu-links .links-li:after {
    content: '';
    position: absolute;
    background-color: #5153FF;
    height: 0;
    width: 0px;
    right: 0;
    left: 0;
    border-radius: 3px;
    bottom: -8px;
    margin: auto;
    transition: 1s all;
  }

  .cipd .banner .logo-container .menu-links .links-li:hover:after {
    width: 40px;
    height: 4px;
  }

  .cipd .banner .logo-container .menu-links .links-li:last-child {
    display: flex;
    margin: 0;
  }

  .cipd .banner .logo-container .menu-links .links-li:last-child:hover::after {
    content: none;
  }

  .cipd .banner .logo-container .menu-links .links-li .btn-transparent {
    margin-right: 1.5rem;
  }

  .cipd .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 6rem;
  }

  .cipd .banner .banner-content {
    width: 48%;
    align-items: flex-start;
  }

  .cipd .banner .banner-content h1,
  .cipd .banner .banner-content p {
    text-align: left;
  }
  .cipd .banner .banner-content span{
    text-align: start;
  }
  .cipd .banner .banner-content span a{
    margin-left: 0;
  }

  .cipd .banner .banner-content h1 {
    align-items: center;
  }

  .cipd .banner .banner-content h1 span {
    justify-content: flex-start;
    font-size: 60px;
  }

  .cipd .banner .banner-content h1 b {
    font-size: 45px;
  }

  .cipd .banner .banner-content h1 img {
    margin-right: 0.8rem;
    width: 150px;
  }

  .cipd .banner .banner-info {
    width: 45%;
    margin-top: 0;
  }

  .cipd .link {
    display: flex;
  }

  .cipd .link .link-content {
    display: flex;
    background-color: #FFFFFF;
    z-index: 10;
    width: 100%;
  }

  .cipd .link .link-content li {
    width: 20%;
    font-weight: 500;
    padding: 1.7rem;
    text-align: center;
    border-right: 1px solid #DCDCDC;
    transition: 1s all;
    cursor: pointer;
    border-bottom: 1px solid #DCDCDC;
    border-top: 1px solid #DCDCDC;
    position: relative;
  }

  .cipd .link .link-content li.active::before {
    content: '';
    border-bottom: 4px solid #5153FF;
    width: 66px;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .cipd .link .link-content li:last-child {
    border-right: none;
  }

  .cipd .overview .chart-overview {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .overview .overview-info .chart-info {
    display: flex;
  }

  .cipd .overview .overview-info .chart-info #myChart {
    width: 180px !important;
    height: 180px !important;
  }

  .cipd .overview .overview-info .info {
    background-size: 255px 127px;
  }

  .cipd .overview .chart-list {
    width: calc(100% - 202px);
  }

  .cipd .course .course-item .info h4 {
    font-size: 16px;
  }

  .cipd .course .form .heading {
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem;
  }

  .cipd .course .form .heading:after {
    content: '';
    min-width: 46px;
    height: 46px;
    background-image: url(/_public/images/cipd/hand.png);
    background-size: 100% 100%;
    margin-left: 0.8rem;
  }

  .cipd .method .heading {
    display: none;
  }

  .cipd .method .method-item {
    margin-top: 3.1rem;
  }

  .cipd .method .method-item h3 {
    font-size: 28px;
  }

  .cipd .method .method-item h3 a {
    width: 27px;
    height: 27px;
  }

  .cipd .method .method-item.active h3 {
    position: relative;
  }

  .cipd .method .method-item.active h3:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -51px;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(#FFFFFF, #FFFFFF);
    background-size: calc(50% - 78px) 2px, calc(50% - 78px) 2px;
    background-repeat: no-repeat;
    background-position: left, right;
    opacity: 0.5;
  }

  .cipd .fact .heading {
    display: none;
  }

  .cipd .fact .fact-item {
    width: 200px;
    margin-top: 0;
  }

  .cipd .fact .fact-item span {
    width: 64px;
    height: 64px;
    z-index: 1;
  }

  .cipd .fact .fact-item .count {
    position: relative;
  }

  .cipd .fact .fact-item .count::before {
    content: '';
    position: absolute;
    width: 93px;
    height: 80px;
    background-image: url(/_public/images/cipd/curve.png);
    background-size: 100% 100%;
    right: -38px;
    bottom: -28px;
  }

  .cipd .fact .fact-item .count strong {
    font-size: 29px;
  }

  .cipd .fact .fact-item p {
    font-size: 14px;
    margin-top: 2rem;
  }

  .cipd .career .career-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .career .career-content {
    width: 52%;
    align-items: flex-start;
  }

  .cipd .career .career-content .heading h2 {
    text-align: left;
  }

  .cipd .career .career-content p {
    text-align: left;
  }

  .cipd .career .career-info {
    margin-top: 0;
    width: 44%;
  }

  .cipd .stage {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .cipd .stage .stage-list {
    border-bottom: 1px solid #DADADA;
    padding-bottom: 0.8rem;
  }

  .cipd .stage .stage-item {
    width: 23%;
    padding-bottom: 1rem;
    border-right: 1px solid #DADADA;
    padding: 0 2rem 1rem 0;
  }

  .cipd .stage .stage-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .cipd .journey .journey-container {
    align-items: center;
  }

  .cipd .journey .journey-content {
    width: 56%;
  }

  .cipd .journey .journey-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cipd .journey .journey-content ul li {
    width: 47%;
  }

  .cipd .journey .journey-info {
    width: 38%;
    position: static;
  }

  .cipd .choose .heading {
    width: 50%;
    margin: 0 auto;
  }

  .cipd .choose .choose-list {
    background-image: url(/_public/images/cipd/layer.png);
    background-size: 865px 89px;
    background-repeat: no-repeat;
    background-position: top 39px center;
  }

  .cipd .choose .choose-item {
    margin-top: 3.7rem;
  }

  .cipd .choose .choose-item h3 {
    font-size: 16px;
  }

  .cipd .level .level-container {
    padding: 3rem;
  }

  .cipd .level .level-item {
    margin-top: 2rem;
  }

  .cipd .level .level-item p {
    line-height: 1.6;
  }

  .cipd .level .level-info {
    width: 740px;
    margin: 2rem auto 0;
    padding: 3rem 7rem 3rem 6.8rem;
  }

  .cipd .level .level-info span {
    background-size: 47px 194px;
    margin-top: 1.5rem;
  }

  .cipd .pursue .pursue-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .cipd .pursue .pursue-content {
    width: 47%;
    align-items: flex-start;
  }

  .cipd .pursue .pursue-content .heading h2 {
    text-align: left;
  }

  .cipd .pursue .pursue-content p {
    text-align: left;
  }

  .cipd .pursue .pursue-info {
    margin-top: 0;
    width: 48%;
  }

  .cipd .review {
    padding-top: 4rem;
    position: relative;
  }

  .cipd .review .heading h2 {
    font-size: 100px;
    color: #F5F5F5;
    position: absolute;
    top: 0;
  }

  .cipd .review .review-list {
    width: 65%;
    margin: 0 auto;
  }

  .cipd .review .review-item {
    margin-top: 6rem;
  }

  .cipd .review .review-item span {
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .cipd .review .review-item span::before,
  .cipd .review .review-item span::after {
    content: '';
    position: absolute;
    z-index: -1;
  }

  .cipd .review .review-item span::before {
    width: 339px;
    height: 339px;
    background-image: linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
    background-size: 100% 70%;
    background-repeat: no-repeat;
    border-radius: 100%;
    transform: rotate(-25deg);
  }

  .cipd .review .review-item span::after {
    width: 353px;
    height: 353px;
    background-image: url(/_public/images/cipd/pole-star.png);
    background-size: 100% 100%;
    animation: swing 10s linear infinite;
  }

  .cipd .review .owl-nav {
    position: absolute;
    width: 100%;
    top: 34%;
    margin-top: 0;
  }

  .cipd .faq .faq-container {
    width: 77%;
    margin: auto;
  }

  .cipd .footer .heading {
    width: 68%;
  }

  .cipd .footer .footer-list {
    width: 68%;
  }

  .cipd .footer .footer-container {
    background-image: url(/_public/images/cipd/support.png);
    background-size: 240px 211px;
    background-repeat: no-repeat;
    background-position: right center;
  }

  .cipd .footer .footer-item {
    width: auto;
  }
}

@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }

  section {
    padding: 4rem 0rem;
  }

  .cipd .heading h2 {
    font-size: 34px;
  }

  .cipd .banner {
    padding: 1.2rem 0 6rem;
    background-size: 100% 100%;
  }

  .cipd .banner .sticky {
    padding: 1rem 0 !important;
  }

  .cipd .banner .logo-container .tka-logo {
    min-width: 267px;
  }

  .cipd .link .link-content {
    width: 1200px;
    margin: auto;
  }

  .cipd .overview .overview-info {
    position: relative;
    width: 36%;
    left: 6%;
  }

  .cipd .overview .overview-info .info {
    position: absolute;
    width: 280px;
    left: -15%;
    bottom: -10%;
    margin-top: 0;
  }

  .cipd .overview .overview-info .info::before {
    content: '';
    background-image: url(/_public/images/cipd/dotted-line.png);
    background-size: 100% 100%;
    position: absolute;
    width: 10px;
    height: 82px;
    top: -70px;
    right: 38%;
  }

  .cipd .overview .overview-info .info b {
    font-size: 30px;
  }

  .cipd .overview .overview-info .info strong {
    font-size: 18px;
  }

  .cipd .course {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cipd .course .course-info {
    margin-top: 5rem;
  }

  .cipd .course .course-list {
    width: 55%;
  }

  .cipd .course .course-item {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .cipd .course .course-item span {
    margin-bottom: 0;
  }

  .cipd .course .course-item .info {
    flex-flow: wrap;
    width: calc(100% - 360px);
  }

  .cipd .course .course-item .info h4 {
    width: 100%;
  }

  .cipd .course .course-item .info p:nth-of-type(1) {
    margin: 0 2rem 0 0;
  }

  .cipd .course .course-item .buttons {
    margin-top: 0;
  }

  .cipd .course form {
    width: 40%;
  }

  .cipd .course form .heading h2 {
    font-size: 33px;
  }

  .cipd .method {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .cipd .method .method-item h3 {
    font-size: 35px;
  }

  .cipd .fact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cipd .fact .fact-list {
    width: 78%;
    margin: auto;
  }

  .cipd .stage .heading {
    margin-bottom: 1.8rem;
  }

  .cipd .stage .stage-item b {
    font-size: 18px;
  }

  .cipd .stage .stage-item p {
    font-size: 14px;
  }

  .cipd .choose .choose-list {
    width: 85%;
    margin: 0 auto;
    background-size: 976px 89px;
  }

  .cipd .choose .choose-item {
    width: 26%;
  }

  .cipd .level {
    overflow: hidden;
    padding-top: 7rem;
  }

  .cipd .level .level-container {
    padding: 3.5rem 0 5.2rem 2.2rem;
    width: 87%;
    position: relative;
  }

  .cipd .level .level-content {
    width: 60%;
    position: relative;
  }

  .cipd .level .level-content::before {
    content: '';
    background-image: url(/_public/images/cipd/elements.png);
    background-size: 100% 100%;
    width: 59px;
    height: 71px;
    position: absolute;
    right: 60px;
    top: -20px;
    animation: flash 3s linear infinite;
  }

  .cipd .level .level-content::after {
    content: '';
    background-image: url(/_public/images/cipd/circles.png);
    background-size: 100% 100%;
    width: 110px;
    height: 37px;
    position: absolute;
    right: -83px;
    bottom: -58px;
  }

  .cipd .level .level-info {
    position: absolute;
    right: -32.5%;
    bottom: 20%;
    margin-top: 0;
  }

  .cipd .level .info-list p {
    font-size: 12px;
  }

  .cipd .pursue .pursue-info .heading h2 {
    font-size: 30px;
  }

  .cipd .review .heading h2 {
    font-size: 130px;
  }

  .cipd .footer .footer-list {
    width: 50%;
  }
}

@media (min-width : 1500px) {}