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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
  font-size: 11px;
}
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 #171717;
  border-radius: 3px;
}
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: #FABBC7;
}
::-webkit-scrollbar-thumb {
  background: #FF2A53;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #171717;
  width: 100%;
}
p,
li {
  font-weight: 500;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #171717;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.ui-ux .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.ui-ux .buttons .btn-primary,
.ui-ux .buttons .btn-secondary {
  display: flex;
  font-size: 14px;
  padding: 10px 16px;
  justify-content: center;
  outline: 0;
  border-radius: 4px;
  font-weight: 500;
  align-items: center;
  min-width: 160px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.ui-ux .buttons .btn-primary::before,
.ui-ux .buttons .btn-secondary::before,
.ui-ux .buttons .btn-primary::after,
.ui-ux .buttons .btn-secondary::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 1s ease-in-out;
  z-index: -1;
}
.ui-ux .buttons .btn-primary::before,
.ui-ux .buttons .btn-secondary::before {
  border-right: 34px solid transparent;
  transform: translateX(-100%);
}
.ui-ux .buttons .btn-primary::after,
.ui-ux .buttons .btn-secondary::after {
  border-left: 34px solid transparent;
  transform: translateX(100%);
}
.ui-ux .buttons .btn-primary:hover::before,
.ui-ux .buttons .btn-secondary:hover::before {
  transform: translateX(-18%);
}
.ui-ux .buttons .btn-primary:hover::after,
.ui-ux .buttons .btn-secondary:hover::after {
  transform: translateX(18%);
}
.ui-ux .buttons .btn-primary img,
.ui-ux .buttons .btn-secondary img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.ui-ux .buttons .btn-primary {
  background-color: #FF2A53;
  color: #FFFFFF;
}
.ui-ux .buttons .btn-primary::after,
.ui-ux .buttons .btn-primary::before {
  border-top: 40px solid #896BA7;
  border-bottom: 40px solid #896BA7;
}
.ui-ux .buttons .btn-secondary {
  background-color: #FFFFFF;
}
.ui-ux .buttons .btn-secondary::after,
.ui-ux .buttons .btn-secondary::before {
  border-top: 40px solid #F5F5F5;
  border-bottom: 40px solid #F5F5F5;
}
.ui-ux .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.ui-ux .heading p {
  margin-top: 1rem;
}
.ui-ux .heading h2 {
  width: 100%;
  font-size: 22px;
}
.ui-ux .heading span {
  position: relative;
  z-index: 1;
  padding-right: 1.8rem;
}
.ui-ux .heading span::before,
.ui-ux .heading span::after {
  content: '';
  position: absolute;
}
.ui-ux .heading span::before {
  width: 16px;
  height: 16px;
  background-color: #FABBC7;
  z-index: -1;
  top: 4px;
  left: 0;
}
.ui-ux .heading span::after {
  width: 16px;
  height: 16px;
  z-index: -2;
  background-color: #FF2A53;
  left: -1px;
  top: -5px;
  animation: move 8s linear infinite;
}
.ui-ux .center-heading {
  justify-content: center;
  align-items: center;
}
.ui-ux .center-heading h2,
.ui-ux .center-heading p {
  text-align: center;
}
.ui-ux .white-heading h2,
.ui-ux .white-heading p {
  color: #FFFFFF;
}
.ui-ux .white-heading span::before {
  background-color: #FFFFFF;
}
.ui-ux .white-heading span::after {
  background-color: #FABBC7;
}
@keyframes move {
  0% {
    transform: translateY(0px, 0px);
  }
  50% {
    transform: translate(-5px, 10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes circle-blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.ui-ux .banner {
  flex-direction: column;
  padding-top: 1.5rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.ui-ux .banner .tka-logo,
.ui-ux .banner .menu {
  display: flex;
}
.ui-ux .banner .container {
  height: 100%;
}
.ui-ux .banner .logo-container {
  height: 100%;
  padding: 1rem;
  background-color: #F5F5F5;
}
.ui-ux .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.ui-ux .banner .tka-logo {
  max-width: 190px;
}
.ui-ux .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.ui-ux .banner .menu {
  z-index: 1;
  margin-left: auto;
}
.ui-ux .banner .menu img {
  width: 22px;
  height: 23px;
}
.ui-ux .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #896BA7;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.ui-ux .banner .menu-toggle {
  color: #FFFFFF;
}
.ui-ux .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.ui-ux .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #FFFFFF;
  color: #FFFFFF;
  font-size: 15px;
}
.ui-ux .banner ul .links-li:first-child {
  padding-top: 0;
}
.ui-ux .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.ui-ux .banner ul .links-li:last-child {
  display: none;
}
.ui-ux .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.ui-ux .banner .menu.active + .menu-links .menu-toggle {
  display: flex;
  font-weight: 500;
  justify-content: flex-end;
  align-items: center;
}
.ui-ux .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  border-bottom: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
}
.ui-ux .banner .sticky-down {
  top: -100px;
}
.ui-ux .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
}
.ui-ux .banner .banner-container h1 {
  font-size: 22px;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.ui-ux .banner .banner-container h1 img {
  width: 35px;
  height: 35px;
  transform: translateY(6px);
  margin-right: 0.5rem;
}
.ui-ux .banner .banner-container h1 span {
  color: #896BA7;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  font-size: 28px;
}
.ui-ux .banner .banner-container p {
  font-size: 13px;
}
.ui-ux .banner marquee {
  display: none;
}
.ui-ux .overview .overview-container,
.ui-ux .overview .overview-content,
.ui-ux .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.ui-ux .overview .overview-container {
  align-items: flex-start;
}
.ui-ux .overview .overview-content {
  align-items: center;
  width: 100%;
}
.ui-ux .overview .overview-content p {
  text-align: center;
}
.ui-ux .overview .overview-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.ui-ux .overview .overview-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.ui-ux .overview .overview-info .image {
  display: flex;
  height: 100%;
}
.ui-ux .overview .overview-info .image img {
  height: 100%;
  width: 100%;
}
.ui-ux .course {
  padding-top: 0;
  padding-bottom: 0;
}
.ui-ux .course .course-container,
.ui-ux .course .course-list {
  display: flex;
  flex-direction: column;
}
.ui-ux .course .heading {
  margin-bottom: 0;
}
.ui-ux .course .heading p {
  margin: 0 0 0.3rem;
}
.ui-ux .course .heading p strong {
  color: #FF2A53;
}
.ui-ux .course .course-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 10px;
  background-color: #F5F5F5;
  transition: 1s all;
}
.ui-ux .course .course-item h3,
.ui-ux .course .course-item p {
  transition: 1s all;
}
.ui-ux .course .course-item h3 {
  font-size: 15px;
  width: calc(100% - 50px);
}
.ui-ux .course .course-item .icon {
  display: flex;
  height: 40px;
  width: 40px;
  margin-top: 0.8rem;
}
.ui-ux .course .course-item .icon img {
  height: 100%;
  width: 100%;
}
.ui-ux .course .course-item .icon img:last-child {
  width: 0;
}
.ui-ux .course .course-item p {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}
.ui-ux .course .course-item p span:first-child {
  margin: 0.5rem 0 0.3rem;
}
.ui-ux .course .course-item .buttons {
  margin-top: 1rem;
}
.ui-ux .course .course-item .buttons .btn-primary {
  min-width: 120px;
  transition: 1s all;
  padding: 8px 12px;
  font-size: 13px;
}
.ui-ux .course .course-item .buttons .btn-primary::before,
.ui-ux .course .course-item .buttons .btn-primary::after {
  content: none;
}
.ui-ux .course .course-item .buttons .btn-primary span {
  display: flex;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.ui-ux .course .course-item .buttons .btn-primary span img {
  height: 100%;
  width: 100%;
  margin-right: 0;
  transition: 1s all;
}
.ui-ux .course .course-item .buttons .btn-primary span img:last-child {
  width: 0;
}
.ui-ux .course .course-item:hover {
  background-color: #896BA7;
}
.ui-ux .course .course-item:hover h3,
.ui-ux .course .course-item:hover p {
  color: #FFFFFF;
}
.ui-ux .course .course-item:hover .icon img:first-child {
  width: 0;
}
.ui-ux .course .course-item:hover .icon img:last-child {
  width: 100%;
}
.ui-ux .course .course-item:hover .buttons .btn-primary {
  background-color: #FFFFFF;
  color: #171717;
}
.ui-ux .course .course-item:hover .buttons .btn-primary span img:first-child {
  width: 0;
}
.ui-ux .course .course-item:hover .buttons .btn-primary span img:last-child {
  width: 100%;
}
.ui-ux .method .method-container,
.ui-ux .method .method-list,
.ui-ux .method .content {
  display: flex;
  flex-direction: column;
}
.ui-ux .method .heading {
  margin-bottom: 0;
}
.ui-ux .method .method-list {
  counter-reset: number;
}
.ui-ux .method .method-item {
  display: flex;
  margin-top: 2rem;
  transition: 1s all;
  padding: 2rem 1.5rem;
  background-size: cover;
  align-items: flex-end;
  height: 335px;
  position: relative;
  z-index: 1;
}
.ui-ux .method .method-item:nth-child(1) {
  background-image: url(/_public/images/ui-ux/classroom-bg.png);
}
.ui-ux .method .method-item:nth-child(2) {
  background-image: url(/_public/images/ui-ux/led-bg.png);
}
.ui-ux .method .method-item:nth-child(3) {
  background-image: url(/_public/images/ui-ux/paced-bg.png);
}
.ui-ux .method .method-item:nth-child(4) {
  background-image: url(/_public/images/ui-ux/onsite-bg.png);
}
.ui-ux .method .method-item::before {
  content: '';
  position: absolute;
  background-color: #171717;
  opacity: 0.93;
  transition: 1s all;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}
.ui-ux .method .method-item:hover::before {
  background-color: #896BA7;
  opacity: 0.96;
}
.ui-ux .method .method-item:hover .content {
  height: 75%;
  justify-content: center;
}
.ui-ux .method .method-item:hover .content p {
  display: flex;
  margin-bottom: 0.8rem;
}
.ui-ux .method .method-item .content {
  height: 18%;
  width: 272px;
  transition: 1s all;
}
.ui-ux .method .method-item .content h3,
.ui-ux .method .method-item .content p,
.ui-ux .method .method-item .content a {
  color: #FFFFFF;
  transition: 1s all;
}
.ui-ux .method .method-item .content h3 {
  font-size: 14px;
  position: relative;
  margin-bottom: 0.8rem;
}
.ui-ux .method .method-item .content h3::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  color: #FFFFFF;
  position: absolute;
  top: -53px;
  left: 0px;
  font-size: 26px;
}
.ui-ux .method .method-item .content p {
  display: none;
  font-size: 13px;
}
.ui-ux .method .method-item .content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.ui-ux .method .method-item .content a img {
  width: 17px;
  height: 17px;
  margin-left: 0.5rem;
}
.ui-ux .strategy {
  padding-top: 0;
}
.ui-ux .strategy .strategy-container,
.ui-ux .strategy .strategy-content {
  display: flex;
  flex-direction: column;
}
.ui-ux .strategy .strategy-content {
  align-items: center;
}
.ui-ux .strategy .strategy-content p {
  text-align: center;
}
.ui-ux .strategy .strategy-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.ui-ux .strategy .strategy-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.ui-ux .strategy .strategy-info img {
  width: 100%;
  height: 100%;
}
.ui-ux .choose {
  padding-top: 0;
}
.ui-ux .choose .choose-container,
.ui-ux .choose .choose-list,
.ui-ux .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.ui-ux .choose .heading {
  margin-bottom: 0;
}
.ui-ux .choose .choose-list {
  counter-reset: number;
}
.ui-ux .choose .choose-item {
  background-color: #F5F5F5;
  margin-top: 2rem;
  padding: 2.5rem 1.2rem 1.2rem;
  position: relative;
}
.ui-ux .choose .choose-item::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  position: absolute;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #171717;
  color: transparent;
  font-size: 65px;
  font-weight: 600;
  opacity: 0.29;
  top: 20px;
  right: 35px;
}
.ui-ux .choose .choose-item span {
  display: flex;
  background-color: #896BA7;
  border-radius: 50px;
  height: 53px;
  width: 53px;
  padding: 0.6rem;
}
.ui-ux .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.ui-ux .choose .choose-item h3 {
  font-size: 14px;
  margin: 1.8rem 0;
}
.ui-ux .choose .choose-item p {
  position: relative;
  font-size: 13px;
}
.ui-ux .choose .choose-item p::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/ui-ux/lines.svg);
  background-size: 100% 100%;
  width: 58px;
  height: 7px;
  top: -19px;
}
.ui-ux .client {
  background-color: #896BA7;
}
.ui-ux .client .client-container,
.ui-ux .client .client-content,
.ui-ux .client .client-list,
.ui-ux .client .client-item,
.ui-ux .client .fact,
.ui-ux .client .fact-content,
.ui-ux .client .fact,
.ui-ux .client .fact-item,
.ui-ux .client .form,
.ui-ux .client .input-list {
  display: flex;
  flex-direction: column;
}
.ui-ux .client .client-list {
  padding: 1.2rem 1.2rem 3.5rem;
  border: 1px solid #FFFFFF;
}
.ui-ux .client .client-item {
  align-items: center;
  width: 95%;
  margin: auto;
}
.ui-ux .client .client-item p,
.ui-ux .client .client-item h3,
.ui-ux .client .client-item h4 {
  color: #FFFFFF;
}
.ui-ux .client .client-item img {
  width: 65px;
  height: 65px;
}
.ui-ux .client .client-item p {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 13px;
}
.ui-ux .client .client-item h3 {
  font-size: 15px;
  margin-top: 1rem;
}
.ui-ux .client .owl-nav {
  display: none;
}
.ui-ux .client .owl-dots {
  display: flex;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 26px;
  justify-content: center;
}
.ui-ux .client .owl-dots .owl-dot {
  display: flex;
  width: 14px;
  height: 14px;
  border-radius: 30px;
  background-color: #FFFFFF;
  border: 2px solid #FABBC7;
  margin-right: 0.5rem;
}
.ui-ux .client .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.ui-ux .client .owl-dots .owl-dot.active::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #FABBC7;
  border-radius: 20px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ui-ux .client .fact-content {
  background-color: #FFFFFF;
  padding: 1rem;
  margin-top: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.ui-ux .client .fact .heading {
  margin-bottom: 0;
}
.ui-ux .client .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.ui-ux .client .fact-item {
  align-items: center;
  width: 42%;
  margin-top: 2rem;
}
.ui-ux .client .fact-item img {
  width: 40px;
  height: 40px;
}
.ui-ux .client .fact-item .fact-count {
  display: flex;
  align-items: flex-end;
}
.ui-ux .client .fact-item .fact-count h3,
.ui-ux .client .fact-item .fact-count p {
  font-size: 32px;
  font-weight: 600;
  width: auto;
  color: #171717;
}
.ui-ux .client .fact-item .fact-count span {
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-6px);
}
.ui-ux .client .fact-item .text {
  text-align: center;
  margin-top: 0.5rem;
}
.ui-ux .client .form {
  margin-bottom: 0;
  margin-top: 2rem;
}
.ui-ux .client .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  padding: 0.6rem;
  border-radius: 3px;
  background-color: #F5F5F5;
}
.ui-ux .client .form .input-container:last-child {
  align-items: flex-start;
}
.ui-ux .client .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.ui-ux .client .form .input-container span img {
  height: 100%;
  width: 100%;
}
.ui-ux .client .form .input-container span .red {
  display: none;
}
.ui-ux .client .form .input-container input,
.ui-ux .client .form .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 14px;
}
.ui-ux .client .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.ui-ux .client .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #707070;
}
.ui-ux .client .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #707070;
}
.ui-ux .client .form .input-container ::placeholder {
  color: #707070;
}
.ui-ux .client .form .input-error {
  border: 1px solid #ff0000;
}
.ui-ux .client .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.ui-ux .client .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.ui-ux .client .form .input-error ::placeholder {
  color: #ff0000;
}
.ui-ux .client .form .input-error span .white {
  display: none;
}
.ui-ux .client .form .input-error span .red {
  display: flex;
}
.ui-ux .client .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.ui-ux .client .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.ui-ux .client .form .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
  line-height: 1.6;
  font-weight: 500;
  color: #171717;
}
.ui-ux .client .form .form-consent p {
  font-size: 11px;
}
.ui-ux .client .form .form-consent a {
  font-weight: 600;
  color: #FF2A53;
}
.ui-ux .client .form .consent-error,
.ui-ux .client .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.ui-ux .client .form .consent-error p,
.ui-ux .client .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.ui-ux .client .form .buttons {
  align-self: center;
}
.ui-ux .client .form .buttons .btn-primary {
  min-width: 100px;
}
.ui-ux .client .form .buttons .btn-primary img {
  height: 16px;
  width: 16px;
}
.ui-ux .element .element-container,
.ui-ux .element .element-content,
.ui-ux .element .element-info {
  display: flex;
  flex-direction: column;
}
.ui-ux .element .element-content ul li {
  margin-top: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.ui-ux .element .element-content ul li::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #896BA7;
  border-radius: 20px;
  left: 0;
  top: 4px;
  animation: scale 3s linear infinite;
}
.ui-ux .element .element-info {
  margin-top: 2rem;
  height: 100%;
}
.ui-ux .element .element-info .image {
  display: flex;
  height: 100%;
}
.ui-ux .element .element-info .image img {
  width: 100%;
  height: 100%;
}
.ui-ux .faq {
  padding-top: 0;
}
.ui-ux .faq .faq-container,
.ui-ux .faq .faq-list,
.ui-ux .faq .faq-item,
.ui-ux .faq .faq-content,
.ui-ux .faq .query-content {
  display: flex;
  flex-direction: column;
}
.ui-ux .faq .faq-content {
  margin-top: 2rem;
}
.ui-ux .faq .faq-content .heading {
  margin-bottom: 0;
}
.ui-ux .faq .faq-item {
  margin-top: 1rem;
}
.ui-ux .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-color: #F5F5F5;
  position: relative;
  cursor: pointer;
}
.ui-ux .faq .faq-item .ques::before,
.ui-ux .faq .faq-item .ques::after {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #FFFFFF;
  top: 0;
}
.ui-ux .faq .faq-item .ques::before {
  content: none;
}
.ui-ux .faq .faq-item .ques::after {
  right: 50px;
  content: '';
}
.ui-ux .faq .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 45px);
}
.ui-ux .faq .faq-item .ques span {
  display: flex;
  width: 18px;
  height: 18px;
  margin-left: auto;
}
.ui-ux .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
}
.ui-ux .faq .faq-item .ques span img:last-child {
  display: none;
}
.ui-ux .faq .faq-item .ans {
  padding: 1rem;
  display: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.ui-ux .faq .faq-item .ans p {
  font-size: 13px;
}
.ui-ux .faq .faq-item.active .ques {
  background-color: #FF2A53;
}
.ui-ux .faq .faq-item.active .ques h3 {
  color: #FFFFFF;
}
.ui-ux .faq .faq-item.active .ques span img:first-child {
  display: none;
}
.ui-ux .faq .faq-item.active .ques span img:last-child {
  display: flex;
}
.ui-ux .footer {
  background-color: #896BA7;
}
.ui-ux .footer .footer-container,
.ui-ux .footer .footer-list,
.ui-ux .footer .info {
  display: flex;
  flex-direction: column;
}
.ui-ux .footer .heading {
  margin-bottom: 0;
}
.ui-ux .footer .footer-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  align-items: center;
}
.ui-ux .footer .footer-item span {
  display: flex;
  height: 45px;
  width: 45px;
  background-color: #FF2A53;
  padding: 0.5rem;
  border-radius: 5px;
}
.ui-ux .footer .footer-item span img {
  height: 100%;
  width: 100%;
}
.ui-ux .footer .footer-item .info {
  width: calc(100% - 60px);
}
.ui-ux .footer .footer-item .info h3,
.ui-ux .footer .footer-item .info a {
  color: #FFFFFF;
}
.ui-ux .footer .footer-item .info h3 {
  font-size: 15px;
}
.ui-ux .footer .footer-item .info a {
  font-size: 12px;
  font-weight: 500;
}
.ui-ux .footer .footer-item p {
  color: #FFFFFF;
  width: calc(100% - 60px);
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .ui-ux .banner .menu.active + .menu-links {
    width: 50%;
  }
  .ui-ux .banner .sticky {
    padding: 1rem 2rem !important;
  }
  .ui-ux .overview .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .ui-ux .overview .overview-content {
    align-items: flex-start;
    width: 45%;
  }
  .ui-ux .overview .overview-content .heading {
    align-items: flex-start;
  }
  .ui-ux .overview .overview-content h2,
  .ui-ux .overview .overview-content p {
    text-align: left;
  }
  .ui-ux .overview .overview-info {
    margin-top: 0;
    width: 48%;
    position: sticky;
    top: 60px;
  }
  .ui-ux .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .ui-ux .course .course-item {
    width: 47%;
    margin-right: 2rem;
    flex-flow: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .ui-ux .course .course-item::before {
    content: '';
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 89%;
    background-color: #707070;
    opacity: 0.39;
    z-index: -1;
  }
  .ui-ux .course .course-item h3 {
    width: calc(100% - 50px);
  }
  .ui-ux .course .course-item .icon {
    margin-top: 0;
  }
  .ui-ux .course .course-item p {
    width: 50%;
  }
  .ui-ux .course .course-item p span:first-child {
    margin-top: 1.2rem;
  }
  .ui-ux .course .course-item .buttons {
    width: 50%;
    align-self: flex-end;
    justify-content: flex-end;
  }
  .ui-ux .course .course-item:hover::before {
    background-color: #FFFFFF;
  }
  .ui-ux .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .ui-ux .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .ui-ux .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ui-ux .method .method-item {
    width: 47.5%;
  }
  .ui-ux .strategy .strategy-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .ui-ux .strategy .strategy-content {
    width: 50%;
    align-items: flex-start;
  }
  .ui-ux .strategy .strategy-content .heading {
    align-items: flex-start;
  }
  .ui-ux .strategy .strategy-content .heading h2 {
    width: 100%;
  }
  .ui-ux .strategy .strategy-content h2,
  .ui-ux .strategy .strategy-content p {
    text-align: left;
  }
  .ui-ux .strategy .strategy-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .ui-ux .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ui-ux .choose .choose-item {
    width: 47.5%;
  }
  .ui-ux .client .fact-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }
  .ui-ux .client .fact {
    width: 40%;
  }
  .ui-ux .client .fact .heading h2 {
    width: 100%;
  }
  .ui-ux .client .form {
    width: 54%;
    margin-top: 0;
  }
  .ui-ux .element .element-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .ui-ux .element .element-content {
    width: 46%;
  }
  .ui-ux .element .element-info {
    margin-top: 0;
    position: sticky;
    top: 60px;
    width: 48%;
  }
  .ui-ux .element .element-info .heading h2 {
    width: 100%;
  }
  .ui-ux .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .ui-ux .faq .query-content {
    width: 40%;
    position: sticky;
    top: 60px;
  }
  .ui-ux .faq .faq-content {
    width: 52%;
    margin-top: 0;
  }
  .ui-ux .footer .heading {
    align-items: center;
  }
  .ui-ux .footer .heading h2 {
    width: auto;
  }
  .ui-ux .footer .heading h2,
  .ui-ux .footer .heading p {
    text-align: center;
  }
  .ui-ux .footer .footer-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .ui-ux .footer .footer-item {
    padding: 0.5rem;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    width: 48%;
  }
  .ui-ux .footer .footer-item:first-child {
    margin-right: 1.5rem;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .ui-ux .heading h2 {
    font-size: 28px;
  }
  .ui-ux .buttons .btn-primary,
  .ui-ux .buttons .btn-secondary {
    font-size: 16px;
  }
  .ui-ux .banner {
    background-image: url(/_public/images/ui-ux/banner-bg.png);
    background-size: 55% 75%;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: relative;
  }
  .ui-ux .banner .logo-container {
    padding: 0;
    background-color: transparent;
  }
  .ui-ux .banner .sticky {
    padding: 1rem 2rem;
    background-color: #F5F5F5;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .ui-ux .banner .sticky .menu-links {
    background-color: transparent;
    padding: 0;
  }
  .ui-ux .banner .menu,
  .ui-ux .banner .menu-toggle {
    display: none;
  }
  .ui-ux .banner .menu-links {
    display: flex;
    width: 75.5%;
    position: relative;
    padding: 1rem 1.7rem;
    border-radius: 50px;
    box-shadow: none;
    background-color: #F5F5F5;
  }
  .ui-ux .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .ui-ux .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
    color: #171717;
    position: relative;
    z-index: 1;
  }
  .ui-ux .banner ul .links-li::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 1s all;
    background-color: #FABBC7;
  }
  .ui-ux .banner ul .links-li:hover::before {
    width: 100%;
  }
  .ui-ux .banner ul .links-li:nth-last-child(2) {
    display: none;
  }
  .ui-ux .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .ui-ux .banner ul .links-li:last-child::before {
    content: none;
  }
  .ui-ux .banner ul .links-li:last-child .btn-secondary {
    margin-right: 1rem;
  }
  .ui-ux .banner ul .links-li:last-child .btn-primary,
  .ui-ux .banner ul .links-li:last-child .btn-secondary {
    min-width: 163px;
    height: 45px;
  }
  .ui-ux .banner .banner-container {
    width: 48%;
  }
  .ui-ux .banner .banner-container h1 {
    font-size: 35px;
  }
  .ui-ux .banner marquee {
    display: flex;
    width: 47%;
    font-size: 130px;
    font-weight: 600;
    color: #FFFFFF;
    position: absolute;
    right: 0;
    bottom: -26px;
    line-height: 1.1;
    opacity: 0.1;
  }
  .ui-ux .course .course-item {
    width: 31%;
  }
  .ui-ux .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .ui-ux .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .ui-ux .method .heading {
    width: 80%;
    margin: auto;
  }
  .ui-ux .method .method-item {
    width: 25%;
    height: 385px;
  }
  .ui-ux .method .method-item .content {
    height: 25%;
  }
  .ui-ux .method .method-item .content h3 {
    min-height: 46px;
  }
  .ui-ux .method .method-item:hover .content {
    height: 77%;
  }
  .ui-ux .strategy {
    background-image: url(/_public/images/ui-ux/strategy-bg.png);
    background-size: 100% 100%;
  }
  .ui-ux .strategy .strategy-container {
    align-items: center;
  }
  .ui-ux .strategy .strategy-info {
    position: static;
  }
  .ui-ux .choose {
    padding-top: 3rem;
  }
  .ui-ux .choose .choose-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ui-ux .choose .heading {
    width: 70%;
  }
  .ui-ux .choose .buttons {
    width: 29%;
    margin-top: 0;
    justify-content: flex-end;
    align-self: flex-end;
  }
  .ui-ux .choose .choose-item {
    width: 48.3%;
  }
  .ui-ux .client {
    background-color: transparent;
    background-image: linear-gradient(0deg, #FFFFFF 29%, #896BA7 29%);
    padding-bottom: 1rem;
  }
  .ui-ux .client .client-list {
    width: 85%;
    margin: auto;
    padding: 2rem;
  }
  .ui-ux .client .client-item {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ui-ux .client .client-item p {
    text-align: left;
    padding-left: 1.5rem;
    border-left: 4px solid #FF2A53;
    position: relative;
  }
  .ui-ux .client .client-item p::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/ui-ux/quotes.svg);
    background-size: 100% 100%;
    width: 35px;
    height: 35px;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .ui-ux .client .client-item img {
    margin-left: 1.5rem;
  }
  .ui-ux .client .client-item h3 {
    width: calc(100% - 110px);
    margin-top: 0;
  }
  .ui-ux .client .owl-dots {
    right: 50px;
    justify-content: flex-end;
  }
  .ui-ux .client .owl-nav {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 98px);
    position: absolute;
    left: -48px;
    top: 42%;
  }
  .ui-ux .client .owl-nav .owl-prev,
  .ui-ux .client .owl-nav .owl-next {
    display: flex;
    width: 32px;
    height: 32px;
    background-image: url(/_public/images/ui-ux/nav-arrow.svg);
    background-size: 100% 100%;
    opacity: 0.7;
  }
  .ui-ux .client .owl-nav .owl-prev {
    transform: rotate(180deg);
  }
  .ui-ux .client .owl-nav .btn-active {
    opacity: 1;
  }
  .ui-ux .client .fact-content {
    margin-top: 4rem;
    padding: 3.5rem 3rem;
  }
  .ui-ux .client .fact .heading h2,
  .ui-ux .client .fact .heading p {
    text-align: left;
  }
  .ui-ux .client .fact-list {
    justify-content: space-between;
    position: relative;
  }
  .ui-ux .client .fact-list::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 42%;
    background-color: #707070;
    opacity: 0.3;
  }
  .ui-ux .client .fact-item {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ui-ux .client .fact-item:first-child {
    margin-right: auto;
  }
  .ui-ux .client .fact-item:nth-child(3),
  .ui-ux .client .fact-item:last-child {
    margin-top: 5rem;
  }
  .ui-ux .client .fact-item .fact-count {
    width: calc(100% - 55px);
  }
  .ui-ux .client .fact-item .fact-count h3,
  .ui-ux .client .fact-item .fact-count p {
    text-align: left;
    font-size: 42px;
  }
  .ui-ux .client .fact-item .fact-count span {
    font-size: 26px;
  }
  .ui-ux .client .fact-item .fact-count p {
    line-height: 1.5;
  }
  .ui-ux .client .fact-item .text {
    width: 70%;
    text-align: left;
    line-height: 1.4;
    position: relative;
  }
  .ui-ux .client .fact-item .text::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #FABBC7;
    left: 0;
    bottom: -10px;
  }
  .ui-ux .client .form {
    background-color: #F5F5F5;
    border-radius: 5px;
    padding: 2rem;
  }
  .ui-ux .client .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .ui-ux .client .form .input-container {
    background-color: #FFFFFF;
    width: 48%;
  }
  .ui-ux .client .form .input-container:last-child {
    width: 100%;
  }
  .ui-ux .element {
    background-image: url(/_public/images/ui-ux/element-bg.png);
    background-repeat: no-repeat;
    background-size: 45% 70%;
    background-position: left;
  }
  .ui-ux .element .element-info {
    position: static;
  }
  .ui-ux .faq {
    padding-top: 3rem;
    background-image: url(/_public/images/ui-ux/faq-bg.png);
    background-repeat: no-repeat;
    background-size: 50% 100%;
  }
  .ui-ux .faq .faq-content {
    width: 54%;
  }
  .ui-ux .faq .faq-list {
    counter-reset: number;
    position: relative;
  }
  .ui-ux .faq .faq-list::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/ui-ux/grid.png);
    background-size: 100% 100%;
    width: 43px;
    height: 160px;
    left: -75px;
    bottom: 42px;
  }
  .ui-ux .faq .faq-item .ques h3 {
    font-size: 15px;
  }
  .ui-ux .faq .faq-item .ques::before {
    content: '';
    left: 44px;
  }
  .ui-ux .faq .faq-item .ques h3 {
    padding-left: 2.5rem;
  }
  .ui-ux .faq .faq-item .ques h3::before {
    position: absolute;
    counter-increment: number;
    content: counter(number, decimal-leading-zero) ".";
    left: 14px;
    font-weight: 600;
    font-size: 14px;
    top: 18px;
  }
  .ui-ux .faq .faq-item .ans {
    padding: 1rem 1rem 1rem 2.8rem;
  }
  .ui-ux .faq .faq-item.active .ques h3::before {
    color: #FFFFFF;
  }
  .ui-ux .faq .query-content {
    width: 36%;
  }
  .ui-ux .footer .heading {
    width: 80%;
    margin: auto;
  }
  .ui-ux .footer .footer-list {
    justify-content: space-between;
  }
  .ui-ux .footer .footer-item {
    padding: 1rem;
    width: 32%;
  }
  .ui-ux .footer .footer-item:first-child {
    margin-right: 0;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .ui-ux .heading h2 {
    font-size: 32px;
  }
  .ui-ux .banner {
    background-size: 46% 70%;
    overflow: hidden;
    z-index: 2;
    padding-bottom: 6rem;
  }
  .ui-ux .banner::before,
  .ui-ux .banner::after {
    content: '';
    position: absolute;
    z-index: -1;
  }
  .ui-ux .banner::before {
    width: 32%;
    height: 50%;
    background-color: #F5F5F5;
    border-radius: 50%;
    top: -30%;
    left: 0;
  }
  .ui-ux .banner::after {
    width: 160px;
    height: 160px;
    background-color: #FABBC7;
    opacity: 0.2;
    border-radius: 50%;
    bottom: 26px;
    left: 10px;
    animation: scale 4s linear infinite;
  }
  .ui-ux .banner .tka-logo {
    max-width: 235px;
  }
  .ui-ux .banner .menu-links {
    width: 69%;
  }
  .ui-ux .banner ul .links-li:nth-last-child(2) {
    display: flex;
  }
  .ui-ux .banner .banner-container {
    padding-top: 5rem;
  }
  .ui-ux .banner .banner-container h1 {
    font-size: 45px;
  }
  .ui-ux .overview .overview-container {
    align-items: center;
  }
  .ui-ux .overview .overview-content {
    width: 47%;
  }
  .ui-ux .overview .overview-info {
    position: static;
    top: 0;
    width: 45%;
  }
  .ui-ux .course .course-item p {
    width: 60%;
  }
  .ui-ux .course .course-item .buttons {
    width: 40%;
  }
  .ui-ux .method {
    padding: 4rem 0 0;
  }
  .ui-ux .method .container {
    width: 100%;
  }
  .ui-ux .method .method-list {
    justify-content: center;
  }
  .ui-ux .method .method-item {
    height: 440px;
    width: 25%;
  }
  .ui-ux .method .method-item .content {
    height: 20%;
  }
  .ui-ux .method .method-item .content h3 {
    min-height: auto;
    font-size: 17px;
  }
  .ui-ux .method .method-item:hover .content {
    height: 50%;
  }
  .ui-ux .method .method-item:hover .content p {
    min-height: 93px;
  }
  .ui-ux .strategy {
    padding-top: 4rem;
  }
  .ui-ux .strategy .strategy-container {
    width: 90%;
    margin: auto;
  }
  .ui-ux .choose .choose-item {
    width: 24.9%;
  }
  .ui-ux .client {
    position: relative;
    z-index: 1;
  }
  .ui-ux .client::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background-image: url(/_public/images/ui-ux/fact-circle.png);
    background-size: 100% 100%;
    left: -128px;
    top: -128px;
    animation: circle-blink 2s linear infinite;
  }
  .ui-ux .client .client-list {
    width: 75%;
  }
  .ui-ux .client .fact-content {
    position: relative;
  }
  .ui-ux .client .fact-content::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url(/_public/images/ui-ux/fact-circle.png);
    background-size: 100% 100%;
    right: -72px;
    top: -72px;
    z-index: -1;
    animation: circle-blink 2s linear infinite;
  }
  .ui-ux .element {
    background-size: 30% 60%;
  }
  .ui-ux .element .element-info .image {
    width: 78%;
    margin: auto;
  }
  .ui-ux .faq {
    padding-bottom: 0;
  }
  .ui-ux .faq .faq-container {
    align-items: center;
  }
  .ui-ux .faq .query-content {
    position: static;
  }
  .ui-ux .footer {
    background-image: url(/_public/images/ui-ux/footer-bg.png);
    background-size: 100% 100%;
    padding-top: 5rem;
    background-color: transparent;
    margin-top: 4rem;
    position: relative;
  }
  .ui-ux .footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 300px;
    width: 300px;
    background-image: url(/_public/images/ui-ux/layer.png);
    background-size: 100% 100%;
  }
  .ui-ux .footer .footer-item {
    width: 28%;
  }
  .ui-ux .footer .footer-item span {
    height: 50px;
    width: 50px;
    padding: 0.6rem;
  }
  .ui-ux .footer .footer-item p {
    font-size: 15px;
    width: calc(100% - 66px);
  }
  .ui-ux .footer .footer-item .info {
    width: calc(100% - 66px);
  }
  .ui-ux .footer .footer-item .info a {
    font-size: 13px;
  }
}
@media (min-width : 1500px) {
  .ui-ux .banner {
    background-size: 46% 85%;
  }
  .ui-ux .banner::before,
  .ui-ux .banner::after {
    content: none;
  }
  .ui-ux .method .container {
    width: 1200px;
  }
  .ui-ux .method .method-item:hover .content {
    height: 80%;
  }
  .ui-ux .method .method-item:hover .content p {
    min-height: 117px;
  }
  .ui-ux .method .method-item .content h3 {
    min-height: 52px;
  }
  .ui-ux .strategy {
    background-image: none;
  }
  .ui-ux .element {
    background-image: none;
  }
  .ui-ux .faq {
    background-image: none;
  }
}
