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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 0 4px #ffffff;
  margin-left: 0;
}
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: #E43C31;
}
::-webkit-scrollbar-thumb {
  background: #191B32;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #040303;
  width: 100%;
  font-weight: 500;
}
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: #040303;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.java .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.java .buttons .btn-red,
.java .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  outline: 0;
  min-width: 160px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 1s all;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.java .buttons .btn-red::before,
.java .buttons .btn-white::before,
.java .buttons .btn-red::after,
.java .buttons .btn-white::after {
  content: '';
  background-color: #191B32;
  width: 25%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  z-index: -1;
}
.java .buttons .btn-red::before,
.java .buttons .btn-white::before {
  transform: scaleY(0.2);
  transition-delay: 0.3s;
}
.java .buttons .btn-red::after,
.java .buttons .btn-white::after {
  transform: scaleY(0.45);
  right: 25%;
  transition-delay: 0.2s;
}
.java .buttons .btn-red span,
.java .buttons .btn-white span {
  display: flex;
}
.java .buttons .btn-red span::before,
.java .buttons .btn-white span::before,
.java .buttons .btn-red span::after,
.java .buttons .btn-white span::after {
  content: '';
  background-color: #191B32;
  width: 25%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  z-index: -1;
}
.java .buttons .btn-red span::before,
.java .buttons .btn-white span::before {
  transform: scaleY(0.65);
  right: 50%;
  transition-delay: 0.1s;
}
.java .buttons .btn-red span::after,
.java .buttons .btn-white span::after {
  transform: scaleY(0.8);
  right: 75%;
}
.java .buttons .btn-red:hover::before,
.java .buttons .btn-white:hover::before,
.java .buttons .btn-red:hover::after,
.java .buttons .btn-white:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.java .buttons .btn-red:hover span::before,
.java .buttons .btn-white:hover span::before,
.java .buttons .btn-red:hover span::after,
.java .buttons .btn-white:hover span::after {
  opacity: 1;
  transform: scaleY(1);
}
.java .buttons .btn-red img,
.java .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  align-self: center;
}
.java .buttons .btn-red {
  background: #E43C31;
  color: #ffffff;
}
.java .buttons .btn-white {
  background-color: #ffffff;
  border: 1px solid #040303;
}
.java .buttons .btn-white::before,
.java .buttons .btn-white::after {
  background-color: #F5F5F5;
}
.java .buttons .btn-white span::before,
.java .buttons .btn-white span::after {
  background-color: #F5F5F5;
}
.java .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.java .heading h2 {
  width: 100%;
}
.java .heading p {
  margin-top: 0.8rem;
}
.java .center-heading {
  justify-content: center;
  align-items: center;
}
.java .center-heading h2,
.java .center-heading p {
  text-align: center;
}
.java .white-heading h2,
.java .white-heading p {
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
@keyframes snow {
  0% {
    fill-opacity: 1;
  }
  100% {
    fill-opacity: 0;
    transform: translateY(500px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.java .banner {
  flex-direction: column;
  padding-top: 1.5rem;
  border-bottom: 1px solid #DFD9D9;
}
.java .banner .container {
  height: 100%;
}
.java .banner .logo-container,
.java .banner .tka-logo {
  display: flex;
}
.java .banner .logo-container .container {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.java .banner .tka-logo {
  width: 185px;
}
.java .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.java .banner .menu {
  width: 20px;
  height: 22px;
  margin-left: auto;
}
.java .banner .menu img {
  width: 100%;
  height: 100%;
}
.java .banner .menu-toggle {
  color: #ffffff;
}
.java .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.java .banner .menu-links {
  position: fixed;
  background-color: #191B32;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  right: 0;
  top: 0;
  width: 0;
  z-index: 5;
}
.java .banner .menu-links li {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}
.java .banner .menu-links li:first-child {
  padding-top: 0;
}
.java .banner .menu-links li:nth-last-child(2) {
  padding-bottom: 0;
  border-bottom: none;
}
.java .banner .menu-links li:last-child {
  display: none;
}
.java .banner .active + .menu-links {
  display: flex;
  flex-direction: column;
  width: 85%;
  padding: 1rem;
}
.java .banner .active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.java .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  height: auto;
}
.java .banner .sticky-down {
  top: -100px;
}
.java .banner .banner-container,
.java .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.java .banner .banner-container {
  padding-top: 2rem;
}
.java .banner .banner-content h1 {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.java .banner .banner-content h1 span {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #E43C31;
  color: transparent;
  font-size: 58px;
}
.java .banner .banner-content h1 img {
  width: 60px;
  height: 60px;
  margin-right: 0.6rem;
  transform: translateY(10px);
}
.java .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.java .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.java .overview .overview-container,
.java .overview .overview-content,
.java .overview .key-content {
  display: flex;
  flex-direction: column;
}
.java .overview .overview-content p:nth-child(3) {
  margin-top: 0.6rem;
}
.java .overview .overview-content,
.java .overview .key-content {
  padding: 1.5rem 1rem;
  border: 1px solid #040303;
  border-radius: 20px;
}
.java .overview .overview-content .heading,
.java .overview .key-content .heading {
  margin-bottom: 0.5rem;
}
.java .overview .key-content {
  margin-top: 2rem;
  background-image: url(/_public/images/java-developer/overview-bg.png);
  background-size: 100% 100%;
  background-position: top right;
}
.java .overview .key-content ul li {
  margin-top: 1.3rem;
  padding-left: 1.5rem;
  position: relative;
}
.java .overview .key-content ul li::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  height: 0;
  width: 0;
  border-radius: 6px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #000000;
}
.java .course {
  background-color: #F5F5F5;
}
.java .course .course-container,
.java .course .course-list,
.java .course .course-item {
  display: flex;
  flex-direction: column;
}
.java .course .heading {
  margin-bottom: 0;
}
.java .course .heading p {
  margin: 0 0 0.2rem;
}
.java .course .heading p strong {
  color: #E43C31;
}
.java .course .course-item {
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #DFD9D9;
  margin-top: 2rem;
  width: 272px;
  align-self: center;
  background-image: url(/_public/images/java-developer/course-bg.png), url(/_public/images/java-developer/blue-bg.png);
  background-repeat: no-repeat;
  background-size: 35% 30%, 0 0;
  background-position: bottom right, top right;
  transition: 1s all;
}
.java .course .course-item:hover {
  background-size: 35% 30%, 40% 40%;
}
.java .course .course-item .icon {
  width: 56px;
  height: 56px;
}
.java .course .course-item h3 {
  font-size: 15px;
  margin: 0.8rem 0;
}
.java .course .course-item p {
  color: #b4b4b4;
  font-size: 12px;
}
.java .course .course-item .buttons {
  margin-top: 1rem;
}
.java .course .course-item .buttons .btn-red {
  min-width: 140px;
  font-size: 14px;
}
.java .course .course-item .buttons .btn-red img {
  width: 16px;
  height: 16px;
}
.java .method .method-container,
.java .method .method-list,
.java .method .method-item {
  display: flex;
  flex-direction: column;
}
.java .method .heading {
  margin-bottom: 0;
}
.java .method .method-item {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.java .method .method-item:nth-child(2) span {
  background-image: url(/_public/images/java-developer/instructor.png);
}
.java .method .method-item:nth-child(3) span {
  background-image: url(/_public/images/java-developer/paced.png);
}
.java .method .method-item:nth-child(4) span {
  background-image: url(/_public/images/java-developer/onsite.png);
}
.java .method .method-item span {
  display: flex;
  height: 135px;
  width: 100%;
  background-image: url(/_public/images/java-developer/classroom.png);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.java .method .method-item h3 {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-top: 1rem;
}
.java .method .method-item h3 img {
  height: 18px;
  width: 18px;
  margin-right: 0.8rem;
}
.java .usage {
  padding-top: 1rem;
}
.java .usage .usage-container,
.java .usage .usage-content,
.java .usage .usage-info {
  display: flex;
  flex-direction: column;
}
.java .usage .usage-content p:nth-child(3) {
  margin-top: 0.6rem;
}
.java .usage .usage-info {
  margin-top: 2rem;
  height: 100%;
}
.java .usage .usage-info span {
  display: flex;
  height: 100%;
}
.java .usage .usage-info span img {
  width: 100%;
  height: 100%;
}
.java .choose {
  background-color: #191B32;
  position: relative;
  z-index: 1;
}
.java .choose #particles1-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.java .choose .choose-container,
.java .choose .choose-content,
.java .choose .choose-list {
  display: flex;
  flex-direction: column;
}
.java .choose .choose-content .heading {
  margin-bottom: 0;
}
.java .choose .choose-content .buttons .btn-red:hover {
  box-shadow: 0 0 4px #ffffff;
}
.java .choose .choose-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  margin-top: 2rem;
  padding: 2.2rem 1.2rem;
}
.java .choose .choose-item h3 {
  font-size: 16px;
  line-height: 1.4;
  width: 66%;
}
.java .choose .choose-item img {
  height: 35px;
  width: 35px;
}
.java .choose .choose-item p {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 13px;
}
.java .role {
  padding-bottom: 1rem;
}
.java .role .role-container,
.java .role .role-content,
.java .role .role-info {
  display: flex;
  flex-direction: column;
}
.java .role .role-container {
  align-items: flex-start;
}
.java .role .role-content {
  width: 100%;
}
.java .role .role-content .heading {
  margin-bottom: 1rem;
}
.java .role .role-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.8rem;
  position: relative;
}
.java .role .role-content ul li::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0px;
  height: 18px;
  width: 20px;
  background-image: url(/_public/images/java-developer/square.svg);
  background-size: 100% 100%;
}
.java .role .role-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.java .role .role-info .image {
  display: flex;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 1rem;
}
.java .role .role-info .image img {
  height: 100%;
  width: 100%;
}
.java .fact .fact-container {
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.java .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.2rem;
  border-top: 1px solid #F5F5F5;
  padding-top: 1rem;
}
.java .fact .fact-item:nth-child(2) {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.java .fact .fact-item h3,
.java .fact .fact-item span {
  font-size: 30px;
  font-weight: 600;
}
.java .fact .fact-item p {
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
  width: 85%;
}
.java .benefit {
  background-color: #F5F5F5;
}
.java .benefit .benefit-container {
  align-items: flex-start;
}
.java .benefit .benefit-container,
.java .benefit .benefit-content,
.java .benefit .benefit-info {
  display: flex;
  flex-direction: column;
}
.java .benefit .benefit-content {
  width: 100%;
}
.java .benefit .benefit-content ul li {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  position: relative;
}
.java .benefit .benefit-content ul li::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 13px;
  background-image: url(/_public/images/java-developer/cube.png);
  background-size: 100% 100%;
  left: 0;
  top: 2px;
  animation: rotate 5s linear infinite;
}
.java .benefit .benefit-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.java .benefit .benefit-info span {
  display: flex;
  height: 100%;
}
.java .benefit .benefit-info span img {
  width: 100%;
  height: 100%;
}
.java .testimonial .testimonial-container,
.java .testimonial .testimonial-list,
.java .testimonial .content {
  display: flex;
  flex-direction: column;
}
.java .testimonial .testimonial-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #191B32;
  padding: 1rem;
  margin-right: auto;
  width: 95%;
  position: relative;
}
.java .testimonial .testimonial-item .client {
  display: flex;
  background-color: #3F4158;
  padding: 0.5rem;
  height: 65px;
  width: 65px;
  position: relative;
  z-index: 1;
}
.java .testimonial .testimonial-item .client::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0px;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #3F4158;
  z-index: -1;
}
.java .testimonial .testimonial-item .client img {
  width: 100%;
  height: 100%;
}
.java .testimonial .testimonial-item .content {
  width: calc(100% - 85px);
}
.java .testimonial .testimonial-item .content h3 {
  font-size: 16px;
  margin-bottom: 0.2rem;
}
.java .testimonial .testimonial-item .content .stars {
  width: 105px;
  height: 20px;
}
.java .testimonial .testimonial-item h3,
.java .testimonial .testimonial-item p {
  color: #ffffff;
}
.java .testimonial .testimonial-item p {
  margin-top: 1rem;
}
.java .testimonial .owl-dots {
  display: flex;
  width: 120px;
  margin-top: 2rem;
}
.java .testimonial .owl-dots .owl-dot {
  display: flex;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background-color: #b4b4b4;
  margin-right: 0.5rem;
}
.java .testimonial .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.java .testimonial .owl-dots .active {
  background-color: #E43C31;
}
.java .faq {
  padding-top: 0;
}
.java .faq .faq-container,
.java .faq .faq-list,
.java .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.java .faq .heading {
  margin-bottom: 0.6rem;
}
.java .faq .faq-item {
  margin-top: 1rem;
}
.java .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  border-radius: 8px;
  background-color: #F5F5F5;
  cursor: pointer;
}
.java .faq .faq-item .ques h3 {
  align-self: center;
  width: calc(100% - 35px);
  font-size: 14px;
}
.java .faq .faq-item .ques span {
  display: flex;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  padding: 0.3rem;
}
.java .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.java .faq .faq-item .ques span img:last-child {
  display: none;
}
.java .faq .faq-item .ans {
  display: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.java .faq .faq-item .ans::before {
  content: '';
  position: absolute;
  border: 1px solid #F5F5F5;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  left: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.java .faq .faq-item .ans p,
.java .faq .faq-item .ans li {
  font-size: 13px;
}
.java .faq .faq-item .ans ul {
  padding-left: 1rem;
}
.java .faq .faq-item .ans ul li {
  margin-top: 0.5rem;
  list-style: disc;
}
.java .faq .active .ques {
  background-color: #191B32;
}
.java .faq .active .ques h3 {
  color: #ffffff;
}
.java .faq .active .ques span img:first-child {
  display: none;
}
.java .faq .active .ques span img:last-child {
  display: flex;
}
.java .footer {
  background-color: #191B32;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.java .footer .svg-snowscene {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.java .footer .snow {
  fill: #ffffff;
  animation: 10s snow infinite ease-out;
}
.java .footer .snow:nth-child(2n) {
  animation-delay: 1.5s;
}
.java .footer .snow:nth-child(3n) {
  animation-delay: 2.3s;
  animation-duration: 3.3s;
}
.java .footer .snow:nth-child(4n) {
  animation-delay: 0.8s;
  animation-duration: 3.2s;
}
.java .footer .snow:nth-child(5n) {
  animation-delay: 2.8s;
}
.java .footer .footer-container,
.java .footer .footer-list,
.java .footer .form,
.java .footer .input-list,
.java .footer .content {
  display: flex;
  flex-direction: column;
}
.java .footer .footer-list .heading {
  margin-bottom: 0;
}
.java .footer .footer-list .footer-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #E43C31;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
}
.java .footer .footer-list .footer-item .icon {
  width: 33px;
  height: 33px;
}
.java .footer .footer-list .footer-item .content {
  width: calc(100% - 43px);
}
.java .footer .footer-list .footer-item .content h3,
.java .footer .footer-list .footer-item .content a {
  color: #ffffff;
}
.java .footer .footer-list .footer-item .content h3 {
  font-size: 15px;
}
.java .footer .footer-list .footer-item .content a {
  font-size: 11px;
  font-weight: 500;
}
.java .footer .footer-list .footer-item .content img {
  width: 120px;
  height: 20px;
  margin-top: 0.2rem;
}
.java .footer .form {
  margin-bottom: 0;
  margin-top: 2rem;
  border: 1px solid #ffffff;
  border-radius: 13px;
  padding: 1.5rem;
}
.java .footer .form .input-container {
  display: flex;
  margin-bottom: 1.2rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 0.4rem;
}
.java .footer .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.java .footer .form .input-container span img {
  height: 100%;
  width: 100%;
}
.java .footer .form .input-container span .red {
  display: none;
}
.java .footer .form .input-container input,
.java .footer .form .input-container textarea {
  width: 85%;
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 13px;
  color: #ffffff;
}
.java .footer .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.java .footer .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: rgba(255, 255, 255, 0.8);
}
.java .footer .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: rgba(255, 255, 255, 0.8);
}
.java .footer .form .input-container ::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.java .footer .form .input-error {
  border-bottom: 1px solid #ff0000;
}
.java .footer .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.java .footer .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.java .footer .form .input-error ::placeholder {
  color: #ff0000;
}
.java .footer .form .input-error span .white {
  display: none;
}
.java .footer .form .input-error span .red {
  display: flex;
}
.java .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.java .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.java .footer .form .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
  line-height: 1.5;
  font-weight: 500;
}
.java .footer .form .form-consent p,
.java .footer .form .form-consent a,
.java .footer .form .form-consent label {
  color: #ffffff;
}
.java .footer .form .form-consent p {
  font-size: 11px;
}
.java .footer .form .form-consent a {
  font-weight: 600;
  color: #E43C31;
}
.java .footer .form .consent-error,
.java .footer .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.java .footer .form .consent-error p,
.java .footer .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.java .footer .form .buttons .btn-red {
  min-width: 105px;
}
.java .footer .form .buttons .btn-red img {
  height: 16px;
  width: 16px;
}
.java .footer .form .buttons .btn-red:hover {
  box-shadow: 0 0 4px #ffffff;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .java .banner .banner-content h1 span {
    color: #E43C31;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .java .banner .logo-container .container {
    padding: 1rem 2rem;
  }
  .java .banner .active + .menu-links {
    width: 50%;
  }
  .java .banner .banner-info {
    display: none;
  }
  .java .overview .overview-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .java .overview .overview-content {
    width: 55%;
  }
  .java .overview .key-content {
    width: 42%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .java .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .java .course .course-item {
    width: 46%;
    margin-right: 2rem;
  }
  .java .course .course-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .java .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .java .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .java .method .method-item {
    width: 48%;
    padding: 0.5rem 0.5rem 1.5rem;
  }
  .java .method .method-item h3 {
    padding: 1rem 1.5rem 0;
    margin-top: 0;
  }
  .java .usage .usage-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .java .usage .usage-content {
    width: 48%;
  }
  .java .usage .usage-info {
    width: 46%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .java .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .java .choose .choose-item {
    width: 48%;
  }
  .java .choose .choose-item p {
    min-height: 100px;
  }
  .java .choose .choose-item h3 {
    min-height: 38px;
  }
  .java .role .role-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .java .role .role-content {
    width: 54%;
  }
  .java .role .role-info {
    width: 40%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .java .fact .heading {
    display: none;
  }
  .java .fact .fact-container {
    flex-flow: wrap;
    justify-content: space-between;
    padding: 2rem 3rem;
    position: relative;
  }
  .java .fact .fact-container::before,
  .java .fact .fact-container::after {
    content: '';
    position: absolute;
    height: 125px;
    width: 125px;
    background-size: 100% 100%;
    z-index: -1;
  }
  .java .fact .fact-container::before {
    top: 0;
    left: 0;
    background-image: url(/_public/images/java-developer/blue-bg.png);
    transform: rotate(-90deg);
  }
  .java .fact .fact-container::after {
    bottom: 0;
    right: 0;
    background-image: url(/_public/images/java-developer/red-layer.png);
  }
  .java .fact .fact-item {
    margin: 0;
    padding: 0;
    border-top: none;
    border-right: 1px solid #b4b4b4;
    width: 25%;
  }
  .java .fact .fact-item:last-child {
    border-right: 0;
  }
  .java .benefit .benefit-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .java .benefit .benefit-content {
    width: 52%;
  }
  .java .benefit .benefit-info {
    width: 42%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .java .testimonial .testimonial-item p {
    min-height: 268px;
  }
  .java .faq .faq-list {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .java .faq .faq-item {
    width: 47%;
  }
  .java .footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .java .footer .footer-list {
    width: 42%;
  }
  .java .footer .form {
    width: 50%;
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .java .buttons .btn-red,
  .java .buttons .btn-white {
    font-size: 16px;
  }
  .java .heading h2 {
    font-size: 28px;
  }
  .java .banner {
    background-image: url(/_public/images/java-developer/banner-bg.png);
    background-size: 50% 100%;
    background-position: right;
    background-repeat: no-repeat;
  }
  .java .banner .menu-links {
    display: flex;
    width: 78%;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .java .banner .menu,
  .java .banner .menu-toggle {
    display: none;
  }
  .java .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .java .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
    font-size: 15px;
    cursor: pointer;
    transition: 1s all;
    color: #000000;
    position: relative;
  }
  .java .banner ul .links-li::before,
  .java .banner ul .links-li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #E43C31;
    z-index: -1;
    transition: 1s all;
    opacity: 0;
  }
  .java .banner ul .links-li::before {
    bottom: 30%;
    left: 0;
  }
  .java .banner ul .links-li::after {
    top: 60%;
    left: 0;
  }
  .java .banner ul .links-li:hover::before {
    bottom: -2px;
    opacity: 1;
  }
  .java .banner ul .links-li:hover::after {
    top: -2px;
    opacity: 1;
  }
  .java .banner ul .links-li:nth-last-child(2) {
    display: none;
  }
  .java .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .java .banner ul .links-li:last-child::before,
  .java .banner ul .links-li:last-child::after {
    content: none;
  }
  .java .banner ul .buttons .btn-red,
  .java .banner ul .buttons .btn-white {
    min-width: 165px;
    min-height: 44px;
  }
  .java .banner ul .buttons .btn-white {
    margin-right: 1rem;
  }
  .java .banner .banner-container {
    padding-top: 4rem;
    flex-direction: row;
    align-items: center;
    position: relative;
  }
  .java .banner .banner-container::before {
    content: '';
    position: absolute;
    background-image: radial-gradient(#E43C31 0%, #ffffff 72%);
    width: 450px;
    height: 450px;
    left: -7%;
    top: -19%;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.2;
    animation: blink 2s linear infinite;
  }
  .java .banner .banner-content,
  .java .banner .banner-info {
    position: relative;
    z-index: 1;
  }
  .java .banner .banner-content::before,
  .java .banner .banner-info::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/java-developer/banner-grid.png);
    background-size: 100% 100%;
    width: 160px;
    height: 120PX;
    left: -50px;
    bottom: -40px;
    animation: blink 2s linear infinite;
    z-index: -1;
  }
  .java .banner .banner-content {
    width: 48%;
    margin-right: auto;
  }
  .java .banner .banner-content h1 {
    font-size: 42px;
  }
  .java .banner .banner-content h1 img {
    width: 82px;
    height: 82px;
  }
  .java .banner .banner-content h1 span {
    font-size: 85px;
  }
  .java .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
  }
  .java .overview .overview-container {
    align-items: center;
  }
  .java .overview .overview-content,
  .java .overview .key-content {
    padding: 2rem 1.8rem;
  }
  .java .overview .overview-content {
    width: 63%;
  }
  .java .overview .key-content {
    width: 34%;
    position: static;
  }
  .java .course .course-item {
    width: 31%;
  }
  .java .course .course-item h3 {
    min-height: 46px;
  }
  .java .course .course-item:nth-of-type(2n) {
    margin-right: 2rem;
  }
  .java .course .course-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .java .method .method-list {
    counter-reset: my-counter;
  }
  .java .method .method-item {
    width: 37%;
    margin-top: 4.5rem;
    position: relative;
  }
  .java .method .method-item h3 {
    font-size: 16px;
  }
  .java .method .method-item:hover::before {
    color: #ABABB3;
  }
  .java .method .method-item::before {
    position: absolute;
    counter-increment: my-counter;
    content: counter(my-counter);
    font-size: 165px;
    font-weight: 600;
    color: #F5F5F5;
    z-index: -1;
    left: -59px;
  }
  .java .method .method-item:first-child {
    margin-right: 10rem;
    transform: translate(54px, 0px);
  }
  .java .method .method-item:nth-child(2) {
    margin-right: auto;
  }
  .java .method .method-item:nth-child(3) {
    margin-left: auto;
  }
  .java .method .method-item:last-child {
    margin-left: 8rem;
  }
  .java .choose .choose-item p {
    min-height: 78px;
  }
  .java .choose .choose-item h3 {
    min-height: auto;
  }
  .java .role .role-info {
    top: 0;
    position: static;
  }
  .java .fact .fact-item h3,
  .java .fact .fact-item span {
    font-size: 42px;
  }
  .java .fact .fact-item p {
    font-size: 17px;
    width: 100%;
  }
  .java .testimonial .testimonial-container {
    flex-direction: row;
  }
  .java .testimonial .heading {
    width: 45%;
    padding: 2rem;
    margin-bottom: 0;
    border: 1px solid #DFD9D9;
  }
  .java .testimonial .testimonial-list {
    width: 55%;
  }
  .java .testimonial .testimonial-item {
    margin: auto;
    width: 100%;
    position: relative;
  }
  .java .testimonial .testimonial-item::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/java-developer/quotes.svg);
    background-size: 100% 100%;
    width: 90px;
    height: 68px;
    right: 28px;
    top: 20px;
  }
  .java .testimonial .testimonial-item p {
    min-height: 202px;
  }
  .java .testimonial .owl-dots {
    left: -76%;
    position: absolute;
    bottom: 30px;
    padding: 0;
  }
  .java .footer {
    background-image: url(/_public/images/java-developer/footer-bg.png);
    background-size: 100% 100%;
  }
  .java .footer .footer-list .footer-item {
    width: 85%;
  }
  .java .footer .footer-list .footer-item .content a {
    font-size: 14px;
  }
  .java .footer .form {
    width: 53%;
  }
  .java .footer .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .java .footer .form .input-container {
    width: 47%;
  }
  .java .footer .form .input-container:last-child {
    width: 100%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .java .heading h2 {
    font-size: 32px;
  }
  .java .banner {
    background-size: 45% 100%;
  }
  .java .banner .tka-logo {
    width: 225px;
  }
  .java .banner .sticky {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
  }
  .java .banner .sticky .container {
    box-shadow: none;
    padding: 1rem 0;
  }
  .java .banner ul .links-li:nth-last-child(2) {
    display: flex;
  }
  .java .banner .banner-content {
    width: 40%;
  }
  .java .banner .banner-content h1 {
    font-size: 45px;
    margin-bottom: 2rem;
  }
  .java .banner .banner-content h1 span {
    font-size: 120px;
  }
  .java .banner .banner-content h1 img {
    width: 105px;
    height: 105px;
  }
  .java .course .course-item {
    width: 23%;
  }
  .java .course .course-item:nth-of-type(3n) {
    margin-right: 2rem;
  }
  .java .course .course-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .java .method {
    background-image: url(/_public/images/java-developer/method-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .java .method .method-container {
    width: 90%;
    margin: auto;
  }
  .java .method .method-item {
    width: 40%;
  }
  .java .method .method-item span {
    height: 155px;
  }
  .java .usage .usage-info {
    position: static;
  }
  .java .choose {
    padding: 5rem 0;
  }
  .java .choose .choose-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .java .choose .choose-content {
    width: 46%;
    background-image: url(/_public/images/java-developer/choose.png);
    background-size: 100% 39%;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .java .choose .choose-list {
    width: 50%;
  }
  .java .choose .choose-item p {
    min-height: 118px;
  }
  .java .choose .choose-item:nth-child(odd) {
    transform: translateY(-30px);
  }
  .java .choose .choose-item img {
    height: 43px;
    width: 43px;
  }
  .java .role .role-content {
    width: 50%;
  }
  .java .role .role-info .image {
    padding: 2rem 2.8rem;
  }
  .java .fact .fact-container {
    padding: 4rem;
  }
  .java .fact .fact-container::before,
  .java .fact .fact-container::after {
    height: 135px;
    width: 135px;
  }
  .java .fact .fact-item {
    width: 25%;
  }
  .java .benefit .benefit-info {
    position: static;
  }
  .java .testimonial .heading {
    width: 42%;
  }
  .java .testimonial .testimonial-item {
    padding: 2.5rem 1.8rem 1.8rem 1.8rem;
  }
  .java .testimonial .testimonial-item .client {
    height: 70px;
    width: 75px;
  }
  .java .testimonial .testimonial-item .content {
    width: calc(100% - 98px);
  }
  .java .testimonial .testimonial-item .content h3 {
    font-size: 18px;
  }
  .java .testimonial .testimonial-item p {
    min-height: 151px;
  }
  .java .testimonial .owl-dots {
    left: -71%;
  }
  .java .faq .faq-container {
    width: 95%;
    margin: auto;
  }
  .java .faq .faq-item {
    width: 48%;
  }
  .java .footer .footer-container {
    align-items: center;
  }
  .java .footer .footer-list .footer-item {
    width: 75%;
  }
  .java .footer .form {
    width: 50%;
  }
}
