@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  padding: 6px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  margin-left: 0;
  border: 1px solid #ACACAC;
}
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: #050404;
  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: #050404;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wireless .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.wireless .buttons .btn-blue,
.wireless .buttons .btn-white,
.wireless .buttons .btn-grey {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 14px;
  outline: 0;
  min-width: 160px;
  position: relative;
  z-index: 1;
}
.wireless .buttons .btn-blue::before,
.wireless .buttons .btn-white::before,
.wireless .buttons .btn-grey::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: scale(1);
  transition: all 0.5s;
  border-radius: 10px;
}
.wireless .buttons .btn-blue:hover:before,
.wireless .buttons .btn-white:hover:before,
.wireless .buttons .btn-grey:hover:before {
  transform: scale(0);
}
.wireless .buttons .btn-blue img,
.wireless .buttons .btn-white img,
.wireless .buttons .btn-grey img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.wireless .buttons .btn-blue {
  background-image: linear-gradient(90deg, #1E25FA, #1DE7D1);
  color: #FFFFFF;
}
.wireless .buttons .btn-blue::before {
  background-image: linear-gradient(90deg, #1DE7D1, #1E25FA);
}
.wireless .buttons .btn-white {
  background-image: linear-gradient(90deg, #F5F5F5, #D6D6D6);
  color: #000000;
}
.wireless .buttons .btn-white::before {
  background-color: #FFFFFF;
}
.wireless .buttons .btn-grey {
  background-color: #F5F5F5;
  color: #000000;
  border-radius: 16px;
  min-width: 145px;
  padding: 7px 14px;
  font-weight: 500;
}
.wireless .buttons .btn-grey::before {
  content: none;
}
.wireless .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.wireless .heading p {
  margin-top: 1rem;
}
.wireless .heading h2 {
  width: 100%;
}
.wireless .center-heading {
  justify-content: center;
  align-items: center;
}
.wireless .center-heading h2,
.wireless .center-heading p {
  text-align: center;
}
.wireless .white-heading h2,
.wireless .white-heading p {
  color: #FFFFFF;
}
.wireless .banner {
  flex-direction: column;
  padding: 0;
}
.wireless .banner .logo-container,
.wireless .banner .tka-logo,
.wireless .banner .menu,
.wireless .banner .menu-toggle,
.wireless .banner span {
  display: flex;
}
.wireless .banner .logo-container {
  padding: 1rem 1.5rem;
  background-color: #2D77FC;
}
.wireless .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
.wireless .banner .tka-logo {
  max-width: 200px;
}
.wireless .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.wireless .banner .menu {
  margin-left: auto;
}
.wireless .banner .menu img {
  width: 24px;
  height: 25px;
}
.wireless .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #091125;
}
.wireless .banner .menu-toggle {
  font-weight: 500;
  color: #FFFFFF;
}
.wireless .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.wireless .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #FFFFFF;
  font-weight: 500;
  color: #FFFFFF;
}
.wireless .banner ul .links-li:first-child {
  padding-top: 0;
}
.wireless .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.wireless .banner ul .links-li:last-child {
  display: none;
}
.wireless .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.wireless .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.wireless .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  box-shadow: 0 0 6px #FFFFFF;
}
.wireless .banner .sticky-down {
  top: -100px;
}
.wireless .banner .container {
  height: 100%;
}
.wireless .banner .banner-container,
.wireless .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.wireless .banner .banner-container {
  padding: 3rem 1.5rem;
  padding-top: 2rem;
}
.wireless .banner .banner-content {
  align-items: flex-start;
}
.wireless .banner .banner-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #000000;
  padding: 0.1rem 1rem;
}
.wireless .banner .banner-content h1 {
  margin: 1rem 0;
  width: 100%;
}
.wireless .banner .banner-img {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.wireless .banner .banner-img img {
  height: 100%;
  width: 100%;
}
.wireless .overview {
  padding-top: 0;
}
.wireless .overview .overview-container,
.wireless .overview .overview-content,
.wireless .overview .course-content {
  display: flex;
  flex-direction: column;
}
.wireless .overview .overview-container {
  background-color: #2D77FC;
  padding: 2rem;
  border-radius: 18px;
}
.wireless .overview .overview-content {
  align-items: center;
}
.wireless .overview .overview-content p {
  color: #FFFFFF;
  text-align: center;
}
.wireless .overview .course-content {
  margin-top: 2rem;
  padding: 1.5rem;
  align-items: center;
  border-radius: 16px;
  background-color: #FFFFFF;
  width: 100%;
}
.wireless .overview .course-content span {
  display: flex;
  height: 90px;
  width: 90px;
  padding: 1.4rem;
  background-image: url(/_public/images/5g-wireless/polygon.svg);
  background-size: 100% 100%;
}
.wireless .overview .course-content span img {
  height: 100%;
  width: 100%;
}
.wireless .overview .course-content h3,
.wireless .overview .course-content p {
  text-align: center;
}
.wireless .overview .course-content h3 {
  margin: 1rem 0 0.5rem 0;
  font-size: 18px;
  width: 100%;
}
.wireless .overview .course-content p {
  font-weight: 500;
}
.wireless .overview .course-content p:nth-child(4) {
  margin-top: 0.5rem;
}
.wireless .overview .course-content .buttons .btn-blue img {
  height: 18px;
  width: 18px;
}
.wireless .outline {
  background-color: #F5F5F5;
}
.wireless .outline .outline-container,
.wireless .outline .outline-content,
.wireless .outline .toggle-item,
.wireless .outline .input-list,
.wireless .outline .form {
  display: flex;
  flex-direction: column;
}
.wireless .outline .outline-content .heading {
  margin-bottom: 0;
}
.wireless .outline .toggle-item {
  border-radius: 5px;
  margin-top: 1rem;
  border: 1px solid #D6D6D6;
  background-color: #FFFFFF;
}
.wireless .outline .ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}
.wireless .outline .ques h3 {
  width: 88%;
  font-size: 15px;
}
.wireless .outline .ques span {
  display: flex;
  height: 10px;
  width: 10px;
}
.wireless .outline .ques span img {
  width: 100%;
  height: 100%;
}
.wireless .outline .ques span img:last-child {
  display: none;
}
.wireless .outline .ans {
  display: none;
  padding: 0.8rem 1.2rem;
  border-radius: 0px 0px 5px 5px;
}
.wireless .outline .ans ul li {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}
.wireless .outline .ans ul li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0px;
  height: 9px;
  width: 9px;
  background-color: #091125;
  border-radius: 50px;
}
.wireless .outline .ans ul li:first-child {
  margin-top: 0px;
}
.wireless .outline .active .ques {
  background-color: #2D77FC;
  border-radius: 5px 5px 0px 0px;
}
.wireless .outline .active .ques span img:first-child {
  display: none;
}
.wireless .outline .active .ques span img:last-child {
  display: flex;
}
.wireless .outline .active h3 {
  color: #FFFFFF;
}
.wireless .outline .form {
  margin-top: 2rem;
  background-color: #2F374B;
  padding: 1rem;
  margin-bottom: 0;
  border-radius: 15px;
}
.wireless .outline .form .input-list .input-container {
  display: flex;
  border: 1px solid #ACACAC;
  margin-bottom: 1rem;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  padding: 0.6rem;
  border-radius: 5px;
}
.wireless .outline .form .input-list .input-container input,
.wireless .outline .form .input-list .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  font-weight: 500;
  padding: 0;
  color: #F5F5F5;
  font-size: 12px;
  background-color: transparent;
}
.wireless .outline .form .input-list .input-container textarea {
  resize: none;
  overflow: auto;
  min-height: 50px;
}
.wireless .outline .form .input-list .input-container span {
  display: flex;
  height: 17px;
  width: 17px;
}
.wireless .outline .form .input-list .input-container span img {
  width: 100%;
  height: 100%;
}
.wireless .outline .form .input-list .input-container span .white {
  display: flex;
}
.wireless .outline .form .input-list .input-container span .red {
  display: none;
}
.wireless .outline .form .input-list .input-container ::-webkit-input-placeholder {
  color: #ACACAC;
}
.wireless .outline .form .input-list .input-container :-ms-input-placeholder {
  color: #ACACAC;
}
.wireless .outline .form .input-list .input-container ::placeholder {
  color: #ACACAC;
}
.wireless .outline .form .input-list .input-error {
  border: 1px solid #ff0000;
}
.wireless .outline .form .input-list .input-error span .white {
  display: none;
}
.wireless .outline .form .input-list .input-error span .red {
  display: flex;
}
.wireless .outline .form .input-list .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.wireless .outline .form .input-list .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.wireless .outline .form .input-list .input-error ::placeholder {
  color: #ff0000;
}
.wireless .outline .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.wireless .outline .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.wireless .outline .form .form-consent label {
  display: flex;
  align-self: center;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 90%;
  cursor: pointer;
}
.wireless .outline .form .form-consent p,
.wireless .outline .form .form-consent label {
  color: #FFFFFF;
}
.wireless .outline .form .form-consent p {
  font-size: 11px;
}
.wireless .outline .form .form-consent a {
  font-weight: 900;
}
.wireless .outline .form .consent-error p {
  color: #ff0000;
  line-height: 1.6;
  width: 100%;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.wireless .outline .form .buttons .btn-blue {
  min-width: 130px;
}
.wireless .features {
  padding-bottom: 0;
}
.wireless .features .features-container,
.wireless .features .features-content,
.wireless .features .features-img {
  display: flex;
  flex-direction: column;
}
.wireless .features .features-container {
  align-items: flex-start;
}
.wireless .features .features-content {
  width: 100%;
}
.wireless .features .features-content li {
  padding-left: 1.8rem;
  margin-top: 1rem;
  position: relative;
  line-height: 1.6;
}
.wireless .features .features-content li::before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  top: 3px;
  left: 0px;
  background-image: url(/_public/images/5g-wireless/ring.svg);
  background-size: 100% 100%;
  animation: rotate 3s linear infinite;
}
.wireless .features .features-img {
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.wireless .features .features-img .image {
  display: flex;
  height: 100%;
}
.wireless .features .features-img .image img {
  width: 100%;
  height: 100%;
}
.wireless .method .method-container,
.wireless .method .method-list,
.wireless .method .method-item {
  display: flex;
  flex-direction: column;
}
.wireless .method .heading {
  margin-bottom: 0;
}
.wireless .method .method-item {
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  background-image: linear-gradient(0deg, #FFFFFF 132px, #F5F5F5 132px);
  margin-top: 2rem;
  border-radius: 16px;
  transition: 1s all;
  width: 272px;
  align-self: center;
}
.wireless .method .method-item .method-img {
  display: flex;
  width: 125px;
  height: 125px;
  padding: 0.5rem;
  border-radius: 100%;
  border: 1px solid #2D77FC;
  position: relative;
  z-index: 1;
}
.wireless .method .method-item .method-img img {
  width: 100%;
  height: 100%;
}
.wireless .method .method-item h3 {
  font-size: 16px;
  text-align: center;
  min-height: 50px;
  margin-top: 1.8rem;
  transition: 1s all;
  width: 100%;
}
.wireless .method .method-item .buttons {
  margin-top: 1rem;
}
.wireless .method .method-item .buttons .btn-grey span {
  display: flex;
}
.wireless .method .method-item .buttons .btn-grey span img {
  width: 13px;
  height: 13px;
  margin-right: 0;
  margin-left: 0.7rem;
}
.wireless .method .method-item .buttons .btn-grey span img:first-child {
  display: flex;
}
.wireless .method .method-item .buttons .btn-grey span img:last-child {
  display: none;
}
.wireless .method .method-item:hover {
  background-color: #091125;
  background-image: none;
}
.wireless .method .method-item:hover .method-img::before {
  content: '';
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  left: -9px;
  top: -9px;
  z-index: -1;
  border: 1px solid #2D77FC;
  border-radius: 100%;
  animation: pulse 2s linear infinite;
}
.wireless .method .method-item:hover h3 {
  color: #FFFFFF;
}
.wireless .method .method-item:hover .buttons .btn-grey {
  background-image: linear-gradient(90deg, #1DE7D1, #1E25FA);
  color: #FFFFFF;
}
.wireless .method .method-item:hover .buttons .btn-grey span img:first-child {
  display: none;
}
.wireless .method .method-item:hover .buttons .btn-grey span img:last-child {
  display: flex;
}
.wireless .used {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.wireless .used .used-container,
.wireless .used .used-content {
  display: flex;
  flex-direction: column;
}
.wireless .used .used-content ul li {
  margin-top: 0.8rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}
.wireless .used .used-content ul li::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(/_public/images/5g-wireless/ring.svg);
  background-size: 100% 100%;
  left: 0;
  top: 3px;
  z-index: -1;
  animation: rotate 3s linear infinite;
}
.wireless .used .used-img {
  display: flex;
  height: 100%;
  margin-top: 2rem;
  border-radius: 40px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  width: 272px;
  align-self: center;
}
.wireless .used .used-img img {
  width: 100%;
  height: 100%;
}
.wireless .info .info-container,
.wireless .info .info-list,
.wireless .info .info-item,
.wireless .info .content,
.wireless .info .info-info {
  display: flex;
  flex-direction: column;
}
.wireless .info .heading {
  margin-bottom: 0;
}
.wireless .info .info-item {
  padding: 1.5rem 1rem;
  background-color: #F5F5F5;
  margin-top: 2rem;
  border-radius: 15px;
}
.wireless .info .info-item ul {
  margin-top: 1rem;
}
.wireless .info .info-item ul li {
  padding-left: 1.7rem;
  margin-top: 0.4rem;
  line-height: 1.6;
  position: relative;
}
.wireless .info .info-item ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/5g-wireless/tick.svg);
  background-size: 100% 100%;
  width: 17px;
  height: 17px;
  top: 2px;
  left: 0;
}
.wireless .info h3 {
  color: #FFFFFF;
  text-align: center;
  background-color: #091125;
  border-radius: 10px;
  font-size: 15px;
  padding: 0.8rem;
}
.wireless .fact {
  background-color: #2D77FC;
}
.wireless .fact .fact-container,
.wireless .fact .fact-item {
  display: flex;
  flex-direction: column;
}
.wireless .fact .heading {
  margin-bottom: 0;
}
.wireless .fact .fact-count {
  display: flex;
  align-self: center;
  margin-top: 0.5rem;
}
.wireless .fact .fact-count h4,
.wireless .fact .fact-count span {
  font-size: 28px;
  font-weight: 600;
}
.wireless .fact .fact-item {
  width: 210px;
  align-self: center;
  background-color: #FFFFFF;
  margin-top: 1.5rem;
  padding: 0.8rem 1rem 1rem 0.8rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.wireless .fact .fact-item::before {
  content: '';
  position: absolute;
  background-color: #091125;
  width: 78px;
  height: 78px;
  top: -14px;
  left: -12px;
  z-index: -1;
  border-radius: 60px;
}
.wireless .fact .fact-item p {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.wireless .fact .fact-item img {
  width: 32px;
  height: 32px;
}
.wireless .works .works-container,
.wireless .works .works-content,
.wireless .works .works-img {
  display: flex;
  flex-direction: column;
}
.wireless .works .works-container {
  align-items: flex-start;
}
.wireless .works .works-content {
  width: 100%;
}
.wireless .works .works-content .heading {
  margin-bottom: 0;
}
.wireless .works .works-content ul li {
  margin-top: 1rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}
.wireless .works .works-content ul li:before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/5g-wireless/ring.svg);
  animation: rotate 3s linear infinite;
  background-size: 100% 100%;
  height: 16px;
  width: 16px;
  top: 3px;
  left: 0;
}
.wireless .works .works-img {
  width: 100%;
  margin-top: 2rem;
  height: 100%;
}
.wireless .works .works-img span {
  display: flex;
  height: 100%;
  width: 100%;
}
.wireless .works .works-img span img {
  height: 100%;
  width: 100%;
}
.wireless .choose {
  background-color: #F5F5F5;
}
.wireless .choose .choose-container,
.wireless .choose .choose-list,
.wireless .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.wireless .choose .choose-container .heading {
  margin-bottom: 0;
}
.wireless .choose .choose-item {
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  padding-top: 5rem;
  margin-top: 3.8rem;
  position: relative;
  width: 100%;
}
.wireless .choose .choose-item span {
  display: flex;
  background-color: #091125;
  border-radius: 10px;
  position: absolute;
  padding: 1.4rem;
  height: 80px;
  width: 90px;
  top: -23px;
  left: 23px;
}
.wireless .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.wireless .choose .choose-item p {
  font-size: 13px;
}
.wireless .choose .choose-item h4 {
  margin-bottom: 1rem;
  font-size: 16px;
}
.wireless .faq .faq-container,
.wireless .faq .faq-list,
.wireless .faq .toggle-item {
  display: flex;
  flex-direction: column;
}
.wireless .faq .heading {
  margin-bottom: 0;
}
.wireless .faq .toggle-item {
  margin-top: 1rem;
}
.wireless .faq .ques {
  display: flex;
  justify-content: space-between;
  border: 1px solid #D6D6D6;
  padding: 0.5rem;
  position: relative;
  border-radius: 5px;
}
.wireless .faq .ques h3 {
  width: calc(100% - 80px);
  font-size: 14px;
}
.wireless .faq .question {
  display: flex;
  width: 22px;
  height: 22px;
}
.wireless .faq .question img {
  width: 100%;
  height: 100%;
}
.wireless .faq .question::after {
  content: '';
  position: absolute;
  width: 37px;
  height: 100%;
  left: 0;
  border-right: 1px solid #D6D6D6;
  top: 0;
  border-radius: 5px;
}
.wireless .faq .circle {
  display: flex;
  width: 20px;
  height: 20px;
}
.wireless .faq .circle img {
  width: 100%;
  height: 100%;
}
.wireless .faq .circle img:first-child {
  display: none;
}
.wireless .faq .circle img:last-child {
  display: flex;
}
.wireless .faq .ans {
  display: none;
  padding: 0.5rem;
  border: 1px solid #D6D6D6;
  padding-left: 2.3rem;
}
.wireless .faq .ans p {
  padding-left: 0.7rem;
  border-left: 2px solid #ACACAC;
  font-size: 13px;
}
.wireless .faq .ans ul {
  padding-left: 2rem;
  border-left: 2px solid #ACACAC;
}
.wireless .faq .ans li {
  margin-top: 0.5rem;
  font-size: 13px;
  list-style: disc;
}
.wireless .faq .ans li:first-child {
  margin-top: 0;
}
.wireless .faq .active .circle img:first-child {
  display: flex;
}
.wireless .faq .active .circle img:last-child {
  display: none;
}
.wireless .faq .active .ques {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.wireless .faq .active .ques .question::after {
  border-radius: 0px;
}
.wireless .testimonial {
  background-color: #2D77FC;
}
.wireless .testimonial .testimonial-container,
.wireless .testimonial .testimonial-list,
.wireless .testimonial .testimonial-item {
  display: flex;
  flex-direction: column;
}
.wireless .testimonial .testimonial-item {
  background-color: #FFFFFF;
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  border-radius: 4px;
  position: relative;
  margin: 2.5rem 0.5rem;
}
.wireless .testimonial .testimonial-item::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/5g-wireless/quote.png);
  background-size: 100% 100%;
  height: 45px;
  width: 56px;
  top: 0;
  right: 21px;
}
.wireless .testimonial .testimonial-item span {
  display: flex;
  width: 72px;
  height: 72px;
  background-color: #F5F5F5;
  padding: 0.8rem;
  border-radius: 100%;
  position: absolute;
  top: -33px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.wireless .testimonial .testimonial-item span img {
  width: 100%;
  height: 100%;
}
.wireless .testimonial .testimonial-item h3 {
  color: #2D77FC;
  margin: 1rem 0 0.2rem;
  font-size: 18px;
}
.wireless .testimonial .testimonial-item h4 {
  font-size: 14px;
  color: #000000;
}
.wireless .testimonial .testimonial-item p {
  font-weight: 500;
}
.wireless .testimonial .owl-dots {
  display: flex;
  justify-content: center;
  width: 100%;
}
.wireless .testimonial .owl-dot {
  display: flex;
  background-color: #FFFFFF;
  width: 20px;
  height: 12px;
  border-radius: 20px;
  margin-right: 0.5rem;
}
.wireless .testimonial .owl-dot:last-child {
  margin-right: 0;
}
.wireless .testimonial .owl-nav {
  display: none;
}
.wireless .testimonial .active {
  width: 45px;
}
.wireless .footer .footer-container,
.wireless .footer .contact-list,
.wireless .footer .contact-info {
  display: flex;
  flex-direction: column;
}
.wireless .footer .heading {
  margin-bottom: 0;
}
.wireless .footer .buttons {
  align-self: center;
}
.wireless .footer .contact-item {
  display: flex;
  margin-top: 1.8rem;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  padding: 0.8rem;
}
.wireless .footer .contact-item span {
  display: none;
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 0.8rem;
  height: 50px;
  width: 55px;
}
.wireless .footer .contact-item span img {
  width: 100%;
  height: 100%;
}
.wireless .footer .contact-info h4 {
  font-size: 15px;
}
.wireless .footer .contact-info a {
  font-size: 13px;
  margin-top: 0.3rem;
  font-weight: 500;
}
.wireless .footer .contact-info img {
  width: 100px;
  height: 20px;
  margin-top: 0.3rem;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .wireless .buttons .btn-blue,
  .wireless .buttons .btn-white {
    font-size: 16px;
  }
  .wireless .banner .logo-container {
    padding: 1rem 2rem;
  }
  .wireless .banner .banner-container {
    padding: 3rem 2rem;
  }
  .wireless .banner .banner-img {
    display: none;
  }
  .wireless .banner .menu.active + .menu-links {
    width: 50%;
  }
  .wireless .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }
  .wireless .overview .overview-content {
    width: 54%;
    align-items: flex-start;
  }
  .wireless .overview .overview-content h2,
  .wireless .overview .overview-content p {
    text-align: left;
  }
  .wireless .overview .course-content {
    width: 42%;
    margin-top: 0;
    align-self: center;
  }
  .wireless .outline .outline-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .wireless .outline .outline-content {
    width: 47%;
  }
  .wireless .outline .outline-list {
    max-height: 605px;
    overflow-y: scroll;
    padding: 1rem;
    padding-left: 0;
    margin-top: 0.6rem;
  }
  .wireless .outline .outline-list .toggle-item:first-child {
    margin-top: 0;
  }
  .wireless .outline .form {
    width: 47%;
    padding: 2rem 1.5rem;
    margin-top: 0;
  }
  .wireless .features .features-img {
    width: 75%;
    align-self: center;
  }
  .wireless .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .wireless .method .method-item {
    width: 46%;
    background-image: linear-gradient(0deg, #FFFFFF 118px, #F5F5F5 118px);
  }
  .wireless .method .method-item h3 {
    min-height: auto;
  }
  .wireless .used .used-img {
    display: none;
  }
  .wireless .info .info-container {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .wireless .info .info-item {
    width: 45%;
  }
  .wireless .info .info-item ul {
    min-height: 267px;
  }
  .wireless .fact .fact-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .wireless .fact .fact-item {
    width: 23%;
  }
  .wireless .works .works-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .wireless .works .works-content {
    width: 48%;
  }
  .wireless .works .works-img {
    position: sticky;
    margin-top: 0;
    width: 47%;
    top: 60px;
  }
  .wireless .choose {
    background-image: url(/_public/images/5g-wireless/grid.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 50% 38%;
  }
  .wireless .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .wireless .choose .choose-item {
    width: 48%;
  }
  .wireless .choose .choose-item p {
    min-height: 100px;
  }
  .wireless .faq .faq-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .wireless .faq .toggle-item {
    width: 48%;
  }
  .wireless .faq .toggle-item .ques {
    padding-right: 1rem;
    cursor: pointer;
  }
  .wireless .testimonial .testimonial-item p {
    min-height: 264px;
  }
  .wireless .footer .contact-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .wireless .footer .contact-item {
    justify-content: space-between;
    width: 48%;
  }
  .wireless .footer .contact-item:first-child {
    margin-right: 1.7rem;
  }
  .wireless .footer .contact-item:last-child {
    width: 53%;
  }
  .wireless .footer .contact-item span {
    display: flex;
  }
  .wireless .footer .contact-item .contact-info {
    width: calc(100% - 75px);
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .wireless .heading h2 {
    font-size: 28px;
  }
  .wireless .banner {
    background-image: url(/_public/images/5g-wireless/banner-bg.png), url(/_public/images/5g-wireless/info-bg.png);
    background-size: 75% 100%  ,  55% 72% ;
    background-position: top left , bottom right;
    background-repeat: no-repeat;
  }
  .wireless .banner .tka-logo {
    max-width: 245px;
  }
  .wireless .banner .menu-links {
    width: 70%;
    position: relative;
    background-color: transparent;
  }
  .wireless .banner .menu {
    display: none;
  }
  .wireless .banner .menu-toggle {
    display: none;
  }
  .wireless .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .wireless .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.5rem;
    padding: 0;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    z-index: 1;
  }
  .wireless .banner ul .links-li::before,
  .wireless .banner ul .links-li::after {
    position: absolute;
    opacity: 0;
    transition: transform 0.3s, opacity 0.2s;
    color: #091125;
    z-index: -1;
  }
  .wireless .banner ul .links-li::before {
    left: -10px;
    content: '[';
    transform: translateX(20px);
  }
  .wireless .banner ul .links-li::after {
    right: -10px;
    content: ']';
    transform: translateX(-20px);
  }
  .wireless .banner ul .links-li:hover {
    color: #091125;
  }
  .wireless .banner ul .links-li:hover::before,
  .wireless .banner ul .links-li:hover::after {
    opacity: 1;
    transform: translateX(0px);
  }
  .wireless .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .wireless .banner ul .links-li:last-child::before,
  .wireless .banner ul .links-li:last-child::after {
    content: none;
  }
  .wireless .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 4.5rem;
    align-items: center;
  }
  .wireless .banner .banner-content {
    width: 45%;
  }
  .wireless .banner .banner-content h1 {
    font-size: 30px;
  }
  .wireless .banner .banner-content h3 {
    font-size: 18px;
  }
  .wireless .banner .banner-img {
    display: flex;
    margin-top: 0;
    width: 50%;
  }
  .wireless .overview {
    transform: translateY(-15px);
  }
  .wireless .overview .overview-container {
    background-image: url(/_public/images/5g-wireless/overview-bg.png);
    background-size: 100% 100%;
    padding: 3rem;
  }
  .wireless .overview .overview-content {
    width: 58%;
  }
  .wireless .overview .course-content {
    width: 36%;
  }
  .wireless .overview .course-content h3 {
    font-size: 22px;
  }
  .wireless .overview .course-content p {
    font-size: 17px;
  }
  .wireless .outline {
    background-image: linear-gradient(90deg, #F5F5F5 50%, #091125 50%);
  }
  .wireless .outline .outline-list {
    max-height: 470px;
  }
  .wireless .outline .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .wireless .outline .form .input-list .input-container {
    width: 48%;
  }
  .wireless .outline .form .input-list .input-container:last-child {
    width: 100%;
  }
  .wireless .features .features-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .wireless .features .features-content {
    width: 50%;
  }
  .wireless .features .features-img {
    width: 45%;
    margin-top: 0;
    position: sticky;
    align-self: flex-start;
    top: 70px;
  }
  .wireless .method .method-list {
    justify-content: space-between;
  }
  .wireless .method .heading {
    width: 80%;
    margin: auto;
  }
  .wireless .method .method-item {
    width: 23%;
    background-image: linear-gradient(0deg, #FFFFFF 136px, #F5F5F5 135px);
  }
  .wireless .method .method-item h3 {
    min-height: 50px;
  }
  .wireless .used {
    background-image: url(/_public/images/5g-wireless/used-bg.png);
    background-repeat: no-repeat;
    background-size: 44% 62%;
    background-position: left center;
  }
  .wireless .used .used-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 88%;
    margin-left: auto ;
  }
  .wireless .used .used-content {
    width: 56%;
  }
  .wireless .used .used-img {
    display: flex;
    margin-top: 0;
    width: 38%;
  }
  .wireless .info .info-container {
    justify-content: space-between;
  }
  .wireless .info .info-item {
    width: 31%;
  }
  .wireless .info .info-item ul {
    min-height: 339px;
  }
  .wireless .fact .heading {
    width: 30%;
  }
  .wireless .fact .heading h2,
  .wireless .fact .heading p {
    text-align: left;
  }
  .wireless .fact .fact-item {
    width: 15%;
    margin-top: 0;
  }
  .wireless .fact .fact-count {
    margin-top: 1.5rem;
  }
  .wireless .works .works-img {
    position: static;
  }
  .wireless .choose .choose-container .heading {
    width: 75%;
  }
  .wireless .choose .choose-item p {
    min-height: 100px;
  }
  .wireless .faq .faq-list {
    width: 95%;
    margin: auto;
  }
  .wireless .testimonial {
    background-image: url(/_public/images/5g-wireless/testimonial-bg.png);
    background-size: 100% 100%;
  }
  .wireless .testimonial .testimonial-list {
    width: 90%;
    margin: auto;
  }
  .wireless .testimonial .testimonial-item {
    margin: 2.5rem 1.5rem;
  }
  .wireless .testimonial .testimonial-item p {
    min-height: 275px;
  }
  .wireless .testimonial .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    width: calc(100% + 80px);
    align-self: center;
    left: -40px;
  }
  .wireless .testimonial .owl-nav .owl-prev,
  .wireless .testimonial .owl-nav .owl-next {
    display: flex;
    background-image: url(/_public/images/5g-wireless/arrow.png);
    background-size: 100% 100%;
    height: 35px;
    width: 35px;
    opacity: 0.5;
  }
  .wireless .testimonial .owl-nav .owl-next {
    transform: rotate(180deg);
  }
  .wireless .testimonial .owl-nav .btn-active {
    opacity: 1;
  }
  .wireless .footer {
    background-image: url(/_public/images/5g-wireless/footer-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .wireless .footer .heading {
    width: 70%;
    margin: auto;
  }
  .wireless .footer .contact-list {
    width: 80%;
    margin: auto;
  }
  .wireless .footer .contact-item {
    width: 47% !important;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .wireless .heading h2 {
    font-size: 32px;
  }
  .wireless .banner {
    background-size: 60% 100%  ,  55% 72% ;
  }
  .wireless .banner .logo-container {
    padding: 1.7rem 0;
  }
  .wireless .banner .sticky {
    padding: 1rem 0;
  }
  .wireless .banner .banner-container {
    padding: 5rem 0;
  }
  .wireless .banner .banner-container .banner-content h1 {
    font-size: 37px;
  }
  .wireless .overview .course-content {
    width: 32%;
  }
  .wireless .outline .outline-list {
    max-height: 433px;
  }
  .wireless .features .features-img {
    position: static;
    align-self: center;
    top: 0px;
  }
  .wireless .used {
    background-size: 34% 70%;
  }
  .wireless .used .used-container {
    width: 82%;
  }
  .wireless .used .used-content {
    width: 62%;
  }
  .wireless .used .used-img {
    width: 30%;
  }
  .wireless .info .info-container {
    align-items: flex-start;
  }
  .wireless .info .heading {
    width: 48%;
  }
  .wireless .info .heading h2,
  .wireless .info .heading p {
    text-align: left;
  }
  .wireless .info .info-item {
    width: 48%;
    padding: 2.5rem 1.8rem;
  }
  .wireless .info .info-item:nth-child(2) {
    margin-top: 0;
  }
  .wireless .info .info-item:nth-child(2) ul {
    min-height: auto;
  }
  .wireless .info .info-item ul {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    min-height: 200px;
  }
  .wireless .info .info-item ul li {
    width: 48%;
    font-size: 13px;
  }
  .wireless .info .info-info {
    width: 43%;
  }
  .wireless .info .content h3 {
    font-size: 18px;
  }
  .wireless .fact {
    padding: 3rem 0;
  }
  .wireless .fact .fact-item p {
    font-size: 17px;
  }
  .wireless .works .works-img span {
    width: 78%;
    margin: auto;
  }
  .wireless .choose {
    background-size: 35% 40%;
  }
  .wireless .choose .choose-item {
    width: 23%;
  }
  .wireless .choose .choose-item h4 {
    min-height: 46px;
  }
  .wireless .choose .choose-item p {
    min-height: 161px;
  }
  .wireless .testimonial .testimonial-item p {
    min-height: 200px;
  }
  .wireless .footer .contact-list {
    justify-content: space-between;
    width: 100%;
  }
  .wireless .footer .contact-item {
    margin-top: 2.5rem;
    width: 30% !important;
  }
  .wireless .footer .contact-item:first-child {
    margin-right: 0;
  }
}
@media (min-width : 1500px) {
  .wireless .used {
    background-image: none;
  }
  .wireless .used .used-container {
    margin: auto;
  }
  .wireless .choose {
    background-image: none;
  }
}
