@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 11px;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 600;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #191919;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #FF4425;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: #191919;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
.list li {
  margin-top: 0.3rem;
  padding-left: 1rem;
  position: relative;
}
.list li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #280F70;
  top: 7px;
  left: 0;
  animation: scale 2s linear infinite;
}
ul,
li {
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: #191919;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.coding .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.coding .buttons .btn-gradient,
.coding .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 16px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  transition: 1s all;
  white-space: nowrap;
  overflow: hidden;
}
.coding .buttons .btn-gradient img,
.coding .buttons .btn-transparent img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.coding .buttons .btn-gradient::before,
.coding .buttons .btn-transparent::before,
.coding .buttons .btn-gradient::after,
.coding .buttons .btn-transparent::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: -1;
}
.coding .buttons .btn-gradient::before,
.coding .buttons .btn-transparent::before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.coding .buttons .btn-gradient::after,
.coding .buttons .btn-transparent::after {
  right: -20px;
  transform: translate(50%, -50%);
}
.coding .buttons .btn-gradient:hover::before,
.coding .buttons .btn-transparent:hover::before {
  animation: left-circle 1s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.coding .buttons .btn-gradient:hover::after,
.coding .buttons .btn-transparent:hover::after {
  animation: right-circle 1s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.coding .buttons .btn-gradient {
  background-image: linear-gradient(90deg, #FF4425, #EC206E);
  color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.coding .buttons .btn-gradient::before,
.coding .buttons .btn-gradient::after {
  background-color: #280F70;
}
.coding .buttons .btn-gradient:hover {
  box-shadow: 0px 0px 6px #FFFFFF;
}
.coding .buttons .btn-transparent {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.coding .buttons .btn-transparent::before,
.coding .buttons .btn-transparent::after {
  background-color: #FF4425;
}
.coding .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.coding .heading p {
  margin-top: 1rem;
}
.coding .heading h2 {
  width: 100%;
  font-size: 22px;
}
.coding .center-heading {
  justify-content: center;
  align-items: center;
}
.coding .center-heading h2,
.coding .center-heading p {
  text-align: center;
}
.coding .white-heading h2,
.coding .white-heading p {
  color: #FFFFFF;
}
@keyframes left-circle {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes right-circle {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.coding .banner {
  flex-direction: column;
  padding: 0;
}
.coding .banner .logo-container,
.coding .banner .tka-logo,
.coding .banner .menu,
.coding .banner .menu-toggle {
  display: flex;
}
.coding .banner .logo-container {
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #280F70;
}
.coding .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.coding .banner .logo-container .tka-logo {
  max-width: 190px;
}
.coding .banner .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.coding .banner .logo-container .menu {
  margin-left: auto;
}
.coding .banner .logo-container .menu img {
  width: 22px;
  height: 23px;
}
.coding .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.coding .banner .logo-container .menu-toggle {
  font-weight: 500;
  color: #191919;
}
.coding .banner .logo-container .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.coding .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #191919;
}
.coding .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.coding .banner .logo-container ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.coding .banner .logo-container ul .links-li:last-child {
  display: none;
}
.coding .banner .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.coding .banner .logo-container .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.coding .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  box-shadow: 0px 0px 6px #FFFFFF;
}
.coding .banner .sticky-down {
  top: -100px;
}
.coding .banner .container {
  height: 100%;
}
.coding .banner .banner-container,
.coding .banner .banner-content,
.coding .banner .skill {
  display: flex;
  flex-direction: column;
}
.coding .banner .banner-container {
  align-items: flex-start;
  padding: 1.5rem 1.5rem 3rem;
}
.coding .banner .banner-content {
  width: 100%;
}
.coding .banner .banner-content h1 {
  margin-bottom: 1.5rem;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #280F70;
  color: transparent;
  font-size: 26px;
  line-height: 1;
}
.coding .banner .banner-content h1 img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  transform: translateY(10px);
}
.coding .banner .banner-info {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.coding .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.coding .banner .skill {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.coding .banner .skill .heading {
  margin-bottom: 0;
}
.coding .banner .skill ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.coding .banner .skill ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
  width: 47%;
}
.coding .banner .skill ul li p {
  font-size: 16px;
  margin-top: 1rem;
}
.coding .banner .skill ul li img {
  width: 90px;
  height: 78px;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
}
.coding .course .course-container,
.coding .course .course-list,
.coding .course .course-item {
  display: flex;
  flex-direction: column;
}
.coding .course .heading {
  margin-bottom: 0;
}
.coding .course .heading p {
  margin-top: 0;
}
.coding .course .heading p strong {
  color: #280F70;
}
.coding .course .course-item {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  border: 1px solid #9e9e9e;
  border-radius: 12px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: 1s all;
}
.coding .course .course-item span {
  display: flex;
  width: 55px;
  height: 55px;
  background-color: #280F70;
  padding: 0.8rem;
  border-radius: 0px 10px 0px 10px;
  position: absolute;
  right: -1px;
  top: -1px;
  transition: 1s all;
}
.coding .course .course-item span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.coding .course .course-item span img:last-child {
  width: 0;
}
.coding .course .course-item h3 {
  font-size: 14px;
  margin-bottom: 0.8rem;
  width: calc(100% - 52px);
  transition: 1s all;
}
.coding .course .course-item p {
  font-size: 12px;
  transition: 1s all;
  color: #9e9e9e;
}
.coding .course .course-item .buttons {
  margin-top: 0.8rem;
}
.coding .course .course-item .buttons .btn-gradient {
  min-width: 130px;
  font-size: 14px;
  border: 1px solid transparent;
  padding: 6px 14px;
}
.coding .course .course-item .buttons .btn-gradient img {
  width: 16px;
  height: 16px;
}
.coding .course .course-item:hover {
  background-color: #280F70;
  border-color: transparent;
}
.coding .course .course-item:hover span {
  background-color: #FFFFFF;
}
.coding .course .course-item:hover span img:first-child {
  width: 0;
}
.coding .course .course-item:hover span img:last-child {
  width: 100%;
}
.coding .course .course-item:hover h3,
.coding .course .course-item:hover p {
  color: #FFFFFF;
}
.coding .course .course-item:hover .btn-gradient {
  border-color: #FFFFFF;
}
.coding .language {
  padding-top: 0;
}
.coding .language .language-container,
.coding .language .item {
  display: flex;
  flex-direction: column;
}
.coding .language .heading {
  margin-bottom: 0;
}
.coding .language .language-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.coding .language .item {
  width: 43%;
  align-items: center;
  margin-right: 1rem;
  margin-top: 2rem;
}
.coding .language .item span {
  display: flex;
  width: 95px;
  height: 95px;
  padding: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  border-radius: 100%;
}
.coding .language .item span img {
  width: 100%;
  height: 100%;
}
.coding .language .item p {
  font-size: 12px;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}
.coding .language .item:nth-child(2n) {
  margin-right: 0;
}
.coding .fact {
  background-color: #280F70;
}
.coding .fact .fact-container,
.coding .fact .fact-list,
.coding .fact .content {
  display: flex;
  flex-direction: column;
}
.coding .fact .heading {
  margin-bottom: 0;
}
.coding .fact .fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.coding .fact .fact-item span {
  display: flex;
  width: 65px;
  height: 65px;
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
}
.coding .fact .fact-item span img {
  width: 100%;
  height: 100%;
}
.coding .fact .fact-count {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 80px);
}
.coding .fact .fact-count h4,
.coding .fact .fact-count p {
  color: #FFFFFF;
}
.coding .fact .fact-count h4 {
  font-size: 38px;
  line-height: 1.4;
}
.coding .method {
  padding-bottom: 0;
}
.coding .method .method-container,
.coding .method .method-list,
.coding .method .method-item {
  display: flex;
  flex-direction: column;
}
.coding .method .heading {
  margin-bottom: 0;
}
.coding .method .method-item {
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}
.coding .method .method-item span {
  display: flex;
  width: 175px;
  height: 175px;
}
.coding .method .method-item span img {
  width: 100%;
  height: 100%;
  transition: 2s all;
}
.coding .method .method-item span img:last-child {
  width: 0;
  height: 100%;
}
.coding .method .method-item h3 {
  font-size: 16px;
  width: 100%;
}
.coding .method .method-item p {
  margin: 0.5rem 0;
}
.coding .method .method-item a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #FF4425;
  font-weight: 600;
}
.coding .method .method-item a img {
  width: 14px;
  height: 14px;
  margin-left: 0.8rem;
}
.coding .method .method-item:hover span img:first-child {
  width: 0;
  height: 100%;
}
.coding .method .method-item:hover span img:last-child {
  width: 100%;
  height: 100%;
}
.coding .difference .difference-container,
.coding .difference .difference-content,
.coding .difference .difference-info {
  display: flex;
  flex-direction: column;
}
.coding .difference .difference-content {
  align-items: center;
}
.coding .difference .difference-content p {
  text-align: center;
}
.coding .difference .difference-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.coding .difference .difference-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.coding .difference .difference-info .heading {
  background-color: #F5F5F5;
  padding: 1rem 0.5rem;
  margin-bottom: 0.8rem;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, #FFAF26 50%, #36D5E0 50%);
  border-image-slice: 1;
}
.coding .difference .difference-info .heading h2 {
  font-size: 18px;
}
.coding .difference .difference-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.coding .difference .difference-info span img {
  width: 100%;
  height: 100%;
}
.coding .choose {
  padding-top: 0;
}
.coding .choose .choose-container,
.coding .choose .choose-list,
.coding .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.coding .choose .heading {
  background-image: url(/_public/images/coding/choose-bg.png);
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
  padding: 1.5rem;
}
.coding .choose .choose-item {
  margin-top: 2rem;
}
.coding .choose .choose-item span {
  display: flex;
  width: 60px;
  height: 60px;
  background-image: linear-gradient(90deg, #F5F5F5, #FFFFFF);
  border-radius: 50px;
  padding: 0.8rem;
}
.coding .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.coding .choose .choose-item h3 {
  font-size: 14px;
  margin: 0.8rem 0;
}
.coding .choose .choose-item p {
  font-size: 12px;
}
.coding .benefit {
  background-color: #280F70;
}
.coding .benefit .benefit-container,
.coding .benefit .benefit-content,
.coding .benefit .benefit-info {
  display: flex;
  flex-direction: column;
}
.coding .benefit .benefit-content p,
.coding .benefit .benefit-content li {
  color: #FFFFFF;
}
.coding .benefit .benefit-content ul li::before {
  background-color: #FFFFFF;
}
.coding .benefit .benefit-info {
  height: 100%;
  width: 100%;
  margin-top: 2rem;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 1.5rem;
}
.coding .benefit .benefit-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.coding .benefit .benefit-info span img {
  width: 100%;
  height: 100%;
}
.coding .benefit .benefit-info .heading {
  margin-bottom: 0;
}
.coding .skill {
  padding-bottom: 0;
}
.coding .skill .skill-container,
.coding .skill .skill-content {
  display: flex;
  flex-direction: column;
}
.coding .skill .skill-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.coding .skill .skill-info img {
  width: 100%;
  height: 100%;
}
.coding .client {
  padding-bottom: 0;
}
.coding .client .client-container,
.coding .client .client-list,
.coding .client .client-item {
  display: flex;
  flex-direction: column;
}
.coding .client .client-item {
  width: 95%;
}
.coding .client .client-item img {
  width: 105px;
  height: 17px;
  margin: 1rem 0;
}
.coding .client .client-item h3 {
  font-size: 17px;
}
.coding .client .text {
  position: relative;
  padding-left: 1.5rem;
}
.coding .client .text::before {
  content: '';
  position: absolute;
  background-color: #191919;
  height: 1px;
  width: 18px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.coding .client .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100px;
  margin-top: 1.5rem;
}
.coding .client .owl-nav .owl-prev,
.coding .client .owl-nav .owl-next {
  display: flex;
  background-image: url(/_public/images/coding/nav-arrow.svg);
  background-size: 100% 100%;
  width: 34px;
  height: 34px;
  opacity: 0.7;
}
.coding .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.coding .client .owl-nav .btn-active {
  opacity: 1;
}
.coding .faq {
  padding-bottom: 0;
}
.coding .faq .faq-container,
.coding .faq .faq-list,
.coding .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.coding .faq .heading {
  margin-bottom: 0;
}
.coding .faq .faq-item {
  margin-top: 1.5rem;
}
.coding .faq .faq-item.active .ques {
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.16), -2px 2px 0px #EC206E;
}
.coding .faq .faq-item.active .ques::after {
  border-top-color: #EC206E;
}
.coding .faq .faq-item.active .ques h3 {
  background: -webkit-linear-gradient(0deg, #FF4425, #EC206E);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.coding .faq .faq-item.active .ques span img:first-child {
  width: 0;
}
.coding .faq .faq-item.active .ques span img:last-child {
  width: 100%;
}
.coding .faq .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.16), -2px 2px 0px rgba(0, 0, 0, 0.16);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  position: relative;
  transition: 1s all;
}
.coding .faq .ques::after {
  content: '';
  position: absolute;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.16);
  bottom: -6px;
  left: 28px;
  transition: 1s all;
}
.coding .faq .ques h3 {
  font-size: 14px;
  width: calc(100% - 25px);
  font-weight: 500;
}
.coding .faq .ques span {
  display: flex;
  width: 14px;
  height: 14px;
  margin-top: 0.3rem;
}
.coding .faq .ques span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.coding .faq .ques span img:last-child {
  width: 0;
}
.coding .faq .ans {
  display: none;
  margin-top: 1rem;
  padding: 0 1rem;
}
.coding .faq .ans p,
.coding .faq .ans li {
  font-size: 13px;
}
.coding .faq .ans ul {
  padding-left: 1rem;
}
.coding .faq .ans ul li {
  margin-top: 0.5rem;
  list-style: disc;
}
.coding .footer {
  background-image: linear-gradient(180deg, #FFFFFF 55%, #280F70 55%);
}
.coding .footer .footer-container,
.coding .footer .form,
.coding .footer .input-list,
.coding .footer .footer-content,
.coding .footer .footer-list,
.coding .footer .content {
  display: flex;
  flex-direction: column;
}
.coding .footer .form {
  margin-bottom: 0;
  padding: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
}
.coding .footer .form .input-container {
  display: flex;
  margin-bottom: 1.3rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #9e9e9e;
  padding-bottom: 0.3rem;
}
.coding .footer .form .input-container:last-child {
  align-items: flex-start;
}
.coding .footer .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.coding .footer .form .input-container span img {
  height: 100%;
  width: 100%;
}
.coding .footer .form .input-container span img:last-child {
  display: none;
}
.coding .footer .form .input-container input,
.coding .footer .form .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: 0;
  padding: 0;
  font-size: 14px;
}
.coding .footer .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.coding .footer .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #9e9e9e;
  font-size: 12px;
}
.coding .footer .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #9e9e9e;
  font-size: 13px;
}
.coding .footer .form .input-container ::placeholder {
  color: #9e9e9e;
  font-size: 13px;
}
.coding .footer .form .input-error {
  border-bottom: 1px solid #ff0000;
}
.coding .footer .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.coding .footer .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.coding .footer .form .input-error ::placeholder {
  color: #ff0000;
}
.coding .footer .form .input-error span img:first-child {
  display: none;
}
.coding .footer .form .input-error span img:last-child {
  display: flex;
}
.coding .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.coding .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.coding .footer .form .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  color: #191919;
  cursor: pointer;
  line-height: 1.6;
  font-weight: 500;
}
.coding .footer .form .form-consent p {
  font-size: 11px;
}
.coding .footer .form .form-consent a {
  font-weight: 600;
  color: #EC206E;
}
.coding .footer .form .consent-error,
.coding .footer .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.coding .footer .form .consent-error p,
.coding .footer .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.coding .footer .form .buttons .btn-gradient {
  min-width: 100px;
}
.coding .footer .form .buttons .btn-gradient img {
  height: 16px;
  width: 16px;
}
.coding .footer .footer-content {
  margin-top: 2rem;
}
.coding .footer .footer-content .heading {
  margin-bottom: 0;
}
.coding .footer .footer-item {
  display: flex;
  background-color: #FFFFFF;
  margin-top: 1rem;
}
.coding .footer .footer-item span {
  display: flex;
  background-image: linear-gradient(90deg, #FF4425, #EC206E);
  padding: 0.6rem;
  width: 50px;
  height: auto;
}
.coding .footer .footer-item span img {
  width: 100%;
  height: 100%;
}
.coding .footer .content {
  width: calc(100% - 50px);
  padding: 0.6rem;
}
.coding .footer .content h3 {
  font-size: 16px;
}
.coding .footer .content a {
  font-size: 12px;
  margin-top: 0.2rem;
  font-weight: 500;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .coding .banner .banner-content h1 {
    color: #280F70;
  }
  .coding .faq .faq-item.active .ques h3 {
    color: #FF4425;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .coding .banner .logo-container {
    padding: 1rem 2rem;
  }
  .coding .banner .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .coding .banner .banner-container {
    padding: 1.5rem 2rem 3rem;
  }
  .coding .banner .banner-content h1 {
    font-size: 45px;
  }
  .coding .banner .banner-content h1 img {
    width: 55px;
    height: 55px;
  }
  .coding .banner .banner-info {
    display: none;
  }
  .coding .banner .skill ul li {
    width: 21%;
  }
  .coding .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .coding .course .course-item {
    width: 45%;
    margin-right: 1.5rem;
  }
  .coding .course .course-item h3 {
    min-height: 42px;
  }
  .coding .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .coding .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .coding .language .item {
    width: 14%;
  }
  .coding .language .item:nth-child(2n) {
    margin-right: 1rem;
  }
  .coding .language .item:nth-child(6),
  .coding .language .item:last-child {
    margin-right: 0;
  }
  .coding .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 1.5rem;
  }
  .coding .fact .fact-list::before,
  .coding .fact .fact-list::after {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.3;
  }
  .coding .fact .fact-list::before {
    width: 100%;
    height: 1px;
  }
  .coding .fact .fact-list::after {
    height: 100%;
    width: 1px;
  }
  .coding .fact .fact-item {
    width: 44%;
  }
  .coding .fact .fact-item:nth-child(1),
  .coding .fact .fact-item:nth-child(2) {
    margin: 0 0 2.5rem;
  }
  .coding .fact .fact-item:nth-child(3),
  .coding .fact .fact-item:nth-child(4) {
    margin: 2.5rem 0 0;
  }
  .coding .fact .fact-item:last-child {
    margin-left: auto;
  }
  .coding .fact .fact-item:first-child {
    margin-right: auto;
  }
  .coding .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .coding .method .method-item {
    width: 48%;
  }
  .coding .difference .difference-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .coding .difference .difference-content {
    width: 51%;
    align-items: flex-start;
  }
  .coding .difference .difference-content .heading h2 {
    text-align: left;
  }
  .coding .difference .difference-content p {
    text-align: left;
  }
  .coding .difference .difference-info {
    margin-top: 0;
    width: 44%;
    position: sticky;
    top: 60px;
  }
  .coding .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .coding .choose .choose-item {
    width: 45%;
  }
  .coding .benefit .benefit-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .coding .benefit .benefit-content {
    width: 48%;
  }
  .coding .benefit .benefit-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .coding .skill .skill-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .coding .skill .skill-content {
    width: 48%;
  }
  .coding .skill .skill-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .coding .client .client-list {
    padding-left: 6rem;
    background-image: url(/_public/images/coding/quotes.png);
    background-size: 67px 59px;
    background-repeat: no-repeat;
  }
  .coding .faq .faq-list {
    flex-flow: wrap;
    justify-content: space-between;
    counter-reset: counter;
  }
  .coding .faq .faq-item {
    width: 48%;
  }
  .coding .faq .faq-item.active .ques h3::before {
    -webkit-text-fill-color: #FF4425;
  }
  .coding .faq .ques {
    padding: 0.7rem 1.5rem;
  }
  .coding .faq .ques h3 {
    position: relative;
    padding-left: 2rem;
  }
  .coding .faq .ques h3::before {
    content: counter(counter, decimal-leading-zero) ".";
    counter-increment: counter;
    position: absolute;
    top: 0;
    left: 0;
  }
  .coding .footer {
    background-image: linear-gradient(180deg, #FFFFFF 58%, #280F70 58%);
  }
  .coding .footer .form {
    width: 70%;
    margin: auto;
    padding: 2rem 3rem;
    position: relative;
  }
  .coding .footer .form::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/coding/girl.png);
    background-size: 100% 100%;
    width: 141px;
    height: 347px;
    left: -104px;
    bottom: 0;
  }
  .coding .footer .form:after {
    content: '';
    position: absolute;
    background-image: url(/_public/images/coding/boy.png);
    background-size: 100% 100%;
    width: 183px;
    height: 210px;
    bottom: 0;
    right: -95px;
  }
  .coding .footer .footer-content {
    margin-top: 3rem;
  }
  .coding .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .coding .footer .footer-item {
    width: 46%;
    margin-top: 2rem;
  }
  .coding .footer .footer-item span {
    position: relative;
  }
  .coding .footer .footer-item span::before {
    content: '';
    position: absolute;
    height: 0px;
    right: -12px;
    border-bottom: 9px solid transparent;
    border-top: 9px solid transparent;
    border-left: 12px solid #EC206E;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .coding .footer .content {
    padding: 1rem 1rem 1rem 1.3rem;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .coding .heading h2 {
    font-size: 28px;
  }
  .coding .buttons .btn-gradient,
  .coding .buttons .btn-transparent {
    font-size: 16px;
  }
  .coding .banner .logo-container .tka-logo {
    max-width: 220px;
  }
  .coding .banner .logo-container .menu,
  .coding .banner .logo-container .menu-toggle {
    display: none;
  }
  .coding .banner .logo-container .menu-links {
    flex-direction: row;
    width: auto;
    box-shadow: none;
    position: relative;
    background-color: transparent;
  }
  .coding .banner .logo-container .menu-links ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .coding .banner .logo-container .menu-links ul .links-li {
    padding: 0;
    font-size: 16px;
    border-bottom: none;
    margin-right: 1.5rem;
    position: relative;
    color: #FFFFFF;
  }
  .coding .banner .logo-container .menu-links ul .links-li::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0px;
    border-radius: 3px;
    height: 3px;
    width: 0px;
    background-color: #FF4425;
    transition: 1s all;
  }
  .coding .banner .logo-container .menu-links ul .links-li:hover::before {
    width: 100%;
  }
  .coding .banner .logo-container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .coding .banner .logo-container .menu-links ul .links-li:last-child .btn-gradient,
  .coding .banner .logo-container .menu-links ul .links-li:last-child .btn-transparent {
    min-width: 168px;
  }
  .coding .banner .logo-container .menu-links ul .links-li:last-child .btn-transparent {
    margin-right: 1.5rem;
  }
  .coding .banner .logo-container .menu-links ul .links-li:last-child::before {
    content: none;
  }
  .coding .banner .logo-container .menu-links ul .links-li:nth-child(4) {
    display: none;
  }
  .coding .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .coding .banner .banner-content {
    width: 50%;
  }
  .coding .banner .banner-info {
    display: flex;
    width: 40%;
    margin-top: 0px;
  }
  .coding .banner .skill {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 2rem;
  }
  .coding .banner .skill .heading {
    width: 39%;
  }
  .coding .banner .skill .heading h2,
  .coding .banner .skill .heading p {
    text-align: left;
  }
  .coding .banner .skill ul {
    width: 56%;
  }
  .coding .banner .skill ul li:nth-child(-n+4) {
    margin-top: 0;
  }
  .coding .course .course-item {
    margin-right: 2rem;
    width: 31%;
  }
  .coding .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .coding .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .coding .language .language-list:last-child {
    order: 1;
  }
  .coding .language .language-list:nth-child(2) {
    order: 2;
  }
  .coding .language .language-list:nth-child(3) {
    order: 3;
  }
  .coding .language .item {
    width: 11%;
  }
  .coding .language .item:nth-child(5) {
    margin-right: 1rem;
  }
  .coding .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .coding .fact .content {
    width: 37%;
  }
  .coding .fact .fact-list {
    width: 58%;
    margin-top: 0;
  }
  .coding .method .heading {
    width: 85%;
    margin: auto;
  }
  .coding .method .method-item {
    width: 22%;
  }
  .coding .method .method-item h3 {
    min-height: 50px;
  }
  .coding .method .method-item p {
    min-height: 126px;
  }
  .coding .difference .difference-info .heading h2 {
    font-size: 21px;
  }
  .coding .choose .choose-container {
    flex-direction: row;
  }
  .coding .choose .heading {
    width: 36%;
    padding: 6rem 2.5rem;
    justify-content: center;
  }
  .coding .choose .choose-list {
    width: 64%;
    counter-reset: counter;
  }
  .coding .choose .choose-item {
    width: 50%;
    padding: 1.5rem 3rem;
    margin-top: 0;
    border: 1px solid #E4E4E4;
    position: relative;
  }
  .coding .choose .choose-item h3 {
    min-height: 42px;
  }
  .coding .choose .choose-item:nth-child(1),
  .coding .choose .choose-item:nth-child(3) {
    border-right: none;
  }
  .coding .choose .choose-item:nth-child(1),
  .coding .choose .choose-item:nth-child(2) {
    border-bottom: none;
  }
  .coding .choose .choose-item::before {
    content: counter(counter, decimal-leading-zero);
    position: absolute;
    counter-increment: counter;
    font-size: 35px;
    font-weight: 600;
    color: #F5F5F5;
    top: 30px;
    right: 50px;
  }
  .coding .benefit {
    background-image: url(/_public/images/coding/lines.png);
    background-size: 100% 100%;
  }
  .coding .benefit .benefit-container {
    align-items: center;
  }
  .coding .benefit .benefit-info {
    position: static;
    top: 0;
  }
  .coding .benefit .benefit-info span {
    width: 413px;
    height: 363px;
    align-self: center;
  }
  .coding .client {
    background-image: url(/_public/images/coding/client-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    padding-top: 6rem;
  }
  .coding .client .client-container {
    padding: 0 0 7rem 22rem;
    background-image: url(/_public/images/coding/client.png), linear-gradient(90deg, #280F70 19%, transparent 19%);
    background-size: 25% 64%, 100% 100%;
    background-repeat: no-repeat;
    background-position: left 8% top 38%;
    position: relative;
  }
  .coding .client .client-container::before {
    content: '';
    position: absolute;
    border: 2px solid #E4E4E4;
    width: 260px;
    height: 260px;
    border-radius: 100%;
    left: -105px;
    top: -88px;
    z-index: -1;
    animation: 3s scale linear infinite;
  }
  .coding .client .client-list {
    position: static;
  }
  .coding .client .owl-nav {
    position: absolute;
    margin-top: 0;
    left: 6%;
    bottom: 50px;
  }
  .coding .faq {
    padding-bottom: 2rem;
  }
  .coding .faq .faq-item .ques {
    border-radius: 50px;
  }
  .coding .footer {
    background-image: url(/_public/images/coding/curve.png), url(/_public/images/coding/footer-bg.png);
    background-size: 76% 64%, 100% 40%;
    background-position: top 44% left 48%, bottom;
    background-repeat: no-repeat;
  }
  .coding .footer .footer-container {
    position: relative;
  }
  .coding .footer .footer-container:before,
  .coding .footer .footer-container:after {
    content: '';
    background-image: url(/_public/images/coding/grid.png);
    background-size: 100% 100%;
    position: absolute;
    width: 87px;
    height: 175px;
    animation: blink 2s linear infinite;
  }
  .coding .footer .footer-container::before {
    left: -44px;
    bottom: 43%;
  }
  .coding .footer .footer-container:after {
    top: 0;
    right: 0;
  }
  .coding .footer .form {
    padding: 2rem 4.5rem;
  }
  .coding .footer .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .coding .footer .form .input-container {
    width: 48%;
  }
  .coding .footer .form .input-container:last-child {
    width: 100%;
  }
  .coding .footer .footer-content .heading {
    width: 80%;
    margin: auto;
  }
  .coding .footer .footer-list {
    justify-content: space-between;
  }
  .coding .footer .footer-item {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .coding .heading h2 {
    font-size: 32px;
  }
  .coding .banner {
    background: url(/_public/images/coding/banner-bg.png);
    background-size: 100% 68%;
    background-repeat: no-repeat;
  }
  .coding .banner .logo-container {
    padding: 1.2rem 0 0;
    background-color: transparent;
  }
  .coding .banner .logo-container .tka-logo {
    max-width: 235px;
  }
  .coding .banner .logo-container .menu-links ul .links-li:nth-child(4) {
    display: flex;
  }
  .coding .banner .sticky {
    padding: 1rem 0;
    background-color: #280F70;
  }
  .coding .banner .banner-container {
    padding: 11rem 0 6rem;
    background-size: 45% 62%;
  }
  .coding .banner .banner-content h1 {
    font-size: 60px;
  }
  .coding .banner .banner-content h1 img {
    width: 63px;
    height: 63px;
  }
  .coding .banner .skill {
    padding: 3rem 5rem;
  }
  .coding .course .course-item {
    width: 23%;
  }
  .coding .course .course-item:nth-child(3n) {
    margin-right: 2rem;
  }
  .coding .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .coding .fact {
    padding: 2rem 0;
    background-color: transparent;
    background-image: url(/_public/images/coding/fact-bg.png), linear-gradient(90deg, #280F70 94%, #FFFFFF 94%);
    background-size: 100% 100%;
  }
  .coding .fact .fact-container {
    width: 95%;
  }
  .coding .fact .fact-list {
    width: 53%;
  }
  .coding .method .method-item h3 {
    min-height: auto;
  }
  .coding .method .method-item p {
    min-height: auto;
  }
  .coding .difference .difference-info {
    position: static;
    top: 0;
    align-self: center;
  }
  .coding .choose .heading {
    width: 41%;
  }
  .coding .choose .choose-list {
    width: 58%;
  }
  .coding .choose .choose-list .choose-item h3 {
    min-height: auto;
  }
  .coding .benefit .benefit-info {
    width: 43%;
  }
  .coding .skill .skill-info {
    position: static;
    top: 0;
  }
  .coding .client .client-container {
    width: 92%;
    padding: 0 0 9rem 24rem;
  }
  .coding .footer {
    background-size: 70% 64%, 100% 42%;
  }
  .coding .footer .footer-item {
    width: 30%;
  }
  .coding .footer .footer-item span {
    width: 85px;
    padding: 0.9rem 1.5rem;
  }
  .coding .footer .content {
    width: calc(100% - 90px);
  }
}
@media (min-width : 1500px) {
  .coding .fact {
    background-image: url(/_public/images/coding/fact-bg.png), linear-gradient(90deg, #280F70 95%, #FFFFFF 95%);
    background-size: cover, 100% 100%;
  }
  .coding .fact .fact-container {
    width: 95%;
  }
  .coding .footer {
    background-size: 49% 64%, 100% 42%;
  }
}
