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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
  font-size: 11px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 13px;
  width: 13px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #070505;
}
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: #313E49;
}
::-webkit-scrollbar-thumb {
  background: #070505;
}
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;
  font-weight: 500;
  line-height: 1.6;
  color: #070505;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.stock-trading .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.stock-trading .buttons .btn-blue,
.stock-trading .buttons .btn-white {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  overflow: hidden;
  position: relative;
  transition: 1s all;
  z-index: 1;
}
.stock-trading .buttons .btn-blue::before,
.stock-trading .buttons .btn-white::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 100px;
  transform: translate3d(-120%, -50px, 0) rotate(45deg);
  opacity: 0.3;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #EFEFEF;
  left: 0;
  top: 0;
  z-index: -1;
}
.stock-trading .buttons .btn-blue:hover::before,
.stock-trading .buttons .btn-white:hover::before {
  transition: 1s ease-out;
  transform: translate3d(120%, -100px, 0) rotate(90deg);
}
.stock-trading .buttons .btn-blue img,
.stock-trading .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.stock-trading .buttons .btn-blue {
  background-color: #313E49;
  color: #FFFFFF;
}
.stock-trading .buttons .btn-white {
  background-color: #FFFFFF;
  color: #070505;
}
.stock-trading .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.stock-trading .heading p {
  margin-top: 1rem;
}
.stock-trading .heading h2 {
  width: 100%;
  font-size: 22px;
}
.stock-trading .heading h2 span {
  display: flex;
  width: 150px;
  height: 2px;
  background: transparent linear-gradient(to right, transparent, #070505, transparent) repeat scroll 0 0;
  margin-top: 0.5rem;
  position: relative;
}
.stock-trading .heading h2 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: calc(50% - 4px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #313E49;
  transition: all 0.7s cubic-bezier(0.47, 0, 0.745, 0.715);
  animation: pulse 1s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.16);
}
.stock-trading .center-heading {
  justify-content: center;
  align-items: center;
}
.stock-trading .center-heading h2,
.stock-trading .center-heading p {
  text-align: center;
}
.stock-trading .center-heading span {
  margin: 0.5rem auto 0;
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(24, 23, 23, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(28, 184, 238);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.stock-trading .banner {
  flex-direction: column;
  background-color: #EFEFEF;
  padding: 0;
}
.stock-trading .banner .container {
  height: 100%;
}
.stock-trading .banner .logo-container,
.stock-trading .banner .tka-logo,
.stock-trading .banner .menu {
  display: flex;
}
.stock-trading .banner .logo-container {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #CCCCCC;
}
.stock-trading .banner .logo-container .container {
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stock-trading .banner .logo-container .tka-logo img,
.stock-trading .banner .logo-container .menu img {
  width: 100%;
  height: 100%;
}
.stock-trading .banner .logo-container .tka-logo {
  max-width: 210px;
}
.stock-trading .banner .logo-container .menu {
  width: 23px;
  height: 23px;
  margin-left: auto;
}
.stock-trading .banner .logo-container .menu-toggle {
  font-weight: 500;
}
.stock-trading .banner .logo-container .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.stock-trading .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.5s;
  right: 0;
  top: 0;
  width: 0;
  z-index: 5;
}
.stock-trading .banner .logo-container .menu-links ul .links-li {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dotted #070505;
}
.stock-trading .banner .logo-container .menu-links ul .links-li:first-child {
  padding-top: 0;
}
.stock-trading .banner .logo-container .menu-links ul .links-li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.stock-trading .banner .logo-container .active + .menu-links {
  width: 85%;
  padding: 1rem;
}
.stock-trading .banner .logo-container .active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.stock-trading .banner .logo-container .buttons {
  display: none;
}
.stock-trading .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  height: auto;
  background-color: #DCE8EB;
  border-bottom: none;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.16);
}
.stock-trading .banner .sticky-down {
  top: -100px;
}
.stock-trading .banner .inner-container,
.stock-trading .banner .banner-container,
.stock-trading .banner .banner-content,
.stock-trading .banner .client-container,
.stock-trading .banner .overview-container,
.stock-trading .banner .overview-content {
  display: flex;
  flex-direction: column;
}
.stock-trading .banner .inner-container {
  padding: 3rem 1.5rem;
  padding-top: 1.5rem !important;
}
.stock-trading .banner .client-container,
.stock-trading .banner .overview-container {
  margin-top: 2rem;
}
.stock-trading .banner .banner-container .banner-content h1 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  text-shadow: 0px 8px 15px rgba(0, 0, 0, 0.16);
}
.stock-trading .banner .banner-container .banner-content h1 img {
  width: 36px;
  height: 36px;
  transform: translateY(7px);
  margin-right: 0.5rem;
}
.stock-trading .banner .banner-container .banner-content h1 span {
  font-weight: 500;
  text-shadow: none;
  font-size: 21px;
}
.stock-trading .banner .banner-container .banner-content .buttons {
  margin-top: 2rem;
}
.stock-trading .banner .banner-container .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.stock-trading .banner .banner-container .banner-info img {
  height: 100%;
  width: 100%;
}
.stock-trading .banner .client-container .client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.stock-trading .banner .client-container .item {
  display: flex;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  padding: 1rem;
  margin-top: 1.2rem;
  width: 43%;
  height: 75px;
}
.stock-trading .banner .client-container .item img {
  width: 100%;
  align-self: center;
  height: auto;
}
.stock-trading .banner .overview-container .overview-content p {
  text-align: center;
}
.stock-trading .banner .overview-container .overview-content .market-list {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.stock-trading .banner .overview-container .overview-content .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.16);
  padding: 1rem 0.5rem;
  width: 47.6%;
}
.stock-trading .banner .overview-container .overview-content .item img {
  width: 35px;
  height: 35px;
}
.stock-trading .banner .overview-container .overview-content .item h3 {
  width: calc(100% - 45px);
  font-size: 12px;
}
.stock-trading .banner .overview-container .overview-info {
  display: flex;
  height: auto;
  margin-top: 2rem;
}
.stock-trading .banner .overview-container .overview-info img {
  width: 100%;
  height: 100%;
}
.stock-trading .course .course-container,
.stock-trading .course .course-list,
.stock-trading .course .course-item {
  display: flex;
  flex-direction: column;
}
.stock-trading .course .heading {
  margin-bottom: 1.2rem;
}
.stock-trading .course .heading p {
  margin-top: 0;
}
.stock-trading .course .heading p strong {
  color: #313E49;
}
.stock-trading .course .course-list {
  counter-reset: counter;
}
.stock-trading .course .course-item {
  margin-top: 1.4rem;
  border: 2px solid #DCE8EB;
  border-radius: 8px;
  padding: 0.9rem 1.3rem 0.6rem;
  position: relative;
  z-index: 0;
}
.stock-trading .course .course-item:hover::before,
.stock-trading .course .course-item:hover::after {
  background-color: #313E49;
}
.stock-trading .course .course-item:hover::before {
  height: 91px;
  top: -3px;
  border-radius: 8px 8px 0 0;
}
.stock-trading .course .course-item:hover::after {
  height: 44px;
  bottom: -2px;
  border-radius: 0 0 8px 8px;
}
.stock-trading .course .course-item:hover .scholar::after {
  color: #FFFFFF;
}
.stock-trading .course .course-item:hover .scholar img:first-child {
  width: 0;
}
.stock-trading .course .course-item:hover .scholar img:last-child {
  width: 54px;
}
.stock-trading .course .course-item:hover a {
  color: #FFFFFF;
}
.stock-trading .course .course-item:hover a span img:first-child {
  width: 0;
}
.stock-trading .course .course-item:hover a span img:last-child {
  width: 100%;
}
.stock-trading .course .course-item::before,
.stock-trading .course .course-item::after {
  content: '';
  position: absolute;
  left: -2px;
  background-color: #DCE8EB;
  height: 2px;
  width: calc(100% + 4px);
  transition: 1s all;
  z-index: -1;
}
.stock-trading .course .course-item::before {
  top: 86px;
}
.stock-trading .course .course-item::after {
  bottom: 41px;
}
.stock-trading .course .course-item .scholar {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.stock-trading .course .course-item .scholar img {
  width: 54px;
  height: 54px;
  transition: 1s all;
}
.stock-trading .course .course-item .scholar img:last-child {
  width: 0;
}
.stock-trading .course .course-item .scholar::after {
  content: 'Course ' counter(counter);
  counter-increment: counter;
  position: absolute;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  transition: 1s all;
  right: 0;
  bottom: 0;
}
.stock-trading .course .course-item h3 {
  font-size: 16px;
  margin: 3.2rem 0 0.9rem;
  line-height: 1.4;
  min-height: 49px;
}
.stock-trading .course .course-item p {
  font-size: 12px;
}
.stock-trading .course .course-item p:nth-of-type(2) {
  margin: 0.2rem 0 2.2rem;
}
.stock-trading .course .course-item a {
  display: flex;
  align-items: center;
  transition: 1s all;
  font-weight: 500;
  font-size: 15px;
}
.stock-trading .course .course-item a span {
  display: flex;
  height: 18px;
  width: 18px;
  margin-left: 1rem;
}
.stock-trading .course .course-item a span img {
  height: 100%;
  width: 100%;
  transition: 1s all;
}
.stock-trading .course .course-item a span img:last-child {
  width: 0;
}
.stock-trading .method {
  padding-top: 0;
  padding-bottom: 0;
}
.stock-trading .method .method-container,
.stock-trading .method .method-list,
.stock-trading .method .method-item {
  display: flex;
  flex-direction: column;
}
.stock-trading .method .heading {
  margin-bottom: 0;
}
.stock-trading .method .method-list {
  counter-reset: counter;
}
.stock-trading .method .method-item {
  margin-top: 3rem;
  align-items: center;
  text-align: center;
}
.stock-trading .method .method-item:nth-child(2) .image {
  background-image: url(/_public/images/stock-trading/paced.png);
}
.stock-trading .method .method-item:nth-child(3) .image {
  background-image: url(/_public/images/stock-trading/led.png);
}
.stock-trading .method .method-item:last-child .image {
  background-image: url(/_public/images/stock-trading/onsite.png);
}
.stock-trading .method .method-item .image {
  display: flex;
  height: 135px;
  width: 135px;
  border-radius: 100%;
  background-image: url(/_public/images/stock-trading/classroom.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}
.stock-trading .method .method-item .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -21px;
  margin: auto;
  bottom: 0;
  height: 165px;
  width: 165px;
  border-radius: 100%;
  border: 2px solid #DCE8EB;
  transition: 1s all;
  z-index: -1;
}
.stock-trading .method .method-item .image::after {
  content: counter(counter, decimal-leading-zero);
  counter-increment: counter;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
}
.stock-trading .method .method-item h3 {
  font-size: 16px;
  margin: 1.9rem 0 0.3rem;
  width: 100%;
}
.stock-trading .method .method-item p {
  font-size: 13px;
}
.stock-trading .method .method-item a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  order: 4;
  margin-top: 0.5rem;
  transition: 1s all;
}
.stock-trading .method .method-item a span {
  display: flex;
  height: 18px;
  width: 18px;
  margin-left: 0.8rem;
}
.stock-trading .method .method-item a span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.stock-trading .method .method-item a span img:last-child {
  width: 0px;
}
.stock-trading .method .method-item a:hover {
  color: #313E49;
}
.stock-trading .method .method-item a:hover span img:first-child {
  width: 0;
}
.stock-trading .method .method-item a:hover span img:last-child {
  width: 100%;
}
.stock-trading .method .method-item a:hover ~ .image::before {
  border-color: #313E49;
}
.stock-trading .phase .phase-container,
.stock-trading .phase .phase-content {
  display: flex;
  flex-direction: column;
}
.stock-trading .phase .phase-content {
  align-items: center;
}
.stock-trading .phase .phase-content p {
  text-align: center;
}
.stock-trading .phase .phase-content p:nth-of-type(2) {
  margin: 0.5rem 0;
}
.stock-trading .phase .phase-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.stock-trading .phase .phase-info img {
  height: 100%;
  width: 100%;
}
.stock-trading .choose {
  background-color: #EFEFEF;
}
.stock-trading .choose .choose-container,
.stock-trading .choose .choose-list,
.stock-trading .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.stock-trading .choose .heading {
  margin-bottom: 0;
}
.stock-trading .choose .choose-list {
  counter-reset: counter;
}
.stock-trading .choose .choose-item {
  margin-top: 2rem;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  text-align: center;
  padding: 2.5rem 2rem 2.2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.stock-trading .choose .choose-item::before,
.stock-trading .choose .choose-item::after {
  position: absolute;
}
.stock-trading .choose .choose-item::before {
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero);
  background-color: #313E49;
  color: #FFFFFF;
  width: 47px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 0;
  left: 15px;
  top: 14px;
  font-weight: 500;
  font-size: 18px;
}
.stock-trading .choose .choose-item::after {
  content: '';
  border: 1px solid #313E49;
  border-radius: 12px;
  height: calc(100% - 30px);
  width: calc(100% - 30px);
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
}
.stock-trading .choose .choose-item img {
  width: 30px;
  height: 30px;
}
.stock-trading .choose .choose-item h3 {
  font-size: 14px;
  margin: 1rem 0 0.8rem;
  width: 100%;
}
.stock-trading .choose .choose-item p {
  font-size: 13px;
  line-height: 1.6;
}
.stock-trading .work .work-container,
.stock-trading .work .work-content,
.stock-trading .work .work-info {
  display: flex;
  flex-direction: column;
}
.stock-trading .work .work-content {
  align-items: center;
}
.stock-trading .work .work-content p {
  text-align: center;
}
.stock-trading .work .work-content p:nth-child(2) {
  margin-bottom: 0.5rem;
}
.stock-trading .work .work-info {
  margin-top: 2rem;
  height: 100%;
}
.stock-trading .work .work-info .image {
  display: flex;
  height: 100%;
  width: 100%;
}
.stock-trading .work .work-info .image img {
  height: 100%;
  width: 100%;
}
.stock-trading .fact {
  background-color: #EFEFEF;
}
.stock-trading .fact .fact-container,
.stock-trading .fact .fact-list,
.stock-trading .fact .fact-item,
.stock-trading .fact .fact-info {
  display: flex;
  flex-direction: column;
}
.stock-trading .fact .heading {
  margin-bottom: 0;
}
.stock-trading .fact .fact-item {
  margin-top: 2rem;
  text-align: center;
}
.stock-trading .fact .fact-item .fact-info {
  background-color: #EFEFEF;
  align-self: center;
  padding: 1.5rem 1rem;
  width: 130px;
  height: 130px;
  align-items: center;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}
