@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: 12px;
  width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 6px #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: #000000;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #070606;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #070606;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.iot .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.iot .buttons .btn-primary,
.iot .buttons .btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 30px;
  outline: 0;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.iot .buttons .btn-primary::before,
.iot .buttons .btn-secondary::before {
  content: '';
  position: absolute;
  background-color: #5F00BE;
  border-radius: 30px;
  height: 0px;
  width: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
  transition: 1s all;
  transform: skew(22deg, 8deg);
}
.iot .buttons .btn-primary:hover::before,
.iot .buttons .btn-secondary:hover::before {
  height: 50px;
  width: 100%;
  transform: skew(0deg, 0deg);
  background-color: #EF00BB;
}
.iot .buttons .btn-primary img,
.iot .buttons .btn-secondary img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.iot .buttons .btn-secondary {
  border: 2px solid #FFFFFF;
}
.iot .buttons .btn-primary {
  background-color: #13D9E2;
}
.iot .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.iot .heading p {
  margin-top: 1rem;
}
.iot .heading h2 {
  width: 100%;
  font-size: 22px;
}
.iot .heading span {
  display: flex;
  background-color: #000000;
  height: 2px;
  width: 120px;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}
.iot .heading span::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/iot/heading-circle.svg);
  background-size: 100% 100%;
  height: 13px;
  width: 45px;
  bottom: -5px;
  animation: move 5s linear infinite;
  z-index: -1;
}
.iot .center-heading {
  justify-content: center;
  align-items: center;
}
.iot .center-heading h2,
.iot .center-heading p {
  text-align: center;
}
.iot .center-heading span {
  margin: 0.8rem auto 0;
}
.iot .white-heading h2,
.iot .white-heading p {
  color: #FFFFFF;
}
.iot .white-heading span {
  background-color: #FFFFFF;
}
.iot .white-heading span::before {
  background-image: url(/_public/images/iot/circle-white.svg);
}
@keyframes move {
  0% {
    left: 0;
  }
  50% {
    left: 65%;
  }
  100% {
    left: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line-move {
  0% {
    height: 0;
  }
  50% {
    height: 97%;
  }
  100% {
    height: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.iot .banner {
  background-image: radial-gradient(#EF00BB, #5F00BE);
  flex-direction: column;
  padding: 0;
}
.iot .banner .logo-container,
.iot .banner .container,
.iot .banner .tka-logo,
.iot .banner .menu,
.iot .banner .menu-toggle {
  display: flex;
}
.iot .banner .logo-container {
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.iot .banner .logo-container .container {
  align-items: center;
  justify-content: space-between;
}
.iot .banner .logo-container .tka-logo {
  max-width: 200px;
}
.iot .banner .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.iot .banner .logo-container .menu {
  margin-left: auto;
}
.iot .banner .logo-container .menu img {
  width: 24px;
  height: 23px;
}
.iot .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.iot .banner .logo-container .menu-toggle {
  color: #000000;
  font-weight: 500;
}
.iot .banner .logo-container .menu-toggle img {
  width: 17px;
  height: 17px;
  margin-right: 0.5rem;
}
.iot .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dashed #000000;
  font-weight: 500;
}
.iot .banner .logo-container ul .links-li:last-child {
  display: none;
}
.iot .banner .logo-container ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.iot .banner .logo-container .menu.active + .menu-links {
  padding: 1rem;
  width: 80%;
}
.iot .banner .logo-container .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.iot .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
}
.iot .banner .sticky-down {
  top: -100px;
}
.iot .banner .banner-container,
.iot .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.iot .banner .banner-container {
  padding: 3rem 1.5rem;
  padding-top: 1.5rem !important;
  width: 100%;
  align-items: flex-start;
}
.iot .banner .banner-content {
  width: 100%;
  height: 100%;
}
.iot .banner .banner-content h1 {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.3;
}
.iot .banner .banner-content h1 img {
  width: 48px;
  height: 48px;
  transform: translateY(7px);
  margin-right: 0.8rem;
}
.iot .banner .banner-content h1 span {
  font-size: 45px;
  color: #13D9E2;
}
.iot .banner .banner-content p {
  color: #FFFFFF;
  margin-top: 1rem;
}
.iot .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  width: 100%;
}
.iot .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.iot .overview {
  padding-bottom: 0;
}
.iot .overview .overview-container,
.iot .overview .overview-content {
  display: flex;
  flex-direction: column;
}
.iot .overview .overview-content {
  align-items: center;
}
.iot .overview .overview-content p {
  text-align: center;
}
.iot .overview .overview-content p:nth-child(3) {
  margin-top: 0.8rem;
}
.iot .overview .overview-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.iot .overview .overview-info img {
  width: 100%;
  height: 100%;
}
.iot .fact {
  overflow: hidden;
}
.iot .fact .fact-container,
.iot .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.iot .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 8px;
}
.iot .fact .fact-item img {
  width: 36px;
  height: 36px;
  margin-right: 1rem;
}
.iot .fact .fact-item p {
  width: calc(100% - 110px);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}
.iot .fact .fact-count {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.iot .fact .fact-count h4,
.iot .fact .fact-count span {
  font-size: 30px;
  font-weight: 600;
}
.iot .course {
  padding-top: 0;
}
.iot .course .course-container,
.iot .course .course-list,
.iot .course .course-item {
  display: flex;
  flex-direction: column;
}
.iot .course .heading {
  margin-bottom: 0;
}
.iot .course .heading p {
  margin: 0 0 0.5rem 0;
}
.iot .course .heading p strong {
  color: #EF00BB;
}
.iot .course .course-item {
  background-color: #FFFFFF;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 0 8px 8px 0;
}
.iot .course .course-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-image: radial-gradient(#EF00BB, #5F00BE);
}
.iot .course .course-item .info {
  display: flex;
  justify-content: space-between;
  background-color: #F5F5F5;
  padding: 0.5rem 1.5rem;
  background-image: radial-gradient(#EF00BB, #5F00BE);
  background-size: 0 100%;
  background-position: left;
  background-repeat: no-repeat;
  transition: 1s all;
}
.iot .course .course-item .info h3 {
  width: calc(100% - 48px);
  font-size: 14px;
  transition: 1s all;
}
.iot .course .course-item .info span {
  display: flex;
  height: 30px;
  width: 30px;
}
.iot .course .course-item .info span img {
  width: 100%;
  height: 100%;
}
.iot .course .course-item .info span img:last-child {
  width: 0;
}
.iot .course .course-item p {
  font-size: 13px;
  color: #707070;
  padding: 0 1.5rem;
}
.iot .course .course-item p:nth-child(2) {
  margin-top: 1rem;
}
.iot .course .course-item p:nth-child(3) {
  margin-top: 0.2rem;
}
.iot .course .course-item .buttons {
  padding: 0 1.5rem;
  margin-top: 1rem;
}
.iot .course .course-item .buttons .btn-primary {
  min-width: 146px;
  padding: 8px 16px;
  font-size: 14px;
}
.iot .course .course-item .buttons .btn-primary img {
  height: 16px;
  width: 16px;
}
.iot .course .course-item:hover .info {
  background-size: 100% 100%;
  background-color: transparent;
}
.iot .course .course-item:hover .info h3 {
  color: #FFFFFF;
}
.iot .course .course-item:hover .info span img:first-child {
  width: 0;
  transition-duration: 1s;
}
.iot .course .course-item:hover .info span img:last-child {
  width: 100%;
  transition-duration: 2s;
}
.iot .important {
  background-color: #F5F5F5;
}
.iot .important .important-container,
.iot .important .important-content,
.iot .important .important-info {
  display: flex;
  flex-direction: column;
}
.iot .important .important-info {
  margin-top: 2rem;
  background-color: #FFFFFF;
  height: 100%;
  padding: 1.5rem 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.iot .important .important-info h2 {
  font-size: 21px;
  width: 100%;
}
.iot .important .important-info span {
  display: flex;
  height: 100%;
  width: 90%;
  margin-top: 0.5rem;
  align-self: center;
}
.iot .important .important-info span img {
  height: 100%;
  width: 100%;
}
.iot .method .method-container,
.iot .method .method-list,
.iot .method .method-item {
  display: flex;
  flex-direction: column;
}
.iot .method .heading {
  margin-bottom: 0;
}
.iot .method .method-list {
  counter-reset: number;
}
.iot .method .method-item {
  margin-top: 2rem;
  padding: 2rem 1.2rem 1.8rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(#EF00BB, #5F00BE);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: top;
  transition: 1s all;
}
.iot .method .method-item .image {
  display: flex;
  width: 50px;
  height: 50px;
  align-self: flex-end;
}
.iot .method .method-item .image img {
  width: 100%;
  height: 100%;
}
.iot .method .method-item .image img:last-child {
  width: 0;
}
.iot .method .method-item h3,
.iot .method .method-item p,
.iot .method .method-item a {
  transition: 1s all;
}
.iot .method .method-item h3 {
  font-size: 15px;
  position: relative;
  margin-top: 0.5rem;
}
.iot .method .method-item h3::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  color: #F5F5F5;
  position: absolute;
  top: -64px;
  left: 0px;
  font-size: 40px;
}
.iot .method .method-item p {
  font-size: 13px;
  margin: 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #707070;
}
.iot .method .method-item a {
  display: flex;
  font-size: 13px;
  font-weight: 500;
}
.iot .method .method-item a span {
  display: flex;
  width: 12px;
  height: 12px;
  margin-left: 0.5rem;
  align-self: center;
}
.iot .method .method-item a span img {
  width: 100%;
  height: 100%;
}
.iot .method .method-item a span img:last-child {
  width: 0%;
}
.iot .method .method-item:hover {
  background-size: 100% 100%;
}
.iot .method .method-item:hover h3,
.iot .method .method-item:hover p,
.iot .method .method-item:hover a {
  color: #FFFFFF;
}
.iot .method .method-item:hover .image img:last-child,
.iot .method .method-item:hover a img:last-child {
  width: 100%;
  height: 100%;
  transition-duration: 2s;
}
.iot .method .method-item:hover .image img:first-child,
.iot .method .method-item:hover a img:first-child {
  transition-duration: 1s;
  width: 0%;
}
.iot .method .method-item:hover p {
  border-color: #FFFFFF;
}
.iot .work {
  background: radial-gradient(#EF00BB, #5F00BE);
}
.iot .work .work-container,
.iot .work .work-content {
  display: flex;
  flex-direction: column;
}
.iot .work .work-content p,
.iot .work .work-content ul li {
  color: #FFFFFF;
}
.iot .work .work-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.iot .work .work-content ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/iot/box.svg);
  background-size: 100% 100%;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 0px;
  animation: rotate 4s linear infinite;
}
.iot .work .work-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.iot .work .work-info img {
  width: 100%;
  height: 100%;
}
.iot .choose {
  padding-bottom: 0;
}
.iot .choose .choose-container,
.iot .choose .choose-list,
.iot .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.iot .choose .heading {
  margin-bottom: 0;
}
.iot .choose .choose-list {
  counter-reset: number;
}
.iot .choose .choose-item {
  margin-top: 2.5rem;
  align-items: center;
}
.iot .choose .choose-item span {
  display: flex;
  background-color: #F5F5F5;
  width: 100px;
  height: 100px;
  padding: 1.5rem;
  position: relative;
}
.iot .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.iot .choose .choose-item span::after,
.iot .choose .choose-item span::before {
  position: absolute;
}
.iot .choose .choose-item span::before {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  counter-increment: number;
  content: "0" counter(number);
  width: 28px;
  height: 28px;
  background-color: #FFFFFF;
  right: -13px;
  top: -13px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.iot .choose .choose-item span::after {
  content: '';
  background-image: url(/_public/images/iot/circles.svg);
  background-size: 100% 100%;
  height: 130px;
  width: 130px;
  top: -18px;
  left: -18px;
  z-index: -1;
}
.iot .choose .choose-item h3,
.iot .choose .choose-item p {
  text-align: center;
}
.iot .choose .choose-item h3 {
  font-size: 15px;
  margin: 2.2rem 0 0.8rem;
}
.iot .choose .choose-item p {
  font-size: 13px;
}
.iot .benefit .benefit-container,
.iot .benefit .benefit-content {
  display: flex;
  flex-direction: column;
}
.iot .benefit .benefit-content {
  align-items: center;
}
.iot .benefit .benefit-content p {
  text-align: center;
}
.iot .benefit .benefit-content p:nth-child(3) {
  margin-top: 0.8rem;
}
.iot .benefit .benefit-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.iot .benefit .benefit-info img {
  width: 100%;
  height: 100%;
}
.iot .client {
  background-image: radial-gradient(#EF00BB, #5F00BE);
}
.iot .client .client-container,
.iot .client .client-list,
.iot .client .client-item {
  display: flex;
  flex-direction: column;
}
.iot .client .heading {
  margin-bottom: 0;
}
.iot .client .client-item {
  width: 95%;
}
.iot .client .client-item h3,
.iot .client .client-item p {
  color: #FFFFFF;
}
.iot .client .client-item p {
  margin: 2rem 0 1.2rem;
}
.iot .client .client-item h3 {
  font-size: 17px;
  margin-bottom: 0.2rem;
}
.iot .client .client-item img {
  width: 120px;
  height: 22px;
}
.iot .client .owl-dots {
  display: flex;
  margin-top: 1.5rem;
  width: 220px;
}
.iot .client .owl-dots .owl-dot {
  display: flex;
  height: 2px;
  width: 35px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-right: 0.5rem;
}
.iot .client .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.iot .client .owl-dots .owl-dot.active {
  background-color: #13D9E2;
}
.iot .faq .faq-container,
.iot .faq .faq-list,
.iot .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.iot .faq .faq-item {
  margin-top: 1rem;
  background-color: #F5F5F5;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: 1s all;
}
.iot .faq .faq-item .ques {
  display: flex;
  position: relative;
  cursor: pointer;
}
.iot .faq .faq-item .ques::before {
  content: '+';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #13D9E2;
  color: #FFFFFF;
  border-radius: 20px;
  height: 17px;
  width: 17px;
  top: 0;
  left: -37px;
  bottom: 0;
  margin: auto;
  transition: 1s all;
}
.iot .faq .faq-item .ques h3 {
  font-size: 14px;
}
.iot .faq .faq-item p {
  font-size: 13px;
}
.iot .faq .faq-item .ans {
  display: none;
  margin-top: 0.8rem;
  position: relative;
  padding-left: 0.8rem;
}
.iot .faq .faq-item .ans::before {
  content: '';
  position: absolute;
  background-color: #13D9E2;
  height: 100%;
  width: 2px;
  top: 0px;
  left: 0px;
}
.iot .faq .faq-item .ans ul {
  padding-left: 1rem;
}
.iot .faq .faq-item .ans ul li {
  font-size: 13px;
  margin-top: 0.3rem;
  list-style: disc;
}
.iot .faq .faq-item.active {
  background-color: transparent;
  border: 1px solid rgba(7, 6, 6, 0.4);
}
.iot .faq .faq-item.active .ques::before {
  content: '-';
}
.iot .footer {
  background: radial-gradient(#EF00BB, #5F00BE);
}
.iot .footer .footer-container,
.iot .footer .footer-content,
.iot .footer .info,
.iot .footer .form,
.iot .footer .input-list {
  display: flex;
  flex-direction: column;
}
.iot .footer .form {
  margin-bottom: 0;
}
.iot .footer .form .input-list .input-error {
  border-color: #ff0000;
}
.iot .footer .form .input-list .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.iot .footer .form .input-list .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.iot .footer .form .input-list .input-error ::placeholder {
  color: #ff0000;
}
.iot .footer .form .input-list .input-error span .white {
  display: none;
}
.iot .footer .form .input-list .input-error span .red {
  display: flex;
}
.iot .footer .form .input-container {
  display: flex;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}
.iot .footer .form .input-container input,
.iot .footer .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  color: #FFFFFF;
}
.iot .footer .form .input-container textarea {
  resize: none;
  overflow: auto;
  min-height: 50px;
}
.iot .footer .form .input-container span {
  display: flex;
  width: 16px;
  height: 16px;
}
.iot .footer .form .input-container span img {
  width: 100%;
  height: 100%;
}
.iot .footer .form .input-container span .white {
  display: flex;
}
.iot .footer .form .input-container span .red {
  display: none;
}
.iot .footer .form .input-container ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.iot .footer .form .input-container :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.iot .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.iot .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.iot .footer .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 90%;
  color: #FFFFFF;
}
.iot .footer .form .form-consent p {
  font-size: 11px;
  color: #FFFFFF;
}
.iot .footer .form .form-consent a {
  color: #13D9E2;
  font-weight: 600;
}
.iot .footer .form .consent-error p {
  color: #ff0000;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.iot .footer .form .buttons .btn-primary {
  min-width: 120px;
}
.iot .footer .form .buttons img {
  width: 16px;
  height: 16px;
}
.iot .footer .footer-content {
  margin-top: 2rem;
}
.iot .footer .footer-content .heading {
  margin-bottom: 0;
}
.iot .footer .contact-item {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  padding: 0.6rem;
  border-radius: 8px;
}
.iot .footer .contact-item .image {
  width: 32px;
  height: 32px;
}
.iot .footer .contact-item h3 {
  font-size: 14px;
  margin-bottom: 0.2rem;
}
.iot .footer .contact-item a {
  font-size: 12px;
  font-weight: 500;
}
.iot .footer .info {
  width: calc(100% - 45px);
}
.iot .footer .info img {
  width: 116px;
  height: 20px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .iot .banner .logo-container {
    padding: 1rem 2rem;
  }
  .iot .banner .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .iot .banner .banner-container {
    padding: 3rem 2rem;
  }
  .iot .banner .banner-content {
    position: relative;
    padding-left: 1.5rem;
  }
  .iot .banner .banner-content::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 97%;
    background-color: #FFFFFF;
    bottom: 0;
    left: 0;
    animation: line-move 6s linear infinite;
  }
  .iot .banner .banner-content h1 {
    font-size: 25px;
  }
  .iot .banner .banner-info {
    display: none;
  }
  .iot .overview .overview-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .iot .overview .overview-content {
    width: 48%;
    align-items: flex-start;
  }
  .iot .overview .overview-content p,
  .iot .overview .overview-content h2 {
    text-align: left;
  }
  .iot .overview .overview-content .heading span {
    margin: 0.8rem 0;
  }
  .iot .overview .overview-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .iot .fact .fact-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .iot .fact .fact-item {
    width: 42%;
  }
  .iot .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .iot .course .course-item {
    width: 45%;
    margin-right: 1.5rem;
  }
  .iot .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .iot .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .iot .course .course-item .info h3 {
    min-height: 63px;
  }
  .iot .important .important-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .iot .important .important-content {
    width: 48%;
  }
  .iot .important .important-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .iot .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .iot .method .method-item {
    width: 48%;
  }
  .iot .work .work-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .iot .work .work-content {
    width: 47%;
  }
  .iot .work .work-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .iot .choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .iot .choose .choose-item {
    width: 30%;
  }
  .iot .benefit .benefit-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .iot .benefit .benefit-content {
    width: 47%;
    align-items: flex-start;
  }
  .iot .benefit .benefit-content h2,
  .iot .benefit .benefit-content p {
    text-align: left;
  }
  .iot .benefit .benefit-content h2 span {
    margin: 0.8rem 0;
  }
  .iot .benefit .benefit-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .iot .client .client-container {
    background-image: url(/_public/images/iot/client.png);
    background-size: 162px 162px;
    background-repeat: no-repeat;
    background-position: top 78px left 20px;
  }
  .iot .client .client-list,
  .iot .client .heading {
    width: 70%;
    margin-left: auto;
  }
  .iot .client .owl-dots {
    justify-content: flex-end;
    align-self: flex-end;
    transform: translate(-25px, -33px);
  }
  .iot .faq .faq-list {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .iot .faq .faq-item {
    width: 47.5%;
  }
  .iot .footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .iot .footer .form {
    width: 45%;
  }
  .iot .footer .footer-content {
    width: 45%;
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .iot .heading h2 {
    font-size: 28px;
  }
  .iot .buttons .btn-secondary,
  .iot .buttons .btn-primary {
    font-size: 16px;
  }
  .iot .banner {
    background-image: url(/_public/images/iot/banner-bg.png);
    background-size: 100% 100%;
  }
  .iot .banner .logo-container .menu,
  .iot .banner .logo-container .menu-toggle {
    display: none;
  }
  .iot .banner .logo-container .menu-links {
    flex-direction: row;
    width: 75%;
    position: relative;
    background-color: transparent;
    box-shadow: none;
  }
  .iot .banner .logo-container .menu-links ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .iot .banner .logo-container .menu-links ul .links-li {
    padding: 0;
    font-size: 15px;
    border-bottom: none;
    margin-right: 1rem;
    z-index: 1;
    position: relative;
  }
  .iot .banner .logo-container .menu-links ul .links-li::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    height: 0;
    background-color: #13D9E2;
    top: -30px;
    transition: 0.8s all;
    z-index: -1;
    opacity: 0;
  }
  .iot .banner .logo-container .menu-links ul .links-li .btn-secondary,
  .iot .banner .logo-container .menu-links ul .links-li .btn-primary {
    min-width: 176px;
    height: 42px;
  }
  .iot .banner .logo-container .menu-links ul .links-li .btn-secondary {
    margin-right: 1rem;
    color: #070606;
    border-color: #070606;
  }
  .iot .banner .logo-container .menu-links ul .links-li .btn-secondary::before {
    background-color: #F5F5F5;
  }
  .iot .banner .logo-container .menu-links ul .links-li .btn-secondary:hover::before {
    background-color: #F5F5F5;
  }
  .iot .banner .logo-container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .iot .banner .logo-container .menu-links ul .links-li:last-child::before {
    display: none;
  }
  .iot .banner .logo-container .menu-links ul .links-li:nth-child(5) {
    display: none;
  }
  .iot .banner .logo-container .menu-links ul .links-li:hover::before {
    opacity: 1;
    height: 33px;
  }
  .iot .banner .banner-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem!important;
  }
  .iot .banner .banner-content {
    width: 48%;
  }
  .iot .banner .banner-content h1 {
    font-size: 30px;
    line-height: 1.1;
  }
  .iot .banner .banner-content h1 img {
    width: 60px;
    height: 60px;
  }
  .iot .banner .banner-content h1 span {
    font-size: 62px;
  }
  .iot .banner .banner-content p {
    margin-top: 1.8rem;
  }
  .iot .banner .banner-content .buttons {
    margin-top: 2.5rem;
  }
  .iot .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
  }
  .iot .overview {
    background-image: url(/_public/images/iot/overview-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 35% 85%;
  }
  .iot .fact .fact-container {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    background-color: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 0 0 20px 20px;
    position: relative;
    background-image: url(/_public/images/iot/square.png), url(/_public/images/iot/grid.png);
    background-repeat: no-repeat;
    background-size: 65px 65px, 25px 135px;
    background-position: left 20px top 27px, right 20px center;
  }
  .iot .fact .fact-container::before,
  .iot .fact .fact-container::after {
    content: '';
    position: absolute;
    z-index: -1;
  }
  .iot .fact .fact-container::before {
    width: calc(100% - 75px);
    height: 13px;
    bottom: -14px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: radial-gradient(#EF00BB, #5F00BE);
    border-radius: 0 0 20px 20px;
    animation: 3s blink linear infinite;
  }
  .iot .fact .fact-list {
    width: 85%;
    align-self: center;
  }
  .iot .course .course-item {
    width: 31%;
  }
  .iot .course .course-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .iot .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .iot .important .important-info {
    padding: 1.5rem 2rem;
    width: 46%;
    z-index: 1;
  }
  .iot .important .important-info::before,
  .iot .important .important-info::after {
    content: '';
    position: absolute;
    width: 5%;
    height: 30%;
    background-image: url(/_public/images/iot/grid.png);
    background-size: 100% 100%;
    z-index: -1;
    animation: 2s blink linear infinite;
  }
  .iot .important .important-info::before {
    bottom: 22px;
    left: 15px;
  }
  .iot .important .important-info::after {
    top: 22px;
    right: 15px;
  }
  .iot .method .heading {
    width: 87%;
    margin: auto;
  }
  .iot .method .method-item {
    width: 23%;
  }
  .iot .method .method-item h3 {
    min-height: 47px;
  }
  .iot .method .method-item p {
    line-height: 1.5;
    min-height: 115px;
  }
  .iot .work {
    background: url(/_public/images/iot/work-bg.png), radial-gradient(#EF00BB, #5F00BE);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
  .iot .choose .heading {
    width: 85%;
    align-self: center;
  }
  .iot .choose .choose-item {
    margin-top: 3.8rem;
  }
  .iot .client .client-container {
    width: 90%;
    margin: auto;
    background-position: top 85px left 88px;
  }
  .iot .client .client-list,
  .iot .client .heading {
    width: 68%;
  }
  .iot .client .client-item p {
    margin-top: 3rem;
  }
  .iot .client .owl-nav {
    display: flex;
    width: calc(100% + 290px);
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -272px;
  }
  .iot .client .owl-nav .owl-prev,
  .iot .client .owl-nav .owl-next {
    display: flex;
    width: 33px;
    height: 33px;
    background-image: url(/_public/images/iot/nav-arrow.svg);
    background-size: 100% 100%;
    opacity: 0.7;
  }
  .iot .client .owl-nav .owl-prev {
    transform: rotate(180deg);
  }
  .iot .client .owl-nav .btn-active {
    opacity: 1;
  }
  .iot .faq .faq-item .ques h3 {
    font-size: 15px;
  }
  .iot .faq .faq-item p {
    font-size: 14px;
  }
  .iot .footer {
    background: url(/_public/images/iot/footer-bg.png), radial-gradient(#EF00BB, #5F00BE);
    background-size: 50% 100%, 100% 100%;
    background-repeat: no-repeat;
    background-position: left;
    padding: 0 2rem;
  }
  .iot .footer .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .iot .footer .input-container {
    width: 47%;
  }
  .iot .footer .input-container:last-child {
    width: 100%;
  }
  .iot .footer .form {
    padding: 3rem 0;
  }
  .iot .footer .footer-content {
    padding: 3rem 2rem;
    background-color: #000000;
  }
  .iot .footer .contact-item {
    padding: 1rem 1.5rem;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .iot .heading h2 {
    font-size: 32px;
  }
  .iot .banner .logo-container {
    padding: 1.3rem 0;
  }
  .iot .banner .logo-container .tka-logo {
    max-width: 235px;
  }
  .iot .banner .logo-container .menu-links ul .links-li:nth-child(5) {
    display: flex;
  }
  .iot .banner .banner-container {
    padding: 6rem 0 !important;
  }
  .iot .banner .banner-content h1 {
    font-size: 35px;
  }
  .iot .banner .banner-content h1 img {
    width: 115px;
    height: 115px;
    transform: translate(0px, 17px);
  }
  .iot .banner .banner-content h1 span {
    font-size: 120px;
  }
  .iot .overview .overview-container {
    align-items: center;
  }
  .iot .overview .overview-info {
    position: static;
    top: 0;
  }
  .iot .fact .fact-container::after {
    background-image: url(/_public/images/iot/rings.png);
    background-size: 100% 100%;
    right: -29px;
    top: -39px;
    width: 100px;
    height: 100px;
    animation: 3s rotate linear infinite;
    z-index: -1;
  }
  .iot .fact .fact-item {
    width: 26%;
  }
  .iot .course .course-item {
    width: 23.5%;
  }
  .iot .course .course-item:nth-child(3n) {
    margin-right: 1.5rem;
  }
  .iot .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .iot .important .important-info {
    position: relative;
    top: 0;
  }
  .iot .important .important-info h2 {
    font-size: 26px;
  }
  .iot .method .method-item h3 {
    min-height: auto;
  }
  .iot .method .method-item p {
    min-height: 95px;
  }
  .iot .work {
    padding: 3rem 0;
  }
  .iot .work .work-container {
    align-items: center;
  }
  .iot .work .work-info {
    position: static;
    top: 0;
  }
  .iot .choose .choose-item {
    width: 28%;
  }
  .iot .choose .choose-item span {
    width: 130px;
    height: 115px;
    padding: 1.7rem;
  }
  .iot .choose .choose-item span::before {
    width: 32px;
    height: 32px;
  }
  .iot .choose .choose-item span::after {
    height: 150px;
    width: 150px;
    top: -20px;
  }
  .iot .choose .choose-item h3 {
    font-size: 17px;
  }
  .iot .choose .choose-item p {
    font-size: 14px;
  }
  .iot .benefit .benefit-content {
    width: 50%;
  }
  .iot .benefit .benefit-info {
    position: static;
    width: 40%;
    align-self: center;
  }
  .iot .client {
    padding: 3rem 0;
  }
  .iot .client .client-container {
    background-position: top 85px left 50px;
  }
  .iot .client .client-list,
  .iot .client .heading {
    width: 78%;
  }
  .iot .client .owl-nav {
    left: -273px;
  }
  .iot .footer {
    padding: 0;
  }
  .iot .footer .form {
    padding: 4rem 0;
  }
  .iot .footer .footer-content {
    padding: 4rem 3rem;
    width: 42%;
  }
  .iot .footer .contact-item h3 {
    font-size: 16px;
  }
  .iot .footer .contact-item a {
    font-size: 15px;
  }
}
