@import url('https://fonts.googleapis.com/css?family=Roboto&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;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  margin-left: 0;
  border: 1px solid #707070;
}
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: #B8B8B8;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Roboto';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #030303;
  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: #030303;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.onenote .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.onenote .buttons .btn-orange,
.onenote .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: 0;
  min-width: 160px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: 1s all;
  z-index: 1;
  overflow: hidden;
}
.onenote .buttons .btn-orange::before,
.onenote .buttons .btn-white::before,
.onenote .buttons .btn-orange::after,
.onenote .buttons .btn-white::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 40px solid #7A1BAC;
  border-bottom: 40px solid #7A1BAC;
  transition: 1s ease-in-out;
  z-index: -1;
}
.onenote .buttons .btn-orange::before,
.onenote .buttons .btn-white::before {
  border-right: 34px solid transparent;
  transform: translateX(-100%);
}
.onenote .buttons .btn-orange::after,
.onenote .buttons .btn-white::after {
  border-left: 34px solid transparent;
  transform: translateX(100%);
}
.onenote .buttons .btn-orange:hover,
.onenote .buttons .btn-white:hover {
  box-shadow: 0 0 5px #FFFFFF;
}
.onenote .buttons .btn-orange:hover::before,
.onenote .buttons .btn-white:hover::before {
  transform: translateX(-18%);
}
.onenote .buttons .btn-orange:hover::after,
.onenote .buttons .btn-white:hover::after {
  transform: translateX(18%);
}
.onenote .buttons .btn-orange img,
.onenote .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.onenote .buttons .btn-orange {
  background-color: #FFBB00;
  color: #FFFFFF;
}
.onenote .buttons .btn-white {
  background-color: #FFFFFF;
}
.onenote .buttons .btn-white::before,
.onenote .buttons .btn-white::after {
  border-top: 40px solid #B8B8B8;
  border-bottom: 40px solid #B8B8B8;
}
.onenote .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.onenote .heading p {
  margin-top: 1rem;
}
.onenote .heading h2 {
  width: 100%;
}
.onenote .center-heading {
  justify-content: center;
  align-items: center;
}
.onenote .center-heading h2,
.onenote .center-heading p {
  text-align: center;
}
.onenote .white-heading h2,
.onenote .white-heading p {
  color: #FFFFFF;
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes blink {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes circleMover {
  from {
    transform: rotate(0deg) translateX(13px) translateY(5px);
  }
  to {
    transform: rotate(360deg) translateX(13px) translateY(5px);
  }
}
.onenote .banner {
  padding-top: 1.5rem;
  flex-direction: column;
  background-image: linear-gradient(335deg, #c061de 0%, #7A1BAC 40%);
}
.onenote .banner .logo-container,
.onenote .banner .tka-logo,
.onenote .banner .menu,
.onenote .banner .menu-toggle {
  display: flex;
}
.onenote .banner .logo-container {
  height: 100%;
}
.onenote .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border: 1px solid #FFFFFF;
  height: auto;
}
.onenote .banner .tka-logo {
  max-width: 185px;
}
.onenote .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.onenote .banner .menu {
  margin-left: auto;
}
.onenote .banner .menu img {
  width: 22px;
  height: 23px;
}
.onenote .banner .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #FFFFFF;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.onenote .banner .menu-toggle {
  font-weight: 500;
}
.onenote .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.onenote .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #000000;
  font-weight: 500;
}
.onenote .banner ul .links-li:first-child {
  padding-top: 0;
}
.onenote .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.onenote .banner ul .links-li:last-child {
  display: none;
}
.onenote .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.onenote .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.onenote .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  background-color: #7A1BAC;
  box-shadow: 0 0 4px #FFFFFF;
}
.onenote .banner .sticky .container {
  border: 1px solid transparent;
}
.onenote .banner .sticky-down {
  top: -100px;
}
.onenote .banner .container {
  height: 100%;
}
.onenote .banner .banner-container,
.onenote .banner .banner-content,
.onenote .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.onenote .banner .banner-container {
  padding-top: 2rem;
}
.onenote .banner .banner-content h1,
.onenote .banner .banner-content p,
.onenote .banner .banner-content h3 {
  color: #FFFFFF;
}
.onenote .banner .banner-content h1 {
  font-size: 23px;
}
.onenote .banner .banner-content h1 img {
  width: 35px;
  height: 35px;
  margin-right: 0.5rem;
  transform: translateY(10px);
}
.onenote .banner .banner-content h3 {
  margin: 1rem 0;
  color: #FFBB00;
  font-size: 16px;
}
.onenote .banner .banner-info {
  margin-top: 2rem;
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 8px;
  height: 100%;
}
.onenote .banner .banner-info h3 {
  text-align: center;
}
.onenote .banner .banner-info span {
  display: flex;
  height: 100%;
}
.onenote .banner .banner-info span img {
  width: 100%;
  height: 100%;
}
.onenote .overview .overview-container,
.onenote .overview .overview-content,
.onenote .overview .course-content {
  display: flex;
  flex-direction: column;
}
.onenote .overview .heading h2 {
  text-align: center;
}
.onenote .overview .overview-content {
  align-items: center;
}
.onenote .overview .overview-content p {
  text-align: center;
}
.onenote .overview .overview-content p:nth-last-child(2) {
  margin-top: 0.5rem;
}
.onenote .overview .course-content {
  margin-top: 3rem;
  padding: 3.5rem 2rem;
  background-image: linear-gradient(335deg, #c061de 0%, #7A1BAC 40%);
  align-items: center;
  border-radius: 148px 148px 3px 3px;
  width: 272px;
  align-self: center;
  position: relative;
}
.onenote .overview .course-content::before {
  content: '';
  position: absolute;
  width: calc(100% + 17px);
  height: 98%;
  border: 1px solid #707070;
  border-radius: 156px 156px 3px 3px;
  left: -9px;
  top: -11px;
  z-index: -1;
}
.onenote .overview .course-content span {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 2rem;
  background-color: #F5F5F5;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.onenote .overview .course-content span::before {
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  background-image: url("/_public/images/onenote/circle.svg");
  background-size: 100% 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  animation: rotate 12s linear infinite;
}
.onenote .overview .course-content span img {
  width: 100%;
  height: 100%;
}
.onenote .overview .course-content h3,
.onenote .overview .course-content p {
  color: #FFFFFF;
  text-align: center;
}
.onenote .overview .course-content h3 {
  margin: 0.8rem 0 1.2rem;
  font-size: 18px;
  width: 100%;
}
.onenote .outline {
  background-color: #7A1BAC;
}
.onenote .outline .form,
.onenote .outline .input-list,
.onenote .outline .outline-container,
.onenote .outline .outline-content,
.onenote .outline .toggle-item {
  display: flex;
  flex-direction: column;
}
.onenote .outline .heading h2 {
  text-align: center;
}
.onenote .outline .outline-content .heading {
  margin-bottom: 1.1rem;
}
.onenote .outline .toggle-item {
  margin-top: 1.2rem;
}
.onenote .outline .toggle-item:first-child {
  margin-top: 0;
}
.onenote .outline .toggle-item .ques {
  display: flex;
  padding: 0.7rem;
  border: 1px solid #FFFFFF;
  justify-content: space-between;
  cursor: pointer;
}
.onenote .outline .toggle-item .ques h3 {
  width: calc(100% - 35px);
  color: #FFFFFF;
  font-size: 15px;
}
.onenote .outline .toggle-item .ques span {
  display: flex;
  height: 18px;
  width: 18px;
  padding: 0.2rem;
  border-radius: 2px;
  background-color: #FFFFFF;
}
.onenote .outline .toggle-item .ques span img {
  height: 100%;
  width: 100%;
}
.onenote .outline .toggle-item .ans {
  display: none;
  padding: 1.3rem 1.5rem 0;
}
.onenote .outline .toggle-item .ans li,
.onenote .outline .toggle-item .ans p {
  font-size: 13px;
  color: #FFFFFF;
}
.onenote .outline .toggle-item .ans ul {
  border-left: 2px solid #FFFFFF;
  padding-left: 1rem;
}
.onenote .outline .toggle-item .ans ul li {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  position: relative;
}
.onenote .outline .toggle-item .ans ul li:first-child {
  margin-top: 0;
}
.onenote .outline .toggle-item .ans ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  height: 9px;
  width: 9px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transform: rotate(45deg);
}
.onenote .outline .toggle-item.active .ques {
  background-color: #FFFFFF;
}
.onenote .outline .toggle-item.active .ques h3 {
  color: #030303;
}
.onenote .outline .toggle-item.active .ques span {
  background-color: #F5F5F5;
}
.onenote .outline .toggle-item.active .ques span img {
  transform: rotate(180deg);
}
.onenote .outline .form {
  margin-bottom: 0;
  background-color: #FFFFFF;
  padding: 1.2rem;
  margin-top: 2rem;
  border-radius: 40px 0 40px 40px;
}
.onenote .outline .form .heading {
  margin-bottom: 0.8rem;
}
.onenote .outline .form .input-container {
  display: flex;
  margin-bottom: 0.6rem;
  justify-content: space-between;
  background-color: #F5F5F5;
  border: 1px solid #B8B8B8;
  padding: 0.6rem;
}
.onenote .outline .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.onenote .outline .form .input-container span img {
  height: 100%;
  width: 100%;
}
.onenote .outline .form .input-container span .red {
  display: none;
}
.onenote .outline .form .input-container input,
.onenote .outline .form .input-container textarea {
  width: 85%;
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 13px;
}
.onenote .outline .form .input-container textarea {
  height: 34px;
  resize: none;
  overflow: auto;
}
.onenote .outline .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #B8B8B8;
}
.onenote .outline .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #B8B8B8;
}
.onenote .outline .form .input-container ::placeholder {
  color: #B8B8B8;
}
.onenote .outline .form .input-error {
  border: 1px solid #ff0000;
}
.onenote .outline .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.onenote .outline .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.onenote .outline .form .input-error ::placeholder {
  color: #ff0000;
}
.onenote .outline .form .input-error span .white {
  display: none;
}
.onenote .outline .form .input-error span .red {
  display: flex;
}
.onenote .outline .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.onenote .outline .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.onenote .outline .form .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
}
.onenote .outline .form .form-consent p {
  font-size: 11px;
}
.onenote .outline .form .form-consent a {
  font-weight: 600;
  color: #FFBB00;
}
.onenote .outline .form .consent-error,
.onenote .outline .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.onenote .outline .form .consent-error p,
.onenote .outline .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.onenote .outline .form .buttons {
  align-self: center;
}
.onenote .outline .form .buttons .btn-orange {
  min-width: 100px;
}
.onenote .outline .form .buttons .btn-orange img {
  height: 16px;
  width: 16px;
}
.onenote .course {
  background-color: #F5F5F5;
}
.onenote .course .course-container,
.onenote .course .course-item,
.onenote .course .course-list {
  display: flex;
  flex-direction: column;
}
.onenote .course .heading {
  margin-bottom: 0;
}
.onenote .course .heading p {
  margin: 0 0 0.2rem;
}
.onenote .course .heading p strong {
  color: #7A1BAC;
}
.onenote .course .course-item {
  margin-top: 2rem;
  padding: 1.2rem 2rem;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  width: 272px;
  border: 4px solid #FFFFFF;
  border-radius: 5px;
  align-self: center;
  z-index: 1;
}
.onenote .course .course-item span {
  display: flex;
  height: 40px;
  width: 51px;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.9rem;
  position: relative;
}
.onenote .course .course-item span::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 4px;
  background-color: #B786BC;
  height: 47px;
  width: 50px;
  border-radius: 12px;
  z-index: -1;
}
.onenote .course .course-item span img {
  height: 100%;
  width: 100%;
}
.onenote .course .course-item h3,
.onenote .course .course-item p {
  text-align: center;
}
.onenote .course .course-item h3 {
  font-size: 15px;
  margin: 0.6rem 0 0.4rem;
}
.onenote .course .course-item p {
  color: #B8B8B8;
  font-size: 13px;
  line-height: 1.5;
}
.onenote .course .course-item .buttons {
  margin-top: 1rem;
}
.onenote .course .course-item .buttons .btn-orange {
  min-width: 130px;
}
.onenote .course .course-item .buttons .btn-orange img {
  height: 17px;
  width: 17px;
}
.onenote .course .course-item .buttons .btn-orange img:last-child {
  display: none;
}
.onenote .course .course-item:hover {
  background-image: linear-gradient(335deg, #c061de 0%, #7A1BAC 40%);
}
.onenote .course .course-item:hover span::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 6px;
  height: 52px;
  width: 51px;
  background-image: url("/_public/images/onenote/square.png");
  background-size: 100% 100%;
}
.onenote .course .course-item:hover h3,
.onenote .course .course-item:hover p {
  color: #FFFFFF;
}
.onenote .course .course-item:hover .buttons .btn-orange {
  background-color: #FFFFFF;
  color: #030303;
}
.onenote .course .course-item:hover .buttons .btn-orange img:first-child {
  display: none;
}
.onenote .course .course-item:hover .buttons .btn-orange img:last-child {
  display: flex;
}
.onenote .method .method-container,
.onenote .method .method-list,
.onenote .method .method-item,
.onenote .method .method-content,
.onenote .method .method-head,
.onenote .method .method-img {
  display: flex;
  flex-direction: column;
}
.onenote .method .method-container .heading {
  margin-bottom: 1rem;
}
.onenote .method .method-item {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}
.onenote .method .method-item:hover {
  background-color: #7A1BAC;
  transition: 1s all;
}
.onenote .method .method-item:hover .image img:first-child,
.onenote .method .method-item:hover .arrow img:first-child {
  display: none;
}
.onenote .method .method-item:hover .image img:last-child,
.onenote .method .method-item:hover .arrow img:last-child {
  display: flex;
}
.onenote .method .method-item:hover h3,
.onenote .method .method-item:hover p,
.onenote .method .method-item:hover .enquire {
  color: #FFFFFF;
}
.onenote .method .method-item:hover .method-head {
  border-bottom: 1px solid #FFFFFF;
}
.onenote .method .method-item .image img,
.onenote .method .method-item .arrow img {
  width: 100%;
  height: 100%;
}
.onenote .method .method-item .image img:last-child,
.onenote .method .method-item .arrow img:last-child {
  display: none;
}
.onenote .method .method-item .method-head,
.onenote .method .method-item .method-content {
  padding: 1.3rem;
}
.onenote .method .method-item h3,
.onenote .method .method-item .enquire {
  margin-top: 0.7rem;
}
.onenote .method .method-item .method-head {
  border-bottom: 1px solid #FFBB00;
}
.onenote .method .method-item .method-head h3 {
  width: 100%;
  font-size: 16px;
}
.onenote .method .method-item .method-head .image {
  display: flex;
  width: 38px;
  height: 38px;
}
.onenote .method .method-item .method-content .enquire {
  display: flex;
  font-weight: 600;
  align-items: center;
}
.onenote .method .method-item .method-content .enquire .arrow {
  display: flex;
  width: 15px;
  height: 15px;
  margin-left: 0.8rem;
}
.onenote .tool {
  padding-top: 1rem;
}
.onenote .tool .tool-container,
.onenote .tool .tool-content,
.onenote .tool .tool-info {
  display: flex;
  flex-direction: column;
}
.onenote .tool .tool-container {
  align-items: flex-start;
}
.onenote .tool .tool-content {
  width: 100%;
}
.onenote .tool .tool-content ul li {
  margin-top: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
}
.onenote .tool .tool-content ul li:first-child {
  margin-top: 1rem;
}
.onenote .tool .tool-content ul li::before {
  content: '';
  position: absolute;
  background-image: url("/_public/images/onenote/ring.svg");
  background-size: 100% 100%;
  top: 4px;
  left: 0;
  height: 12px;
  width: 12px;
  animation: ring 5s linear infinite;
}
.onenote .tool .tool-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.onenote .tool .tool-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.onenote .tool .tool-info .image img {
  width: 100%;
  height: 100%;
}
.onenote .fact {
  padding: 0 1.5rem;
}
.onenote .fact .fact-list,
.onenote .fact .fact-item,
.onenote .fact .fact-img,
.onenote .fact .fact-count {
  display: flex;
}
.onenote .fact .fact-list {
  background-color: #F5F5F5;
  padding: 2rem;
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.onenote .fact .fact-item {
  flex-direction: column;
  margin-top: 2rem;
  align-self: center;
  align-items: center;
  width: 46%;
}
.onenote .fact .fact-item:nth-child(2),
.onenote .fact .fact-item:nth-child(3) {
  margin-top: 0;
}
.onenote .fact .fact-item .fact-img {
  background-image: url("/_public/images/onenote/polygon.png");
  background-size: 100% 100%;
  height: 65px;
  width: 69px;
  padding: 1rem;
}
.onenote .fact .fact-item .fact-img img {
  width: 100%;
  height: 100%;
}
.onenote .fact .fact-item .fact-count {
  margin: 1.2rem 0 0.7rem;
}
.onenote .fact .fact-item .fact-count h3,
.onenote .fact .fact-item .fact-count span {
  font-size: 30px;
  font-weight: 700;
}
.onenote .fact .fact-item p {
  text-align: center;
  font-weight: 600;
}
.onenote .skill {
  overflow: hidden;
}
.onenote .skill .skill-container,
.onenote .skill .skill-content,
.onenote .skill .skill-img,
.onenote .skill .skill-item,
.onenote .skill .info {
  display: flex;
  flex-direction: column;
}
.onenote .skill .skill-item {
  margin-top: 1.5rem;
}
.onenote .skill .skill-item h4 {
  font-size: 15px;
  margin-bottom: 0.5rem;
}
.onenote .skill .skill-item .bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 22px;
  border: 1px solid #707070;
  border-radius: 20px;
}
.onenote .skill .skill-item .bar span {
  width: 0%;
  background-image: linear-gradient(335deg, #c061de 0%, #7A1BAC 40%);
  height: 21px;
  border-radius: 20px;
  transition: 2s all;
  position: relative;
}
.onenote .skill .skill-item .bar span p {
  width: 34px;
  height: 35px;
  background-image: url("/_public/images/onenote/rect.svg");
  background-size: 100% 100%;
  padding: 0.1rem 0.2rem;
  font-weight: 500;
  color: #FFFFFF;
  position: absolute;
  right: -10px;
  top: -41px;
}
.onenote .skill .skill-img {
  margin-top: 2rem;
}
.onenote .skill .skill-img .info p,
.onenote .skill .skill-img .info h3 {
  text-align: center;
}
.onenote .skill .skill-img .info .progress {
  display: flex;
}
.onenote .skill .skill-img .info .progress img {
  width: 75px;
  height: 75px;
  margin-right: 1rem;
}
.onenote .skill .skill-img .info .progress p {
  background-color: #FFFFFF;
  padding: 1rem;
  font-weight: 600;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  width: 92%;
  margin-left: auto;
}
.onenote .skill .skill-img .info h3 {
  background-color: #7A1BAC;
  padding: 1rem;
  color: #FFFFFF;
  font-size: 15px;
  margin-top: 1rem;
}
.onenote .choose {
  padding-top: 0;
}
.onenote .choose .choose-container,
.onenote .choose .choose-item,
.onenote .choose .choose-list {
  display: flex;
  flex-direction: column;
}
.onenote .choose .heading {
  margin-bottom: 0;
}
.onenote .choose .choose-list {
  padding: 1.5rem;
  background-image: linear-gradient(335deg, #c061de 0%, #7A1BAC 40%);
  margin-top: 2rem;
}
.onenote .choose .choose-item {
  margin-top: 2rem;
}
.onenote .choose .choose-item:first-child {
  margin-top: 0;
}
.onenote .choose .choose-item img {
  height: 47px;
  width: 47px;
}
.onenote .choose .choose-item h3,
.onenote .choose .choose-item p {
  color: #FFFFFF;
}
.onenote .choose .choose-item h3 {
  margin: 1rem 0;
  font-size: 17px;
}
.onenote .feature {
  background-color: #F5F5F5;
}
.onenote .feature .feature-container,
.onenote .feature .feature-content,
.onenote .feature .feature-info {
  display: flex;
  flex-direction: column;
}
.onenote .feature .feature-container {
  align-items: flex-start;
}
.onenote .feature .feature-content {
  width: 100%;
}
.onenote .feature .feature-content ul li {
  margin-top: 0.7rem;
  padding-left: 1.3rem;
  line-height: 1.5;
  position: relative;
}
.onenote .feature .feature-content ul li:first-child {
  margin-top: 0;
}
.onenote .feature .feature-content ul li::before {
  content: '';
  position: absolute;
  background-color: #7A1BAC;
  border-radius: 50px;
  height: 8px;
  width: 8px;
  top: 6px;
  left: 0;
}
.onenote .feature .feature-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.onenote .feature .feature-info .feature-img {
  display: flex;
  height: 100%;
}
.onenote .feature .feature-info .feature-img img {
  width: 100%;
  height: 100%;
}
.onenote .faq .faq-container,
.onenote .faq .faq-content,
.onenote .faq .review-content,
.onenote .faq .review-list,
.onenote .faq .review-info,
.onenote .faq .faq-list,
.onenote .faq .toggle-item {
  display: flex;
  flex-direction: column;
}
.onenote .faq .review-content .heading {
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.onenote .faq .review-item {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  width: 93%;
  margin: 1.5rem auto;
}
.onenote .faq .review-item p {
  border-bottom: 1px solid #707070;
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
}
.onenote .faq .author {
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 0.6rem;
}
.onenote .faq .author img {
  height: 100%;
}
.onenote .faq .review-info {
  width: calc(100% - 80px);
}
.onenote .faq .review-info h3 {
  font-size: 16px;
}
.onenote .faq .review-info img {
  width: 86px;
  height: 18px;
  margin-top: 0.3rem;
}
.onenote .faq .owl-dots {
  display: flex;
  padding-left: 1rem;
}
.onenote .faq .owl-dots .owl-dot {
  display: flex;
  width: 12px;
  height: 12px;
  background-color: #B8B8B8;
  border-radius: 20px;
  margin-right: 0.5rem;
}
.onenote .faq .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.onenote .faq .owl-dots .owl-dot.active {
  background-color: #FFBB00;
}
.onenote .faq .faq-content {
  margin-top: 2rem;
}
.onenote .faq .toggle-item {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 1.3rem;
}
.onenote .faq .toggle-item .ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}
.onenote .faq .toggle-item .ques span {
  display: flex;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
  transition: 0.8s all;
}
.onenote .faq .toggle-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 20px);
}
.onenote .faq .toggle-item .ans {
  display: none;
  padding: 1rem;
  background-color: #F5F5F5;
}
.onenote .faq .toggle-item .ans p,
.onenote .faq .toggle-item .ans li {
  font-size: 13px;
}
.onenote .faq .toggle-item .ans ul {
  padding-left: 1rem;
}
.onenote .faq .toggle-item .ans ul li {
  margin-top: 0.5rem;
  list-style: disc;
}
.onenote .faq .toggle-item.active {
  box-shadow: none;
}
.onenote .faq .toggle-item.active .ques {
  background-color: #7A1BAC;
  background-image: url("/_public/images/onenote/faq-bg.png");
  background-size: 65% 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.onenote .faq .toggle-item.active .ques span {
  transform: rotate(-90deg);
  border-left: 10px solid #FFFFFF;
}
.onenote .faq .toggle-item.active .ques h3 {
  color: #FFFFFF;
}
.onenote .footer {
  background-image: linear-gradient(335deg, #c061de 0%, #7A1BAC 40%);
}
.onenote .footer .footer-container,
.onenote .footer .info {
  display: flex;
  flex-direction: column;
}
.onenote .footer .heading {
  margin-bottom: 0;
}
.onenote .footer .footer-container {
  background-color: #FFFFFF;
  padding: 1rem;
}
.onenote .footer .footer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.onenote .footer .footer-item span {
  display: flex;
  background-color: #FFBB00;
  height: 42px;
  width: 46px;
  border-radius: 14px;
  padding: 0.7rem;
}
.onenote .footer .footer-item span img {
  height: 100%;
  width: 100%;
}
.onenote .footer .footer-item .info {
  width: calc(100% - 58px);
}
.onenote .footer .footer-item .info h3 {
  font-size: 14px;
}
.onenote .footer .footer-item .info a {
  font-size: 12px;
  font-weight: 500;
  margin-top: 0.3rem;
}
.onenote .footer .buttons {
  margin-top: 2rem;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .onenote .buttons .btn-orange {
    font-size: 16px;
  }
  .onenote .banner .menu.active + .menu-links {
    width: 50%;
  }
  .onenote .banner .sticky .container {
    padding: 1rem 2rem;
  }
  .onenote .banner .banner-content h1 {
    font-size: 38px;
  }
  .onenote .banner .banner-content h1 img {
    width: 45px;
    height: 45px;
  }
  .onenote .banner .banner-info {
    display: none;
  }
  .onenote .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .onenote .overview .overview-content {
    width: 53%;
    align-items: flex-start;
  }
  .onenote .overview .overview-content p,
  .onenote .overview .overview-content h2 {
    text-align: left;
  }
  .onenote .overview .course-content {
    width: 40%;
    margin-top: 0;
  }
  .onenote .outline .outline-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .onenote .outline .heading h2 {
    text-align: left;
  }
  .onenote .outline .outline-content {
    width: 47%;
  }
  .onenote .outline .outline-list {
    overflow-y: scroll;
    max-height: 506px;
    padding-right: 1.5rem;
  }
  .onenote .outline .form {
    width: 47%;
    margin-top: 0;
    align-self: flex-start;
  }
  .onenote .outline .form .buttons {
    align-self: flex-start;
  }
  .onenote .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .onenote .course .course-item {
    width: 42%;
    margin-right: 2rem;
  }
  .onenote .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .onenote .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .onenote .method .method-item {
    width: 48%;
  }
  .onenote .method .method-item .method-content p {
    min-height: 67px;
  }
  .onenote .tool .tool-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .onenote .tool .tool-content {
    width: 53%;
  }
  .onenote .tool .tool-info {
    width: 40%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .onenote .fact .heading {
    display: none;
  }
  .onenote .fact .fact-item {
    margin-top: 0;
    width: 25%;
  }
  .onenote .choose .choose-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .onenote .choose .heading {
    width: 65%;
  }
  .onenote .choose .buttons {
    width: 30%;
    justify-content: flex-end;
    align-self: flex-end;
    margin-top: 0;
  }
  .onenote .choose .choose-list {
    width: 100%;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 2.5rem 4rem;
  }
  .onenote .choose .choose-item {
    width: 47%;
  }
  .onenote .choose .choose-item:nth-child(2) {
    margin-top: 0;
  }
  .onenote .skill .skill-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .onenote .skill .skill-content {
    width: 48%;
  }
  .onenote .skill .skill-img {
    width: 48%;
    margin-top: 0;
  }
  .onenote .skill .skill-img .info {
    background-color: #F5F5F5;
    padding-top: 1rem;
    background-image: url("/_public/images/onenote/benefit-bg.png");
    background-repeat: no-repeat;
    background-size: 86% 68%;
    background-position: center;
    height: 400px;
    justify-content: space-between;
  }
  .onenote .skill .skill-img .info .progress {
    width: 82%;
    margin: 0 auto;
    position: relative;
  }
  .onenote .skill .skill-img .info .progress img {
    margin-right: 0;
    position: absolute;
    left: -25px;
    top: 0px;
  }
  .onenote .skill .skill-img .info .progress p {
    padding-left: 2rem;
  }
  .onenote .skill .skill-img .info h3 {
    border: 2px solid #FFFFFF;
    margin-top: 0;
  }
  .onenote .feature .feature-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .onenote .feature .feature-info {
    position: sticky;
    margin-top: 0;
    top: 60px;
    width: 43%;
  }
  .onenote .feature .feature-content {
    width: 52%;
  }
  .onenote .faq .faq-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .onenote .faq .faq-content {
    width: 47%;
    margin-top: 0;
  }
  .onenote .faq .review-content {
    width: 48%;
    position: sticky;
    top: 65px;
  }
  .onenote .footer .heading {
    display: none;
  }
  .onenote .footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
    border-radius: 40px;
    padding: 2rem 0.6rem;
  }
  .onenote .footer .footer-item {
    margin-top: 0;
  }
  .onenote .footer .footer-item:nth-child(2) {
    width: 21%;
  }
  .onenote .footer .footer-item:nth-child(3) {
    width: 37%;
  }
  .onenote .footer .buttons {
    margin-top: 0;
    justify-content: flex-end;
    width: 40%;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .onenote .heading h2 {
    padding-left: 2rem;
    position: relative;
    font-size: 28px;
  }
  .onenote .heading h2::before,
  .onenote .heading h2::after {
    content: '';
    position: absolute;
  }
  .onenote .heading h2::before {
    background-color: #7A1BAC;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    top: 10px;
    left: 2px;
    animation: pulse 2s linear infinite;
  }
  .onenote .heading h2::after {
    background-image: url("/_public/images/onenote/heading-circle.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 20px;
    width: 10px;
    top: 5px;
    left: 4px;
    animation: circleMover 5s linear infinite;
  }
  .onenote .center-heading h2::before {
    top: 12px;
    left: 44px;
  }
  .onenote .center-heading h2::after {
    top: 8px;
    left: 47px;
  }
  .onenote .white-heading h2::before {
    background-color: #FFBB00;
  }
  .onenote .banner {
    background-image: url("/_public/images/onenote/banner-bg.png");
    background-size: cover;
    background-position: center;
  }
  .onenote .banner .tka-logo {
    max-width: 230px;
  }
  .onenote .banner .menu-links {
    width: 75%;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .onenote .banner .menu {
    display: none;
  }
  .onenote .banner .menu-toggle {
    display: none;
  }
  .onenote .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .onenote .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.8rem;
    padding: 0;
    color: #FFFFFF;
    font-size: 15px;
    position: relative;
    font-weight: 600;
    z-index: 1;
  }
  .onenote .banner ul .links-li::before,
  .onenote .banner ul .links-li::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    transition: 1s all;
  }
  .onenote .banner ul .links-li::before {
    bottom: -3px;
    right: -7px;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
  }
  .onenote .banner ul .links-li::after {
    top: -2px;
    left: -5px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
  }
  .onenote .banner ul .links-li:hover::before,
  .onenote .banner ul .links-li:hover::after {
    width: 13px;
    height: 13px;
    border-color: #FFBB00;
  }
  .onenote .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .onenote .banner ul .links-li:last-child::before,
  .onenote .banner ul .links-li:last-child::after {
    content: none;
  }
  .onenote .banner ul .buttons .btn-orange {
    min-width: 146px;
  }
  .onenote .banner ul .buttons .btn-white {
    min-width: 40px;
    margin-right: 1.5rem;
    padding: 0.6rem;
  }
  .onenote .banner ul .buttons .btn-white img {
    margin-right: 0;
    width: 18px;
    height: 18px;
  }
  .onenote .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .onenote .banner .banner-content {
    width: 48%;
  }
  .onenote .banner .banner-info {
    display: flex;
    width: 45%;
    margin-top: 0;
  }
  .onenote .banner .banner-info span {
    width: 80%;
    margin: auto;
  }
  .onenote .overview .overview-content {
    width: 60%;
  }
  .onenote .overview .course-content {
    width: 32%;
  }
  .onenote .outline {
    background-image: url("/_public/images/onenote/outline-bg.png");
    background-size: 100% 100%;
    background-color: transparent;
  }
  .onenote .outline .outline-list {
    max-height: 390px;
  }
  .onenote .outline .form {
    padding: 1.3rem 2.7rem;
  }
  .onenote .outline .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .onenote .outline .form .input-container {
    width: 49%;
  }
  .onenote .outline .form .input-container:last-child {
    width: 100%;
  }
  .onenote .course .course-item {
    width: 30%;
  }
  .onenote .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .onenote .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .onenote .method .method-item {
    width: 23%;
  }
  .onenote .method .method-item .method-head h3 {
    min-height: 48px;
  }
  .onenote .method .method-item .method-content p {
    min-height: 125px;
  }
  .onenote .tool .tool-content,
  .onenote .tool .tool-info {
    width: 46%;
  }
  .onenote .tool .tool-info {
    position: static;
    top: 0;
  }
  .onenote .fact .fact-list {
    padding: 4rem;
  }
  .onenote .skill .skill-img .info {
    background-size: 86% 86%;
  }
  .onenote .skill .skill-img .info .progress {
    width: 72%;
  }
  .onenote .skill .skill-img .info .progress img {
    top: -3px;
    width: 95px;
    height: 95px;
  }
  .onenote .skill .skill-img .info h3 {
    width: 62%;
    margin-left: auto;
  }
  .onenote .feature .feature-info {
    position: static;
    top: 0;
  }
  .onenote .faq .faq-content {
    width: 50%;
  }
  .onenote .faq .review-content {
    width: 46%;
  }
  .onenote .footer {
    position: relative;
  }
  .onenote .footer::after,
  .onenote .footer::before {
    content: '';
    position: absolute;
    height: 120px;
    width: 245px;
    background-image: url("/_public/images/onenote/footer-bg.png");
    background-size: 100% 100%;
    animation: blink 5s linear infinite;
  }
  .onenote .footer::before {
    top: 0;
    left: 0;
  }
  .onenote .footer::after {
    bottom: 0;
    right: 0;
  }
  .onenote .footer .footer-container {
    padding: 3.5rem;
    border-radius: 50px;
  }
  .onenote .footer .footer-item:nth-child(2) {
    width: 22%;
  }
  .onenote .footer .footer-item:nth-child(3) {
    width: 35%;
  }
  .onenote .footer .footer-item .info h3 {
    font-size: 15px;
  }
  .onenote .footer .footer-item .info a {
    font-size: 14px;
  }
  .onenote .footer .buttons {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .onenote .heading h2 {
    font-size: 32px;
  }
  .onenote .banner .sticky .container {
    padding: 1rem 0;
  }
  .onenote .banner .banner-container {
    padding-top: 4rem;
  }
  .onenote .banner .banner-content h1 {
    font-size: 62px;
  }
  .onenote .banner .banner-content h1 img {
    width: 60px;
    height: 60px;
  }
  .onenote .overview .course-content {
    width: 27%;
  }
  .onenote .outline .outline-list {
    max-height: 411px;
  }
  .onenote .course .course-item {
    width: 23%;
  }
  .onenote .course .course-item:nth-child(3n) {
    margin-right: 2rem;
  }
  .onenote .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .onenote .method .method-container {
    width: 95%;
    margin: auto;
  }
  .onenote .method .method-item .method-head h3 {
    min-height: auto;
  }
  .onenote .method .method-item .method-content p {
    min-height: 100px;
  }
  .onenote .tool .center-heading h2::before {
    top: 10px;
    left: 2px;
  }
  .onenote .tool .center-heading h2::after {
    top: 5px;
    left: 4px;
  }
  .onenote .tool .tool-info .image {
    width: 72%;
    align-self: center;
  }
  .onenote .skill .skill-img {
    width: 44%;
  }
  .onenote .choose .choose-item {
    margin-top: 0;
    width: 24%;
  }
  .onenote .feature .center-heading h2::before {
    top: 10px;
    left: 2px;
  }
  .onenote .feature .center-heading h2::after {
    top: 5px;
    left: 4px;
  }
  .onenote .footer .footer-item:nth-child(3) {
    width: 26%;
  }
}
