@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 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: #8858bc;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Roboto';
}
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;
}
.visual-basic .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.visual-basic .buttons .btn-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: 0;
  min-width: 160px;
  background-color: #FF3D3D;
  color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: all 1s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.visual-basic .buttons .btn-orange::after,
.visual-basic .buttons .btn-orange::before {
  content: '';
  background: #613099;
  height: 50%;
  width: 0;
  position: absolute;
  transition: 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.visual-basic .buttons .btn-orange::before {
  top: 0;
  left: 0;
  right: auto;
}
.visual-basic .buttons .btn-orange::after {
  bottom: 0;
  right: 0;
  left: auto;
}
.visual-basic .buttons .btn-orange:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.visual-basic .buttons .btn-orange:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.visual-basic .buttons .btn-orange img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.visual-basic .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.visual-basic .heading p {
  margin-top: 1rem;
}
.visual-basic .heading h2 {
  width: 100%;
}
.visual-basic .heading span {
  width: 123px;
  height: 3px;
  background-color: #B4B4B4;
  position: relative;
  margin-top: 0.5rem;
}
.visual-basic .heading span::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 8px;
  background-color: #613099;
  border-radius: 20px;
  top: -3px;
  animation: move 5s linear infinite;
}
.visual-basic .center-heading {
  align-items: center;
  justify-content: center;
}
.visual-basic .center-heading h2,
.visual-basic .center-heading p {
  text-align: center;
}
.visual-basic .center-heading h2 {
  align-items: center;
}
.visual-basic .white-heading h2,
.visual-basic .white-heading p {
  color: #FFFFFF;
}
.visual-basic .white-heading span {
  background-color: #FFFFFF;
}
.visual-basic .white-heading span::before {
  background-color: #FF3D3D;
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes move {
  0% {
    left: 0;
  }
  50% {
    left: 90px;
  }
  100% {
    left: 0;
  }
}
.visual-basic .banner {
  flex-direction: column;
  background-color: #613099;
  padding-top: 2rem;
}
.visual-basic .banner .banner-container,
.visual-basic .banner .banner-content,
.visual-basic .banner .banner-info,
.visual-basic .banner .menu-links {
  display: flex;
  flex-direction: column;
}
.visual-basic .banner .logo-container {
  display: flex;
}
.visual-basic .banner .logo-container .container {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 1rem;
  justify-content: space-between;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.visual-basic .banner .tka-logo {
  width: 200px;
  display: flex;
}
.visual-basic .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.visual-basic .banner .menu {
  margin-left: auto;
  display: flex;
}
.visual-basic .banner .menu img {
  width: 22px;
  height: 21px;
}
.visual-basic .banner .menu-links {
  position: fixed;
  background-color: #FFFFFF;
  top: 0;
  right: 0;
  width: 0;
  z-index: 5;
  transition: all 0.5s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.visual-basic .banner .menu-toggle {
  display: flex;
  align-items: center;
}
.visual-basic .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 0.2rem;
}
.visual-basic .banner ul .links-li {
  padding: 0.5rem 0;
  border-bottom: 1px dotted #000000;
}
.visual-basic .banner ul .links-li:first-child {
  padding-top: 0;
}
.visual-basic .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.visual-basic .banner ul .links-li:last-child {
  display: none;
}
.visual-basic .banner .menu.active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.visual-basic .banner .menu.active + .menu-links {
  padding: 1rem;
  width: 80%;
}
.visual-basic .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
}
.visual-basic .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s all;
  height: auto;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
.visual-basic .banner .sticky .container {
  padding: 1rem 1.5rem;
}
.visual-basic .banner .sticky-down {
  top: -100px;
}
.visual-basic .banner .banner-container {
  align-items: flex-start;
  padding-top: 2rem;
}
.visual-basic .banner .container {
  height: 100%;
}
.visual-basic .banner .banner-content {
  width: 100%;
  align-items: flex-start;
}
.visual-basic .banner .banner-content h1,
.visual-basic .banner .banner-content h3,
.visual-basic .banner .banner-content p {
  color: #FFFFFF;
}
.visual-basic .banner .banner-content h1 {
  font-size: 26px;
  margin: 1rem 0;
  width: 100%;
}
.visual-basic .banner .banner-content h1 img {
  width: 35px;
  height: 35px;
  transform: translateY(8px);
  margin-right: 0.4rem;
}
.visual-basic .banner .banner-content h3 {
  border: 1px solid #FFFFFF;
  font-size: 18px;
  padding: 0.3rem 0.7rem;
  letter-spacing: 1px;
  font-weight: 500;
}
.visual-basic .banner .banner-content .buttons .btn-orange {
  box-shadow: 0 1px 6px rgba(255, 255, 255, 0.3);
}
.visual-basic .banner .banner-info {
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 2rem;
}
.visual-basic .banner .banner-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.visual-basic .banner .banner-info .image img {
  width: 100%;
  height: 100%;
}
.visual-basic .banner .banner-info span {
  display: none;
}
.visual-basic .overview .overview-container,
.visual-basic .overview .overview-content,
.visual-basic .overview .course-content {
  display: flex;
  flex-direction: column;
}
.visual-basic .overview .overview-content {
  align-items: center;
}
.visual-basic .overview .overview-content p {
  text-align: center;
}
.visual-basic .overview .overview-content p:nth-child(3) {
  margin-top: 1rem;
}
.visual-basic .overview .course-content {
  align-items: center;
  padding: 4rem 0 2rem;
  margin-top: 2rem;
  border-radius: 6px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 272px;
  align-self: center;
}
.visual-basic .overview .course-content::before {
  content: '';
  position: absolute;
  background-color: #613099;
  width: 75%;
  height: 1.5%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  transition: 1s all;
}
.visual-basic .overview .course-content span {
  display: flex;
  background-color: #613099;
  padding: 0.6rem;
  border-radius: 5px;
  height: 60px;
  width: 60px;
  position: relative;
}
.visual-basic .overview .course-content span img {
  width: 100%;
  height: 100%;
}
.visual-basic .overview .course-content span::before {
  content: '';
  position: absolute;
  border: 1px solid #000000;
  border-radius: 50px;
  width: 65px;
  height: 65px;
  left: -25px;
  top: -20px;
  z-index: -1;
  opacity: 0.7;
}
.visual-basic .overview .course-content h3 {
  text-align: center;
  font-size: 18px;
  margin: 1.5rem 0;
  width: 100%;
  padding: 0.7rem 1.2rem;
  background: #F5F5F5;
}
.visual-basic .overview .course-content p {
  text-align: center;
  font-size: 13px;
}
.visual-basic .overview .course-content p:nth-child(4) {
  margin-top: 5px;
}
.visual-basic .outline {
  background-Color: #613099;
}
.visual-basic .outline .outline-container,
.visual-basic .outline .outline-list,
.visual-basic .outline .form,
.visual-basic .outline .content,
.visual-basic .outline .input-list,
.visual-basic .outline .toggle-item {
  display: flex;
  flex-direction: column;
}
.visual-basic .outline .outline-container:first-child,
.visual-basic .outline .outline-list:first-child,
.visual-basic .outline .form:first-child,
.visual-basic .outline .content:first-child,
.visual-basic .outline .input-list:first-child,
.visual-basic .outline .toggle-item:first-child {
  margin-top: 0px;
}
.visual-basic .outline .toggle-item {
  margin-top: 1.2rem;
  padding: 1rem;
  background-color: #8858bc;
  border-radius: 8px;
  transition: 1s all;
}
.visual-basic .outline .ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.visual-basic .outline .ques h3 {
  width: calc(100% - 75px);
  font-size: 15px;
  color: #FFFFFF;
}
.visual-basic .outline .question {
  display: flex;
  width: 30px;
  background-color: #AE7EE2;
  height: 30px;
  padding: 4px;
  border-radius: 5px;
  border: 1px solid #F5F5F5;
}
.visual-basic .outline .question img {
  width: 100%;
  height: 100%;
}
.visual-basic .outline .circle {
  display: flex;
  width: 17px;
  height: 18px;
  background-color: #FFFFFF;
  padding: 2px;
}
.visual-basic .outline .circle img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.visual-basic .outline .ans {
  display: none;
  border-top: 1px solid #000000;
  margin-top: 0.8rem;
}
.visual-basic .outline .ans p {
  font-size: 13px;
}
.visual-basic .outline .ans li {
  margin-top: 0.7rem;
  position: relative;
  transition: 1s all;
  padding-left: 1.2rem;
  font-weight: 500;
  font-size: 13px;
}
.visual-basic .outline .ans li::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0px;
  top: 4px;
  background-image: url(/_public/images/visual-basic/list-circle.svg);
  background-size: 100% 100%;
  animation: scale 2s linear infinite;
}
.visual-basic .outline .active {
  background-color: #FFFFFF;
}
.visual-basic .outline .active .circle {
  border: 1px solid #000000;
}
.visual-basic .outline .active .circle img {
  transform: rotate(180deg);
}
.visual-basic .outline .active .ques h3 {
  color: #000000;
}
.visual-basic .outline .active .ques .question {
  border-color: #000000;
  background-color: #FFFFFF;
}
.visual-basic .outline .form {
  background-color: #FFFFFF;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 0;
}
.visual-basic .outline .form .heading {
  margin-bottom: 0;
}
.visual-basic .outline .form .buttons {
  justify-content: center;
}
.visual-basic .outline .form .buttons .btn-orange {
  min-width: 115px;
}
.visual-basic .outline .input-container {
  display: flex;
  border: 1px solid transparent;
  background-color: #F5F5F5;
  padding: 0.8rem;
  margin-top: 1rem;
  justify-content: space-between;
}
.visual-basic .outline .input-container input,
.visual-basic .outline .input-container textarea {
  width: calc(100% - 25px);
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
}
.visual-basic .outline .input-container textarea {
  resize: none;
  min-height: 50px;
  overflow: auto;
}
.visual-basic .outline .input-container span {
  display: flex;
  height: 17px;
  width: 17px;
}
.visual-basic .outline .input-container span img {
  width: 100%;
  height: 100%;
}
.visual-basic .outline .input-container span .white {
  display: flex;
}
.visual-basic .outline .input-container span .red {
  display: none;
}
.visual-basic .outline .input-container ::-webkit-input-placeholder {
  color: #ACACAC;
}
.visual-basic .outline .input-container :-ms-input-placeholder {
  color: #ACACAC;
}
.visual-basic .outline .input-container ::placeholder {
  color: #ACACAC;
}
.visual-basic .outline .input-error {
  border: 1px solid #ff0000;
}
.visual-basic .outline .input-error span .white {
  display: none;
}
.visual-basic .outline .input-error span .red {
  display: flex;
}
.visual-basic .outline .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.visual-basic .outline .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.visual-basic .outline .input-error ::placeholder {
  color: #ff0000;
}
.visual-basic .outline .form-consent {
  display: flex;
  margin-top: 0.5rem;
}
.visual-basic .outline .form-consent p,
.visual-basic .outline .form-consent label {
  font-size: 11px;
}
.visual-basic .outline .form-consent label {
  width: calc(100% - 20px);
  margin-left: 0.5rem;
  cursor: pointer;
  align-self: center;
}
.visual-basic .outline .form-consent a {
  font-weight: 600;
  color: #FF3D3D;
}
.visual-basic .outline .consent-error p {
  color: #ff0000;
  line-height: 1.6;
  width: 100%;
  font-size: 11px;
  margin-top: 0.5rem;
}
.visual-basic .course .course-container,
.visual-basic .course .course-list {
  display: flex;
  flex-direction: column;
}
.visual-basic .course .heading {
  margin-bottom: 0;
}
.visual-basic .course .heading p {
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.visual-basic .course .heading p strong {
  color: #613099;
}
.visual-basic .course .course-item {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1.5rem 1rem;
  transition: 1s all;
  border-radius: 8px;
  margin-top: 2rem;
  border-bottom: 2px solid #613099;
  align-items: center;
}
.visual-basic .course .course-item span {
  display: flex;
  width: 50px;
  height: 50px;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 0.6rem;
  position: relative;
  z-index: 1;
}
.visual-basic .course .course-item span img {
  width: 100%;
  height: 100%;
}
.visual-basic .course .course-item span::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 39px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: #F5F5F5;
  border-radius: 5px;
  z-index: -1;
}
.visual-basic .course .course-item h3 {
  font-size: 14px;
  width: calc(100% - 60px);
}
.visual-basic .course .course-item p {
  font-size: 13px;
  width: 100%;
}
.visual-basic .course .course-item p:nth-last-child(2) {
  margin-top: 0.7rem;
}
.visual-basic .course .course-item:hover {
  background-color: #613099;
}
.visual-basic .course .course-item:hover span {
  border: 1px solid #FFFFFF;
}
.visual-basic .course .course-item:hover h3,
.visual-basic .course .course-item:hover p {
  color: #FFFFFF;
}
.visual-basic .course .course-item:hover::before {
  height: 100%;
}
.visual-basic .course .buttons {
  margin-top: 1rem;
}
.visual-basic .course .buttons .btn-orange {
  min-width: 130px;
  font-size: 14px;
}
.visual-basic .course .buttons .btn-orange img {
  width: 16px;
  height: 16px;
}
.visual-basic .course .buttons .btn-orange:hover::before,
.visual-basic .course .buttons .btn-orange:hover::after {
  content: none;
}
.visual-basic .program {
  padding-top: 0;
}
.visual-basic .program .program-container,
.visual-basic .program .content {
  display: flex;
  flex-direction: column;
}
.visual-basic .program .program-container {
  align-items: flex-start;
}
.visual-basic .program .content {
  width: 100%;
}
.visual-basic .program .content p {
  text-align: center;
}
.visual-basic .program .content p:nth-last-child(2) {
  margin-top: 1rem;
}
.visual-basic .program .buttons {
  align-self: center;
}
.visual-basic .program .program-info {
  display: flex;
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.visual-basic .program .program-info img {
  width: 100%;
  height: 100%;
}
.visual-basic .method {
  background-color: #F5F5F5;
}
.visual-basic .method .method-container,
.visual-basic .method .method-content,
.visual-basic .method .method-item,
.visual-basic .method .method-info {
  display: flex;
  flex-direction: column;
}
.visual-basic .method .method-item {
  margin-top: 2rem;
  padding: 1.5rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  transition: 1s all;
  background-color: #FFFFFF;
}
.visual-basic .method .method-item .image {
  display: flex;
  width: 117px;
  height: 100px;
  margin-bottom: 0.5rem;
}
.visual-basic .method .method-item .image img {
  width: 100%;
  height: 100%;
}
.visual-basic .method .method-item:hover {
  background-color: #613099;
}
.visual-basic .method .method-item:hover .method-info h3,
.visual-basic .method .method-item:hover .method-info .enquire,
.visual-basic .method .method-item:hover .method-info p {
  color: #FFFFFF;
}
.visual-basic .method .method-item:hover .method-info .enquire .arrow img:first-child {
  display: none;
}
.visual-basic .method .method-item:hover .method-info .enquire .arrow img:last-child {
  display: flex;
}
.visual-basic .method .method-info h3 {
  font-size: 15px;
}
.visual-basic .method .method-info p {
  margin: 0.5rem 0;
  line-height: 1.5;
}
.visual-basic .method .method-info .enquire {
  display: flex;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
}
.visual-basic .method .method-info .enquire .arrow {
  display: flex;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}
.visual-basic .method .method-info .enquire .arrow img {
  width: 100%;
  height: 100%;
}
.visual-basic .method .method-info .enquire .arrow img:last-child {
  display: none;
}
.visual-basic .structure .structure-container,
.visual-basic .structure .structure-content,
.visual-basic .structure .structure-info {
  display: flex;
  flex-direction: column;
}
.visual-basic .structure .structure-container {
  align-items: flex-start;
}
.visual-basic .structure .structure-content {
  width: 100%;
}
.visual-basic .structure .structure-content p {
  text-align: center;
}
.visual-basic .structure .structure-content p:nth-child(3) {
  margin-top: 1rem;
}
.visual-basic .structure .buttons {
  align-self: center;
}
.visual-basic .structure .structure-info {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  border: 6px solid #E4E4E4;
  height: 100%;
}
.visual-basic .structure .image {
  display: flex;
  height: 100%;
}
.visual-basic .structure .image img {
  width: 100%;
  height: 100%;
}
.visual-basic .fact {
  padding-top: 0;
}
.visual-basic .fact .fact-container,
.visual-basic .fact .fact-content,
.visual-basic .fact .fact-list,
.visual-basic .fact .fact-info {
  display: flex;
  flex-direction: column;
}
.visual-basic .fact li,
.visual-basic .fact span,
.visual-basic .fact .fact-item,
.visual-basic .fact .fact-count {
  display: flex;
}
.visual-basic .fact .fact-content li {
  align-items: center;
  margin-top: 1rem;
}
.visual-basic .fact .fact-content li span {
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  background-color: #E9D5FF;
  border-radius: 50px;
  margin-right: 0.8rem;
}
.visual-basic .fact .fact-content li span img {
  width: 100%;
  height: 100%;
}
.visual-basic .fact .fact-list {
  margin-top: 2rem;
  background-color: #613099;
  padding: 1rem;
}
.visual-basic .fact .fact-item {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ACACAC;
}
.visual-basic .fact .fact-item:first-child {
  padding-top: 0;
}
.visual-basic .fact .fact-item img {
  width: 65px;
  height: 65px;
}
.visual-basic .fact .fact-item p {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 17px;
}
.visual-basic .fact .fact-item:nth-child(2) .fact-info {
  align-items: flex-end;
}
.visual-basic .fact .fact-item:nth-child(2) .fact-info p {
  text-align: right;
}
.visual-basic .fact .fact-info {
  width: calc(100% - 75px);
}
.visual-basic .fact .fact-count h4,
.visual-basic .fact .fact-count span {
  font-size: 35px;
  font-weight: 600;
  color: #FFFFFF;
}
.visual-basic .client {
  background-color: #613099;
}
.visual-basic .client .client-container,
.visual-basic .client .client-info {
  display: flex;
  flex-direction: column;
}
.visual-basic .client .client-item {
  display: flex;
  background-color: #FFFFFF;
  padding: 1rem;
  width: 93%;
  margin: auto;
  flex-wrap: wrap;
  border-radius: 5px;
  margin-bottom: 1rem;
  box-shadow: 5px 5px 8px rgba(255, 255, 255, 0.3);
  justify-content: space-between;
}
.visual-basic .client .client-item span {
  display: flex;
  border-radius: 50px;
  background-color: #F5F5F5;
  padding: 1rem;
  width: 65px;
  height: 65px;
}
.visual-basic .client .client-item span img {
  height: 100%;
}
.visual-basic .client .client-item p {
  margin-top: 0.8rem;
}
.visual-basic .client .client-info {
  width: calc(100% - 80px);
  justify-content: center;
  align-items: flex-end;
}
.visual-basic .client .client-info h3 {
  font-size: 17px;
}
.visual-basic .client .client-info .star {
  width: 115px;
  margin-bottom: 0.2rem;
}
.visual-basic .client .owl-dots {
  display: flex;
  width: 180px;
  margin: 2rem auto 0;
  justify-content: center;
}
.visual-basic .client .owl-dots .owl-dot {
  background-color: #FFFFFF;
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  border-radius: 50px;
  opacity: 0.2;
}
.visual-basic .client .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.visual-basic .client .owl-dots .active {
  opacity: 1;
}
.visual-basic .choose .choose-container,
.visual-basic .choose .choose-list,
.visual-basic .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.visual-basic .choose .buttons {
  margin-top: 0;
  align-self: center;
}
.visual-basic .choose .choose-item {
  align-items: center;
  margin-top: 2rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
  border-radius: 6px;
}
.visual-basic .choose .choose-item span {
  display: flex;
  width: 100px;
  height: 75px;
  padding: 1.2rem;
  background-image: url(/_public/images/visual-basic/choose-bg.svg);
  background-size: 100% 100%;
}
.visual-basic .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.visual-basic .choose .choose-item h3,
.visual-basic .choose .choose-item p {
  text-align: center;
}
.visual-basic .choose .choose-item h3 {
  margin: 0.8rem 0;
  font-size: 16px;
  width: 100%;
}
.visual-basic .faq {
  padding-top: 1rem;
}
.visual-basic .faq .faq-container,
.visual-basic .faq .faq-content,
.visual-basic .faq .toggle-list,
.visual-basic .faq .toggle-item {
  display: flex;
  flex-direction: column;
}
.visual-basic .faq .toggle-item {
  margin-top: 1rem;
  width: 100%;
}
.visual-basic .faq .toggle-item .ques {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  align-items: center;
  padding: 0.7rem;
  background-image: linear-gradient(90deg, #F5F5F5 44px, #FFFFFF 44px);
  cursor: pointer;
}
.visual-basic .faq .toggle-item .ques .image {
  display: flex;
  width: 25px;
  height: 25px;
}
.visual-basic .faq .toggle-item .ques .image img {
  width: 100%;
  height: 100%;
}
.visual-basic .faq .toggle-item .ques .intro {
  display: flex;
  width: 22px;
  height: 22px;
}
.visual-basic .faq .toggle-item .ques .intro img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.visual-basic .faq .toggle-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 82px);
}
.visual-basic .faq .toggle-item .ans {
  display: none;
  padding: 1rem;
  width: calc(100% - 45px);
  border: 1px solid #613099;
  border-bottom-width: 3px;
  margin-left: auto;
  background-color: #FFFFFF;
  position: relative;
  transform: translateY(-3px);
}
.visual-basic .faq .toggle-item .ans::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(315deg);
  box-shadow: 1px -1px 1px 0px #613099;
  background-size: 100% 100%;
  left: 20px;
  top: -4px;
  background-color: #FFFFFF;
}
.visual-basic .faq .toggle-item .ans p,
.visual-basic .faq .toggle-item .ans li {
  font-size: 13px;
}
.visual-basic .faq .toggle-item .ans ul {
  padding-left: 1rem;
}
.visual-basic .faq .toggle-item .ans ul li {
  margin-top: 0.2rem;
  list-style: disc;
}
.visual-basic .faq .active .ques .intro img {
  transform: rotate(180deg);
}
.visual-basic .footer {
  background-color: #613099;
}
.visual-basic .footer .footer-container,
.visual-basic .footer .contact-list,
.visual-basic .footer .info {
  display: flex;
  flex-direction: column;
}
.visual-basic .footer .buttons {
  margin-top: 0px;
  align-self: center;
}
.visual-basic .footer .buttons .btn-orange {
  box-shadow: 0 1px 6px rgba(255, 255, 255, 0.3);
}
.visual-basic .footer .contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.visual-basic .footer .contact-item span {
  display: flex;
  border: 1px solid #FFFFFF;
  padding: 0.6rem;
  border-radius: 50px;
  height: 45px;
  width: 45px;
}
.visual-basic .footer .contact-item span img {
  width: 100%;
  height: 100%;
}
.visual-basic .footer .contact-item .info {
  width: calc(100% - 55px);
}
.visual-basic .footer .contact-item .info h3,
.visual-basic .footer .contact-item .info a {
  color: #FFFFFF;
}
.visual-basic .footer .contact-item .info h3 {
  font-size: 16px;
  margin-bottom: 0.4rem;
}
.visual-basic .footer .contact-item .info a {
  font-size: 13px;
}
.visual-basic .footer .contact-item .info .stars {
  width: 120px;
  height: 20px;
}
.visual-basic .footer .contact-item:last-child .info h3 {
  font-size: 14px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .visual-basic .buttons .btn-orange {
    font-size: 16px;
  }
  .visual-basic .banner .menu.active + .menu-links {
    width: 50%;
  }
  .visual-basic .banner .sticky .container {
    padding: 1rem 2rem;
  }
  .visual-basic .banner .banner-info {
    display: none;
  }
  .visual-basic .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .visual-basic .overview .overview-content {
    width: 45%;
    align-items: flex-start;
  }
  .visual-basic .overview .overview-content .heading {
    align-items: flex-start;
  }
  .visual-basic .overview .overview-content .heading h2 {
    text-align: left;
  }
  .visual-basic .overview .overview-content p {
    text-align: left;
  }
  .visual-basic .overview .course-content {
    width: 45%;
    position: sticky;
    top: 60px;
    margin-top: 0;
    align-self: flex-start;
  }
  .visual-basic .outline .outline-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .visual-basic .outline .outline-list {
    max-height: 605px;
    overflow-y: scroll;
    padding-right: 1.5rem;
  }
  .visual-basic .outline .content {
    width: 45%;
  }
  .visual-basic .outline .form {
    margin-top: 0;
    width: 50%;
    padding: 2rem;
  }
  .visual-basic .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .visual-basic .course .course-item {
    width: 45%;
    margin-right: 2rem;
  }
  .visual-basic .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .visual-basic .program .program-info {
    width: 60%;
    align-self: center;
  }
  .visual-basic .method .method-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .visual-basic .method .method-content {
    width: 100%;
  }
  .visual-basic .method .method-item {
    width: 48%;
  }
  .visual-basic .method .method-info p {
    min-height: 63px;
  }
  .visual-basic .structure .structure-info {
    width: 70%;
    align-self: center;
  }
  .visual-basic .fact .fact-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .visual-basic .fact .fact-content ul li {
    width: 47%;
  }
  .visual-basic .fact .fact-list {
    width: 55%;
    align-self: center;
    padding: 2rem 1.5rem;
  }
  .visual-basic .client .client-item {
    padding: 2rem 1.5rem;
  }
  .visual-basic .client .client-item p {
    min-height: 264px;
  }
  .visual-basic .choose .choose-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .visual-basic .choose .choose-container .heading {
    width: 64%;
    margin-bottom: 0;
    align-items: flex-start;
  }
  .visual-basic .choose .choose-container .heading h2,
  .visual-basic .choose .choose-container .heading p {
    text-align: left;
  }
  .visual-basic .choose .buttons {
    align-self: flex-end;
  }
  .visual-basic .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .visual-basic .choose .choose-item {
    width: 48%;
  }
  .visual-basic .faq .toggle-list {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .visual-basic .faq .toggle-item {
    width: 47%;
  }
  .visual-basic .footer .contact-list {
    flex-direction: row;
  }
  .visual-basic .footer .contact-item {
    width: 40%;
  }
  .visual-basic .footer .contact-item:first-child {
    width: 23%;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .visual-basic .heading h2 {
    font-size: 28px;
  }
  .visual-basic .banner {
    background-image: url(/_public/images/visual-basic/banner-bg.png);
    background-size: 100% 100%;
    background-color: transparent;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  }
  .visual-basic .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 4rem;
  }
  .visual-basic .banner .logo-container .container .buttons {
    margin-top: 0;
  }
  .visual-basic .banner .logo-container .container .buttons .btn-white {
    display: flex;
    border: 1px solid #000000;
    border-radius: 100%;
    padding: 0.7rem;
    width: 43px;
    height: 43px;
    margin-right: 1.5rem;
  }
  .visual-basic .banner .logo-container .container .buttons .btn-white img {
    width: 100%;
    height: 100%;
  }
  .visual-basic .banner .menu,
  .visual-basic .banner .menu-toggle {
    display: none;
  }
  .visual-basic .banner .menu-links {
    width: 75%;
    position: relative;
    box-shadow: none;
  }
  .visual-basic .banner .menu-links ul {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }
  .visual-basic .banner .menu-links ul .links-li {
    border-bottom: none;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    margin-right: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .visual-basic .banner .menu-links ul .links-li::before {
    content: "•";
    position: absolute;
    color: transparent;
    text-shadow: transparent 0 0;
    font-size: 22px;
    transition: text-shadow 1s ease 0s, color 1s ease 0s;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
  }
  .visual-basic .banner .menu-links ul .links-li:hover::before {
    color: #FF3D3D;
    text-shadow: 10px 0 #613099, -10px 0 #613099;
  }
  .visual-basic .banner .menu-links ul .links-li:last-child {
    margin-right: 0;
    display: flex;
  }
  .visual-basic .banner .menu-links ul .links-li:last-child::before {
    content: none;
  }
  .visual-basic .banner .tka-logo {
    width: 230px;
  }
  .visual-basic .banner .banner-content {
    width: 47%;
  }
  .visual-basic .banner .banner-content h1 {
    font-size: 32px;
  }
  .visual-basic .banner .banner-content h1 img {
    width: 47px;
    height: 47px;
  }
  .visual-basic .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 48%;
    box-shadow: 4px 7px 22px rgba(0, 0, 0, 0.2);
    align-self: center;
  }
  .visual-basic .overview .overview-content {
    width: 61%;
    align-items: flex-start;
  }
  .visual-basic .overview .course-content {
    width: 35%;
    position: static;
    top: 0;
    align-self: center;
  }
  .visual-basic .outline {
    background-image: url(/_public/images/visual-basic/outline-bg.png);
    background-size: 100% 100%;
  }
  .visual-basic .outline .outline-list {
    max-height: 388px;
    z-index: 1;
  }
  .visual-basic .outline .input-list {
    justify-content: space-between;
    display: flex;
    flex-flow: wrap;
  }
  .visual-basic .outline .input-container {
    width: 48%;
  }
  .visual-basic .outline .input-container:last-child {
    width: 100%;
  }
  .visual-basic .course .course-item {
    width: 23%;
    margin-right: 1rem;
  }
  .visual-basic .course .course-item:nth-child(2n) {
    margin-right: 1rem;
  }
  .visual-basic .course .course-item:last-child {
    margin-right: 0;
  }
  .visual-basic .program .program-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .visual-basic .program .heading {
    align-items: flex-start;
  }
  .visual-basic .program .heading h2 {
    text-align: left;
  }
  .visual-basic .program .content {
    width: 55%;
  }
  .visual-basic .program .content p {
    text-align: left;
  }
  .visual-basic .program .buttons {
    align-self: flex-start;
  }
  .visual-basic .program .program-info {
    width: 35%;
    margin-top: 0;
  }
  .visual-basic .method .method-item {
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
  .visual-basic .method .method-item .image {
    width: 40%;
    margin-bottom: 0;
  }
  .visual-basic .method .method-item::before {
    content: '';
    position: absolute;
    width: 132px;
    height: 140px;
    background-color: #F5F5F5;
    border-top-left-radius: 100%;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: 1s all;
  }
  .visual-basic .method .method-item:hover::before {
    background-color: #8756BF;
  }
  .visual-basic .method .method-info {
    width: 59%;
  }
  .visual-basic .structure .structure-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .visual-basic .structure .structure-content {
    width: 49%;
  }
  .visual-basic .structure .structure-content .heading {
    align-items: flex-start;
  }
  .visual-basic .structure .structure-content .heading h2 {
    text-align: left;
  }
  .visual-basic .structure .structure-content p {
    text-align: left;
  }
  .visual-basic .structure .buttons {
    align-self: flex-start;
  }
  .visual-basic .structure .structure-info {
    width: 46%;
    margin-top: 0px;
  }
  .visual-basic .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .visual-basic .fact .fact-content {
    width: 50%;
  }
  .visual-basic .fact .fact-list {
    width: 42%;
    margin-top: 0;
  }
  .visual-basic .client .client-item {
    width: 85%;
    position: relative;
  }
  .visual-basic .client .client-item p {
    min-height: 225px;
  }
  .visual-basic .client .client-item::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/visual-basic/quote.svg);
    background-size: 100% 100%;
    width: 70px;
    height: 53px;
    top: 32px;
    left: 23px;
  }
  .visual-basic .choose .choose-container {
    width: 85%;
    margin: auto;
  }
  .visual-basic .choose .choose-container .heading {
    width: 70%;
  }
  .visual-basic .footer {
    background-image: url(/_public/images/visual-basic/footer-bg.png);
    background-size: 100% 100%;
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-color: transparent;
  }
  .visual-basic .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .visual-basic .footer .heading {
    width: 64%;
    margin-bottom: 0;
    align-items: flex-start;
  }
  .visual-basic .footer .heading h2,
  .visual-basic .footer .heading p {
    text-align: left;
  }
  .visual-basic .footer .buttons {
    width: 32%;
    justify-content: flex-end;
    align-self: flex-end;
  }
  .visual-basic .footer .contact-list {
    justify-content: space-between;
    width: 100%;
    margin-top: 2.5rem;
    border-top: 1px solid #F5F5F5;
  }
  .visual-basic .footer .contact-item {
    width: 30%;
  }
  .visual-basic .footer .contact-item .info {
    width: calc(100% - 60px);
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .visual-basic .heading h2 {
    font-size: 32px;
  }
  .visual-basic .banner .sticky .container {
    padding: 1rem 0;
    box-shadow: none;
  }
  .visual-basic .banner .banner-content {
    width: 45%;
  }
  .visual-basic .banner .banner-content h1 {
    font-size: 38px;
  }
  .visual-basic .banner .banner-info {
    align-self: flex-start;
  }
  .visual-basic .banner .heading h2 {
    letter-spacing: 2px;
  }
  .visual-basic .overview .course-content {
    width: 32%;
  }
  .visual-basic .course .course-item {
    width: 22%;
    margin-right: 2rem;
  }
  .visual-basic .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .visual-basic .program .content p {
    text-align: left;
  }
  .visual-basic .program .buttons {
    align-self: flex-start;
  }
  .visual-basic .method .method-content {
    width: 65%;
  }
  .visual-basic .method .method-item {
    width: 32%;
  }
  .visual-basic .method .method-item:nth-child(2) {
    margin-top: 0;
  }
  .visual-basic .method .method-info p {
    min-height: auto;
  }
  .visual-basic .structure .structure-info .image {
    width: 88%;
    margin: auto;
  }
  .visual-basic .fact {
    background-image: url(/_public/images/visual-basic/fact-bg.png), url(/_public/images/visual-basic/content-bg.png);
    background-size: 35% 79%,27% 88%;
    background-repeat: no-repeat;
    background-position: top right,top left;
  }
  .visual-basic .fact .fact-list {
    width: 32%;
    margin: 2rem 8rem 0 0;
  }
  .visual-basic .client .client-item p {
    min-height: 175px;
  }
  .visual-basic .choose .choose-container {
    width: 100%;
  }
  .visual-basic .choose .choose-item {
    width: 23%;
  }
  .visual-basic .footer {
    overflow: hidden;
  }
  .visual-basic .footer .footer-container {
    position: relative;
    z-index: 1;
  }
  .visual-basic .footer .footer-container::after,
  .visual-basic .footer .footer-container::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: transparent;
    border: 45px solid #f5f5f5;
    opacity: 0.1;
    animation: scale 2s linear infinite;
    z-index: -1;
  }
  .visual-basic .footer .footer-container::after {
    width: 118px;
    height: 125px;
    bottom: -100px;
    left: -25px;
  }
  .visual-basic .footer .footer-container::before {
    width: 150px;
    height: 150px;
    top: -137px;
    right: -50px;
  }
  .visual-basic .footer .contact-item {
    width: 24%;
  }
  .visual-basic .footer .contact-item:first-child {
    width: 15%;
  }
}
@media (min-width : 1500px) {
  .visual-basic .banner {
    background-image: linear-gradient(90deg, #613099 70%, #FFFFFF 30%);
  }
  .visual-basic .fact {
    background-image: none;
  }
  .visual-basic .footer {
    background-image: none;
    background-color: #613099;
  }
}
