@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%;
  font-size: 10px;
  text-align: center;
  color: #FFFFFF;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 13px;
  width: 13px;
  min-width: 13px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #FFFFFF;
}
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: #44318D;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  width: 100%;
  font-weight: 500;
}
ul,
li,
p {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: #171717;
  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;
}
.python .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.python .buttons .btn-white,
.python .buttons .btn-yellow {
  display: flex;
  font-size: 14px;
  padding: 12px 18px;
  transition: 1s all;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
}
.python .buttons .btn-white img,
.python .buttons .btn-yellow img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.python .buttons .btn-white::before,
.python .buttons .btn-yellow::before {
  content: '';
  position: absolute;
  left: 45%;
  bottom: 0px;
  right: 45%;
  height: 50%;
  border-radius: 6px;
  opacity: 0;
  z-index: -1;
  transition: all 500ms linear;
}
.python .buttons .btn-white:hover,
.python .buttons .btn-yellow:hover {
  border-color: #171717;
}
.python .buttons .btn-white:hover::before,
.python .buttons .btn-yellow:hover::before {
  opacity: 1;
  left: 0;
  height: 100%;
  right: 0;
}
.python .buttons .btn-yellow {
  background-color: #FFD000;
}
.python .buttons .btn-yellow::before {
  background-color: #F6F6F6;
}
.python .buttons .btn-white {
  background-color: #FFFFFF;
}
.python .buttons .btn-white::before {
  background-color: #FFD000;
}
.python .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.python .heading p {
  margin-top: 1rem;
}
.python .heading h2 {
  width: 100%;
  font-size: 22px;
}
.python .center-heading {
  justify-content: center;
  align-items: center;
}
.python .center-heading h2,
.python .center-heading p {
  text-align: center;
}
.python .white-heading h2,
.python .white-heading p {
  color: #FFFFFF;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.python .banner {
  flex-direction: column;
  background-color: #44318D;
  padding-top: 1.5rem;
}
.python .banner .logo-container,
.python .banner .tka-logo,
.python .banner .menu-toggle,
.python .banner .menu {
  display: flex;
}
.python .banner .container {
  height: 100%;
}
.python .banner .logo-container {
  width: 100%;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
}
.python .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.python .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #171717;
  font-weight: 600;
}
.python .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.python .banner .logo-container ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.python .banner .logo-container .buttons {
  display: none;
}
.python .banner .tka-logo img,
.python .banner .menu img {
  width: 100%;
  height: 100%;
}
.python .banner .tka-logo {
  max-width: 220px;
}
.python .banner .menu {
  margin-left: auto;
}
.python .banner .menu img {
  width: 22px;
  height: 23px;
}
.python .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: 0px 3px 6px rgba(0, 0, 0, 0.11);
}
.python .banner .menu-toggle {
  font-weight: 600;
}
.python .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.python .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.python .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.python .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  padding: 1rem 1.5rem;
  box-shadow: 0px 0px 4px #FFFFFF;
  background-color: #44318D;
}
.python .banner .banner-container,
.python .banner .banner-content,
.python .banner .timer-content,
.python .banner .banner-list,
.python .banner .progress-content,
.python .banner .pro-item,
.python .banner .time {
  display: flex;
  flex-direction: column;
}
.python .banner .banner-container {
  padding-top: 1.8rem;
}
.python .banner .banner-content > img {
  width: 120px;
  height: 20px;
}
.python .banner .banner-content h1 {
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 8px 8px 6px rgba(0, 0, 0, 0.11);
  margin-top: 0.6rem;
}
.python .banner .banner-content h1 img {
  width: 28px;
  height: 28px;
  transform: translateY(6px);
  margin-right: 0.2rem;
}
.python .banner .banner-content h1,
.python .banner .banner-content p {
  color: #FFFFFF;
}
.python .banner .banner-content .buttons {
  margin-top: 2rem;
}
.python .banner .timer-content {
  margin-top: 2rem;
}
.python .banner .timer-content h3 {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  padding: 0.5rem;
  color: #FFFFFF;
}
.python .banner .timer-content h3 img {
  width: 38px;
  height: 38px;
  margin-right: 0.7rem;
}
.python .banner .timer {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  justify-content: center;
  padding: 0.5rem;
}
.python .banner .timer .time {
  margin-right: 1rem;
  padding: 0.3rem;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  background-color: rgba(87, 70, 153, 0.8);
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.python .banner .timer .time::before {
  content: ':';
  position: absolute;
  right: -11px;
  top: 8px;
  color: #FFFFFF;
  font-size: 23px;
}
.python .banner .timer .time:last-child {
  margin-right: 0;
}
.python .banner .timer .time:last-child::before {
  content: none;
}
.python .banner .timer .time span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.python .banner .timer .time p {
  text-align: center;
  font-size: 10px;
  font-weight: 400;
}
.python .banner .banner-list {
  background-color: #FFFFFF;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 5px;
}
.python .banner .banner-list .graph {
  width: 100%;
  height: 100%;
}
.python .banner .banner-list h3,
.python .banner .banner-list p {
  text-align: center;
}
.python .banner .banner-list h3 {
  display: flex;
  font-size: 22px;
  width: auto;
  align-self: center;
  margin: 1rem 0 0.8rem;
  border-bottom: 1px solid #171717;
}
.python .banner .banner-list p {
  font-size: 13px;
}
.python .banner .banner-list .buttons {
  align-self: center;
}
.python .banner .content {
  display: flex;
  align-items: center;
  margin-top: 1.3rem;
}
.python .banner .content span {
  display: flex;
  height: 60px;
  width: 60px;
  margin-right: 1rem;
}
.python .banner .content span img {
  width: 100%;
  height: 100%;
}
.python .banner .progress-list {
  display: flex;
  width: calc(100% - 78px);
}
.python .banner .pro-item {
  width: 30%;
  align-items: center;
  margin-right: 1rem;
}
.python .banner .pro-item:last-child {
  margin-right: 0;
}
.python .banner .pro-item p {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
}
.python .banner .pro-item:nth-child(2) .pro-circle::after {
  content: 'Average';
}
.python .banner .pro-item:nth-child(2) .pro-circle .progress-ring__circle {
  stroke: #64D658;
}
.python .banner .pro-item:nth-child(3) .pro-circle::after {
  content: 'Max';
}
.python .banner .pro-item:nth-child(3) .pro-circle .progress-ring__circle {
  stroke: #2787CC;
}
.python .banner .pro-circle {
  width: 58px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.python .banner .pro-circle::after {
  content: 'Min';
  position: absolute;
  font-size: 8px;
  font-weight: 600;
  top: 25px;
  right: 0;
  text-align: center;
  left: 0px;
  margin: auto;
  width: 40px;
}
.python .banner .progress-ring {
  width: 58px;
  height: 58px;
}
.python .banner .progress-ring__circle {
  transition: 3s stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 49% 51%;
  stroke-width: 5px;
  stroke: #FFD000;
  background-color: transparent;
}
.python .banner .circle-default {
  stroke: #E9E7E7;
  stroke-width: 5px;
}
.python .data .overview-container,
.python .data .overview-content,
.python .data .data-container {
  display: flex;
  flex-direction: column;
}
.python .data .head-content {
  display: none;
}
.python .data .overview-container {
  align-items: center;
}
.python .data .overview-content p:nth-of-type(2) {
  margin-top: 0.5rem;
}
.python .data .overview-content ul li {
  margin: 0.5rem 0 0 1.5rem;
  position: relative;
}
.python .data .overview-content ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -24px;
  height: 8px;
  width: 8px;
  border-radius: 50px;
  border: 2px solid #44318D;
  animation: scale 3s linear infinite;
}
.python .data .overview-info {
  display: flex;
  background-color: #F6F6F6;
  margin-top: 2rem;
  padding: 3.5rem;
  border-radius: 100%;
  width: 305px;
  height: 300px;
}
.python .data .overview-info img {
  width: 100%;
  height: 100%;
}
.python .course {
  padding-top: 0;
}
.python .course .course-container,
.python .course .course-list,
.python .course .course-item,
.python .course .course-info,
.python .course .course-content,
.python .course .content,
.python .course .info-item,
.python .course .form,
.python .course .input-list {
  display: flex;
  flex-direction: column;
}
.python .course .mode-paced {
  color: #2787CC;
}
.python .course .mode-led {
  color: #ff0000;
}
.python .course .heading p {
  margin-top: 0;
}
.python .course .heading p strong {
  color: #FFD000;
}
.python .course .course-list {
  counter-reset: number;
}
.python .course .course-list .heading {
  margin-bottom: 0;
}
.python .course .course-item {
  position: relative;
  margin-top: 2rem;
}
.python .course .course-item .mode-type {
  content: '';
  background-color: rgba(68, 49, 141, 0.08);
  position: absolute;
  right: 0;
  padding: 0.3rem 1.2rem;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0px 6px 0 6px;
}
.python .course .course-info {
  flex-flow: wrap;
  padding: 2.5rem 1.5rem 2rem;
  align-items: flex-start;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.11);
  border-radius: 6px 6px 0 0;
}
.python .course .course-info h3 {
  font-size: 17px;
}
.python .course .course-info p {
  margin-top: 1rem;
}
.python .course .course-info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.python .course .course-info ul li {
  width: 39%;
  position: relative;
  margin: 0.5rem 0 0 1.7rem;
}
.python .course .course-info ul li::before {
  content: '';
  background-image: url(/_public/images/python-package/blue-circle.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -27px;
  top: 2px;
  animation: rotate 3s linear infinite;
}
.python .course .course-info .buttons .btn-yellow {
  min-width: 120px;
  padding: 10px 16px;
}
.python .course .course-content {
  background: radial-gradient(49.13% 49.13% at 49.13% 50%, #FFFFFF 0%, #F6F6F6 100%);
  border-radius: 0px 0px 6px 6px;
}
.python .course .course-content.active {
  background-color: #F6F6F6;
  background-image: none;
}
.python .course .course-content.active .course-head img {
  transform: rotate(180deg);
}
.python .course .course-head {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.python .course .course-head h3 {
  font-size: 16px;
  width: calc(100% - 35px);
}
.python .course .course-head img {
  width: 25px;
  height: 25px;
  transition: 1s all;
}
.python .course .content {
  display: none;
}
.python .course .info-item {
  padding: 0.8rem 1.5rem;
  border-top: 1px solid #171717;
}
.python .course .info-item h3 {
  display: flex;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}
.python .course .info-item h3::before {
  content: '';
  background-image: url(/_public/images/python-package/eye-on.svg), url(/_public/images/python-package/eye-off.svg);
  background-size: 100% 100%, 0% 0%;
  background-repeat: no-repeat;
  width: 18px;
  min-width: 18px;
  height: 12px;
  margin: 0.4rem 1rem 0 0;
  transition: 1s all;
}
.python .course .info-item h3.active::before {
  background-size: 0% 0%, 100% 100%;
}
.python .course .info {
  display: none;
  margin: 0.5rem 0 0 2.2rem;
}
.python .course .info ul {
  padding-left: 1.2rem;
}
.python .course .info ul li {
  list-style-type: circle;
  margin-top: 0.5rem;
}
.python .course .info dl {
  margin: 0;
}
.python .course .info dl dd {
  position: relative;
  margin: 0.5rem 0 0 1.5rem;
  font-size: 14px;
}
.python .course .info dl dd::before {
  content: '';
  background-image: url(/_public/images/python-package/blue-circle.svg);
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  left: -23px;
  top: 3px;
  animation: rotate 3s linear infinite;
}
.python .course .form {
  background-image: url(/_public/images/python-package/form-bg.png);
  background-size: 100% 100%;
  margin-top: 2rem;
  border-radius: 14px;
  margin-bottom: 0;
}
.python .course .form .form-heading {
  padding: 1rem;
  margin-bottom: 3rem;
  border-radius: 14px;
}
.python .course .form .input-list {
  padding: 0 1rem 1.5rem;
}
.python .course .form .form-heading {
  display: flex;
  justify-content: space-between;
  background-color: #171717;
  align-items: center;
  position: relative;
}
.python .course .form .form-heading::before {
  content: '';
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 21px solid #171717;
  position: absolute;
  left: 19px;
  bottom: -21px;
}
.python .course .form .form-heading h2 {
  color: #FFFFFF;
  font-size: 20px;
  width: calc(100% - 110px);
}
.python .course .form .form-heading img {
  width: 99px;
  height: 55px;
}
.python .course .form .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #FFFFFF;
  margin-bottom: 1rem;
  border-radius: 2px;
}
.python .course .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.python .course .form .input-container span img {
  width: 100%;
  height: 100%;
}
.python .course .form .input-container span img:last-child {
  display: none;
}
.python .course .form .input-container input {
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
  width: calc(100% - 25px);
  color: #FFFFFF;
}
.python .course .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #FFFFFF;
}
.python .course .form .input-container ::-ms-input-placeholder {
  /* Firefox */
  color: #FFFFFF;
}
.python .course .form .input-container ::placeholder {
  /* Chrome */
  color: #FFFFFF;
}
.python .course .form .input-container .phonecode-field {
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
}
.python .course .form .input-container .phonecode-field span {
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: transparent;
  color: #FFFFFF;
  width: 35px;
  position: relative;
  padding-left: 0.5rem;
}
.python .course .form .input-container .phonecode-field span::before {
  content: '';
  width: 1px;
  height: calc(100% + 23px);
  position: absolute;
  left: 0;
  background-color: #FFFFFF;
}
.python .course .form .input-container .phonecode-field .country-code {
  width: 47px;
  border: none;
  margin-right: 0.5rem;
  outline: 0;
  background-color: transparent;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: normal;
}
.python .course .form .input-container .phonecode-field .country-code option {
  color: #FFFFFF;
}
.python .course .form .input-container .phonecode-field input {
  outline: 0;
  border: none;
  padding: 0 8px 0 8px;
}
.python .course .form .input-container .phonecode-field .hidden-field {
  z-index: -1;
  width: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
}
.python .course .form .input-container .phonecode-field .hidden-field input {
  border: none;
  padding: 0;
}
.python .course .form .input-error {
  border: 1px solid #ff0000;
}
.python .course .form .input-error span img:first-child {
  display: none;
}
.python .course .form .input-error span img:last-child {
  display: flex;
}
.python .course .form .input-error label {
  color: #ff0000;
}
.python .course .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.python .course .form .input-error ::-ms-input-placeholder {
  /* Firefox */
  color: #ff0000;
}
.python .course .form .input-error ::placeholder {
  /* Chrome */
  color: #ff0000;
}
.python .course .form .form-consent {
  display: flex;
  font-size: 11px;
  width: 100%;
  margin-bottom: 0.4rem;
}
.python .course .form .form-consent:last-child {
  margin-bottom: 0;
}
.python .course .form .form-consent label {
  align-self: center;
  width: auto;
  text-transform: unset;
  margin-left: 0.3rem;
  font-size: 11px;
  cursor: pointer;
  color: #FFFFFF;
}
.python .course .form .consent-error p {
  color: #ff0000;
  font-size: 11px;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.python .course .form .buttons {
  align-self: center;
}
.python .course .form .buttons .btn-yellow {
  min-width: 255px;
}
.python .course .form .buttons .btn-yellow img {
  width: 18px;
  height: 18px;
}
.python .method {
  padding-top: 0;
}
.python .method .method-container,
.python .method .method-list,
.python .method .method-item {
  display: flex;
  flex-direction: column;
}
.python .method .heading {
  margin-bottom: 0;
}
.python .method .method-item {
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  transition: 1s all;
}
.python .method .method-item span {
  display: flex;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background-color: #F6F6F6;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
}
.python .method .method-item span::before {
  content: '';
  background-image: radial-gradient(57.5% 50% at 50% 50%, rgba(87, 70, 153, 0.8) 0%, #44318D 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 1s all;
  border-radius: 100%;
  opacity: 0;
}
.python .method .method-item span img {
  width: 100%;
  height: 100%;
}
.python .method .method-item h3 {
  font-size: 15px;
  margin: 0.8rem 0 0.2rem;
}
.python .method .method-item a {
  font-size: 14px;
  font-weight: 500;
}
.python .method .method-item:hover {
  background-image: radial-gradient(57.5% 50% at 50% 50%, #FFFFFF 0%, #F6F6F6 100%);
}
.python .method .method-item:hover span::before {
  opacity: 1;
}
.python .method .method-item:hover span img {
  filter: invert(100%);
}
.python .important {
  padding-top: 0;
}
.python .important .important-container,
.python .important .important-content,
.python .important .important-main,
.python .important .important-list,
.python .important .important-item,
.python .important .skill-content,
.python .important .tool-content {
  display: flex;
  flex-direction: column;
}
.python .important .important-content {
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.11), inset 0 3px 0 #44318D;
  border-radius: 4px;
}
.python .important .important-main,
.python .important .skill-content {
  border-bottom: 1px solid #F6F6F6;
  margin-bottom: 2em;
}
.python .important .important-list {
  max-height: 334px;
  overflow: hidden;
}
.python .important .important-item {
  position: relative;
  margin: 0 0 2.5rem 1rem;
}
.python .important .important-item::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #44318D;
  border-radius: 100px;
  left: -16px;
  top: 0;
}
.python .important .important-item h3 {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.python .important .important-item p {
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.python .important .view-more {
  color: #44318D;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding: 1rem;
}
.python .important .skill-content h3,
.python .important .tool-content h3 {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.python .important .skill-content ul,
.python .important .tool-content ul {
  max-height: 60px;
  overflow: hidden;
}
.python .important .skill-content ul li {
  padding: 0.8rem;
  font-size: 13px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.11);
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.11), inset 4px 0 0 #44318D;
}
.python .important .tool-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.python .important .tool-content ul li {
  display: flex;
  width: 40%;
  margin-bottom: 1rem;
}
.python .important .tool-content ul li img {
  width: 90px;
  height: auto;
  align-self: center;
}
.python .important .toggle {
  max-height: 100% !important;
}
.python .growth {
  padding-top: 0;
  padding-bottom: 0;
}
.python .growth .growth-container,
.python .growth .growth-content,
.python .growth .growth-list,
.python .growth .growth-info,
.python .growth .info,
.python .growth .feature-item {
  display: flex;
  flex-direction: column;
}
.python .growth .heading {
  margin-bottom: 0;
}
.python .growth .growth-content {
  box-shadow: 0px 7px 25px rgba(0, 0, 0, 0.11);
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}
.python .growth .growth-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #E9E7E7;
  padding: 1rem 0.5rem;
  margin-top: 1.5rem;
}
.python .growth .growth-item:first-child {
  margin-top: 0;
}
.python .growth .growth-item img {
  width: 56px;
  height: auto;
}
.python .growth .growth-item h3 {
  font-size: 13px;
  width: calc(100% - 62px);
}
.python .growth .growth-item p {
  margin-top: 1rem;
  font-size: 12px;
}
.python .growth .feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.python .growth .feature-item {
  width: 48%;
  margin-top: 2rem;
  border-bottom: 2px solid #44318D;
  padding-bottom: 0.3rem;
}
.python .growth .feature-item h3 {
  font-size: 22px;
}
.python .growth .feature-item p {
  font-size: 12px;
}
.python .growth .growth-info {
  margin-top: 2rem;
  box-shadow: 0px 7px 25px rgba(0, 0, 0, 0.11);
  padding: 2rem 1rem;
}
.python .growth .info {
  align-items: flex-start;
}
.python .growth .info:nth-child(2) {
  margin-top: 2rem;
}
.python .growth .info:nth-child(2) ul {
  align-items: flex-start;
}
.python .growth .info:nth-child(2) ul li {
  margin: 0.8rem 0 0 1.6rem;
  position: relative;
  font-size: 12px;
  width: 36%;
}
.python .growth .info:nth-child(2) ul li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #44318D;
  box-shadow: 0 0 0 3px #FFFFFF, 0 0 0 4px #44318D;
  border-radius: 50px;
  left: -20px;
  top: 6px;
}
.python .growth .info h3 {
  font-size: 16px;
  border-bottom: 1px solid #171717;
  padding-bottom: 0.2rem;
}
.python .growth .info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.python .growth .info ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 48%;
  margin-top: 1rem;
}
.python .growth .info ul li span {
  display: flex;
  width: 35px;
  height: 35px;
  background: radial-gradient(62.96% 62.96% at 50% 50%, #FFFFFF 0%, #E9E7E7 100%);
  border-radius: 50px;
  padding: 0.4rem;
  align-items: center;
}
.python .growth .info ul li span img {
  width: 100%;
  height: auto;
}
.python .growth .info ul li p {
  width: calc(100% - 45px);
  font-size: 11px;
}
.python .benefit .benefit-container {
  display: flex;
  flex-direction: column;
}
.python .benefit span {
  display: flex;
}
.python .benefit span img {
  width: 100%;
  height: 100%;
}
.python .benefit span img:last-child {
  display: none;
}
.python .career {
  padding-top: 0;
}
.python .career .career-container,
.python .career .career-list,
.python .career .career-item,
.python .career .content,
.python .career .enquire,
.python .career .rate {
  display: flex;
  flex-direction: column;
}
.python .career .heading {
  padding-left: 1rem;
}
.python .career .career-item {
  box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.11) inset;
  padding: 2.2rem 1.5rem;
  width: 94%;
  margin: auto;
}
.python .career .info {
  display: flex;
  justify-content: space-between;
  background-color: #44318D;
  border-radius: 9px;
  padding: 1.8rem 1rem;
  align-items: center;
}
.python .career .info img {
  width: 48px;
  height: 48px;
}
.python .career .info h3 {
  color: #FFFFFF;
  font-size: 12px;
  width: calc(100% - 59px);
  font-weight: 500;
}
.python .career .list {
  display: flex;
  justify-content: space-between;
  margin: 2rem auto;
  width: 80%;
  z-index: 1;
}
.python .career .content {
  text-align: center;
}
.python .career .content h4 {
  background-color: #FFFFFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.11);
  border-radius: 2px;
  color: #44318D;
  margin-bottom: 0.8rem;
  position: relative;
  width: 47px;
  font-size: 18px;
  padding: 0.5rem;
}
.python .career .content h4::before {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid #44318D;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  border-radius: 2px;
}
.python .career .content P {
  font-size: 10px;
}
.python .career .rate h4 {
  font-weight: 500;
  font-size: 11px;
}
.python .career .rate img {
  width: 72px;
  height: 12px;
  margin-top: 0.2rem;
}
.python .career .enquire {
  flex-direction: revert;
  justify-content: space-between;
  align-items: center;
}
.python .career .enquire .buttons {
  margin-top: 0;
}
.python .career .enquire .buttons .btn-yellow {
  min-width: 125px;
  padding: 8px 12px;
  font-size: 13px;
}
.python .career .enquire .buttons .btn-yellow img {
  width: 15px;
  height: 15px;
}
.python .career .owl-nav {
  display: flex;
  width: 100px;
  justify-content: space-between;
  margin: 2rem 0 0 0.5rem;
}
.python .career .owl-nav .owl-prev,
.python .career .owl-nav .owl-next {
  display: flex;
  width: 23px;
  height: 32px;
  background-image: url(/_public/images/python-package/arrow-blue.svg);
  background-size: 100% 100%;
  opacity: 0.5;
}
.python .career .owl-nav .owl-prev {
  transform: rotate(-180deg);
}
.python .career .owl-nav .btn-active {
  opacity: 1;
}
.python .review .review-container,
.python .review .review-list,
.python .review .review-info,
.python .review .info {
  display: flex;
  flex-direction: column;
}
.python .review .review-container {
  position: relative;
}
.python .review .heading {
  margin-bottom: 0;
}
.python .review .review-list {
  position: static;
  margin: 2rem 0;
}
.python .review .review-item {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem;
}
.python .review .review-item img {
  width: 60px;
  height: 60px;
  border: 2px solid #171717;
  border-radius: 100%;
}
.python .review .content {
  display: none;
}
.python .review .content h3 {
  font-size: 15px;
}
.python .review .content p {
  font-size: 12px;
  margin-top: 0.2rem;
}
.python .review .show .review-item {
  background: radial-gradient(148.75% 148.75% at 50% 50%, #FFFFFF 0%, #E9E7E7 100%);
  border-radius: 10px;
  width: 238px;
  padding: 0.8rem 1rem;
  justify-content: flex-start;
  align-items: center;
}
.python .review .show .review-item h3 {
  color: #44318D;
}
.python .review .show .review-item img {
  border: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11);
}
.python .review .show .review-item .content {
  display: flex;
  flex-direction: column;
  width: auto;
  margin-left: 1rem;
}
.python .review .owl-nav {
  display: flex;
  align-items: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -49px;
  width: 68px;
  height: 21px;
  justify-content: space-between;
}
.python .review .owl-nav .owl-prev,
.python .review .owl-nav .owl-next {
  display: flex;
  opacity: 0.5;
  width: 14px;
  height: 24px;
}
.python .review .owl-nav .owl-prev img,
.python .review .owl-nav .owl-next img {
  width: 100%;
  height: 100%;
}
.python .review .owl-nav .owl-next {
  transform: rotate(180deg);
}
.python .review .owl-nav .btn-active {
  opacity: 1;
}
.python .review .info {
  text-align: center;
  align-items: center;
}
.python .review .info img {
  width: 100px;
  height: 17px;
  margin-top: 0.8rem;
}
.python .faq .faq-container,
.python .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.python .faq .heading {
  margin-bottom: 2.5rem;
}
.python .faq .faq-item {
  border-top: 1px solid #171717;
  padding: 1.5rem 0;
  transition: 1s all;
}
.python .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.python .faq .faq-item .ques h3 {
  font-size: 15px;
  width: calc(100% - 35px);
  font-weight: 500;
}
.python .faq .faq-item .ques::after {
  content: '';
  background-image: url(/_public/images/python-package/down-arrow.svg), url(/_public/images/python-package/up-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%, 0 0;
  width: 18px;
  height: 18px;
  transition: 1s all;
  margin-top: 0.3rem;
}
.python .faq .faq-item .ans {
  display: none;
  margin-top: 1rem;
}
.python .faq .faq-item .ans p {
  font-size: 13px;
}
.python .faq .faq-item .ans ul {
  padding-left: 1rem;
}
.python .faq .faq-item .ans ul li {
  margin-top: 0.5rem;
  line-height: 1.2;
  font-size: 12px;
  list-style: disc;
}
.python .faq .active {
  background-color: rgba(68, 49, 141, 0.08);
  padding: 1.5rem 1.8rem;
}
.python .faq .active .ques::after {
  background-size: 0 0, 100% 100%;
}
.python .footer {
  background-color: #44318D;
}
.python .footer .footer-container,
.python .footer .footer-list,
.python .footer .info {
  display: flex;
  flex-direction: column;
}
.python .footer .heading h2 {
  display: flex;
}
.python .footer .footer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.python .footer .footer-item span {
  display: flex;
  height: 65px;
  width: 65px;
  padding: 0.8rem;
  position: relative;
}
.python .footer .footer-item span::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/python-package/ring.png);
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: rotate 5s linear infinite;
}
.python .footer .footer-item span img {
  width: 100%;
  height: 100%;
}
.python .footer .footer-item .info {
  width: calc(100% - 82px);
  color: #FFFFFF;
  align-items: flex-start;
}
.python .footer .footer-item .info h3 {
  font-size: 16px;
}
.python .footer .footer-item .info a {
  font-size: 13px;
  margin-top: 0.4rem;
}
.python .footer .footer-item .info img {
  display: none;
  width: 105px;
  height: 15px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .python .banner .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .python .banner .sticky {
    padding: 1rem 2rem !important;
  }
  .python .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
  }
  .python .banner .banner-content {
    width: 46%;
  }
  .python .banner .banner-content h1 {
    margin-bottom: 1.8rem;
  }
  .python .banner .banner-content h1 span {
    font-weight: 400;
    border-bottom: 1px solid #FFFFFF;
  }
  .python .banner .banner-list {
    width: 47%;
    margin-top: 0;
  }
  .python .data .overview-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .python .data .overview-content {
    width: 48%;
  }
  .python .data .overview-info {
    width: 340px;
    height: 340px;
    position: sticky;
    margin-top: 0;
    top: 20px;
  }
  .python .course .course-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .python .course .course-list {
    width: 48%;
  }
  .python .course .form {
    width: 47%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .python .method .method-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .python .method .method-item {
    width: auto;
  }
  .python .important .important-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .python .important .important-item {
    width: 45%;
  }
  .python .important .skill-content h3,
  .python .important .tool-content h3 {
    text-align: left;
  }
  .python .important .skill-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .python .important .skill-content ul li {
    width: 48%;
  }
  .python .important .tool-content ul {
    justify-content: space-evenly;
  }
  .python .important .tool-content ul li {
    width: 17%;
  }
  .python .growth .growth-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .python .growth .growth-item {
    width: 32%;
    margin-top: 0;
  }
  .python .growth .growth-item h3 {
    min-height: 40px;
  }
  .python .growth .growth-item p {
    min-height: 135px;
  }
  .python .growth .feature-item {
    width: auto;
  }
  .python .growth .info ul {
    width: 100%;
  }
  .python .growth .info ul li {
    width: 32%;
  }
  .python .growth .info:nth-child(2) ul li {
    width: 15%;
  }
  .python .benefit span img:first-child {
    display: none;
  }
  .python .benefit span img:last-child {
    display: flex;
  }
  .python .career .info {
    min-height: 112px;
    align-items: center;
  }
  .python .career .owl-nav {
    position: absolute;
    right: 24px;
    top: -16%;
    margin: 0;
  }
  .python .review .review-item {
    margin-right: -10rem;
  }
  .python .faq .faq-item .ques h3 {
    font-size: 17px;
    width: calc(100% - 80px);
    align-self: center;
  }
  .python .faq .faq-item .ques::before {
    content: '';
    background-image: url(/_public/images/python-package/ques-mark.svg);
    background-size: 100% 100%;
    width: 32px;
    height: 32px;
  }
  .python .footer .footer-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .python .footer .footer-item {
    width: 47%;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .python .heading h2 {
    font-size: 28px;
  }
  .python .buttons .btn-yellow,
  .python .buttons .btn-white {
    font-size: 16px;
  }
  .python .banner {
    background-image: url(/_public/images/python-package/banner-bg.jpg);
    background-color: transparent;
    background-size: cover;
    background-position: center;
  }
  .python .banner .tka-logo {
    max-width: 278px;
  }
  .python .banner .logo-container {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .python .banner .logo-container .buttons {
    display: flex;
    margin-top: 0;
  }
  .python .banner .logo-container .buttons .btn-white {
    margin-right: 1.5rem;
  }
  .python .banner .menu-links,
  .python .banner .menu {
    display: none !important;
  }
  .python .banner .banner-container {
    padding-top: 6rem;
  }
  .python .banner .banner-list {
    width: 395px;
  }
  .python .banner .banner-content {
    width: 50%;
  }
  .python .banner .banner-content h1 {
    font-size: 34px;
  }
  .python .banner .banner-content h1 img {
    width: 38px;
    height: 38px;
  }
  .python .banner .timer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .python .banner .timer-content h3 {
    margin-right: 0.5rem;
  }
  .python .banner .timer {
    margin-top: 0;
  }
  .python .banner .content span {
    margin-right: 2rem;
    height: 88px;
    width: 88px;
  }
  .python .data .head-content {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #F6F6F6;
    margin-bottom: 3rem;
    background-color: #FFFFFF;
    z-index: 2;
    width: 93.8%;
  }
  .python .data .head-content li {
    width: 20%;
    padding: 1rem;
    text-align: center;
    border-right: 2px solid #F6F6F6;
    transition: 1s all;
    cursor: pointer;
    border-bottom: 4px solid transparent;
  }
  .python .data .head-content li:last-child {
    border-right: none;
  }
  .python .data .head-content li.active {
    border-bottom: 4px solid #FFD000;
  }
  .python .data .overview-content {
    width: 57%;
  }
  .python .course .course-list {
    width: calc(100% - 405px);
  }
  .python .course .course-info::before {
    content: 'Course ' counter(number, decimal-leading-zero);
    counter-increment: number;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid;
    padding: 0.2rem 0.5rem;
  }
  .python .course .course-info h3 {
    display: flex;
    width: calc(100% - 91px);
  }
  .python .course .course-info h3::before {
    content: "..................";
    font-weight: 100;
    margin: -0.3rem 1rem 0 1rem;
  }
  .python .course .course-info ul {
    width: 100%;
  }
  .python .course .course-info ul li {
    width: 27%;
  }
  .python .course .course-info .buttons {
    width: 100%;
  }
  .python .course .form {
    width: 372px;
    top: 155px;
  }
  .python .method .method-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .python .method .heading {
    width: 27%;
  }
  .python .method .heading h2 {
    text-align: left;
  }
  .python .method .method-list {
    width: 72%;
    position: relative;
  }
  .python .method .method-list:after {
    content: '';
    border-bottom: 1px dashed rgba(0, 0, 0, 0.11);
    position: absolute;
    width: 100%;
    bottom: 92px;
  }
  .python .method .method-item {
    margin-top: 0;
  }
  .python .method .method-item h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .python .method .method-item h3::before {
    content: '';
    background-image: radial-gradient(57.5% 50% at 50% 50%, rgba(87, 70, 153, 0.8) 0%, #44318D 100%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-bottom: 0.2rem;
    transition: 1s all;
  }
  .python .method .method-item:hover h3::before {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.11);
  }
  .python .important .important-list {
    justify-content: space-between;
    max-height: 155px;
  }
  .python .important .important-item {
    width: 29%;
  }
  .python .important .skill-content ul li {
    width: 23%;
  }
  .python .important .tool-content ul li {
    width: 12%;
  }
  .python .important .tool-content .view-more {
    display: none;
  }
  .python .growth {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .python .growth .growth-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .python .growth .heading {
    width: 72%;
  }
  .python .growth .buttons {
    width: auto;
    margin-top: 0;
  }
  .python .growth .growth-content {
    width: 69.5%;
    padding: 1.5rem 1.5rem 2.5rem;
  }
  .python .growth .growth-info {
    width: 28%;
  }
  .python .growth .growth-item {
    padding: 1rem;
  }
  .python .growth .growth-item p {
    min-height: 173px;
  }
  .python .growth .feature-item h3 {
    font-size: 25px;
  }
  .python .growth .info ul li {
    width: 48%;
    align-items: center;
  }
  .python .growth .info:nth-child(2) ul li {
    width: 100%;
  }
  .python .career {
    padding-top: 4rem;
    background-image: linear-gradient(90deg, #F6F6F6 50%, transparent 50%);
  }
  .python .career .career-item {
    background-color: #FFFFFF;
  }
  .python .review .review-container {
    width: 75%;
    margin: auto;
  }
  .python .review .owl-nav {
    width: calc(100% + 24%);
    left: -12%;
    bottom: 25%;
  }
  .python .faq {
    padding-bottom: 6rem;
  }
  .python .faq .faq-container {
    width: 85%;
    margin: auto;
  }
  .python .footer {
    background-image: url(/_public/images/python-package/footer-bg.png);
    background-size: 100% 100%;
  }
  .python .footer .heading {
    width: 70%;
  }
  .python .footer .footer-container {
    position: relative;
  }
  .python .footer .footer-container::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/python-package/girl.png);
    background-size: 100% 100%;
    width: 253px;
    height: 238px;
    right: 0;
    top: -100px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .python .heading h2 {
    font-size: 32px;
  }
  .python .banner {
    padding-bottom: 8rem !important;
  }
  .python .banner .sticky {
    padding: 1rem 0 !important;
  }
  .python .banner .timer-content {
    width: 73%;
  }
  .python .banner .banner-content {
    width: 52%;
  }
  .python .banner .banner-content h1 {
    font-size: 50px;
  }
  .python .banner .banner-content h1 img {
    width: 46px;
    height: 46px;
  }
  .python .data .head-content {
    width: 1200px;
  }
  .python .data .overview-container {
    align-items: center;
  }
  .python .data .overview-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .python .data .overview-content ul li {
    width: 46%;
  }
  .python .data .overview-info {
    position: static;
    padding: 4.5rem;
    width: 420px;
    height: 420px;
  }
  .python .course {
    padding-top: 5rem;
  }
  .python .course .course-info {
    justify-content: space-between;
  }
  .python .course .course-info ul {
    width: calc(100% - 210px);
    align-self: center;
  }
  .python .course .course-info .buttons {
    width: 170px;
    margin-top: 0.5rem;
  }
  .python .course .info-item dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .python .course .info-item dl dd {
    width: 39%;
  }
  .python .method .method-list:after {
    bottom: 70px;
  }
  .python .important .important-container {
    width: 90%;
    margin: auto;
  }
  .python .important .skill-content ul {
    justify-content: flex-start;
  }
  .python .important .skill-content ul li {
    width: 18%;
    margin-right: 1.5rem;
  }
  .python .important .skill-content ul li:nth-child(5n),
  .python .important .skill-content ul li:last-child {
    margin-right: 0;
  }
  .python .growth .growth-item img {
    width: 80px;
  }
  .python .growth .growth-item h3 {
    font-size: 16px;
    width: calc(100% - 89px);
  }
  .python .growth .growth-item p {
    min-height: 152px;
  }
  .python .growth .feature-item p {
    font-size: 14px;
  }
  .python .growth .info ul li {
    width: 48%;
  }
  .python .growth .info:nth-child(2) ul li {
    width: 41%;
  }
  .python .benefit {
    padding: 6rem 0 !important;
  }
  .python .benefit .heading {
    margin-bottom: 2.5rem;
  }
  .python .career {
    padding-bottom: 0;
  }
  .python .career .heading {
    padding-left: 2rem;
  }
  .python .career .career-item {
    width: 84%;
    box-shadow: 2px 6px 25px rgba(0, 0, 0, 0.11);
    margin: 1.2rem auto 1.5rem;
  }
  .python .career .info {
    min-height: 121px;
  }
  .python .career .info h3 {
    font-size: 14px;
    width: calc(100% - 67px);
  }
  .python .career .info img {
    width: 52px;
    height: 52px;
  }
  .python .review {
    padding-top: 8rem;
  }
  .python .review .review-list {
    width: 80%;
    margin: 3rem auto 2rem;
  }
  .python .faq .ques {
    align-items: center;
  }
  .python .faq .ques::after {
    margin-top: 0;
  }
  .python .footer {
    padding-top: 6rem;
  }
  .python .footer .heading {
    width: 60%;
    margin-bottom: 2rem;
  }
  .python .footer .footer-container::before {
    width: 345px;
    height: 292px;
    top: -146px;
  }
  .python .footer .footer-list {
    padding-top: 3rem;
    background-image: url(/_public/images/python-package/curve.png);
    background-size: 100% 9%;
    background-repeat: no-repeat;
  }
}
