@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;
  background-color: #ffffff;
  margin-left: 0;
  border-radius: 2px;
}
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: linear-gradient(0deg, #3D66E1, #7292F6);
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: #070505;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #070505;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.investment .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.investment .buttons .btn-blue,
.investment .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 16px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-width: 160px;
  position: relative;
  z-index: 1;
  transition: 1s all;
  white-space: nowrap;
  overflow: hidden;
}
.investment .buttons .btn-blue img,
.investment .buttons .btn-transparent img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.investment .buttons .btn-blue::before,
.investment .buttons .btn-transparent::before,
.investment .buttons .btn-blue::after,
.investment .buttons .btn-transparent::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: -1;
}
.investment .buttons .btn-blue::before,
.investment .buttons .btn-transparent::before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.investment .buttons .btn-blue::after,
.investment .buttons .btn-transparent::after {
  right: -20px;
  transform: translate(50%, -50%);
}
.investment .buttons .btn-blue:hover::before,
.investment .buttons .btn-transparent:hover::before {
  animation: left-circle 1.2s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.investment .buttons .btn-blue:hover::after,
.investment .buttons .btn-transparent:hover::after {
  animation: right-circle 1.2s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.investment .buttons .btn-blue {
  background-color: #0B1A47;
  color: #ffffff;
}
.investment .buttons .btn-blue::before,
.investment .buttons .btn-blue::after {
  background-color: #3D66E1;
}
.investment .buttons .btn-blue:hover {
  box-shadow: 0px 0px 6px #ffffff;
}
.investment .buttons .btn-transparent {
  border: 1px solid #000000;
  color: #070505;
}
.investment .buttons .btn-transparent::before,
.investment .buttons .btn-transparent::after {
  background-color: #ffffff;
}
.investment .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.investment .heading p {
  margin-top: 1rem;
}
.investment .heading h2 {
  width: 100%;
  font-size: 22px;
  position: relative;
}
.investment .heading h2 span {
  display: flex;
  width: 125px;
  height: 6px;
  margin-top: 0.5rem;
  background-color: #3D66E1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.investment .heading h2 span::after,
.investment .heading h2 span::before {
  content: '';
  width: 12px;
  height: 6px;
  top: 0px;
  position: absolute;
  animation: heading-move 5s linear infinite;
  z-index: -1;
  background-color: #ffffff;
}
.investment .heading h2 span::after {
  right: 28px;
}
.investment .heading h2 span::before {
  right: 0px;
}
.investment .center-heading {
  justify-content: center;
  align-items: center;
}
.investment .center-heading h2,
.investment .center-heading p {
  text-align: center;
}
.investment .center-heading h2 span {
  margin: 0.5rem auto 0;
}
.investment .white-heading h2,
.investment .white-heading p {
  color: #ffffff;
}
.investment .white-heading h2 span {
  background-color: #ffffff;
}
.investment .white-heading h2 span::after,
.investment .white-heading h2 span::before {
  background-color: #3D66E1;
}
@keyframes left-circle {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes right-circle {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes heading-move {
  0% {
    transform: translateX(-120px);
  }
  100% {
    transform: translateX(80px);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.investment .banner {
  background-color: #f5f5f5;
  flex-direction: column;
  padding-top: 1.5rem;
}
.investment .banner .logo-container,
.investment .banner .tka-logo,
.investment .banner .menu,
.investment .banner .menu-toggle {
  display: flex;
}
.investment .banner .logo-container {
  height: 100%;
}
.investment .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
.investment .banner .logo-container .tka-logo {
  max-width: 200px;
}
.investment .banner .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.investment .banner .logo-container .menu {
  margin-left: auto;
}
.investment .banner .logo-container .menu img {
  width: 22px;
  height: 23px;
}
.investment .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.investment .banner .logo-container .menu-toggle {
  font-weight: 500;
}
.investment .banner .logo-container .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.investment .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #000000;
  color: #070505;
}
.investment .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.investment .banner .logo-container ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.investment .banner .logo-container ul .links-li:last-child {
  display: none;
}
.investment .banner .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.investment .banner .logo-container .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.investment .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  transition: 1s;
  padding: 1rem 1.5rem;
  background-color: #f5f5f5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.investment .banner .container {
  height: 100%;
}
.investment .banner .sticky-down {
  top: -100px;
}
.investment .banner .banner-container,
.investment .banner .banner-content,
.investment .banner .content,
.investment .banner .stock-list,
.investment .banner .type-content,
.investment .banner .stock-content,
.investment .banner .type-list {
  display: flex;
  flex-direction: column;
}
.investment .banner .banner-container {
  padding-top: 1.5rem;
  align-items: flex-start;
}
.investment .banner .banner-content {
  background-image: linear-gradient(0deg, #3D66E1, #7292F6);
  padding: 1rem 1rem 1.8rem;
  border-radius: 15px;
  width: 100%;
}
.investment .banner .content h1 {
  font-size: 28px;
  line-height: 1.3;
}
.investment .banner .content h1 .flag {
  width: 38px;
  height: 38px;
  margin-right: 1rem;
  transform: translateY(8px);
}
.investment .banner .content h1 span {
  font-weight: 300;
  letter-spacing: 1px;
}
.investment .banner .content h1 .point {
  display: none;
}
.investment .banner .content p {
  margin-top: 1rem;
}
.investment .banner .content h1,
.investment .banner .content p {
  color: #ffffff;
}
.investment .banner .info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.investment .banner .info img {
  width: 100%;
  height: 100%;
}
.investment .banner .stock-content {
  margin-top: 2rem;
}
.investment .banner .stock-content h3 {
  color: #0B1A47;
  font-size: 18px;
}
.investment .banner .stock-content p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.investment .banner .stock-content p span {
  color: #3D66E1;
}
.investment .banner .stock-content p img {
  width: 12px;
  height: 20px;
  margin-right: 0.8rem;
}
.investment .banner .type-content {
  margin-top: 2rem;
  width: 100%;
}
.investment .banner .type-content .heading {
  margin-bottom: 1rem;
}
.investment .banner .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 0.7rem 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  margin-top: 1rem;
  border-radius: 10px;
}
.investment .banner .item img {
  width: 44px;
  height: 44px;
}
.investment .banner .item h3 {
  width: calc(100% - 60px);
  font-size: 15px;
  font-weight: 500;
}
.investment .course .heading {
  margin-bottom: 0;
}
.investment .course .heading p {
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.investment .course .heading p strong {
  color: #3D66E1;
}
.investment .course .course-container,
.investment .course .course-list,
.investment .course .course-item {
  display: flex;
  flex-direction: column;
}
.investment .course .course-item {
  padding: 2rem 1.5rem;
  background-image: url(/_public/images/investment-trading/grey-bg.png);
  background-size: 100% 100%;
  margin-top: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  transition: 1s all;
}
.investment .course .course-item span {
  display: flex;
  width: 74px;
  height: 72px;
  border: 1px solid #707070;
  padding: 0.7rem;
  border-radius: 6px;
  background-color: #ffffff;
  transition: 1s all;
}
.investment .course .course-item span img {
  width: 100%;
  height: 100%;
}
.investment .course .course-item h3,
.investment .course .course-item p {
  transition: 1s all;
}
.investment .course .course-item h3 {
  font-size: 16px;
  margin: 1rem 0 0.5rem;
}
.investment .course .course-item p {
  font-size: 12px;
}
.investment .course .course-item p:nth-last-child(2) {
  margin-top: 0.2rem;
}
.investment .course .course-item .buttons {
  margin-top: 1rem;
}
.investment .course .course-item .buttons .btn-blue {
  min-width: 140px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 1s all;
}
.investment .course .course-item .buttons .btn-blue::after,
.investment .course .course-item .buttons .btn-blue::before {
  content: none;
}
.investment .course .course-item .buttons .btn-blue img {
  width: 15px;
  height: 15px;
}
.investment .course .course-item:hover {
  background-image: url(/_public/images/investment-trading/white-bg.png);
}
.investment .course .course-item:hover span {
  border: 1px solid transparent;
}
.investment .course .course-item:hover h3,
.investment .course .course-item:hover p {
  color: #ffffff;
}
.investment .course .course-item:hover .buttons .btn-blue {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.investment .method {
  background-image: linear-gradient(0deg, #3D66E1, #7292F6);
  padding-bottom: 5rem;
}
.investment .method .method-container,
.investment .method .method-list,
.investment .method .info {
  display: flex;
  flex-direction: column;
}
.investment .method .heading {
  margin-bottom: 0;
}
.investment .method .method-item {
  margin-top: 4rem;
  position: relative;
  transition: 1s all;
}
.investment .method .method-item span {
  background-size: cover;
  display: flex;
  height: 220px;
  border-radius: 10px;
}
.investment .method .method-item span img {
  width: 100%;
  height: 100%;
}
.investment .method .method-item:nth-child(1) {
  margin-top: 2rem;
}
.investment .method .method-item:nth-child(1) span {
  background-image: url(/_public/images/investment-trading/classroom.png);
}
.investment .method .method-item:nth-child(2) span {
  background-image: url(/_public/images/investment-trading/led.png);
}
.investment .method .method-item:nth-child(3) span {
  background-image: url(/_public/images/investment-trading/paced.png);
}
.investment .method .method-item:nth-child(4) span {
  background-image: url(/_public/images/investment-trading/onsite.png);
}
.investment .method .info {
  border: 1px solid #ffffff;
  border-radius: 10px;
  width: 90%;
  color: #ffffff;
  padding: 1rem 0.5rem;
  position: absolute;
  bottom: -33px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 1s all;
  z-index: 1;
}
.investment .method .info::before {
  content: '';
  position: absolute;
  background-color: #0B1A47;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  z-index: -1;
  transition: 1s all;
}
.investment .method .info h3 {
  text-align: center;
  font-size: 14px;
  transition: 1s all;
}
.investment .method .info a {
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  transition: 1s all;
}
.investment .method .info a img {
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
}
.investment .overview {
  padding-bottom: 0;
}
.investment .overview .overview-container,
.investment .overview .overview-content {
  display: flex;
  flex-direction: column;
}
.investment .overview .overview-content {
  align-items: center;
}
.investment .overview .overview-content p {
  text-align: center;
}
.investment .overview .overview-content p:nth-child(3) {
  margin-top: 1rem;
}
.investment .overview .overview-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.investment .overview .overview-info img {
  width: 100%;
  height: 100%;
}
.investment .choose .choose-container,
.investment .choose .choose-content,
.investment .choose .choose-list,
.investment .choose .choose-item,
.investment .choose .sector,
.investment .choose .pro-list,
.investment .choose .pro-item {
  display: flex;
  flex-direction: column;
}
.investment .choose .choose-content .heading {
  margin-bottom: 0;
}
.investment .choose .choose-content .choose-list {
  counter-reset: counter;
}
.investment .choose .choose-content .choose-item {
  text-align: center;
  position: relative;
  margin-top: 2rem;
}
.investment .choose .choose-content .choose-item::before {
  content: counter(counter, decimal-leading-zero);
  counter-increment: counter;
  position: absolute;
  -webkit-text-stroke-color: #3D66E1;
  -webkit-text-stroke-width: 1px;
  color: transparent;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1;
  font-size: 58px;
  font-weight: 600;
}
.investment .choose .choose-content .choose-item h3 {
  margin: 5rem 0 0.5rem;
  font-size: 17px;
}
.investment .choose .choose-content .choose-item p {
  font-size: 13px;
}
.investment .choose .sector {
  margin-top: 2rem;
}
.investment .choose .pro-item {
  margin-top: 1rem;
}
.investment .choose .pro-item h4 {
  font-weight: 500;
}
.investment .choose .pro-item .bar {
  display: flex;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-top: 0.2rem;
}
.investment .choose .pro-item .bar span {
  width: 0;
  height: 10px;
  border-radius: 10px;
  transition: 2s ease-in;
}
.investment .fact {
  background-image: linear-gradient(0deg, #3D66E1, #7292F6);
}
.investment .fact .fact-container,
.investment .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.investment .fact .heading {
  margin-bottom: 0;
}
.investment .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
  background-color: #88ABFF;
  padding: 1.5rem 1.3rem;
  border-radius: 10px;
  justify-content: center;
  border: 1px solid #ffffff;
  margin-top: 1.2rem;
}
.investment .fact .fact-item h3,
.investment .fact .fact-item span,
.investment .fact .fact-item p {
  text-align: center;
  color: #ffffff;
}
.investment .fact .fact-item h3,
.investment .fact .fact-item span {
  font-size: 40px;
  font-weight: 600;
}
.investment .fact .fact-item p {
  font-size: 16px;
  line-height: 1.5;
}
.investment .work .work-container,
.investment .work .work-list,
.investment .work .work-item {
  display: flex;
  flex-direction: column;
}
.investment .work .work-container {
  width: 100%;
  align-items: flex-start;
}
.investment .work .heading {
  margin-bottom: 0;
}
.investment .work .work-list {
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.investment .work .work-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  border-radius: 10px;
  align-items: flex-start;
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.investment .work .work-item h3 {
  width: 100%;
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.investment .work .work-item h4 {
  font-size: 13px;
  margin-top: 0.5rem;
}
.investment .work .work-item p,
.investment .work .work-item li {
  font-size: 12px;
  line-height: 1.6;
}
.investment .work .work-item ul li {
  list-style: disc;
  margin: 0.3rem 0 0 1rem;
}
.investment .work .work-item a {
  display: flex;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #070505;
  padding-bottom: 0.6rem;
  margin-top: 1rem;
  font-weight: 500;
}
.investment .work .work-item a img {
  width: 16px;
  height: 16px;
  margin-left: 0.8rem;
}
.investment .work .work-item span {
  display: none;
  height: 100%;
  width: 100%;
}
.investment .work .work-item span img {
  width: 100%;
  height: 100%;
}
.investment .testimonial .testimonial-list,
.investment .testimonial .testimonial-container,
.investment .testimonial .testimonial-item {
  display: flex;
  flex-direction: column;
}
.investment .testimonial .heading {
  margin-bottom: 0;
}
.investment .testimonial .testimonial-item {
  padding: 1rem;
  width: 95%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  align-items: center;
  margin: 1.5rem auto;
  background-image: linear-gradient(0deg, #ECF4FF 130px, #ffffff 130px);
}
.investment .testimonial .testimonial-item span {
  display: flex;
  height: 75px;
  width: 75px;
  padding: 0.8rem;
  background-color: #f5f5f5;
  border: 6px solid #ffffff;
  box-shadow: 0 0 0 1px #3D66E1;
  border-radius: 50px;
  position: relative;
}
.investment .testimonial .testimonial-item span img {
  height: 100%;
  width: 100%;
}
.investment .testimonial .testimonial-item span::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url(/_public/images/investment-trading/quote.svg), linear-gradient(0deg, #3D66E1, #7292F6);
  background-size: 50% 50% , 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  top: -8px;
  right: -14px;
  border-radius: 50px;
}
.investment .testimonial .testimonial-item h3 {
  font-size: 16px;
  margin: 0.5rem 0 0.2rem;
}
.investment .testimonial .testimonial-item p {
  text-align: center;
  margin-bottom: 2rem;
}
.investment .testimonial .testimonial-item .star {
  width: 115px;
  height: 16px;
}
.investment .testimonial .owl-item.center .testimonial-item {
  background-image: linear-gradient(0deg, #3D66E1, #7292F6);
  background-size: 100% 130px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #ffffff;
}
.investment .testimonial .owl-item.center .testimonial-item h3 {
  color: #ffffff;
}
.investment .testimonial .owl-nav {
  display: flex;
  align-self: center;
}
.investment .testimonial .owl-nav .owl-prev,
.investment .testimonial .owl-nav .owl-next {
  display: flex;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 1s all;
  border: 1px solid #000000;
  background-image: url(/_public/images/investment-trading/black-arrow.svg);
}
.investment .testimonial .owl-nav .owl-prev {
  margin-right: 1rem;
}
.investment .testimonial .owl-nav .owl-next {
  transform: rotate(180deg);
}
.investment .testimonial .owl-nav .btn-active.owl-next,
.investment .testimonial .owl-nav .btn-active.owl-prev {
  border: 1px solid #3D66E1;
  background-image: url(/_public/images/investment-trading/blue-arrow.svg);
}
.investment .objective {
  padding-top: 0;
  padding-bottom: 0;
}
.investment .objective .objective-container,
.investment .objective .objective-content,
.investment .objective .content,
.investment .objective .objective-info {
  display: flex;
  flex-direction: column;
}
.investment .objective .objective-container {
  align-items: flex-start;
}
.investment .objective .objective-content {
  width: 100%;
}
.investment .objective .objective-content ul li {
  margin: 0.5rem 0 0 1.5rem;
  position: relative;
}
.investment .objective .objective-content ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(/_public/images/investment-trading/box.svg);
  background-size: 100% 100%;
  top: 4px;
  left: -25px;
}
.investment .objective .objective-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
  align-items: flex-start;
}
.investment .objective .objective-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.investment .objective .objective-info .image img {
  width: 100%;
  height: 100%;
}
.investment .faq {
  padding-top: 0;
}
.investment .faq form,
.investment .faq .input-list,
.investment .faq .faq-container,
.investment .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.investment .faq form {
  margin-bottom: 0;
  background-color: #0B1A47;
  padding: 1rem;
}
.investment .faq form .heading h2 span::before,
.investment .faq form .heading h2 span:after {
  background-color: #0B1A47;
}
.investment .faq form .input-list .input-error {
  border-color: #ff0000;
}
.investment .faq form .input-list .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.investment .faq form .input-list .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.investment .faq form .input-list .input-error ::placeholder {
  color: #ff0000;
}
.investment .faq form .input-list .input-error span .white {
  display: none;
}
.investment .faq form .input-list .input-error span .red {
  display: flex;
}
.investment .faq form .buttons .btn-blue {
  min-width: 120px;
  font-size: 14px;
  border: 1px solid #ffffff;
}
.investment .faq form .buttons img {
  height: 16px;
}
.investment .faq .input-container {
  display: flex;
  margin-bottom: 1.2rem;
  padding: 0.6rem 0.8rem;
  justify-content: space-between;
  border-radius: 5px;
  background-color: #31406D;
  border: 1px solid transparent;
}
.investment .faq .input-container input,
.investment .faq .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  color: #ffffff;
  font-size: 12px;
}
.investment .faq .input-container textarea {
  resize: none;
  overflow: auto;
  min-height: 50px;
}
.investment .faq .input-container span {
  display: flex;
  width: 16px;
  height: 16px;
}
.investment .faq .input-container span img {
  width: 100%;
  height: 100%;
}
.investment .faq .input-container span .white {
  display: flex;
}
.investment .faq .input-container span .red {
  display: none;
}
.investment .faq .input-container ::-webkit-input-placeholder {
  color: #E6E6E6;
}
.investment .faq .input-container :-ms-input-placeholder {
  color: #E6E6E6;
}
.investment .faq .input-container ::placeholder {
  color: #E6E6E6;
}
.investment .faq .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.investment .faq .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.investment .faq .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 90%;
  color: #ffffff;
}
.investment .faq .form-consent p {
  font-size: 11px;
  color: #ffffff;
}
.investment .faq .form-consent a {
  font-weight: 600;
}
.investment .faq .consent-error p {
  color: #ff0000;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.investment .faq .faq-list {
  margin-top: 2rem;
}
.investment .faq .faq-list .heading {
  margin-bottom: 0;
}
.investment .faq .faq-item {
  margin-top: 1.5rem;
  padding: 0.8rem 1rem;
  background-color: #ffffff;
  border: 1px solid #707070;
  transition: 1s all;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
}
.investment .faq .ques {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
}
.investment .faq .ques h3 {
  font-size: 15px;
  width: calc(100% - 40px);
  align-self: center;
}
.investment .faq .ques span {
  display: flex;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  padding: 0.4rem;
  background-color: #31406D;
}
.investment .faq .ques span img {
  width: 100%;
  height: 100%;
}
.investment .faq .ques span img:last-child {
  display: none;
}
.investment .faq .ans {
  display: none;
  margin-top: 0.8rem;
}
.investment .faq .ans p,
.investment .faq .ans li {
  font-size: 13px;
  color: #ffffff;
  transition: 1s all;
}
.investment .faq .ans ul {
  padding-left: 1rem;
}
.investment .faq .ans ul li {
  list-style: disc;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.investment .faq .active {
  background-color: transparent;
  background-image: linear-gradient(0deg, #3D66E1, #7292F6);
  border-color: transparent;
  border-radius: 12px;
  box-shadow: none;
  background-repeat: no-repeat;
}
.investment .faq .active .ques span {
  background-color: #ffffff;
}
.investment .faq .active .ques span img:first-child {
  display: none;
}
.investment .faq .active .ques span img:last-child {
  display: flex;
}
.investment .faq .active .ques h3 {
  color: #ffffff;
}
.investment .footer {
  background-image: linear-gradient(0deg, #3D66E1, #7292F6);
  background-size: 100% 100%;
}
.investment .footer .footer-container,
.investment .footer .info,
.investment .footer .footer-list,
.investment .footer .footer-item {
  display: flex;
  flex-direction: column;
}
.investment .footer .heading {
  margin-bottom: 0;
}
.investment .footer .info {
  width: auto;
}
.investment .footer .info a {
  font-size: 12px;
  font-weight: 500;
}
.investment .footer .info a,
.investment .footer .info .star {
  margin-top: 0.3rem;
}
.investment .footer .info h3 {
  font-size: 15px;
  width: 100%;
}
.investment .footer .info .star {
  display: none;
  width: 115px;
  height: 20px;
}
.investment .footer .footer-item {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 10px;
  align-items: flex-start;
}
.investment .footer .content {
  display: flex;
  align-items: center;
  width: auto;
}
.investment .footer .content .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investment .choose .choose-content .choose-item::before {
    color: #3D66E1;
  }
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investment .sector .image {
    display: none;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .investment .banner .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .investment .banner .sticky {
    padding: 1rem 2rem;
  }
  .investment .banner .info {
    display: none;
  }
  .investment .banner .type-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .investment .banner .item {
    margin-right: 1rem;
    width: 31.6%;
  }
  .investment .banner .item:nth-child(3n) {
    margin-right: 0;
  }
  .investment .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .investment .course .course-item {
    width: 45%;
    margin-right: 2rem;
  }
  .investment .course .course-item h3 {
    min-height: 50px;
  }
  .investment .course .course-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .investment .course .course-item:last-child {
    margin-right: 0!important;
  }
  .investment .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .investment .method .method-item {
    width: 48%;
  }
  .investment .method .method-item:nth-child(2) {
    margin-top: 2rem;
  }
  .investment .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .investment .overview .overview-content {
    align-items: flex-start;
    width: 47%;
  }
  .investment .overview .overview-content .heading h2 span {
    margin: 0.5rem 0;
  }
  .investment .overview .overview-content h2,
  .investment .overview .overview-content p {
    text-align: left;
  }
  .investment .overview .overview-info {
    width: 47%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .investment .choose .choose-content .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .investment .choose .choose-content .choose-item {
    width: 31%;
  }
  .investment .choose .sector {
    background-image: url(/_public/images/investment-trading/sector-bg.png);
    background-size: cover;
    background-color: #ffffff;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 1.5rem;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.16);
    border-radius: 15px;
  }
  .investment .choose .image {
    width: 48%;
    position: relative;
    z-index: 1;
  }
  .investment .choose .image::before {
    content: '';
    position: absolute;
    background-color: #ffffff;
    width: 250px;
    height: 250px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 100%;
    margin: auto;
    z-index: -1;
  }
  .investment .choose .canvasjs-chart-canvas {
    display: flex;
  }
  .investment .choose .pro-list {
    width: 48%;
    margin-top: 0;
  }
  .investment .choose .canvasjs-chart-canvas {
    top: 0;
  }
  .investment .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .investment .fact .fact-item {
    width: 23%;
  }
  .investment .work .heading h2 {
    text-align: center;
  }
  .investment .work .heading h2 span {
    margin: 0.5rem auto;
  }
  .investment .work .work-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .investment .work .work-item {
    width: 46%;
  }
  .investment .work .work-item p {
    min-height: 96px;
  }
  .investment .objective .objective-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .investment .objective .objective-content {
    width: 50%;
  }
  .investment .objective .objective-info {
    width: 43%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .investment .testimonial .testimonial-item {
    width: 88%;
  }
  .investment .testimonial .testimonial-item p {
    min-height: 246px;
  }
  .investment .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .investment .faq form {
    width: 48%;
  }
  .investment .faq .faq-list {
    width: 48%;
    margin-top: 0;
    overflow-y: scroll;
    padding-right: 1rem;
    max-height: 680px;
  }
  .investment .footer .heading {
    display: none;
  }
  .investment .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .investment .footer .footer-item {
    width: 46%;
  }
  .investment .footer .footer-item:nth-child(1),
  .investment .footer .footer-item:nth-child(2) {
    margin-top: 0;
  }
  .investment .footer .footer-item .icon {
    margin-right: 1rem;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .investment .heading h2 {
    font-size: 28px;
  }
  .investment .buttons .btn-blue,
  .investment .buttons .btn-transparent {
    font-size: 16px;
  }
  .investment .banner {
    background-image: url(/_public/images/investment-trading/banner-bg.png), url(/_public/images/investment-trading/type-bg.png);
    background-size: 100% 58.5%, 71% 31%;
    background-position: left top 90px,left bottom 5%;
    background-repeat: no-repeat;
  }
  .investment .banner .logo-container .tka-logo {
    max-width: 225px;
  }
  .investment .banner .logo-container .menu-links {
    width: auto;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .investment .banner .logo-container .menu,
  .investment .banner .logo-container .menu-toggle {
    display: none;
  }
  .investment .banner .logo-container ul {
    display: flex;
    align-items: center;
  }
  .investment .banner .logo-container ul .links-li {
    border-bottom: none;
    margin-right: 1.3rem;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .investment .banner .logo-container ul .links-li::before {
    content: '';
    position: absolute;
    bottom: -5px;
    margin: auto;
    background-color: #3D66E1;
    left: 0;
    right: 0;
    height: 2px;
    width: 0;
    border-radius: 50px;
    transition: 1s all;
  }
  .investment .banner .logo-container ul .links-li:hover::before {
    width: 100%;
  }
  .investment .banner .logo-container ul .links-li:nth-child(4) {
    display: none;
  }
  .investment .banner .logo-container ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .investment .banner .logo-container ul .links-li:last-child::before {
    content: none;
  }
  .investment .banner .logo-container ul .links-li .btn-blue,
  .investment .banner .logo-container ul .links-li .btn-transparent {
    font-size: 14px;
  }
  .investment .banner .logo-container ul .links-li .btn-transparent {
    margin-right: 1.3rem;
  }
  .investment .banner .banner-container {
    padding-top: 3rem;
  }
  .investment .banner .banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-image: none;
    padding: 0;
    height: 100%;
  }
  .investment .banner .content {
    width: 51%;
  }
  .investment .banner .content h1 {
    display: flex;
    flex-wrap: wrap;
    font-size: 48px;
    align-items: center;
  }
  .investment .banner .content h1 .flag {
    width: 50px;
    height: 50px;
  }
  .investment .banner .content h1 .point {
    display: flex;
    width: 40px;
    height: 40px;
    margin: 0.3rem 0 0 1rem;
  }
  .investment .banner .info {
    display: flex;
    margin-top: 0;
    width: 48%;
    transform: translateY(56px);
  }
  .investment .banner .stock-content,
  .investment .banner .type-content {
    width: 100%;
  }
  .investment .banner .stock-content {
    margin-top: 4rem;
    width: 48%;
    position: relative;
  }
  .investment .banner .stock-content h3 {
    position: absolute;
    right: 0;
    top: -5px;
    width: 30%;
  }
  .investment .banner .stock-content p:nth-child(2) {
    margin-top: 0;
  }
  .investment .banner .type-content {
    margin-top: 6rem;
  }
  .investment .course .course-item {
    width: 31%;
  }
  .investment .course .course-item:nth-of-type(2n) {
    margin-right: 2rem;
  }
  .investment .course .course-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .investment .method .heading {
    width: 80%;
    margin: auto;
  }
  .investment .method .method-item {
    width: 23.5%;
    margin-top: 2.5rem !important;
  }
  .investment .method .method-item .info {
    height: 55px;
    overflow: hidden;
    height: 79px;
  }
  .investment .method .method-item .info a {
    margin-top: 1rem;
  }
  .investment .method .method-item .info h3 {
    font-size: 15px;
    min-height: 46px;
  }
  .investment .method .method-item:hover .info {
    height: 105px;
  }
  .investment .method .method-item:hover .info a {
    margin-top: 0.5rem;
  }
  .investment .method .method-item:hover .info::before {
    background-color: #000000;
    opacity: 0.3;
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }
  .investment .choose {
    background-image: url(/_public/images/investment-trading/choose-bg.png);
    background-size: 100% 55%;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .investment .choose .choose-container {
    width: 87%;
    margin: auto;
    position: relative;
  }
  .investment .choose .choose-container::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/investment-trading/waves.svg);
    background-size: 100% 100%;
    width: 100px;
    height: 100px;
    top: -4%;
    left: -5%;
    animation: scale 4s linear infinite;
  }
  .investment .choose .choose-content .heading {
    width: 90%;
    margin: auto;
  }
  .investment .choose .choose-content .choose-item {
    width: 28%;
    margin-top: 3.5rem;
  }
  .investment .choose .choose-content .choose-item:after {
    content: '';
    position: absolute;
    background-color: #070505;
    width: 60%;
    height: 1px;
    right: -44%;
    top: 14%;
    opacity: 0.3;
  }
  .investment .choose .choose-content .choose-item:last-child::after {
    content: none;
  }
  .investment .choose .sector {
    padding: 3rem;
    margin-top: 4rem;
  }
  .investment .fact {
    background-image: url(/_public/images/investment-trading/fact-bg.png);
    background-size: 100% 100%;
  }
  .investment .fact .fact-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .investment .fact .fact-content {
    width: 43%;
  }
  .investment .fact .fact-list {
    width: 52%;
  }
  .investment .fact .fact-item {
    width: 48%;
  }
  .investment .fact .fact-item:first-child,
  .investment .fact .fact-item:nth-child(2) {
    margin-top: 0;
  }
  .investment .work .work-list {
    width: 80%;
    margin: auto;
  }
  .investment .work .work-item {
    padding: 1.5rem 1.8rem;
  }
  .investment .work .work-item span {
    transform: translate(30px, 24px);
  }
  .investment .testimonial .testimonial-container {
    position: relative;
  }
  .investment .testimonial .heading {
    width: 65%;
    padding-left: 1.2rem;
  }
  .investment .testimonial .heading h2 span {
    margin: 0.5rem 0;
  }
  .investment .testimonial .heading p,
  .investment .testimonial .heading h2 {
    text-align: left;
  }
  .investment .testimonial .testimonial-list {
    position: static;
  }
  .investment .testimonial .owl-nav {
    position: absolute;
    right: 18px;
    top: 72px;
  }
  .investment .testimonial .testimonial-item p {
    min-height: 202px;
  }
  .investment .faq {
    background-image: url(/_public/images/investment-trading/faq-bg.png);
    background-size: cover;
    padding-bottom: 0;
  }
  .investment .faq .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .investment .faq .input-container {
    width: 48%;
  }
  .investment .faq .input-container:last-child {
    width: 100%;
  }
  .investment .faq .form {
    padding: 3rem 1.5rem;
  }
  .investment .faq .faq-list {
    margin-top: 3rem;
    max-height: 495px;
  }
  .investment .footer .footer-list {
    justify-content: space-between;
  }
  .investment .footer .footer-item {
    width: 31.5%;
    margin-top: 0;
  }
  .investment .footer .content {
    border-bottom: 1px solid #070505;
    padding-bottom: 0.6rem;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investment .sector .pro-list {
    width: 80%;
    margin: auto;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .investment .heading h2 {
    font-size: 32px;
  }
  .investment .banner {
    padding-top: 2rem;
    background-position: left top 106px, left bottom 5%;
    background-size: 100% 58%,71% 31%;
  }
  .investment .banner .logo-container ul .links-li:nth-child(4) {
    display: flex;
  }
  .investment .banner .sticky {
    padding: 1rem 0;
  }
  .investment .banner .banner-container {
    padding-top: 5rem;
  }
  .investment .banner .content h1 {
    font-size: 60px;
    line-height: 1.1;
  }
  .investment .banner .content h1 .flag {
    width: 62px;
    height: 62px;
    transform: translate(4px);
  }
  .investment .banner .type-content {
    margin-top: 10rem;
  }
  .investment .banner .stock-content {
    width: 45%;
  }
  .investment .banner .stock-content h3 {
    font-size: 20px;
    width: 36%;
  }
  .investment .banner .type-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .investment .banner .type-content .heading {
    width: 20%;
    margin-bottom: 0;
  }
  .investment .banner .type-content .heading h2 span {
    display: none;
  }
  .investment .banner .type-content .type-list {
    width: 78%;
  }
  .investment .banner .item:first-child,
  .investment .banner .item:nth-child(2),
  .investment .banner .item:nth-child(3) {
    margin-top: 0;
  }
  .investment .course .course-container {
    width: 95%;
    margin: auto;
  }
  .investment .method {
    padding: 3rem 0 6rem;
  }
  .investment .method .method-item:hover .info {
    height: 80px;
  }
  .investment .method .method-item .info {
    height: 58px;
  }
  .investment .method .method-item .info h3 {
    min-height: auto;
  }
  .investment .overview .overview-info {
    position: static;
    top: 0;
    align-self: center;
  }
  .investment .overview .canvasjs-chart-canvas {
    width: 550px;
    height: 460px;
    left: -70px;
    top: -35px;
  }
  .investment .work .work-list {
    width: 100%;
  }
  .investment .work .work-item {
    width: 31%;
    border-radius: 10px 10px 0 0;
  }
  .investment .work .work-item span {
    display: flex;
    margin-left: auto;
  }
  .investment .choose .canvasjs-chart-canvas {
    width: 533px;
    height: 438px;
    left: -48px;
    top: -20px;
  }
  .investment .objective {
    padding-top: 2rem;
    position: relative;
  }
  .investment .objective::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/investment-trading/objectives-bg.png);
    background-size: 100% 100%;
    width: 700px;
    height: 700px;
    bottom: -380px;
    right: 0;
    animation: 5s pulse linear infinite;
  }
  .investment .testimonial .heading {
    width: 65%;
    padding-left: 1.2rem;
  }
  .investment .testimonial .heading p,
  .investment .testimonial .heading h2 {
    text-align: left;
  }
  .investment .testimonial .testimonial-item {
    padding: 2rem 1.5rem;
    margin: 3rem auto 0.5rem;
  }
  .investment .testimonial .testimonial-item p {
    min-height: 252px;
  }
  .investment .footer .footer-item {
    padding: 1.5rem;
    justify-content: center;
  }
  .investment .footer .footer-item .icon {
    width: 35px;
    height: 35px;
  }
  .investment .footer .info h3 {
    font-size: 16px;
  }
  .investment .footer .info a {
    font-size: 13px;
  }
  .investment .footer .info .star {
    display: flex;
  }
}
@media (min-width : 1500px) {
  .investment .fact {
    background-image: linear-gradient(0deg, #3D66E1, #7292F6);
  }
  .investment .objective::before {
    content: none;
  }
}