.stock-trading .fact .fact-item .fact-info::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/stock-trading/circle.svg);
  left: -10px;
  height: 150px;
  width: 150px;
  top: -11px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: 7s turn linear infinite;
  z-index: -1;
}
.stock-trading .fact .fact-item .fact-info img {
  width: 35px;
  height: 35px;
}
.stock-trading .fact .fact-item .fact-info .info {
  display: flex;
  margin-top: 0.2rem;
}
.stock-trading .fact .fact-item .fact-info .info h3 {
  font-size: 32px;
}
.stock-trading .fact .fact-item p {
  font-weight: 600;
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 1.5;
}
.stock-trading .benefit {
  background-color: #DCE8EB;
}
.stock-trading .benefit .benefit-container,
.stock-trading .benefit .benefit-content,
.stock-trading .benefit .list,
.stock-trading .benefit .client-content,
.stock-trading .benefit .client-list,
.stock-trading .benefit .client-item {
  display: flex;
  flex-direction: column;
}
.stock-trading .benefit .benefit-content .heading {
  margin-bottom: 0;
}
.stock-trading .benefit .benefit-content .list li {
  margin-top: 1.5rem;
  display: flex;
  line-height: 1.5;
  align-items: center;
}
.stock-trading .benefit .benefit-content .list li span {
  display: flex;
  margin-right: 1rem;
  background-color: #FFFFFF;
  padding: 1.1rem;
  border-radius: 50px;
  width: 63px;
  height: 63px;
  min-width: 63px;
  box-shadow: 0 0 15px #FFFFFF;
}
.stock-trading .benefit .benefit-content .list li span img {
  width: 100%;
  height: 100%;
}
.stock-trading .benefit .benefit-content .image {
  display: none;
}
.stock-trading .benefit .benefit-content .image img {
  width: 100%;
  height: 100%;
}
.stock-trading .benefit .form {
  margin: 3rem 0 0;
  background-color: #FFFFFF;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 15px;
}
.stock-trading .benefit .form .input-list {
  display: flex;
  flex-direction: column;
}
.stock-trading .benefit .form .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  border: 1px solid #959191;
  border-radius: 5px;
  padding: 0.6rem 0.8rem;
}
.stock-trading .benefit .form .input-container:last-child {
  align-items: flex-start;
}
.stock-trading .benefit .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.stock-trading .benefit .form .input-container span img {
  width: 100%;
  height: 100%;
}
.stock-trading .benefit .form .input-container span img:last-child {
  display: none;
}
.stock-trading .benefit .form .input-container input,
.stock-trading .benefit .form .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
}
.stock-trading .benefit .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.stock-trading .benefit .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #959191;
}
.stock-trading .benefit .form .input-container :-ms-input-placeholder {
  /* Internet Explorer */
  color: #959191;
}
.stock-trading .benefit .form .input-container ::placeholder {
  /* Chrome */
  color: #959191;
}
.stock-trading .benefit .form .input-error {
  border: 1px solid #ff0000;
}
.stock-trading .benefit .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.stock-trading .benefit .form .input-error :-ms-input-placeholder {
  /* Internet Explorer */
  color: #ff0000;
}
.stock-trading .benefit .form .input-error ::placeholder {
  /* Chrome */
  color: #ff0000;
}
.stock-trading .benefit .form .input-error span img:first-child {
  display: none;
}
.stock-trading .benefit .form .input-error span img:last-child {
  display: flex;
}
.stock-trading .benefit .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.stock-trading .benefit .form .form-consent p {
  font-size: 11px;
}
.stock-trading .benefit .form .form-consent a {
  font-weight: 600;
  color: #313E49;
}
.stock-trading .benefit .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  line-height: 1.6;
  font-size: 11px;
  width: 94%;
  font-weight: 500;
  color: #070505;
}
.stock-trading .benefit .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.stock-trading .benefit .form .consent-error,
.stock-trading .benefit .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.stock-trading .benefit .form .consent-error p,
.stock-trading .benefit .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.stock-trading .benefit .form .buttons {
  justify-content: center;
}
.stock-trading .benefit .form .buttons .btn-blue {
  min-width: 125px;
  font-size: 15px;
}
.stock-trading .benefit .form .buttons .btn-blue img {
  width: 15px;
  height: 15px;
}
.stock-trading .benefit .client-content {
  margin-top: 3rem;
}
.stock-trading .benefit .client-content .client-item {
  width: 95%;
}
.stock-trading .benefit .client-content .client-item .stars {
  width: 125px;
  height: 20px;
}
.stock-trading .benefit .client-content .client-item p {
  font-size: 13px;
  margin: 1.5rem 0;
}
.stock-trading .benefit .client-content .client-item h3 {
  font-size: 17px;
  position: relative;
  padding-left: 1.5rem;
}
.stock-trading .benefit .client-content .client-item h3::before {
  content: '-';
  position: absolute;
  left: 0px;
  top: -10px;
  font-size: 30px;
  font-weight: 400;
}
.stock-trading .benefit .client-content .client-item h4 {
  font-size: 15px;
  font-weight: 500;
}
.stock-trading .benefit .client-content .owl-dots {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.stock-trading .benefit .client-content .owl-dots .owl-dot {
  display: flex;
  width: 7px;
  height: 7px;
  background-color: #000000;
  border-radius: 50px;
  margin-right: 0.8rem;
}
.stock-trading .benefit .client-content .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.stock-trading .benefit .client-content .owl-dots .active {
  background-color: #313E49;
  border: 5px solid #FFFFFF;
  box-shadow: 0px 0px 0px 3px #313E49;
  width: 17px;
  height: 17px;
}
.stock-trading .faq .faq-container,
.stock-trading .faq .faq-list,
.stock-trading .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.stock-trading .faq .heading {
  margin-bottom: 2.5rem;
}
.stock-trading .faq .faq-list {
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  border-radius: 22px;
}
.stock-trading .faq .faq-item {
  border-bottom: 2px solid #EFEFEF;
}
.stock-trading .faq .faq-item:first-child .ques {
  border-radius: 22px 22px 0 0;
}
.stock-trading .faq .faq-item:last-child {
  border-bottom: none;
}
.stock-trading .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  transition: 1s all;
}
.stock-trading .faq .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 30px);
  font-weight: 500;
}
.stock-trading .faq .faq-item .ques span {
  display: flex;
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
}
.stock-trading .faq .faq-item .ques span img {
  height: 100%;
  width: 100%;
  transition: 1s all;
}
.stock-trading .faq .faq-item .ques span img:last-child {
  width: 0;
}
.stock-trading .faq .faq-item .ans {
  display: none;
  padding: 1rem;
}
.stock-trading .faq .faq-item .ans p {
  font-size: 13px;
}
.stock-trading .faq .faq-item.active .ques {
  background-color: #DCE8EB;
}
.stock-trading .faq .faq-item.active .ques span img:first-child {
  width: 0;
}
.stock-trading .faq .faq-item.active .ques span img:last-child {
  width: 100%;
}
.stock-trading .footer {
  background-color: #EFEFEF;
}
.stock-trading .footer .footer-container,
.stock-trading .footer .info {
  display: flex;
  flex-direction: column;
}
.stock-trading .footer .heading {
  margin-bottom: 0;
}
.stock-trading .footer .footer-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.stock-trading .footer .footer-item span {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #313E49;
  border-radius: 50px;
  padding: 0.7rem;
}
.stock-trading .footer .footer-item span img {
  width: 100%;
  height: 100%;
}
.stock-trading .footer .footer-item .info {
  width: calc(100% - 65px);
  align-self: center;
  align-items: flex-start;
}
.stock-trading .footer .footer-item .info h3 {
  font-size: 15px;
  margin-bottom: 0.2rem;
}
.stock-trading .footer .footer-item .info a {
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .stock-trading .method .method-item .image::after {
    color: #FFFFFF;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .stock-trading .banner .logo-container {
    padding: 1rem 2rem;
  }
  .stock-trading .banner .logo-container .active + .menu-links {
    width: 50%;
  }
  .stock-trading .banner .inner-container {
    padding: 3rem 2rem;
  }
  .stock-trading .banner .banner-container .banner-content h1 span {
    font-size: 32px;
  }
  .stock-trading .banner .banner-container .banner-info {
    display: none;
  }
  .stock-trading .banner .client-container .client-list {
    justify-content: space-between;
  }
  .stock-trading .banner .client-container .item {
    width: 14%;
    margin-top: 0;
  }
  .stock-trading .banner .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .stock-trading .banner .overview-container .overview-content {
    width: 48%;
  }
  .stock-trading .banner .overview-container .overview-content .heading span {
    margin: 0.5rem 0 0;
  }
  .stock-trading .banner .overview-container .overview-content h2,
  .stock-trading .banner .overview-container .overview-content p {
    text-align: left;
  }
  .stock-trading .banner .overview-container .overview-content .item {
    padding: 1rem;
  }
  .stock-trading .banner .overview-container .overview-content .item h3 {
    font-size: 14px;
  }
  .stock-trading .banner .overview-container .overview-info {
    width: 43%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .stock-trading .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .stock-trading .course .course-item {
    width: 47%;
    margin-right: 1.4rem;
  }
  .stock-trading .course .course-item h3 {
    min-height: 45px;
  }
  .stock-trading .course .course-item:nth-child(2n),
  .stock-trading .course .course-item:last-child {
    margin-right: 0;
  }
  .stock-trading .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .stock-trading .method .method-item {
    width: 47%;
  }
  .stock-trading .phase .phase-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .stock-trading .phase .phase-content {
    align-items: flex-start;
    width: 50%;
  }
  .stock-trading .phase .phase-content .heading span {
    margin: 0.5rem 0 0;
  }
  .stock-trading .phase .phase-content h2,
  .stock-trading .phase .phase-content p {
    text-align: left;
  }
  .stock-trading .phase .phase-info {
    margin-top: 0;
    width: 42%;
    position: sticky;
    top: 60px;
  }
  .stock-trading .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .stock-trading .choose .choose-item {
    width: 47.8%;
  }
  .stock-trading .choose .choose-item:nth-child(3) h3 {
    min-height: 42px;
  }
  .stock-trading .work .work-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .stock-trading .work .work-content {
    width: 48%;
    align-items: flex-start;
  }
  .stock-trading .work .work-content .heading span {
    margin: 0.5rem 0 0;
  }
  .stock-trading .work .work-content h2,
  .stock-trading .work .work-content p {
    text-align: left;
  }
  .stock-trading .work .work-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .stock-trading .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .stock-trading .fact .fact-item {
    width: 18%;
  }
  .stock-trading .benefit .benefit-container,
  .stock-trading .benefit .benefit-content {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .stock-trading .benefit .benefit-content .heading h2 span {
    margin: 0.5rem auto 0;
  }
  .stock-trading .benefit .benefit-content .heading h2,
  .stock-trading .benefit .benefit-content .heading p {
    text-align: center;
  }
  .stock-trading .benefit .benefit-content .list {
    width: 47%;
  }
  .stock-trading .benefit .form {
    width: 50%;
  }
  .stock-trading .benefit .client-content {
    width: 44%;
  }
  .stock-trading .faq .faq-list {
    width: 85%;
    margin: auto;
    counter-reset: counter;
  }
  .stock-trading .faq .faq-item .ques {
    padding: 1.8rem 2.5rem 1.6rem;
  }
  .stock-trading .faq .faq-item .ques h3 {
    width: calc(100% - 70px);
    font-size: 17px;
  }
  .stock-trading .faq .faq-item .ques::before {
    content: counter(counter, decimal-leading-zero) ".";
    counter-increment: counter;
    font-weight: 500;
    font-size: 17px;
  }
  .stock-trading .faq .faq-item .ans {
    padding: 1.2rem 2.5rem 1.5rem;
  }
  .stock-trading .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .stock-trading .footer .footer-item {
    width: 48%;
  }
  .stock-trading .footer .footer-item span {
    width: 55px;
    height: 55px;
    padding: 0.8rem;
  }
  .stock-trading .footer .footer-item .info {
    width: calc(100% - 75px);
  }
  .stock-trading .footer .footer-item .info h3 {
    font-size: 18px;
  }
  .stock-trading .footer .footer-item .info a {
    font-size: 14px;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .stock-trading .heading h2 {
    font-size: 28px;
  }
  .stock-trading .buttons .btn-blue,
  .stock-trading .buttons .btn-white {
    font-size: 16px;
  }
  .stock-trading .banner {
    position: relative;
    z-index: 2;
  }
  .stock-trading .banner::before {
    content: '';
    position: absolute;
    width: 59%;
    height: 61%;
    background-color: #DCE8EB;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .stock-trading .banner .logo-container .tka-logo {
    max-width: 223px;
  }
  .stock-trading .banner .logo-container .menu,
  .stock-trading .banner .logo-container .menu-toggle {
    display: none;
  }
  .stock-trading .banner .logo-container .menu-links {
    width: 28%;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .stock-trading .banner .logo-container .menu-links ul {
    display: flex;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li {
    border-bottom: none;
    cursor: pointer;
    transition: 1s all;
    padding: 0;
    margin-right: 2rem;
    position: relative;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li:nth-child(3) {
    margin-right: 0;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li::before {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    width: calc(100% + 20px);
    height: 0;
    left: -10px;
    z-index: -1;
    transition: 1s all;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li:hover::before {
    height: 74px;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li:last-child {
    display: none;
  }
  .stock-trading .banner .logo-container .buttons {
    display: flex;
    margin-top: 0;
  }
  .stock-trading .banner .logo-container .buttons .btn-white,
  .stock-trading .banner .logo-container .buttons .btn-blue {
    min-height: 42px;
    min-width: 162px;
    font-size: 14px;
  }
  .stock-trading .banner .logo-container .buttons .btn-white {
    margin-right: 2rem;
  }
  .stock-trading .banner .sticky .menu-links {
    width: 32%;
    margin: 0 2rem 0 auto;
  }
  .stock-trading .banner .sticky .menu-links ul {
    justify-content: flex-end;
  }
  .stock-trading .banner .inner-container {
    padding: 5rem 2rem!important;
  }
  .stock-trading .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .stock-trading .banner .banner-container .banner-content {
    width: 50%;
  }
  .stock-trading .banner .banner-container .banner-content h1 {
    font-size: 55px;
  }
  .stock-trading .banner .banner-container .banner-content h1 span {
    font-size: 36px;
  }
  .stock-trading .banner .banner-container .banner-content h1 img {
    height: 55px;
    width: 55px;
  }
  .stock-trading .banner .banner-container .banner-info {
    display: flex;
    width: 45%;
    margin-top: 0;
  }
  .stock-trading .banner .client-container,
  .stock-trading .banner .overview-container {
    margin-top: 5rem;
  }
  .stock-trading .banner .client-container .heading {
    width: 38%;
    align-self: center;
    margin-bottom: 2.5rem;
  }
  .stock-trading .banner .client-container .item {
    height: 95px;
  }
  .stock-trading .banner .overview-container {
    align-items: center;
  }
  .stock-trading .banner .overview-container .overview-info {
    position: static;
    top: 0;
  }
  .stock-trading .course .course-item {
    width: 30%;
  }
  .stock-trading .course .course-item:nth-child(2n) {
    margin-right: 1.4rem;
  }
  .stock-trading .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .stock-trading .method .heading {
    width: 80%;
    margin: 0 auto 1rem;
  }
  .stock-trading .method .method-item {
    width: 23%;
  }
  .stock-trading .method .method-item h3 {
    min-height: 48px;
  }
  .stock-trading .method .method-item p {
    min-height: 117px;
  }
  .stock-trading .choose {
    background-image: url(/_public/images/stock-trading/choose-bg.png);
    background-size: 100% 100%;
  }
  .stock-trading .choose .choose-list {
    width: 85%;
    margin: auto;
  }
  .stock-trading .choose .choose-item:nth-child(3) h3 {
    min-height: auto;
  }
  .stock-trading .work .work-info .image {
    width: 82%;
    align-self: center;
  }
  .stock-trading .fact {
    background-image: url(/_public/images/stock-trading/fact-bg.png);
    background-size: 100% 100%;
  }
  .stock-trading .fact .fact-list {
    justify-content: space-between;
  }
  .stock-trading .fact .fact-item {
    width: 20%;
  }
  .stock-trading .benefit {
    background-image: linear-gradient(180deg, #DCE8EB 53%, transparent 53%);
    background-color: transparent;
  }
  .stock-trading .benefit .benefit-content {
    align-items: center;
    width: 90%;
    margin: auto;
  }
  .stock-trading .benefit .benefit-content p {
    margin: 1rem 0 2.5rem;
  }
  .stock-trading .benefit .benefit-content .list {
    width: 35%;
    align-items: center;
  }
  .stock-trading .benefit .benefit-content .list:nth-of-type(1) li {
    flex-direction: row-reverse;
    text-align: right;
  }
  .stock-trading .benefit .benefit-content .list li {
    width: 82%;
    font-size: 16px;
  }
  .stock-trading .benefit .benefit-content .list li:first-child {
    margin-top: 0;
  }
  .stock-trading .benefit .benefit-content .list li span {
    margin: 0 0rem 0 1.5rem;
  }
  .stock-trading .benefit .benefit-content .list li:nth-child(2) {
    transform: translateX(-25px);
  }
  .stock-trading .benefit .benefit-content .list:last-child li span {
    margin: 0 1.5rem 0 0;
  }
  .stock-trading .benefit .benefit-content .list:last-child li:nth-child(2) {
    transform: translateX(25px);
  }
  .stock-trading .benefit .benefit-content .image {
    display: flex;
    width: 28%;
  }
  .stock-trading .benefit .form {
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0px 6px 20px #DCE8EB;
  }
  .stock-trading .benefit .client-content {
    align-self: flex-end;
    margin-top: 0;
  }
  .stock-trading .benefit .client-content .heading {
    padding-left: 1.8rem;
  }
  .stock-trading .benefit .client-content .client-item {
    background-image: url(/_public/images/stock-trading/quotes.svg);
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: left 0px top 47px;
    padding-left: 1.8rem;
  }
  .stock-trading .benefit .client-content .client-item p {
    margin: 2.8rem 0 2rem;
  }
  .stock-trading .benefit .client-content .owl-dots {
    position: absolute;
    margin-top: 0;
    bottom: 14px;
    right: 28px;
  }
  .stock-trading .footer {
    padding-bottom: 2rem;
  }
  .stock-trading .footer .heading {
    width: 35%;
  }
  .stock-trading .footer .footer-container {
    align-items: center;
    border-bottom: 2px solid #959191;
    padding-bottom: 2rem;
  }
  .stock-trading .footer .footer-item {
    width: 19%;
    margin-top: 0;
  }
  .stock-trading .footer .footer-item:last-child {
    width: 35%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .stock-trading .heading h2 {
    font-size: 32px;
  }
  .stock-trading .banner .logo-container {
    padding: 2rem 0;
  }
  .stock-trading .banner .logo-container .menu-links {
    width: 35%;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li:hover::before {
    height: 106px;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li:nth-child(3) {
    margin-right: 2rem;
  }
  .stock-trading .banner .logo-container .menu-links ul .links-li:last-child {
    display: flex;
    margin-right: 0;
  }
  .stock-trading .banner .sticky {
    padding: 1.2rem 0;
  }
  .stock-trading .banner .sticky .menu-links ul .links-li:hover::before {
    height: 80px;
  }
  .stock-trading .banner .inner-container {
    padding: 6rem 0!important;
  }
  .stock-trading .banner .banner-container {
    position: relative;
  }
  .stock-trading .banner .banner-container .banner-content {
    width: 47%;
  }
  .stock-trading .banner .banner-container .banner-content h1 {
    font-size: 66px;
  }
  .stock-trading .banner .banner-container .banner-content h1 span {
    font-size: 43px;
  }
  .stock-trading .banner .banner-container .banner-content h1 img {
    width: 70px;
    height: 70px;
    transform: translateY(11px);
  }
  .stock-trading .banner .banner-container .banner-info {
    height: calc(100% + 50%);
    right: -40px;
    width: 52%;
    position: absolute;
    top: -94px;
  }
  .stock-trading .banner .client-container,
  .stock-trading .banner .overview-container {
    margin-top: 8rem;
  }
  .stock-trading .banner .client-container .item {
    padding: 1.5rem;
    width: 13%;
  }
  .stock-trading .banner .overview-container .overview-content .item img {
    width: 43px;
    height: 43px;
  }
  .stock-trading .banner .overview-container .overview-content .item h3 {
    font-size: 18px;
    width: calc(100% - 55px);
  }
  .stock-trading .course .course-item {
    width: 23%;
  }
  .stock-trading .course .course-item:nth-child(3n) {
    margin-right: 1.4rem;
  }
  .stock-trading .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .stock-trading .method {
    padding-bottom: 2rem;
  }
  .stock-trading .method .method-item {
    position: relative;
    width: 25%;
    border-left: 1px solid #CCCCCC;
    padding: 1.5rem 1.5rem 0;
  }
  .stock-trading .method .method-item::before {
    content: '>';
    position: absolute;
    top: 60px;
    left: -20px;
    height: 38px;
    width: 37px;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    animation: scale 5s linear infinite;
  }
  .stock-trading .method .method-item:first-child {
    border-left: none;
    padding: 1.5rem 1.5rem 0 0;
  }
  .stock-trading .method .method-item:first-child::before {
    content: none;
  }
  .stock-trading .method .method-item:last-child {
    padding: 1.5rem 0 0 1.5rem;
  }
  .stock-trading .method .method-item h3 {
    min-height: auto;
  }
  .stock-trading .phase {
    position: relative;
  }
  .stock-trading .phase::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 15%;
    height: 500px;
    width: 500px;
    background-image: url(/_public/images/stock-trading/phase-bg.png);
    background-size: 100% 100%;
    animation: scale 5s linear infinite;
    z-index: -1;
  }
  .stock-trading .phase .phase-info {
    position: static;
    top: 0;
  }
  .stock-trading .choose .heading {
    width: 85%;
    margin: 0 auto 1rem;
  }
  .stock-trading .choose .choose-list {
    width: 100%;
  }
  .stock-trading .choose .choose-item {
    width: 23%;
  }
  .stock-trading .choose .choose-item h3 {
    min-height: 42px !important;
  }
  .stock-trading .work .work-content {
    width: 57%;
  }
  .stock-trading .work .work-info {
    width: 44%;
  }
  .stock-trading .work .work-info {
    position: static;
    top: 0px;
  }
  .stock-trading .fact .fact-container {
    width: 85%;
    margin: auto;
  }
  .stock-trading .fact .fact-item {
    width: 23%;
  }
  .stock-trading .fact .fact-item p {
    font-size: 18px;
    width: 70%;
    align-self: center;
  }
  .stock-trading .benefit {
    background-color: transparent;
    background-image: linear-gradient(180deg, #DCE8EB 55.5%, transparent 55.5%);
  }
  .stock-trading .benefit .benefit-content .list {
    width: 30%;
  }
  .stock-trading .benefit .benefit-content .list li {
    margin-top: 2.5rem;
  }
  .stock-trading .benefit .benefit-content .image {
    width: 32%;
  }
  .stock-trading .benefit .form {
    width: 43%;
  }
  .stock-trading .benefit .client-content {
    width: 48%;
    margin: 0 0 4rem;
  }
  .stock-trading .faq {
    padding-top: 0;
  }
  .stock-trading .footer {
    position: relative;
  }
  .stock-trading .footer::after,
  .stock-trading .footer::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/stock-trading/grid.png);
  }
  .stock-trading .footer::after {
    top: 40px;
    right: 30px;
    width: 50px;
    height: 92px;
    background-size: 100% 100%;
  }
  .stock-trading .footer::before {
    bottom: 21px;
    left: 52px;
    background-size: cover;
    width: 52px;
    height: 80px;
    transform: rotate(130deg);
  }
  .stock-trading .footer .footer-item {
    width: 15%;
  }
  .stock-trading .footer .footer-item:last-child {
    width: 32%;
  }
  .stock-trading .footer .footer-item .info a {
    font-size: 16px;
  }
}
@media (min-width : 1500px) {
  .stock-trading .banner::before {
    content: none;
  }
  .stock-trading .footer::after,
  .stock-trading .footer::before {
    content: none;
  }
}
