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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  margin-left: 0;
  border: 1px solid #000000;
}
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: #F6005C;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #191919;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #191919;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
@keyframes animate {
  100% {
    transform: translateY(-1000px);
  }
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.listening .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.listening .buttons .btn-primary,
.listening .buttons .btn-secondary {
  display: flex;
  font-weight: 600;
  padding: 8px 14px;
  align-items: center;
  justify-content: center;
  outline: 0;
  font-size: 14px;
  min-width: 160px;
  border-radius: 12px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.listening .buttons .btn-primary img,
.listening .buttons .btn-secondary img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.listening .buttons .btn-primary::before,
.listening .buttons .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0px;
  transform: scaleY(0);
  transition: all 0.5s linear;
  background-color: #000747;
  z-index: -1;
}
.listening .buttons .btn-primary:hover,
.listening .buttons .btn-secondary:hover {
  box-shadow: 0px 0px 6px #FFFFFF;
}
.listening .buttons .btn-primary:hover::before,
.listening .buttons .btn-secondary:hover::before {
  transform: scaleY(1);
}
.listening .buttons .btn-primary {
  background-color: #F6005C;
}
.listening .buttons .btn-secondary {
  border: 1px solid #FFFFFF;
  background-color: #000747;
}
.listening .buttons .btn-secondary::before {
  background-color: #F6005C;
}
.listening .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.listening .heading p {
  margin-top: 1rem;
}
.listening .heading h2 {
  width: 100%;
}
.listening .center-heading {
  justify-content: center;
  align-items: center;
}
.listening .center-heading h2,
.listening .center-heading p {
  text-align: center;
}
.listening .white-heading h2,
.listening .white-heading p {
  color: #FFFFFF;
}
.listening .banner {
  flex-direction: column;
  padding-top: 1.5rem;
  background: #F5F5F5;
}
.listening .banner .logo-container,
.listening .banner .tka-logo,
.listening .banner .menu,
.listening .banner .menu-toggle {
  display: flex;
}
.listening .banner .banner-container,
.listening .banner .banner-content,
.listening .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.listening .banner .container {
  height: 100%;
}
.listening .banner .logo-container {
  height: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000747;
}
.listening .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.listening .banner .tka-logo {
  max-width: 200px;
}
.listening .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.listening .banner .menu {
  margin-left: auto;
}
.listening .banner .menu img {
  width: 22px;
  height: 23px;
}
.listening .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #000747;
  box-shadow: 0 3px 6px #FFFFFF;
  color: #FFFFFF;
}
.listening .banner .menu-toggle {
  font-weight: 500;
}
.listening .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.listening .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #FFFFFF;
  font-weight: 500;
  color: #FFFFFF;
}
.listening .banner ul .links-li:first-child {
  padding-top: 0;
}
.listening .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.listening .banner ul .links-li:last-child {
  display: none;
}
.listening .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.listening .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.listening .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-bottom: 0 ;
  padding: 1rem 1.5rem !important;
}
.listening .banner .sticky-down {
  top: -100px;
}
.listening .banner .banner-container {
  padding-top: 1.5rem;
  align-items: flex-start;
}
.listening .banner .banner-content {
  width: 100%;
}
.listening .banner .banner-content h1 {
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  background: -webkit-linear-gradient(0deg, #000747, #F6005C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.listening .banner .banner-content h1 img {
  width: 38px;
  height: 38px;
  margin-right: 0.8rem;
  transform: translateY(10px);
}
.listening .banner .banner-info {
  padding: 1rem;
  margin-top: 2rem;
  background-color: #000747;
  width: 100%;
  height: 100%;
}
.listening .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.listening .overview .overview-container,
.listening .overview .overview-content,
.listening .overview .content {
  display: flex;
  flex-direction: column;
}
.listening .overview .overview-content {
  align-items: center;
}
.listening .overview .overview-content p {
  text-align: center;
}
.listening .overview .overview-content p:nth-child(3) {
  margin-top: 1rem;
}
.listening .overview .overview-info {
  display: flex;
  flex-wrap: wrap;
  background-image: linear-gradient(180deg, #000747 120px, #FFFFFF 120px);
  padding: 1.2rem;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  align-items: center;
  width: 272px;
  align-self: center;
}
.listening .overview .overview-info span {
  display: flex;
  background-color: #FFFFFF;
  width: 57px;
  height: 57px;
  margin-right: 1.2rem;
  padding: 0.6rem;
}
.listening .overview .overview-info span img {
  width: 100%;
  height: 100%;
}
.listening .overview .overview-info h3 {
  font-size: 18px;
  width: calc(100% - 80px);
  color: #FFFFFF;
}
.listening .overview .content {
  align-items: center;
  padding: 1rem;
  margin-top: 4rem;
  border: 2px solid #000747;
  border-radius: 10px;
  width: 100%;
}
.listening .overview .content p {
  font-size: 15px;
  text-align: center;
  color: rgba(103, 101, 101);
}
.listening .overview .content p:nth-child(4) {
  margin-top: 0.5rem;
}
.listening .important {
  background-color: #F5F5F5;
}
.listening .important .important-container,
.listening .important .important-content,
.listening .important .important-info {
  display: flex;
  flex-direction: column;
}
.listening .important .important-container {
  align-items: flex-start;
}
.listening .important .important-content {
  width: 100%;
}
.listening .important .important-content ul li {
  margin-top: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
.listening .important .important-content ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/active-listening/pink-circle.svg);
  background-size: 100% 100%;
  width: 14px;
  height: 14px;
  left: 0;
  top: 3px;
  animation: turn 4s linear infinite;
}
.listening .important .important-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.listening .important .important-info span {
  display: flex;
  padding: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  height: 100%;
}
.listening .important .important-info img {
  width: 100%;
  height: 100%;
}
.listening .course {
  padding-bottom: 0;
}
.listening .course .course-container,
.listening .course .course-list,
.listening .course .course-item,
.listening .course .para {
  display: flex;
  flex-direction: column;
}
.listening .course .heading {
  margin-bottom: 0;
}
.listening .course .heading p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 17px;
}
.listening .course .heading p strong {
  color: #000747;
}
.listening .course .course-item {
  padding: 1.5rem 1rem 1.5rem;
  box-shadow: 0 0 3px 2px #d6d6d6, inset 0 0 5px 2px #d6d6d6;
  border: 3px solid #FFFFFF;
  position: relative;
  margin-top: 2.5rem;
  transition: 1s all;
}
.listening .course .course-item .image {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -26px;
  background-color: #FFFFFF;
}
.listening .course .course-item h3 {
  margin-bottom: 0.5rem;
  font-size: 15px;
  width: 100%;
}
.listening .course .course-item:hover {
  border-color: #000747;
  box-shadow: none;
}
.listening .course .para p {
  font-size: 13px;
  color: rgba(103, 101, 101);
}
.listening .course .buttons {
  margin-top: 1rem;
}
.listening .course .buttons .btn-primary {
  min-width: 120px;
  font-size: 14px;
}
.listening .course .buttons .btn-primary img {
  width: 18px;
  height: 18px;
}
.listening .method {
  padding-bottom: 0;
}
.listening .method .method-container,
.listening .method .method-list,
.listening .method .method-item,
.listening .method .content {
  display: flex;
  flex-direction: column;
}
.listening .method .heading {
  margin-bottom: 0;
}
.listening .method .method-item {
  background-size: cover;
  min-height: 317px;
  justify-content: center;
  align-items: center;
  border: 1px solid #707070;
  border-radius: 20px;
  width: 272px;
  margin-top: 2rem;
  z-index: 1;
  align-self: center;
}
.listening .method .method-item:nth-child(1) {
  background-image: url(/_public/images/active-listening/classroom-bg.png);
}
.listening .method .method-item:nth-child(2) {
  background-image: url(/_public/images/active-listening/led-bg.png);
}
.listening .method .method-item:nth-child(3) {
  background-image: url(/_public/images/active-listening/paced-bg.png);
}
.listening .method .method-item:nth-child(4) {
  background-image: url(/_public/images/active-listening/onsite-bg.png);
}
.listening .method .method-item .image {
  display: flex;
  background-color: #FFFFFF;
  padding: 0.8rem;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  min-height: 60px;
}
.listening .method .method-item .image img {
  width: 100%;
  height: 100%;
}
.listening .method .method-item h3,
.listening .method .method-item a {
  color: #FFFFFF;
  transition: 1s all;
}
.listening .method .method-item h3 {
  margin: 0.8rem 0;
  transition: 1s all;
  text-align: center;
  width: 100%;
  font-size: 18px;
}
.listening .method .method-item .enquire {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.listening .method .method-item .enquire img {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}
.listening .method .method-item p {
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.listening .method .method-item p a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}
.listening .method .method-item p a span {
  display: flex;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}
.listening .method .method-item p a span img {
  width: 100%;
  height: 100%;
}
.listening .method .method-item p a span img:last-child {
  display: none;
}
.listening .method .method-item:hover {
  padding-top: 2rem;
}
.listening .method .method-item:hover h3 {
  margin-bottom: 2rem;
}
.listening .method .method-item:hover p {
  height: 100%;
  padding: 1rem;
  min-height: 149px;
}
.listening .method .method-item:hover .enquire {
  display: none;
}
.listening .method .method-item:hover a {
  color: #F6005C;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.listening .method .method-item:hover a span img:first-child {
  display: none;
}
.listening .method .method-item:hover a span img:last-child {
  display: flex;
}
.listening .verbal .verbal-container,
.listening .verbal .verbal-content,
.listening .verbal .verbal-info {
  display: flex;
  flex-direction: column;
}
.listening .verbal .verbal-container {
  align-items: flex-start;
}
.listening .verbal .verbal-content {
  width: 100%;
  height: 100%;
}
.listening .verbal .verbal-content h4 {
  margin-top: 1rem;
}
.listening .verbal .verbal-content ul li {
  margin-top: 0.8rem;
}
.listening .verbal .verbal-content ul li img {
  width: 12px;
  height: 11px;
  margin-right: 0.3rem;
  animation: turn 4s linear infinite;
}
.listening .verbal .verbal-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.listening .verbal .verbal-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.listening .verbal .verbal-info span img {
  height: 100%;
  width: 100%;
}
.listening .fact {
  background-color: #000747;
}
.listening .fact .fact-container,
.listening .fact .fact-list,
.listening .fact .fact-info {
  display: flex;
  flex-direction: column;
}
.listening .fact .heading {
  margin-bottom: 0;
}
.listening .fact .fact-item,
.listening .fact .fact-count {
  display: flex;
}
.listening .fact .fact-item {
  width: 255px;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  padding: 0.5rem 0.8rem;
  margin-top: 2rem;
  border-radius: 0 30px 30px 0;
  position: relative;
  z-index: 1;
}
.listening .fact .fact-item::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/active-listening/curve.png);
  background-size: 100% 100%;
  left: 0;
  top: 0;
  width: 75px;
  height: 100%;
  z-index: -1;
}
.listening .fact .fact-item img {
  width: 35px;
  height: 35px;
  margin-right: auto;
}
.listening .fact .fact-item p {
  font-weight: 500;
}
.listening .fact .fact-count h4,
.listening .fact .fact-count span {
  font-size: 30px;
  font-weight: 600;
}
.listening .fact .fact-info {
  width: calc(100% - 68px);
}
.listening .choose .choose-container,
.listening .choose .choose-list,
.listening .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.listening .choose .heading {
  margin-bottom: 0;
}
.listening .choose .choose-item {
  margin-top: 3rem;
  padding: 2rem 1rem;
  width: 248px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 0 40px 40px 40px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.98);
  align-self: center;
}
.listening .choose .choose-item span {
  width: 74px;
  height: 74px;
  border-radius: 50px;
  padding: 0.9rem;
  background-color: #000747;
}
.listening .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.listening .choose .choose-item h3 {
  font-weight: 600;
  margin: 0.6rem 0;
  min-height: 58px;
}
.listening .choose .choose-item::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/active-listening/choose-bg.png);
  background-size: 100% 100%;
  width: 85%;
  height: 390px;
  bottom: -36px;
  left: 1px;
  z-index: -1;
}
.listening .choose .choose-item p {
  font-size: 13px;
  min-height: 140px;
}
.listening .progress .progress-container,
.listening .progress .progress-content,
.listening .progress .pro-list,
.listening .progress .form-input {
  display: flex;
  flex-direction: column;
}
.listening .progress form {
  width: 100%;
  background-color: #000747;
  margin-bottom: 0;
  padding: 1.5rem;
}
.listening .progress form .input-container {
  display: flex;
  padding: 0.6rem;
  margin-bottom: 0.8rem;
  border-radius: 5px;
  border: 1px solid transparent;
  background-color: #1B2372;
  justify-content: space-between;
  width: 100%;
}
.listening .progress form .input-container span {
  display: flex;
  width: 17px;
  height: 17px;
}
.listening .progress form .input-container span img {
  width: 100%;
  height: 100%;
}
.listening .progress form .input-container span .grey-img {
  display: flex;
}
.listening .progress form .input-container span .red-img {
  display: none;
}
.listening .progress form .input-container input,
.listening .progress form .input-container textarea {
  display: flex;
  border: 0;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-weight: normal;
  width: 85%;
  font-size: 13px;
  color: #FFFFFF;
}
.listening .progress form .input-container textarea {
  height: 44px;
  resize: none;
  overflow: auto;
}
.listening .progress form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: rgba(255, 255, 255, 0.5);
}
.listening .progress form .input-container :-ms-input-placeholder {
  /* Edge */
  color: rgba(255, 255, 255, 0.5);
}
.listening .progress form .input-container ::placeholder {
  /* firefox */
  color: rgba(255, 255, 255, 0.5);
}
.listening .progress form .input-error {
  border-color: #ff0000;
}
.listening .progress form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.listening .progress form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.listening .progress form .input-error ::placeholder {
  /* firefox */
  color: #ff0000;
}
.listening .progress form .input-error span {
  display: flex;
}
.listening .progress form .input-error span .grey-img {
  display: none;
}
.listening .progress form .input-error span .red-img {
  display: flex;
}
.listening .progress form .form-consent {
  display: flex;
  margin-bottom: 0.6rem;
}
.listening .progress form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.listening .progress form .form-consent label {
  display: flex;
  align-self: center;
  font-size: 11px;
  margin-left: 0.3rem;
  width: 95%;
  color: #FFFFFF;
  cursor: pointer;
}
.listening .progress form .form-consent p {
  color: #FFFFFF;
  font-size: 11px;
}
.listening .progress form .form-consent a {
  color: #F6005C;
  font-weight: 700;
}
.listening .progress form .consent-error,
.listening .progress form .consent-error-other {
  margin-bottom: 1rem;
}
.listening .progress form .consent-error p,
.listening .progress form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.listening .progress form .buttons {
  margin-top: 1rem;
  justify-content: center;
  width: 100%;
}
.listening .progress form .buttons .btn-primary {
  min-width: 115px;
}
.listening .progress form .buttons .btn-primary img {
  width: 17px;
  height: 17px;
}
.listening .progress .progress-content {
  width: 100%;
  margin-top: 2rem;
}
.listening .progress .progress-content .heading {
  margin-bottom: 0;
}
.listening .progress .pro-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.listening .progress .pro-info h4 {
  font-size: 13px;
  margin-bottom: 0.2rem;
  width: 100%;
}
.listening .progress .image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 4px 4px 0px #F5F5F5;
  width: 42px;
  height: 36px;
}
.listening .progress .pro-item {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 60px);
}
.listening .progress .pro-item .bar {
  display: flex;
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #F5F5F5;
  margin-top: 0.3rem;
}
.listening .progress .pro-item .info {
  transition: 2s ease-in;
  width: 0;
  height: 3px;
  background-color: #000747;
  position: relative;
}
.listening .progress .pro-item .info::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: #F6005C;
  transition: 2s ease-in;
  bottom: -3px;
  right: -10px;
}
.listening .client {
  background-color: #000747;
}
.listening .client .client-container,
.listening .client .client-list,
.listening .client .client-item {
  display: flex;
  flex-direction: column;
}
.listening .client .client-item {
  background-color: #FFFFFF;
  border-radius: 11px;
  padding: 2rem 1rem;
  align-items: center;
  width: 85%;
  margin: auto;
  position: relative;
}
.listening .client .client-item::before,
.listening .client .client-item::after {
  content: '';
  position: absolute;
  background-size: 100% 100%;
}
.listening .client .client-item::before {
  background-image: url(/_public/images/active-listening/triangle.png);
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
}
.listening .client .client-item::after {
  background-image: url(/_public/images/active-listening/circle.png);
  left: 0;
  top: 0;
  width: 55px;
  height: 100px;
}
.listening .client .client-item span {
  display: flex;
  background-color: #FFFFFF;
  box-shadow: 0 0 3px 2px #d6d6d6, inset 0 0 3px 2px #d6d6d6;
  border: 3px solid #FFFFFF;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  padding: 0.8rem;
}
.listening .client .client-item span img {
  height: 100%;
}
.listening .client .client-item h3 {
  font-size: 16px;
  margin: 0.5rem 0;
}
.listening .client .client-item p {
  text-align: center;
  margin-top: 0.5rem;
}
.listening .client .star {
  width: 62px;
  height: 15px;
}
.listening .client .owl-dots {
  display: flex;
  width: 180px;
  margin: 1rem auto 0;
  justify-content: center;
}
.listening .client .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  margin-right: 0.5rem;
  border-radius: 50px;
  background: #F5F5F5;
  opacity: 0.5;
}
.listening .client .owl-dots .active {
  opacity: 1;
}
.listening .faq .faq-container,
.listening .faq .content,
.listening .faq .faq-list,
.listening .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.listening .faq .heading h2 {
  color: #F6005C;
  margin-bottom: 0.5rem;
}
.listening .faq .content {
  height: 100%;
}
.listening .faq .content h3 {
  font-size: 20px;
  width: 100%;
  text-align: center;
}
.listening .faq .content span {
  display: flex;
  width: 100%;
  height: 100%;
}
.listening .faq .content span img {
  width: 100%;
  height: 100%;
}
.listening .faq .faq-list {
  margin-top: 2rem;
}
.listening .faq .faq-item {
  border-top: 1px solid #F5F5F5;
  padding: 1.2rem 1.5rem;
}
.listening .faq .faq-item:last-child {
  border-bottom: 1px solid #F5F5F5;
}
.listening .faq .faq-item.active .ques span img:first-child {
  display: none;
}
.listening .faq .faq-item.active .ques span img:last-child {
  display: flex;
}
.listening .faq .ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.listening .faq .ques span {
  display: flex;
  width: 15px;
  height: 15px;
  margin-right: 1rem;
}
.listening .faq .ques span img {
  width: 100%;
  height: 100%;
}
.listening .faq .ques span img:last-child {
  display: none;
}
.listening .faq .ques h3 {
  width: calc(100% - 15px);
  font-size: 15px;
  color: #000747;
}
.listening .faq .ans {
  display: none;
  padding: 0.5rem 0 0 1.9rem;
}
.listening .faq .ans p {
  color: #000747;
}
.listening .footer {
  background: #000747;
}
.listening .footer .footer-container,
.listening .footer .contact-list,
.listening .footer .info {
  display: flex;
  flex-direction: column;
}
.listening .footer .contact-item {
  display: flex;
  align-items: center;
}
.listening .footer .contact-item span {
  display: flex;
  border-radius: 50px;
  width: 58px;
  height: 57px;
  padding: 0.5rem;
  background-color: #F6005C;
  border: 7px solid #FFFFFF;
  margin-right: 0.3rem;
}
.listening .footer .contact-item span img {
  width: 100%;
  height: 100%;
}
.listening .footer .contact-item:nth-child(2) {
  margin-top: 1rem;
}
.listening .footer .info {
  width: calc(100% - 50px);
}
.listening .footer .info a {
  font-size: 12px;
  color: #FFFFFF;
}
.listening .footer .info h3 {
  font-size: 15px;
  color: #FFFFFF;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .listening .method .method-item {
    align-self: inherit;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .listening .banner .menu.active + .menu-links {
    width: 50%;
  }
  .listening .banner .banner-content h4 {
    width: 461px;
  }
  .listening .banner .banner-info {
    display: none;
  }
  .listening .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .listening .overview .overview-content {
    width: 50%;
    align-items: flex-start;
  }
  .listening .overview .overview-content .heading {
    align-items: flex-start;
  }
  .listening .overview .overview-content h2,
  .listening .overview .overview-content p {
    text-align: left;
  }
  .listening .overview .overview-info {
    width: 43%;
    position: sticky;
    margin-top: 0;
    top: 60px;
    align-self: flex-start;
  }
  .listening .important .important-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .listening .important .important-content {
    width: 45%;
  }
  .listening .important .important-info {
    width: 48%;
    margin-top: 0;
  }
  .listening .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .listening .course .course-item {
    flex-flow: wrap;
    justify-content: space-between;
    width: 47%;
    margin-right: 2rem;
  }
  .listening .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .listening .course .course-item h3 {
    min-height: 46px;
  }
  .listening .course .para {
    width: 48%;
  }
  .listening .course .buttons {
    margin-top: 0;
    align-self: flex-end;
    justify-content: flex-end;
  }
  .listening .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .listening .method .method-item {
    width: 45%;
  }
  .listening .verbal .verbal-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .listening .verbal .verbal-content {
    width: 45%;
  }
  .listening .verbal .verbal-info {
    width: 45%;
    position: sticky;
    top: 49px;
    margin-top: 0;
  }
  .listening .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-around;
    width: 80%;
    margin: auto;
  }
  .listening .fact .fact-item {
    width: 46%;
  }
  .listening .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .listening .choose .choose-item {
    width: 42%;
  }
  .listening .progress .progress-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .listening .progress form {
    width: 48%;
  }
  .listening .progress .progress-content {
    width: 46%;
    margin-top: 0;
  }
  .listening .client .client-item p {
    min-height: 308px;
  }
  .listening .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .listening .faq .content {
    width: 48%;
    position: sticky;
    top: 60px;
  }
  .listening .faq .faq-list {
    width: 48%;
    margin-top: 0;
  }
  .listening .footer .contact-list {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .listening .footer .contact-item {
    width: 39%;
  }
  .listening .footer .contact-item:nth-child(2) {
    margin-top: 0;
    width: 21%;
  }
  .listening .footer .buttons {
    width: 39%;
    justify-content: flex-end;
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .listening .heading h2 {
    font-size: 28px;
  }
  .listening .buttons .btn-primary,
  .listening .buttons .btn-secondary {
    font-size: 16px;
  }
  .listening .banner {
    position: relative;
    background: url(/_public/images/active-listening/banner-bg.png);
    background-size: 100% 100%;
  }
  .listening .banner .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.5;
  }
  .listening .banner .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background-image: linear-gradient(90deg, #B4F4FE, #000747);
    animation: animate 25s linear infinite;
    bottom: -150px;
    opacity: 0.1;
    border-radius: 100%;
  }
  .listening .banner .circles li:nth-child(1) {
    left: 94%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
  }
  .listening .banner .circles li:nth-child(2) {
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
    animation-duration: 10s;
  }
  .listening .banner .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 3s;
  }
  .listening .banner .circles li:nth-child(4) {
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 15s;
  }
  .listening .banner .circles li:nth-child(5) {
    left: 60%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
  }
  .listening .banner .circles li:nth-child(6) {
    left: 39%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
  }
  .listening .banner .circles li:nth-child(7) {
    left: 0%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
  }
  .listening .banner .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 13s;
  }
  .listening .banner .menu {
    display: none;
  }
  .listening .banner .logo-container {
    border: none;
    padding-bottom: 0;
  }
  .listening .banner .tka-logo {
    max-width: 220px;
  }
  .listening .banner .sticky {
    padding: 1rem 2rem !important;
  }
  .listening .banner .menu-links {
    width: 75%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    box-shadow: none;
    background-color: transparent;
    color: #191919;
  }
  .listening .banner .menu-links .buttons .btn-secondary {
    display: none;
  }
  .listening .banner .menu-toggle {
    display: none;
  }
  .listening .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .listening .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.6rem;
    padding: 0;
    font-size: 15px;
    color: #191919;
    cursor: pointer;
    z-index: 1;
    position: relative;
  }
  .listening .banner ul .links-li::before,
  .listening .banner ul .links-li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000747;
    transform: scaleX(0);
    transition: transform 0.2s 0.3s;
    transition: 1.5s all;
  }
  .listening .banner ul .links-li::before {
    top: -1px;
    left: 0;
    transform-origin: top left;
  }
  .listening .banner ul .links-li::after {
    bottom: -2px;
    right: 0;
    transform-origin: bottom right;
  }
  .listening .banner ul .links-li:hover::before {
    transform: scaleY(1);
    transition: transform 0.2s 0.3s;
    transition: 1s all;
  }
  .listening .banner ul .links-li:hover::after {
    transform: scaleY(1);
    transition: transform 0.2s 0.1s;
  }
  .listening .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .listening .banner ul .links-li:last-child:hover::after,
  .listening .banner ul .links-li:last-child:hover::before {
    content: none;
  }
  .listening .banner ul .links-li:nth-child(3),
  .listening .banner ul .links-li:nth-child(4),
  .listening .banner ul .links-li:nth-child(5) {
    color: #FFFFFF;
  }
  .listening .banner ul .links-li:nth-child(3)::before,
  .listening .banner ul .links-li:nth-child(4)::before,
  .listening .banner ul .links-li:nth-child(5)::before,
  .listening .banner ul .links-li:nth-child(3)::after,
  .listening .banner ul .links-li:nth-child(4)::after,
  .listening .banner ul .links-li:nth-child(5)::after {
    background-color: #FFFFFF;
  }
  .listening .banner .sticky ul .links-li {
    color: #191919;
  }
  .listening .banner .sticky ul .links-li::before,
  .listening .banner .sticky ul .links-li::after {
    background-color: #000747;
  }
  .listening .banner .banner-container {
    flex-direction: row;
    padding-top: 4rem;
    justify-content: space-between;
    align-items: center;
  }
  .listening .banner .banner-content {
    width: 48%;
    margin-right: auto;
  }
  .listening .banner .banner-content h1 {
    font-size: 46px;
  }
  .listening .banner .banner-content h1 img {
    width: 55px;
    height: 55px;
  }
  .listening .banner .banner-info {
    display: flex;
    background-color: transparent;
    width: 46%;
    margin-top: 0;
    padding: 0;
  }
  .listening .overview .overview-content {
    width: 60%;
  }
  .listening .overview .overview-info {
    width: 33%;
    position: static;
    top: 0px;
    align-self: center;
  }
  .listening .important .important-info span {
    padding: 2rem;
    width: 90%;
  }
  .listening .course .course-item {
    width: 40%;
    padding: 1.5rem 2rem;
  }
  .listening .method .method-list {
    justify-content: space-between;
  }
  .listening .method .method-item {
    width: 24%;
    min-height: 434px;
  }
  .listening .method .method-item h3 {
    min-height: 50px;
    width: 95%;
  }
  .listening .method .method-item:hover p {
    min-height: 245px;
  }
  .listening .method .method-item:hover p a {
    margin-top: auto;
  }
  .listening .fact {
    background-image: url(/_public/images/active-listening/fact-bg.png);
    background-size: 100% 100%;
  }
  .listening .fact .heading {
    width: 61%;
    margin: auto;
  }
  .listening .fact .fact-list {
    width: 100%;
    justify-content: space-between;
  }
  .listening .fact .fact-item {
    width: 21%;
    margin-top: 3rem;
  }
  .listening .choose .choose-list {
    justify-content: space-between;
  }
  .listening .choose .heading {
    width: 80%;
    margin: auto;
  }
  .listening .choose .choose-item {
    width: 23%;
  }
  .listening .choose .choose-item::before {
    height: 433px;
  }
  .listening .choose .choose-item p {
    min-height: 184px;
  }
  .listening .progress form .form-input {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .listening .progress form .form-input .input-container {
    width: 47.5%;
  }
  .listening .progress form .form-input .input-container:nth-child(5) {
    width: 100%;
  }
  .listening .client .client-list {
    width: 90%;
    margin: auto;
  }
  .listening .client .client-item p {
    min-height: 275px;
  }
  .listening .client .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% + 30px);
    top: 48%;
    left: -16px;
  }
  .listening .client .owl-nav .owl-prev,
  .listening .client .owl-nav .owl-next {
    display: flex;
    background-image: url(/_public/images/active-listening/arrow.svg);
    background-size: 100% 100%;
    height: 30px;
    width: 30px;
    opacity: 0.7;
  }
  .listening .client .owl-nav .owl-next {
    transform: rotate(180deg);
  }
  .listening .client .owl-nav .btn-active {
    opacity: 1;
  }
  .listening .faq {
    padding-bottom: 0;
  }
  .listening .faq .content {
    width: 34%;
    position: static;
    top: 0;
    align-items: center;
  }
  .listening .faq .content span {
    width: 85%;
    justify-content: center;
  }
  .listening .faq .content span img {
    width: 90%;
  }
  .listening .faq .faq-list {
    width: 61%;
  }
  .listening .footer {
    background: url(/_public/images/active-listening/footer-bg.png);
    background-size: 100% 100%;
    padding-top: 6rem;
  }
  .listening .footer .contact-item {
    width: 35%;
    position: relative;
  }
  .listening .footer .contact-item span {
    width: 70px;
    height: 70px;
    padding: 0.8rem;
    z-index: 1;
  }
  .listening .footer .contact-item:nth-child(2) {
    width: 19%;
  }
  .listening .footer .info {
    border-radius: 0 10px 10px 0;
    background-color: #FFFFFF;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    position: absolute;
    right: -3px;
    top: 5px;
  }
  .listening .footer .info h3,
  .listening .footer .info a {
    color: #000747;
  }
  .listening .footer .info a {
    font-size: 14px;
  }
  .listening .footer .buttons {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .listening .heading h2 {
    font-size: 30px;
  }
  .listening .banner .sticky .btn-secondary {
    border: none;
  }
  .listening .banner ul .links-li {
    margin-right: 1.3rem;
  }
  .listening .banner .menu-links .buttons .btn-secondary {
    display: flex;
    margin-right: 1.3rem;
  }
  .listening .banner .menu-links .buttons .btn-secondary,
  .listening .banner .menu-links .buttons .btn-primary {
    min-width: 165px;
  }
  .listening .banner .links-li:nth-child(3) {
    color: #191919 !important;
  }
  .listening .banner .links-li:nth-child(3)::before,
  .listening .banner .links-li:nth-child(3)::after {
    background-color: #000747 !important;
  }
  .listening .banner .banner-content {
    width: 43%;
  }
  .listening .banner .banner-content h1 {
    font-size: 54px;
  }
  .listening .overview .overview-info {
    width: 27%;
  }
  .listening .course .course-item {
    width: 31%;
  }
  .listening .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .listening .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .listening .course .course-item:last-child {
    margin-right: 0;
  }
  .listening .method .method-list {
    justify-content: space-between;
  }
  .listening .method .method-item {
    width: 21.5%;
    min-height: 396px;
  }
  .listening .method .method-item:hover p {
    min-height: 208px;
  }
  .listening .verbal .verbal-info {
    position: static;
    top: 0;
  }
  .listening .fact .fact-item {
    width: 22%;
  }
  .listening .choose .choose-item::before {
    height: 410px;
  }
  .listening .choose .choose-item p {
    min-height: 161px;
  }
  .listening .client .client-item p {
    min-height: 225px;
  }
  .listening .footer .contact-item {
    width: 28%;
  }
  .listening .footer .contact-item:nth-child(2) {
    width: 17%;
  }
  .listening .footer .buttons {
    width: 25%;
  }
}
@media (min-width : 1500px) {
  .listening .banner {
    background: #F5F5F5;
  }
  .listening .banner ul .links-li:nth-child(4),
  .listening .banner ul .links-li:nth-child(5) {
    color: #191919;
  }
  .listening .banner .banner-info {
    width: 42%;
    background-color: #000747;
    padding: 1rem;
  }
}
