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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #ffffff;
  margin-left: 0;
  border: 1px solid #B8B8B8;
}
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: #003366;
}
::-webkit-scrollbar-thumb {
  background: #F26B31;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #070707;
  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: #070707;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.jira .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.jira .buttons .btn-orange,
.jira .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  outline: 0;
  min-width: 160px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.jira .buttons .btn-orange::before,
.jira .buttons .btn-white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #003366;
  transition: width 0.25s cubic-bezier(0.42, 0, 0.58, 1), height 0.5s cubic-bezier(0.42, 0, 0.58, 1), left 0.25s cubic-bezier(0.42, 0, 0.58, 1), top 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: -1;
}
.jira .buttons .btn-orange:hover,
.jira .buttons .btn-white:hover {
  box-shadow: 0 0 5px #ffffff;
}
.jira .buttons .btn-orange:hover::before,
.jira .buttons .btn-white:hover::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jira .buttons .btn-orange img,
.jira .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.jira .buttons .btn-orange {
  background-color: #F26B31;
  color: #ffffff;
}
.jira .buttons .btn-white {
  background-color: #ffffff;
  color: #000000;
}
.jira .buttons .btn-white::before {
  background-color: #F5F5F5;
}
.jira .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: auto;
  align-items: flex-start;
}
.jira .heading h2 {
  position: relative;
  width: auto;
  z-index: 1;
}
.jira .heading h2::before {
  content: '';
  position: absolute;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  left: -15px;
  top: -4px;
  background: linear-gradient(270deg, #F26B31, #003366);
  opacity: 0.2;
  z-index: -1;
  animation: move 12s linear infinite;
}
.jira .heading p {
  margin-top: 0.8rem;
}
.jira .center-heading {
  justify-content: center;
  align-items: center;
}
.jira .center-heading h2,
.jira .center-heading p {
  text-align: center;
}
.jira .white-heading h2,
.jira .white-heading p {
  color: #ffffff;
}
.jira .white-heading h2::before {
  background-image: linear-gradient(270deg, #ffffff, #d1e8ff);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes move {
  0% {
    left: 0%;
    transform: scale(0.7);
  }
  25% {
    left: 35%;
    transform: scale(1);
  }
  50% {
    left: 82%;
    transform: scale(0.7);
  }
  75% {
    left: 35%;
    transform: scale(1);
  }
  100% {
    left: 0%;
    transform: scale(0.7);
  }
}
.jira .banner {
  flex-direction: column;
  padding-top: 1.5rem;
  background-image: linear-gradient(270deg, #F26B31, #003366);
}
.jira .banner .logo-container,
.jira .banner .tka-logo,
.jira .banner .menu,
.jira .banner .menu-toggle {
  display: flex;
}
.jira .banner .logo-container {
  height: 100%;
}
.jira .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1rem;
}
.jira .banner .container {
  height: 100%;
}
.jira .banner .tka-logo {
  max-width: 200px;
}
.jira .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.jira .banner .menu {
  margin-left: auto;
}
.jira .banner .menu img {
  width: 22px;
  height: 23px;
}
.jira .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #003366;
}
.jira .banner .menu-toggle {
  font-weight: 500;
  color: #ffffff;
}
.jira .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.jira .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #ffffff;
  color: #ffffff;
}
.jira .banner ul .links-li:first-child {
  padding-top: 0;
}
.jira .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.jira .banner ul .links-li:last-child {
  display: none;
}
.jira .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.jira .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.jira .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  background-color: #003366;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 4px #ffffff;
}
.jira .banner .sticky .container {
  padding-bottom: 0 !important;
  border-bottom: none;
}
.jira .banner .sticky-down {
  top: -100px;
}
.jira .banner .banner-container,
.jira .banner .banner-content,
.jira .banner .banner-info {
  display: flex;
  flex-direction: column;
}
.jira .banner .banner-container {
  padding-top: 2rem;
  align-items: flex-start;
}
.jira .banner .banner-content {
  width: 100%;
}
.jira .banner .banner-content h1,
.jira .banner .banner-content p {
  color: #ffffff;
}
.jira .banner .banner-content h1 {
  font-size: 36px;
  line-height: 1.3;
}
.jira .banner .banner-content h1 img {
  width: 46px;
  height: 46px;
  transform: translateY(10px);
  margin-right: 0.5rem;
}
.jira .banner .banner-content h3 {
  margin: 1rem 0;
  color: #F26B31;
  font-size: 18px;
}
.jira .banner .banner-info {
  margin-top: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  width: 100%;
}
.jira .banner .banner-info h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.jira .banner .banner-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.jira .banner .banner-info span img {
  width: 100%;
  height: 100%;
}
.jira .overview .overview-container,
.jira .overview .overview-content,
.jira .overview .course-content {
  display: flex;
  flex-direction: column;
}
.jira .overview .overview-content {
  align-items: center;
}
.jira .overview .overview-content p {
  text-align: center;
}
.jira .overview .overview-content p:nth-last-child(2) {
  margin-top: 0.5rem;
}
.jira .overview .course-content {
  border-radius: 8px;
  margin-top: 3rem;
  background-image: linear-gradient(0deg, #ffffff 59%, #003366 40%);
  box-shadow: 0 0 0 12px #F5F5F5;
  padding: 1.5rem;
  width: 250px;
  align-self: center;
  position: relative;
}
.jira .overview .course-content h3 {
  font-size: 20px;
  color: #ffffff;
}
.jira .overview .course-content span {
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  padding: 0.5rem;
  position: absolute;
  right: 20px;
  top: 80px;
}
.jira .overview .course-content span img {
  width: 100%;
  height: 100%;
}
.jira .overview .course-content p {
  margin-top: 0.2rem;
}
.jira .overview .course-content p:nth-last-child(3) {
  margin-top: 3rem;
}
.jira .feature {
  background-color: rgba(245, 245, 245, 0.5);
}
.jira .feature .feature-container,
.jira .feature .feature-content,
.jira .feature .feature-info {
  display: flex;
  flex-direction: column;
}
.jira .feature .feature-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.8rem;
}
.jira .feature .feature-content li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/jira-masterclass/box.svg);
  background-size: 100% 100%;
  width: 11px;
  height: 11px;
  left: 0;
  top: 4px;
  animation: 4s rotate linear infinite;
}
.jira .feature .feature-info {
  height: 100%;
  margin-top: 2rem;
}
.jira .feature .feature-info span {
  display: flex;
  height: 100%;
}
.jira .feature .feature-info span img {
  width: 100%;
  height: 100%;
}
.jira .fact {
  background-color: #003366;
}
.jira .fact .fact-container,
.jira .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.jira .fact .heading {
  margin-bottom: 0;
}
.jira .fact .fact-item {
  display: flex;
  margin-top: 2rem;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.jira .fact .fact-item .icon {
  display: flex;
  padding: 0.7rem;
  border-radius: 50px;
  background-color: #ffffff;
  border: 1px dotted #F26B31;
  box-shadow: 0px 0px 0px 5px #A0AFBE;
  width: 46px;
  height: 46px;
  margin-right: 1rem;
}
.jira .fact .fact-item .icon img {
  width: 100%;
  height: 100%;
}
.jira .fact .fact-item p {
  color: #ffffff;
  margin-top: 0.8rem;
  text-align: center;
  font-size: 16px;
}
.jira .fact .fact-count {
  display: flex;
  color: #ffffff;
  width: 35%;
}
.jira .fact .fact-count span,
.jira .fact .fact-count h4 {
  font-size: 30px;
  font-weight: 600;
}
.jira .method .method-container,
.jira .method .method-list,
.jira .method .method-content {
  display: flex;
  flex-direction: column;
}
.jira .method .heading {
  margin-bottom: 0;
}
.jira .method .method-item {
  display: flex;
  margin-top: 2rem;
}
.jira .method .method-content {
  background-color: #ffffff;
  padding: 1.6rem 1rem 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: 1s all;
  width: 100%;
}
.jira .method .method-content:hover {
  background-color: #003366;
  transition: 1s all;
}
.jira .method .method-content:hover h3,
.jira .method .method-content:hover p {
  color: #ffffff;
}
.jira .method .method-content:hover a {
  background-color: #ffffff;
}
.jira .method .method-content:hover a img:first-child {
  display: none;
}
.jira .method .method-content:hover a img:last-child {
  display: flex;
}
.jira .method .method-content h3 {
  font-size: 16px;
}
.jira .method .method-content p {
  margin: 0.5rem 0 1rem;
  font-size: 13px;
}
.jira .method .method-content a {
  display: flex;
  align-self: flex-end;
  height: 32px;
  width: 50px;
  padding: 0.6rem;
  background-color: #F26B31;
  transform: translate(16px, 0);
}
.jira .method .method-content a img {
  height: 100%;
  width: 100%;
}
.jira .method .method-content a img:last-child {
  display: none;
}
.jira .choose {
  background-color: #F5F5F5;
}
.jira .choose .choose-container,
.jira .choose .choose-list,
.jira .choose .choose-content {
  display: flex;
  flex-direction: column;
}
.jira .choose .choose-img {
  display: flex;
  margin-top: 2rem;
}
.jira .choose .badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.jira .choose .badge h3 {
  width: calc(100% - 66px);
}
.jira .choose .badge h3 span {
  color: #003366;
  font-size: 24px;
}
.jira .choose .reward {
  height: 50px;
  width: 50px;
}
.jira .choose .choose-content .heading {
  margin-bottom: 0;
}
.jira .choose .choose-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  margin-top: 2rem;
  padding: 2rem 1.2rem;
}
.jira .choose .choose-item span {
  display: flex;
  height: 70px;
  width: 70px;
  padding: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.jira .choose .choose-item span img {
  height: 100%;
  width: 100%;
}
.jira .choose .choose-item h3 {
  width: calc(100% - 88px);
  font-size: 15px;
}
.jira .choose .choose-item p {
  margin-top: 1.5rem;
  font-size: 13px;
}
.jira .scheme .scheme-container,
.jira .scheme .scheme-content,
.jira .scheme .scheme-img {
  display: flex;
  flex-direction: column;
}
.jira .scheme .scheme-container {
  align-items: flex-start;
}
.jira .scheme .scheme-content {
  width: 100%;
}
.jira .scheme .scheme-content h3 {
  margin-top: 0.5rem;
  font-size: 16px;
}
.jira .scheme .scheme-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.jira .scheme .scheme-content ul li::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-image: url(/_public/images/jira-masterclass/check.svg);
  background-size: 100% 100%;
}
.jira .scheme .scheme-img {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.jira .scheme .scheme-img .heading {
  margin-bottom: 0;
}
.jira .scheme .scheme-img .heading p {
  margin-top: 0.2rem;
}
.jira .scheme .scheme-img .img {
  display: flex;
  height: 100%;
}
.jira .scheme .scheme-img .img img {
  height: 100%;
  width: 100%;
}
.jira .user {
  background-color: #003366;
}
.jira .user .user-container,
.jira .user .user-content,
.jira .user .form,
.jira .user .input-list {
  display: flex;
  flex-direction: column;
}
.jira .user .user-content {
  align-items: center;
  background-color: #F5F5F5;
  justify-content: flex-end;
  padding: 1.5rem;
  background-image: url(/_public/images/jira-masterclass/user.png);
  background-size: 100% 50%;
  background-repeat: no-repeat;
  height: 400px;
}
.jira .user .user-content .heading {
  margin-bottom: 1rem;
}
.jira .user .user-content .heading h2::before {
  content: none;
}
.jira .user .user-content .buttons {
  margin-top: 0;
}
.jira .user .form {
  margin-bottom: 0;
  padding: 1rem;
  margin-top: 2rem;
  background-color: #ffffff;
}
.jira .user .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-between;
  padding: 0.9rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.jira .user .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.jira .user .form .input-container span img {
  height: 100%;
  width: 100%;
}
.jira .user .form .input-container span .red {
  display: none;
}
.jira .user .form .input-container input,
.jira .user .form .input-container textarea {
  width: 85%;
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
}
.jira .user .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.jira .user .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: rgba(7, 7, 7, 0.5);
}
.jira .user .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: rgba(7, 7, 7, 0.5);
}
.jira .user .form .input-container ::placeholder {
  color: rgba(7, 7, 7, 0.5);
}
.jira .user .form .input-error {
  box-shadow: 0 1px 3px #ff0000;
}
.jira .user .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.jira .user .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.jira .user .form .input-error ::placeholder {
  color: #ff0000;
}
.jira .user .form .input-error span .white {
  display: none;
}
.jira .user .form .input-error span .red {
  display: flex;
}
.jira .user .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.jira .user .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.jira .user .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;
}
.jira .user .form .form-consent p {
  font-size: 12px;
}
.jira .user .form .form-consent a {
  font-weight: 600;
  color: #F26B31;
}
.jira .user .form .consent-error,
.jira .user .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.jira .user .form .consent-error p,
.jira .user .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 12px;
}
.jira .user .form .buttons {
  align-self: center;
}
.jira .user .form .buttons .btn-orange {
  min-width: 110px;
}
.jira .user .form .buttons .btn-orange img {
  height: 16px;
  width: 16px;
}
.jira .review {
  padding-bottom: 0;
}
.jira .review .review-container,
.jira .review .review-list,
.jira .review .review-item {
  display: flex;
  flex-direction: column;
}
.jira .review .review-list {
  position: relative;
}
.jira .review .review-item {
  border: 2px solid #003366;
  padding: 4rem 1rem 1rem;
  border-radius: 4px;
  width: 95%;
  margin: 3rem auto 2rem;
}
.jira .review .review-item .quote {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #000000;
  padding: 0.6rem;
  transform: translateY(-20px);
  background-color: #ffffff;
}
.jira .review .review-item .quote img {
  width: 100%;
  height: 100%;
}
.jira .review .review-item h3 {
  text-align: right;
  margin-top: 0.5rem;
  font-size: 16px;
}
.jira .review .review-item .author {
  display: flex;
  border: 1px solid #003366;
  border-radius: 3px;
  width: 100px;
  height: 90px;
  padding: 0.6rem;
  position: absolute;
  top: 8px;
  background-color: #ffffff;
}
.jira .review .review-item .author img {
  width: 100%;
  height: 100%;
}
.jira .review .owl-nav {
  display: none;
  width: 80px;
  justify-content: space-between;
}
.jira .review .owl-nav .owl-prev,
.jira .review .owl-nav .owl-next {
  display: flex;
  width: 30px;
  height: 20px;
  background-image: url(/_public/images/jira-masterclass/nav-arrow.svg);
  background-size: 100% 100%;
  opacity: 0.7;
}
.jira .review .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.jira .review .owl-nav .btn-active {
  opacity: 1;
}
.jira .review .owl-dots {
  display: flex;
  width: 175px;
  justify-content: center;
  margin: auto;
}
.jira .review .owl-dots .owl-dot {
  display: flex;
  width: 24px;
  height: 6px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin-right: 0.3rem;
}
.jira .review .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.jira .review .owl-dots .owl-dot.active {
  background-color: #003366;
}
.jira .faq .faq-container,
.jira .faq .faq-list,
.jira .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.jira .faq .heading {
  margin-bottom: 0.5rem;
}
.jira .faq .faq-item {
  margin-top: 1rem;
}
.jira .faq .faq-item .ques {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid #F26B31;
  background-color: #F5F5F5;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}
.jira .faq .faq-item .ques .mark {
  display: flex;
  height: 18px;
  width: 18px;
}
.jira .faq .faq-item .ques .mark img {
  width: 100%;
  height: 100%;
}
.jira .faq .faq-item .ques .mark img:last-child {
  display: none;
}
.jira .faq .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 58px);
}
.jira .faq .faq-item .ques .icon {
  display: flex;
  width: 20px;
  height: 20px;
}
.jira .faq .faq-item .ques .icon img {
  width: 100%;
  height: 100%;
}
.jira .faq .faq-item .ques .icon img:last-child {
  display: none;
}
.jira .faq .faq-item .ans {
  padding: 1rem;
  display: none;
}
.jira .faq .faq-item .ans p,
.jira .faq .faq-item .ans li {
  font-size: 13px;
}
.jira .faq .faq-item .ans ul {
  padding-left: 1rem;
}
.jira .faq .faq-item .ans ul li {
  margin-top: 0.5rem;
  list-style: disc;
}
.jira .faq .faq-item.active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.jira .faq .faq-item.active .ques {
  background-image: linear-gradient(270deg, #F26B31, #003366);
}
.jira .faq .faq-item.active .ques h3,
.jira .faq .faq-item.active .ques span {
  color: #ffffff;
}
.jira .faq .faq-item.active .ques .mark img:first-child {
  display: none;
}
.jira .faq .faq-item.active .ques .mark img:last-child {
  display: flex;
}
.jira .faq .faq-item.active .ques .icon img:first-child {
  display: none;
}
.jira .faq .faq-item.active .ques .icon img:last-child {
  display: flex;
}
.jira .footer {
  background-color: #003366;
}
.jira .footer .footer-container,
.jira .footer .info {
  display: flex;
  flex-direction: column;
}
.jira .footer .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jira .footer .contact-item:nth-last-child(2) {
  margin-top: 1.5rem;
}
.jira .footer .contact-item span {
  display: flex;
  width: 46px;
  height: 45px;
  background-color: #F26B31;
  padding: 0.5rem;
  border-radius: 3px;
}
.jira .footer .contact-item span img {
  width: 100%;
  height: 100%;
}
.jira .footer .contact-item .info {
  width: calc(100% - 60px);
}
.jira .footer .contact-item .info h3,
.jira .footer .contact-item .info a {
  color: #ffffff;
}
.jira .footer .contact-item .info h3 {
  font-size: 14px;
}
.jira .footer .contact-item .info a {
  font-size: 11px;
  border-top: 1px solid #ffffff;
  margin-top: 0.2rem;
  padding-top: 0.2rem;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .jira .banner .menu.active + .menu-links {
    width: 50%;
  }
  .jira .banner .sticky {
    padding: 1rem 2rem !important;
  }
  .jira .banner .banner-info {
    display: none;
  }
  .jira .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .jira .overview .overview-content {
    align-items: flex-start;
    width: 52%;
  }
  .jira .overview .overview-content p,
  .jira .overview .overview-content h2 {
    text-align: left;
  }
  .jira .overview .course-content {
    width: 40%;
    align-self: flex-start;
    position: sticky;
    top: 60px;
  }
  .jira .feature .feature-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .jira .feature .feature-content {
    width: 48%;
  }
  .jira .feature .feature-info {
    width: 45%;
    position: sticky;
    top: 47px;
    margin-top: 0;
  }
  .jira .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .jira .fact .fact-item {
    width: 45%;
  }
  .jira .method .method-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .jira .method .method-item {
    width: 47%;
  }
  .jira .method .method-item .method-content p {
    min-height: 65px;
  }
  .jira .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .jira .choose .choose-item {
    width: 47%;
  }
  .jira .choose .choose-item:nth-child(3) p {
    min-height: 100px;
  }
  .jira .choose .choose-img {
    display: flex;
    width: 80%;
    align-self: center;
    height: 550px;
    background-image: url(/_public/images/jira-masterclass/choose.png), url(/_public/images/jira-masterclass/badge.png);
    background-size: 70% 80%, 75% 92%;
    background-repeat: no-repeat;
    background-position: bottom right, top left;
    padding: 2.8rem;
  }
  .jira .choose .badge {
    align-self: flex-end;
    padding: 1.5rem;
    width: 68%;
  }
  .jira .choose .reward {
    height: 55px;
    width: 55px;
  }
  .jira .choose .content span {
    font-size: 24px;
  }
  .jira .choose .content h3,
  .jira .choose .content p {
    font-size: 20px;
    font-weight: 600;
  }
  .jira .scheme .scheme-img {
    width: 80%;
    align-self: center;
  }
  .jira .user .user-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .jira .user .user-content {
    width: 45%;
    height: 360px;
    position: sticky;
    top: 60px;
  }
  .jira .user .form {
    width: 50%;
    margin-top: 0;
  }
  .jira .review .review-item p {
    min-height: 264px;
  }
  .jira .faq .faq-list {
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .jira .faq .faq-item {
    width: 48%;
  }
  .jira .footer .footer-container {
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .jira .footer .heading {
    width: 100%;
  }
  .jira .footer .contact-item {
    width: 37%;
  }
  .jira .footer .contact-item:nth-last-child(2) {
    width: 20%;
    margin-top: 0;
  }
  .jira .footer .buttons {
    width: 39%;
    margin-top: 0;
    justify-content: flex-end;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .jira .buttons .btn-orange,
  .jira .buttons .btn-white {
    font-size: 16px;
  }
  .jira .heading h2 {
    font-size: 28px;
  }
  .jira .banner {
    background-image: url(/_public/images/jira-masterclass/banner-bg.png);
    background-size: 100% 100%;
  }
  .jira .banner .logo-container .container {
    border-bottom: none;
    padding-bottom: 0;
  }
  .jira .banner .tka-logo {
    max-width: 220px;
  }
  .jira .banner .menu-links {
    width: 80%;
    display: flex;
    position: relative;
    background-color: transparent;
  }
  .jira .banner .menu,
  .jira .banner .menu-toggle {
    display: none;
  }
  .jira .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .jira .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.3rem;
    padding: 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    transition: 1s all;
  }
  .jira .banner ul .links-li::before,
  .jira .banner ul .links-li::after {
    transition: all 300ms ease-in-out;
    color: #F26B31;
    opacity: 0;
    position: absolute;
    top: 0;
    font-size: 16px;
  }
  .jira .banner ul .links-li::before {
    content: '[';
    left: 15px;
  }
  .jira .banner ul .links-li::after {
    content: ']';
    right: 15px;
  }
  .jira .banner ul .links-li:hover {
    color: #F26B31;
  }
  .jira .banner ul .links-li:hover::before,
  .jira .banner ul .links-li:hover::after {
    opacity: 1;
  }
  .jira .banner ul .links-li:hover::before {
    left: -12px;
  }
  .jira .banner ul .links-li:hover::after {
    right: -12px;
  }
  .jira .banner ul .links-li:nth-child(5) {
    display: none;
  }
  .jira .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .jira .banner ul .links-li:last-child::before,
  .jira .banner ul .links-li:last-child::after {
    content: none;
  }
  .jira .banner .menu-links .buttons .btn-orange,
  .jira .banner .menu-links .buttons .btn-white {
    min-width: 167px;
  }
  .jira .banner .menu-links .buttons .btn-orange {
    background-color: transparent;
    border: 1px solid #ffffff;
  }
  .jira .banner .menu-links .buttons .btn-white {
    margin-right: 1.3rem;
  }
  .jira .banner .banner-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .jira .banner .banner-content {
    width: 48%;
  }
  .jira .banner .banner-content h3 {
    font-size: 20px;
  }
  .jira .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
  }
  .jira .overview .overview-container {
    border: 2px solid #003366;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  }
  .jira .overview .overview-content {
    width: 60%;
  }
  .jira .overview .course-content {
    width: 32%;
    margin-top: 0;
    align-self: center;
    position: relative;
    top: 0;
    padding: 3rem 1.5rem;
  }
  .jira .overview .course-content span {
    width: 74px;
    height: 74px;
    padding: 0.7rem;
    top: 104px;
  }
  .jira .overview .course-content p:nth-last-child(3) {
    margin-top: 4rem;
  }
  .jira .feature .feature-content {
    width: 53%;
  }
  .jira .feature .feature-info {
    width: 40%;
    position: static;
    top: 0;
  }
  .jira .method .method-item {
    background-size: 70% 100%;
    padding: 2.5rem 0;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
    align-items: center;
    justify-content: flex-end;
  }
  .jira .method .method-item:first-child {
    background-image: url(/_public/images/jira-masterclass/classroom.png);
  }
  .jira .method .method-item:nth-child(2) {
    background-image: url(/_public/images/jira-masterclass/instructor.png);
  }
  .jira .method .method-item:nth-child(3) {
    background-image: url(/_public/images/jira-masterclass/paced.png);
  }
  .jira .method .method-item:last-child {
    background-image: url(/_public/images/jira-masterclass/onsite.png);
  }
  .jira .method .method-content {
    width: 70%;
  }
  .jira .choose .choose-img {
    width: 60%;
  }
  .jira .choose .choose-content {
    width: 92%;
    margin: auto;
  }
  .jira .choose .choose-item {
    padding: 2.2rem 1.8rem;
  }
  .jira .choose .choose-item:nth-child(3) p {
    min-height: 92px;
  }
  .jira .scheme .scheme-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .jira .scheme .scheme-content {
    width: 46%;
  }
  .jira .scheme .scheme-img {
    width: 47%;
    margin-top: 0;
  }
  .jira .user .user-container {
    position: relative;
    justify-content: flex-end;
  }
  .jira .user .user-content {
    background-size: 100% 60%;
    width: 36%;
    height: 475px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .jira .user .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .jira .user .form {
    width: 75%;
    padding: 3rem 4rem 2.5rem 10rem;
  }
  .jira .user .form .input-container {
    width: 48%;
  }
  .jira .user .form .input-container:last-child {
    width: 100%;
  }
  .jira .review .heading {
    width: 65%;
    align-self: center;
  }
  .jira .review .review-item {
    width: 85%;
    margin: 1.5rem auto 2rem 0;
    padding: 0rem 4rem 1.5rem 1.5rem;
  }
  .jira .review .review-item .author {
    height: 100px;
    width: 110px;
    right: 4%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .jira .review .review-item .quote {
    display: flex;
  }
  .jira .review .review-item p {
    min-height: 300px;
  }
  .jira .review .owl-nav {
    display: flex;
    position: absolute;
    right: 2%;
    top: -20%;
  }
  .jira .fact .fact-list {
    justify-content: space-between;
  }
  .jira .fact .heading {
    display: none;
  }
  .jira .fact .fact-item {
    width: 23%;
    margin-top: 0;
  }
  .jira .footer {
    background-image: url(/_public/images/jira-masterclass/footer-bg.png);
    background-size: 100% 100%;
  }
  .jira .footer .contact-item {
    width: 33%;
  }
  .jira .footer .contact-item .info h3 {
    font-size: 15px;
  }
  .jira .footer .contact-item .info a {
    font-size: 14px;
  }
  .jira .footer .contact-item:nth-last-child(2) {
    width: 17%;
  }
  .jira .footer .buttons {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .jira .heading h2 {
    font-size: 32px;
  }
  .jira .banner .tka-logo {
    max-width: 245px;
  }
  .jira .banner .sticky {
    padding: 1rem 0 !important;
  }
  .jira .banner ul .links-li:nth-child(5) {
    display: flex;
  }
  .jira .banner .banner-container {
    padding-top: 3rem;
  }
  .jira .banner .banner-content h1 {
    font-size: 70px;
    line-height: 1.1;
  }
  .jira .banner .banner-content h1 img {
    width: 70px;
    height: 70px;
  }
  .jira .overview .overview-content {
    width: 65%;
  }
  .jira .overview .course-content {
    width: 26%;
  }
  .jira .method .method-item {
    background-size: 65% 100%;
  }
  .jira .method .method-content {
    width: 50%;
  }
  .jira .fact .fact-item {
    width: 20%;
    padding: 1.5rem;
  }
  .jira .choose {
    background-color: transparent;
    background-image: linear-gradient(90deg, #ffffff 28%, #F5F5F5 28%);
  }
  .jira .choose .choose-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .jira .choose .choose-img {
    width: 44%;
  }
  .jira .choose .badge {
    width: 85%;
  }
  .jira .choose .choose-item:nth-child(3) p {
    min-height: 162px;
  }
  .jira .choose .choose-content {
    width: 50%;
    margin: 0;
  }
  .jira .scheme .scheme-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .jira .scheme .scheme-content ul li {
    width: 48%;
  }
  .jira .user .user-content {
    width: 33%;
  }
  .jira .review .review-item p {
    min-height: 225px;
  }
  .jira .footer .contact-item {
    width: 27%;
  }
  .jira .footer .contact-item:nth-last-child(2) {
    width: 14%;
  }
  .jira .footer .buttons {
    width: 26%;
  }
}
