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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 12px;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 13px;
  width: 13px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #070505;
  background-color: #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: #0CBE7E;
}
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: #070505;
  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;
  font-weight: 500;
  line-height: 1.6;
  color: #070505;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.marketing .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.marketing .buttons .btn-green,
.marketing .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 0 50px 50px 50px;
  transition: 1s all;
}
.marketing .buttons .btn-green img,
.marketing .buttons .btn-transparent img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.marketing .buttons .btn-green:hover,
.marketing .buttons .btn-transparent:hover {
  border-radius: 50px 50px 0px 50px;
}
.marketing .buttons .btn-green {
  background-color: #0CBE7E;
  color: #FFFFFF;
}
.marketing .buttons .btn-transparent {
  border: 1px solid #000000;
  color: #000000;
}
.marketing .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.marketing .heading h2 {
  width: 100%;
  position: relative;
}
.marketing .heading h2::before,
.marketing .heading h2::after {
  content: none;
  position: absolute;
  border-radius: 50px;
  background-color: #0CBE7E;
}
.marketing .heading h2::before {
  height: 10px;
  width: 10px;
  top: 7px;
  left: -3px;
  animation: pulse 2s linear infinite;
}
.marketing .heading h2::after {
  height: 15px;
  width: 15px;
  top: 4px;
  left: -7px;
  animation: circleMover 5s linear infinite;
}
.marketing .heading p {
  margin-top: 0.8rem;
}
.marketing .center-heading {
  justify-content: center;
  align-items: center;
}
.marketing .center-heading h2,
.marketing .center-heading p {
  text-align: center;
}
.marketing .white-heading h2::before,
.marketing .white-heading h2::after {
  background-color: #FFFFFF;
}
.marketing .white-heading h2,
.marketing .white-heading p {
  color: #FFFFFF;
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@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);
  }
}
.marketing .banner {
  flex-direction: column;
  padding-top: 2rem;
  background-image: linear-gradient(45deg, #FFF6F6, #E4FCFE, #FFF6F6);
}
.marketing .banner .tka-logo,
.marketing .banner .menu {
  display: flex;
}
.marketing .banner .container {
  height: 100%;
}
.marketing .banner .logo-container {
  display: flex;
  height: 100%;
}
.marketing .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
  padding: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 20px 20px;
}
.marketing .banner .tka-logo {
  max-width: 190px;
}
.marketing .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.marketing .banner .menu {
  z-index: 1;
  margin-left: auto;
}
.marketing .banner .menu img {
  width: 22px;
  height: 23px;
}
.marketing .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.marketing .banner .menu-toggle {
  color: #070505;
}
.marketing .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.marketing .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #070505;
  font-size: 15px;
}
.marketing .banner ul .links-li:first-child {
  padding-top: 0;
}
.marketing .banner ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.marketing .banner ul .links-li:last-child {
  display: none;
}
.marketing .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.marketing .banner .menu.active + .menu-links .menu-toggle {
  display: flex;
  font-weight: 500;
  justify-content: flex-end;
  align-items: center;
}
.marketing .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  border-bottom: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.marketing .banner .sticky .container {
  padding: 1rem 1.5rem;
  border-radius: 0;
}
.marketing .banner .sticky-down {
  top: -100px;
}
.marketing .banner .banner-container,
.marketing .banner .banner-content,
.marketing .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.marketing .banner .banner-container {
  padding-top: 1.5rem;
}
.marketing .banner .banner-content h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.marketing .banner .banner-content h1 img {
  width: 45px;
  height: 45px;
  margin-right: 0.7rem;
}
.marketing .banner .banner-content h1 .text {
  font-size: 40px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
}
.marketing .banner .banner-content h1 .text1 {
  font-size: 27px;
}
.marketing .banner .banner-info {
  margin-top: 2rem;
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}
.marketing .banner .banner-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.marketing .banner .banner-info span img {
  width: 100%;
  height: 100%;
}
.marketing .banner .banner-info h3 {
  margin: 0.5rem 0;
  font-size: 20px;
}
.marketing .banner .banner-info p {
  font-size: 13px;
}
.marketing .overview .overview-container,
.marketing .overview .overview-content,
.marketing .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.marketing .overview .overview-container {
  align-items: flex-start;
}
.marketing .overview .overview-content {
  align-items: center;
  width: 100%;
}
.marketing .overview .overview-content p {
  text-align: center;
}
.marketing .overview .overview-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.marketing .overview .overview-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.marketing .overview .overview-info span img {
  width: 100%;
  height: 100%;
}
.marketing .course {
  padding-top: 0;
}
.marketing .course .course-container,
.marketing .course .course-list,
.marketing .course .course-item,
.marketing .course .course-content {
  display: flex;
  flex-direction: column;
}
.marketing .course .heading {
  margin-bottom: 0;
}
.marketing .course .heading p {
  margin: 0 0 0.2rem 0;
}
.marketing .course .heading p strong {
  color: #0CBE7E;
}
.marketing .course .course-item {
  background-image: url(/_public/images/marketing/degree.svg), linear-gradient(45deg, #FFF6F6, #E4FCFE, #FFF6F6);
  margin-top: 1.5rem;
  background-size: 40px 40px, 100% 100%;
  background-repeat: no-repeat;
  background-position: right 24px top 25px, center;
}
.marketing .course .course-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  padding: 0.3rem 1.3rem;
  border: 1px solid transparent;
  transition: 1s all;
}
.marketing .course .course-item a img {
  width: 18px;
  height: 18px;
}
.marketing .course .course-item:hover a {
  border-top: none;
  border: 1px solid #a4a4a4;
}
.marketing .course .course-content {
  padding: 0.8rem 5rem 0.7rem 1.3rem;
  border-bottom: 2px solid #FFFFFF;
}
.marketing .course .course-content h3 {
  font-size: 14px;
  margin-bottom: 0.3rem;
}
.marketing .course .course-content p {
  font-size: 12px;
}
.marketing .skill {
  background-image: linear-gradient(45deg, #FFF6F6, #E4FCFE, #FFF6F6);
}
.marketing .skill .skill-container,
.marketing .skill .skill-content,
.marketing .skill .skill-info,
.marketing .skill .skill-item {
  display: flex;
  flex-direction: column;
}
.marketing .skill .skill-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.marketing .skill .skill-content ul li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0CBE7E;
  border-radius: 50px;
  top: 7px;
  left: 0;
  animation: pulse 2s linear infinite;
}
.marketing .skill .skill-item {
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  margin-top: 2rem;
  padding: 1rem;
  background-size: 48px 48px;
  background-position: top 16px right 16px;
  background-repeat: no-repeat;
}
.marketing .skill .skill-item .count {
  display: flex;
}
.marketing .skill .skill-item .count h3 {
  font-size: 25px;
  line-height: 1.3;
}
.marketing .skill .skill-item p {
  font-size: 12px;
  width: 80%;
}
.marketing .skill .skill-item:nth-child(1) {
  background-image: url(/_public/images/marketing/graph.svg);
}
.marketing .skill .skill-item:nth-child(2) {
  background-image: url(/_public/images/marketing/blog.svg);
}
.marketing .skill .skill-item:nth-child(3) {
  background-image: url(/_public/images/marketing/invested.svg);
}
.marketing .method {
  padding-bottom: 0;
}
.marketing .method .method-container,
.marketing .method .method-list,
.marketing .method .method-item,
.marketing .method .content {
  display: flex;
  flex-direction: column;
}
.marketing .method .heading {
  margin-bottom: 0;
}
.marketing .method .method-list {
  counter-reset: counter;
}
.marketing .method .method-item {
  align-items: center;
  margin-top: 2rem;
}
.marketing .method .method-item:nth-child(odd) .content::before {
  right: 20px;
  bottom: 25px;
}
.marketing .method .method-item:nth-child(odd) .content span {
  top: 23px;
  left: 19px;
}
.marketing .method .method-item:nth-child(even) .content::before {
  left: 21px;
  top: 25px;
}
.marketing .method .method-item:nth-child(even) .content span {
  bottom: 19px;
  right: 24px;
}
.marketing .method .method-item img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.marketing .method .method-item img:last-child {
  width: 0;
}
.marketing .method .method-item h3 {
  font-size: 14px;
  margin: 1rem 0 0.5rem;
  width: 100%;
  text-align: center;
  order: 2;
}
.marketing .method .method-item a {
  display: flex;
  font-size: 13px;
  font-weight: 600;
  align-items: center;
  transition: 1s all;
  order: 3;
}
.marketing .method .method-item a span {
  display: flex;
  width: 13px;
  height: 12px;
  margin-left: 0.5rem;
}
.marketing .method .method-item a:hover {
  color: #0CBE7E;
}
.marketing .method .method-item a:hover ~ .content span {
  background-image: linear-gradient(45deg, #E7FBFC, #FDD9FB);
  background-size: 100% 100%;
  background-color: transparent;
}
.marketing .method .method-item a:hover ~ .content span img:first-child {
  width: 0;
}
.marketing .method .method-item a:hover ~ .content span img:last-child {
  width: 100%;
}
.marketing .method .method-item a:hover img:first-child {
  width: 0;
}
.marketing .method .method-item a:hover img:last-child {
  width: 100%;
}
.marketing .method .content {
  background-color: #F5F5F5;
  border-radius: 100px;
  width: 170px;
  height: 170px;
  position: relative;
  order: 1;
}
.marketing .method .content::before {
  content: counter(counter);
  counter-increment: counter;
  display: flex;
  position: absolute;
  background-color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  -webkit-text-stroke: 1px #000000;
  -webkit-text-fill-color: #FFFFFF;
}
.marketing .method .content span {
  display: flex;
  width: 95px;
  height: 95px;
  padding: 1.5rem;
  border-radius: 50px;
  background-color: #0CBE7E;
  position: absolute;
  transition: 1s all;
}
.marketing .growth .growth-container,
.marketing .growth .growth-content {
  display: flex;
  flex-direction: column;
}
.marketing .growth .growth-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.marketing .growth .growth-content ul li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0CBE7E;
  border-radius: 50px;
  top: 7px;
  left: 0;
  animation: pulse 2s linear infinite;
}
.marketing .growth .growth-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.marketing .growth .growth-info img {
  width: 100%;
  height: 100%;
}
.marketing .fact {
  padding-top: 0;
  padding-bottom: 0;
}
.marketing .fact .fact-container,
.marketing .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.marketing .fact .fact-container {
  background-image: linear-gradient(45deg, #FFF6F6, #E4FCFE, #FFF6F6);
  padding: 2rem 1rem;
}
.marketing .fact .heading {
  margin-bottom: 0;
}
.marketing .fact .fact-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.marketing .fact .fact-item img {
  width: 47px;
  height: 47px;
  transform: translateY(-7px);
}
.marketing .fact .fact-item .info {
  display: flex;
  flex-flow: wrap;
  width: calc(100% - 65px);
  line-height: 1.1;
}
.marketing .fact .fact-item .info h3 {
  font-size: 28px;
}
.marketing .fact .fact-item .info p {
  font-size: 13px;
}
.marketing .goal .goal-container,
.marketing .goal .goal-content {
  display: flex;
  flex-direction: column;
}
.marketing .goal .goal-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.marketing .goal .goal-info img {
  width: 100%;
  height: 100%;
}
.marketing .choose {
  padding-top: 0;
}
.marketing .choose .choose-container,
.marketing .choose .choose-list,
.marketing .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.marketing .choose .heading {
  margin-bottom: 0;
}
.marketing .choose .choose-list {
  counter-reset: counter;
}
.marketing .choose .choose-item {
  border-radius: 0 30px 80px 30px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.16);
  padding: 2.5rem 2rem 2rem;
  margin-top: 2rem;
  position: relative;
}
.marketing .choose .choose-item::before {
  content: counter(counter, decimal-leading-zero);
  position: absolute;
  counter-increment: counter;
  top: 23px;
  right: 37px;
  font-size: 65px;
  font-weight: 600;
  color: #F5F5F5;
}
.marketing .choose .choose-item img {
  width: 65px;
  height: 65px;
}
.marketing .choose .choose-item h3 {
  font-size: 17px;
  margin: 0.8rem 0 0.5rem;
}
.marketing .choose .choose-item p {
  font-size: 13px;
}
.marketing .client {
  padding-top: 0;
}
.marketing .client .client-container,
.marketing .client .client-info,
.marketing .client .client-list,
.marketing .client .client-item {
  display: flex;
  flex-direction: column;
}
.marketing .client .client-container {
  padding: 1.5rem;
  background-image: url(/_public/images/marketing/quote.png), linear-gradient(45deg, #FFF6F6, #E4FCFE, #FFF6F6);
  background-size: 100% 0, 100% 100%;
}
.marketing .client .heading h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.marketing .client .client-item {
  width: 95%;
}
.marketing .client .client-item span {
  display: flex;
  width: 80px;
  height: 75px;
  border: 1px solid #B3B3B3;
  padding: 0.8rem;
  margin: 0 0 1.2rem 0.4rem;
  background-color: #FFFFFF;
  position: relative;
}
.marketing .client .client-item span img {
  width: 100%;
  height: 100%;
}
.marketing .client .client-item span::before,
.marketing .client .client-item span::after {
  content: '';
  position: absolute;
  background-color: #0CBE7E;
}
.marketing .client .client-item span::before {
  width: 1px;
  height: 25px;
  left: -4px;
  bottom: -4px;
}
.marketing .client .client-item span::after {
  width: 25px;
  height: 1px;
  left: -3px;
  bottom: -4px;
}
.marketing .client .client-item .text {
  margin-top: 0.8rem;
}
.marketing .client .client-item h3 {
  font-size: 15px;
  margin-bottom: 0.4rem;
}
.marketing .client .client-info img {
  width: 80px;
  height: 15px;
}
.marketing .client .owl-nav {
  display: flex;
  width: 75px;
  justify-content: space-between;
  margin-top: 1.3rem;
}
.marketing .client .owl-nav .owl-prev,
.marketing .client .owl-nav .owl-next {
  display: flex;
  height: 30px;
  width: 30px;
  background-size: 9px 15px;
  background-position: center;
  border: 1px solid #000000;
  background-repeat: no-repeat;
  background-image: url(/_public/images/marketing/arrow-black.svg);
  transition: 1s all;
}
.marketing .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.marketing .client .owl-nav .owl-prev.btn-active {
  background-image: url(/_public/images/marketing/arrow-white.png);
  background-color: #0CBE7E;
  border-color: transparent;
}
.marketing .client .owl-nav .owl-next.btn-active {
  background-image: url(/_public/images/marketing/arrow-white.png);
  background-color: #0CBE7E;
  border-color: transparent;
}
.marketing .faq {
  padding-top: 0;
}
.marketing .faq .faq-container,
.marketing .faq .faq-content,
.marketing .faq .faq-list,
.marketing .faq .faq-item,
.marketing .faq .form {
  display: flex;
  flex-direction: column;
}
.marketing .faq .faq-item {
  border: 1px solid transparent;
  border-top-color: #a4a4a4;
  overflow: hidden;
}
.marketing .faq .faq-item .ques {
  display: flex;
  padding: 1rem 0;
  justify-content: space-between;
  cursor: pointer;
  transition: 1s all;
}
.marketing .faq .faq-item .ques h3 {
  font-size: 15px;
  width: calc(100% - 37px);
}
.marketing .faq .faq-item .ques span {
  display: flex;
  width: 20px;
  height: 20px;
  padding: 4px 5px;
  border: 1px solid #000000;
  border-radius: 14px;
  transform: rotate(-90deg);
  transition: 1s all;
}
.marketing .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
}
.marketing .faq .faq-item .ques span img:last-child {
  display: none;
}
.marketing .faq .faq-item .ans {
  display: none;
  padding: 1rem;
}
.marketing .faq .faq-item .ans p {
  font-size: 13px;
}
.marketing .faq .faq-item:nth-child(2) {
  border-top-color: transparent;
}
.marketing .faq .faq-item:last-child {
  border-bottom-color: #a4a4a4;
}
.marketing .faq .active {
  border-radius: 6px 6px 0 0;
  border-color: #a4a4a4 !important;
}
.marketing .faq .active .ques {
  background-color: #F5F5F5;
  padding: 1rem;
}
.marketing .faq .active .ques span {
  border-color: #0CBE7E;
  transform: rotate(90deg);
}
.marketing .faq .active .ques span img:first-child {
  display: none;
}
.marketing .faq .active .ques span img:last-child {
  display: flex;
}
.marketing .faq .active + .faq-item {
  border-top-color: transparent;
}
.marketing .faq .form {
  margin: 2rem 0 0;
  margin-bottom: 0;
  padding: 1rem;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
}
.marketing .faq .form .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #a4a4a4;
}
.marketing .faq .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.marketing .faq .form .input-container span img {
  width: 100%;
  height: 100%;
}
.marketing .faq .form .input-container span img:last-child {
  display: none;
}
.marketing .faq .form .input-container input,
.marketing .faq .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  color: #070505;
}
.marketing .faq .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.marketing .faq .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #a4a4a4;
}
.marketing .faq .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #a4a4a4;
}
.marketing .faq .form .input-container ::placeholder {
  color: #a4a4a4;
}
.marketing .faq .form .input-container:nth-child(6) {
  align-items: flex-start;
}
.marketing .faq .form .input-error {
  border: 1px solid #ff0000;
}
.marketing .faq .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.marketing .faq .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.marketing .faq .form .input-error ::placeholder {
  color: #ff0000;
}
.marketing .faq .form .input-error span img:first-child {
  display: none;
}
.marketing .faq .form .input-error span img:last-child {
  display: flex;
}
.marketing .faq .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.marketing .faq .form .form-consent p {
  font-size: 11px;
}
.marketing .faq .form .form-consent a {
  font-weight: 600;
  color: #0CBE7E;
}
.marketing .faq .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  line-height: 1.6;
  font-size: 11px;
  width: 90%;
  color: #070505;
  font-weight: 500;
}
.marketing .faq .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.marketing .faq .form .consent-error,
.marketing .faq .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.marketing .faq .form .consent-error p,
.marketing .faq .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.marketing .faq .form .buttons {
  align-self: center;
}
.marketing .faq .form .buttons .btn-green {
  min-width: 130px;
}
.marketing .faq .form .buttons .btn-green img {
  width: 16px;
  height: 16px;
}
.marketing .footer {
  background-image: linear-gradient(45deg, #FFF6F6, #E4FCFE, #FFF6F6);
}
.marketing .footer .footer-container,
.marketing .footer .footer-list,
.marketing .footer .info {
  display: flex;
  flex-direction: column;
}
.marketing .footer .heading {
  margin-bottom: 0;
}
.marketing .footer .footer-list {
  width: 100%;
}
.marketing .footer .footer-item {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #070505;
}
.marketing .footer .footer-item .image {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}
.marketing .footer .info {
  width: auto;
}
.marketing .footer .info h3 {
  font-size: 14px;
  margin-bottom: 0.2rem;
}
.marketing .footer .info a {
  font-size: 12px;
  font-weight: 500;
}
.marketing .footer .info img {
  width: 120px;
  height: 20px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .marketing .banner .menu.active + .menu-links {
    width: 50%;
  }
  .marketing .banner .sticky .container {
    padding: 1rem 2rem;
  }
  .marketing .banner .banner-info {
    display: none;
  }
  .marketing .overview .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .marketing .overview .overview-content {
    align-items: flex-start;
    width: 48%;
  }
  .marketing .overview .overview-content h2,
  .marketing .overview .overview-content p {
    text-align: left;
  }
  .marketing .overview .overview-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .marketing .course .course-list {
    flex-flow: Wrap;
    justify-content: center;
  }
  .marketing .course .course-item {
    width: 47%;
    margin-right: 1.5rem;
  }
  .marketing .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .marketing .course .course-item:last-child {
    margin-right: 0;
  }
  .marketing .course .course-content h3 {
    min-height: 42px;
  }
  .marketing .skill .skill-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .marketing .skill .skill-content {
    width: 52%;
  }
  .marketing .skill .skill-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .marketing .skill .skill-content ul li {
    width: 48%;
  }
  .marketing .skill .skill-content .heading h2 {
    text-align: left;
  }
  .marketing .skill .skill-content p {
    text-align: left;
  }
  .marketing .skill .skill-info {
    width: 40%;
    align-self: center;
  }
  .marketing .skill .skill-item:first-child {
    margin-top: 0;
  }
  .marketing .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .marketing .method .method-item {
    width: 45%;
  }
  .marketing .growth .growth-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .marketing .growth .growth-content {
    width: 48%;
  }
  .marketing .growth .growth-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .marketing .growth .growth-content ul li {
    width: 48%;
  }
  .marketing .growth .growth-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .marketing .fact .heading h2,
  .marketing .fact .heading p {
    text-align: center;
  }
  .marketing .fact .fact-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .marketing .fact .fact-item {
    width: 24%;
  }
  .marketing .goal .goal-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .marketing .goal .goal-content {
    width: 49%;
  }
  .marketing .goal .goal-info {
    width: 46%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .marketing .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .marketing .choose .choose-item {
    width: 46%;
  }
  .marketing .client .client-item {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .marketing .client .client-item span {
    margin-bottom: 0;
  }
  .marketing .client .client-info {
    width: calc(100% - 110px);
  }
  .marketing .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .marketing .faq .faq-content {
    width: 50%;
    margin-top: 0;
  }
  .marketing .faq .faq-list {
    margin-top: 0;
  }
  .marketing .faq .form {
    width: 45%;
    position: sticky;
    top: 60px;
    margin: 0;
  }
  .marketing .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .marketing .footer .heading {
    width: 60%;
  }
  .marketing .footer .buttons {
    width: 39%;
    margin-top: 0;
    align-self: flex-end;
    justify-content: flex-end;
  }
  .marketing .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .marketing .heading h2 {
    font-size: 28px;
    padding-left: 1.7rem;
  }
  .marketing .heading h2::before,
  .marketing .heading h2::after {
    content: '';
  }
  .marketing .center-heading h2 {
    width: auto;
  }
  .marketing .buttons .btn-green,
  .marketing .buttons .btn-transparent {
    font-size: 16px;
  }
  .marketing .banner {
    padding-bottom: 5rem;
    position: relative;
    background-image: url(/_public/images/marketing/banner-bg.png);
    background-size: 100% 100%;
    z-index: 2;
  }
  .marketing .banner .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  .marketing .banner .image li {
    position: absolute;
    display: block;
    list-style: none;
    width: 95px;
    height: 29px;
    background-image: url(/_public/images/marketing/grid.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: turn 7s linear infinite;
    bottom: 0%;
    z-index: -1;
    border-radius: 30px;
    animation-delay: 0s;
  }
  .marketing .banner .image li:nth-child(1) {
    left: 2%;
    top: 16%;
  }
  .marketing .banner .image li:nth-child(2) {
    left: 29%;
    bottom: 101px;
  }
  .marketing .banner .image li:nth-child(3) {
    right: 2%;
    bottom: 5%;
  }
  .marketing .banner .image li:nth-child(4) {
    right: 25%;
    top: 0;
  }
  .marketing .banner .image li:nth-child(5) {
    right: 4%;
    top: 34%;
    background-image: url(/_public/images/marketing/media.png);
    width: 43%;
    height: 43%;
    animation: blink 3s linear infinite;
  }
  .marketing .banner .menu,
  .marketing .banner .menu-toggle {
    display: none;
  }
  .marketing .banner .logo-container.sticky .container {
    box-shadow: none;
  }
  .marketing .banner .tka-logo {
    margin-right: auto;
    max-width: 205px;
  }
  .marketing .banner .menu-links {
    display: flex;
    width: auto;
    position: relative;
    box-shadow: none;
  }
  .marketing .banner .menu-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .marketing .banner .menu-links ul .links-li {
    border-bottom: none;
    margin-right: 1.5rem;
    transition: 1s all;
    padding: 0;
  }
  .marketing .banner .menu-links ul .links-li:hover {
    color: #0CBE7E;
  }
  .marketing .banner .menu-links ul .links-li:nth-child(3) {
    display: none;
  }
  .marketing .banner .menu-links ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .marketing .banner .menu-links ul .links-li:last-child .btn-transparent {
    margin-right: 1.5rem;
  }
  .marketing .banner .menu-links ul .links-li:last-child .btn-green,
  .marketing .banner .menu-links ul .links-li:last-child .btn-transparent {
    min-width: 172px;
  }
  .marketing .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
  }
  .marketing .banner .banner-content {
    width: 47%;
  }
  .marketing .banner .banner-content h1 {
    margin-bottom: 0;
  }
  .marketing .banner .banner-content h1 img {
    width: 62px;
    height: 62px;
    transform: translateY(-9px);
  }
  .marketing .banner .banner-content h1 .text {
    font-size: 63px;
    border: 2px solid #0CBE7E;
    border-left: none;
    padding: 0.3rem 0.3rem 1.2rem 0;
  }
  .marketing .banner .banner-content h1 .text1 {
    font-size: 35px;
    background-color: #f4fefd;
    transform: translateY(-27px);
    padding-right: 1rem;
  }
  .marketing .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 42%;
    padding: 1.5rem 2.5rem;
    border-radius: 30px 30px 60px 30px;
  }
  .marketing .overview .overview-content {
    width: 55%;
  }
  .marketing .overview .overview-content .heading h2 {
    width: 100%;
  }
  .marketing .overview .overview-info {
    width: 38%;
  }
  .marketing .course .course-item {
    width: 31%;
  }
  .marketing .course .course-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .marketing .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .marketing .skill {
    background-image: url(/_public/images/marketing/skill-bg.png);
    background-size: cover;
    background-position: right;
  }
  .marketing .skill .skill-info {
    background-image: url(/_public/images/marketing/skill.png);
    background-size: 94% 90%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .marketing .skill .skill-item {
    border-radius: 0px 30px 30px 30px;
    margin-top: 0;
  }
  .marketing .skill .skill-item:nth-child(1) {
    padding: 2.5rem 1rem 0.8rem;
    width: 145px;
    background-position: top 14px right 16px;
    transform: translate(-50px, 30px);
  }
  .marketing .skill .skill-item:nth-child(2),
  .marketing .skill .skill-item:nth-child(3) {
    width: 138px;
  }
  .marketing .skill .skill-item:nth-child(2) {
    background-position: top 21px right 23px;
    padding: 3rem 0.6rem 1rem;
    transform: translate(-45px, 150px);
  }
  .marketing .skill .skill-item:nth-child(2) .count h3 {
    line-height: 1.5;
  }
  .marketing .skill .skill-item:nth-child(3) {
    align-items: center;
    text-align: center;
    background-position: top 16px right 45px;
    padding: 4.5rem 0.5rem 1.5rem;
    transform: translate(260px, -80px);
  }
  .marketing .skill .skill-item .count h3 {
    font-size: 17px;
  }
  .marketing .skill .skill-item p {
    width: 100%;
  }
  .marketing .method {
    background-image: url(/_public/images/marketing/method-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .marketing .method .heading {
    width: 85%;
    margin: auto;
  }
  .marketing .method .method-list {
    justify-content: space-between;
  }
  .marketing .method .method-item {
    width: 23.5%;
  }
  .marketing .fact .heading {
    width: 71%;
    align-self: center;
    justify-content: center;
    align-items: center;
  }
  .marketing .fact .heading h2 {
    width: auto;
  }
  .marketing .fact .fact-container {
    padding: 2.8rem 3.5rem 3rem;
    border-radius: 0 30px 80px 30px;
    position: relative;
  }
  .marketing .fact .fact-container::before,
  .marketing .fact .fact-container::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 35px;
    background-image: url(/_public/images/marketing/fact-grid.png);
    background-size: 100% 100%;
  }
  .marketing .fact .fact-container::before {
    top: 72px;
    left: 45px;
  }
  .marketing .fact .fact-container:after {
    top: 70px;
    right: 12px;
    transform: rotate(90deg);
  }
  .marketing .fact .fact-item {
    width: 21%;
  }
  .marketing .fact .fact-item .info p {
    font-size: 14px;
  }
  .marketing .goal .goal-info {
    align-self: center;
    position: static;
    top: 0px;
  }
  .marketing .choose .heading {
    width: 78%;
    align-self: center;
  }
  .marketing .choose .choose-list {
    justify-content: space-between;
    width: 95%;
    align-self: center;
  }
  .marketing .choose .choose-item {
    width: 30.5%;
  }
  .marketing .client {
    padding-top: 2rem;
  }
  .marketing .client .client-container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding: 3rem 4rem 3rem 3rem;
    border-radius: 0 40px 80px 40px;
    background-size: 185px 120px,100% 100%;
    background-position: bottom 16% right 5%;
    background-repeat: no-repeat;
  }
  .marketing .client .heading {
    width: 25%;
    margin-bottom: 0;
  }
  .marketing .client .heading h2 {
    padding-left: 0;
  }
  .marketing .client .heading h2::after,
  .marketing .client .heading h2::before {
    content: none;
  }
  .marketing .client .client-list {
    width: 70%;
    position: static;
  }
  .marketing .client .client-item .text {
    margin-top: 1.5rem;
  }
  .marketing .client .owl-nav {
    position: absolute;
    left: 50px;
    bottom: 80px;
    margin-top: 0;
  }
  .marketing .faq .faq-item .ques {
    position: relative;
    align-items: center;
  }
  .marketing .faq .faq-item .ques::before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/_public/images/marketing/ques-black.svg);
    background-size: 9px 12px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
    background-color: #F5F5F5;
    transition: 1s all;
  }
  .marketing .faq .faq-item .ques h3 {
    width: calc(100% - 90px);
  }
  .marketing .faq .faq-item .ans {
    padding: 1rem 1rem 1rem 2.5rem;
  }
  .marketing .faq .active .ques::before {
    background-color: #0CBE7E;
    background-image: url(/_public/images/marketing/ques.svg);
  }
  .marketing .faq .form {
    padding: 2rem 1.5rem;
    width: 40%;
    position: static;
    top: 0px;
  }
  .marketing .footer {
    background-image: url(/_public/images/marketing/footer-bg.png);
    background-size: 100% 100%;
  }
  .marketing .footer .footer-list {
    padding: 2.5rem 2rem;
    border: 2px solid #070505;
    margin-top: 2.5rem;
  }
  .marketing .footer .footer-item {
    margin-top: 0;
  }
  .marketing .footer .info h3 {
    font-size: 16px;
  }
  .marketing .footer .info a {
    font-size: 13px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .marketing .heading h2 {
    font-size: 32px;
  }
  .marketing .banner .logo-container .container {
    padding: 1.2rem 1.5rem;
  }
  .marketing .banner .sticky {
    background-color: #FFFFFF;
  }
  .marketing .banner .sticky .container {
    padding: 1rem 0;
  }
  .marketing .banner .banner-container {
    padding-top: 6rem;
  }
  .marketing .banner .menu-links ul .links-li:nth-child(3) {
    display: flex;
  }
  .marketing .overview .overview-info {
    position: static;
    top: 0;
  }
  .marketing .course .course-container {
    width: 95%;
    margin: auto;
  }
  .marketing .course .course-content h3 {
    min-height: auto;
  }
  .marketing .skill .skill-content {
    position: relative;
  }
  .marketing .skill .skill-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: #070505;
    opacity: 0.04;
    top: 35px;
    left: -40px;
  }
  .marketing .skill .skill-info {
    background-size: 80% 90%;
  }
  .marketing .skill .skill-item:nth-child(1) {
    transform: translate(-24px, 30px);
  }
  .marketing .skill .skill-item:nth-child(2) {
    transform: translate(-20px, 150px);
  }
  .marketing .skill .skill-item:nth-child(3) {
    transform: translate(357px, -89px);
  }
  .marketing .method .method-container {
    width: 93%;
    margin: auto;
  }
  .marketing .method .method-item h3 {
    font-size: 15px;
  }
  .marketing .growth .growth-info {
    position: static;
    top: 0;
  }
  .marketing .client .client-container {
    width: 90%;
    margin: auto;
  }
}
@media (min-width : 1500px) {
  .marketing .banner .image li {
    background-image: none!important;
  }
  .marketing .method {
    background-image: none;
  }
}
