@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: black;
  font-weight: 700;
  font-size: 10px;
}
input[type="checkbox"]:checked:before {
  content: "\2713";
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  min-width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 6px 8px 0 0;
  background-color: white;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.102);
}
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: white;
}
::-webkit-scrollbar-thumb {
  background: black;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: "Poppins";
}
ul,
li,
p {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  color: black;
  font-size: 14px;
}
ul,
li {
  padding: 0;
  list-style: none;
}
strong,
b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
p,
ul {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
  padding: 0;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.istqb-main .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.istqb-main .heading p {
  margin-top: 1rem;
}
.istqb-main .heading h2 {
  width: 100%;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 700;
}
.istqb-main .center-heading {
  justify-content: center;
  align-items: center;
}
.istqb-main .center-heading h2,
.istqb-main .center-heading p {
  text-align: center;
}
.istqb-main .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.istqb-main .buttons .btn-white,
.istqb-main .buttons .btn-purple {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  min-width: 160px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.istqb-main .buttons .btn-white img,
.istqb-main .buttons .btn-purple img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.istqb-main .buttons .btn-white {
  background-color: white;
  color: black;
  border: 1px solid #6135CE;
}
.istqb-main .buttons .btn-purple {
  background-color: #6135CE;
}
.istqb-main .banner {
  padding-top: 1.2rem;
  flex-direction: column;
}
.istqb-main .banner .logo-container,
.istqb-main .banner .menu,
.istqb-main .banner .menu-toggle,
.istqb-main .banner .tka-logo {
  display: flex;
}
.istqb-main .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.istqb-main .banner .logo-container .tka-logo img,
.istqb-main .banner .logo-container .menu img {
  width: 100%;
  height: 100%;
}
.istqb-main .banner .logo-container .tka-logo {
  max-width: 242px;
}
.istqb-main .banner .logo-container .menu {
  height: 19px;
  width: 32px;
}
.istqb-main .banner .logo-container .menu-links {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  padding: 1rem;
  width: 80%;
  transition: 1s all;
  transform: translateX(100%);
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.istqb-main .banner .logo-container .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.istqb-main .banner .logo-container .menu-links .menu-toggle img {
  width: 23px;
  height: 14px;
  margin-right: 2px;
}
.istqb-main .banner .logo-container .menu-links ul li {
  border-bottom: 1px dashed black;
  padding: 10px;
}
.istqb-main .banner .logo-container .menu-links ul li a {
  font-weight: 500;
}
.istqb-main .banner .logo-container .menu-links ul li:nth-child(5) {
  border: none;
  padding-bottom: 0px;
}
.istqb-main .banner .logo-container .menu-links ul li:last-child {
  display: none;
}
.istqb-main .banner .logo-container .active + .menu-links {
  transform: translateX(0);
}
.istqb-main .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  z-index: 5;
  box-shadow: 0 0 10px grey;
  background-color: white;
  transition: 1s all;
  border-bottom: none;
}
.istqb-main .banner .sticky-down {
  top: -100px;
}
.istqb-main .banner .banner-info,
.istqb-main .banner .banner-content,
.istqb-main .banner .banner-list,
.istqb-main .banner .banner-item,
.istqb-main .banner .banner-container {
  display: flex;
  flex-direction: column;
}
.istqb-main .banner .banner-container {
  margin-top: 3rem;
}
.istqb-main .banner .banner-content > p {
  line-height: 27px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, #0D0C52 0%, #1A1973 100%);
  border-image-slice: 1;
  padding-left: 1rem;
}
.istqb-main .banner .banner-content h1 {
  margin-bottom: 1.2rem;
  font-size: 24px;
}
.istqb-main .banner .banner-content h1 span {
  background-color: #1A1973;
  color: white;
  border-radius: 10px;
  padding: 6px 10px;
}
.istqb-main .banner .banner-content ul li {
  font-weight: 600;
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.istqb-main .banner .banner-content ul li::before {
  content: "";
  background-image: url(/_public/images/istqb-new/check.svg);
  background-size: 100% 100%;
  min-width: 23px;
  height: 20px;
  margin-right: 8px;
}
.istqb-main .banner .info-detail {
  display: flex;
  border: 1px solid #d7d7d7;
  width: fit-content;
  border-radius: 50px;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.istqb-main .banner .info-detail p {
  font-size: 16px;
  font-weight: 500;
}
.istqb-main .banner .info-detail b {
  margin-right: 3px;
}
.istqb-main .banner .banner-item {
  align-items: flex-start;
  position: relative;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.102);
  padding: 1rem;
  margin-top: 1.2rem;
  border-radius: 20px;
  background-color: white;
}
.istqb-main .banner .banner-item span {
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 22px;
}
.istqb-main .banner .banner-item span img {
  height: 100%;
  width: 100%;
}
.istqb-main .banner .banner-item strong {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.502);
}
.istqb-main .banner .banner-item b {
  font-size: 18px;
  margin: 5px 0;
}
.istqb-main .aim .aim-container,
.istqb-main .aim .aim-detail,
.istqb-main .aim .aim-info {
  display: flex;
  flex-direction: column;
}
.istqb-main .aim .heading {
  margin-bottom: 2rem;
}
.istqb-main .aim .aim-info {
  background-image: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(231, 231, 231, 0.4) 100%);
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 2rem;
}
.istqb-main .aim .aim-info h3 {
  font-size: 18px;
}
.istqb-main .aim .aim-info ul li {
  font-size: 14px;
  margin-top: 1rem;
  display: flex;
}
.istqb-main .aim .aim-info ul li:before {
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 2px 8px 0 0;
}
.istqb-main .aim .aim-info:first-of-type ul li::before {
  content: "";
  background-image: url(/_public/images/istqb-new/cross.svg);
  background-color: #F44336;
  background-size: 13px 8px;
}
.istqb-main .aim .aim-info:last-of-type {
  margin-top: 1rem;
}
.istqb-main .aim .aim-info:last-of-type ul li::before {
  content: "";
  background-image: url(/_public/images/istqb-new/right.svg);
  background-color: #00BA00;
  background-size: 10px 7px;
}
.istqb-main .course .course-container,
.istqb-main .course .course-list,
.istqb-main .course .course-item,
.istqb-main .course .course-detail {
  display: flex;
  flex-direction: column;
}
.istqb-main .course .heading {
  margin-bottom: 0px;
}
.istqb-main .course .course-list {
  counter-reset: content;
}
.istqb-main .course .course-item {
  border: 1px solid #d7d7d7;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.istqb-main .course .course-item h3 {
  font-size: 16px;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.istqb-main .course .course-item h3::before {
  content: "";
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 14px solid #6135CE;
  position: absolute;
  left: -25px;
}
.istqb-main .course .course-item p {
  color: #A7A7A7;
  font-size: 12px;
}
.istqb-main .course .course-item p:nth-of-type(1) {
  position: relative;
}
.istqb-main .course .course-item p:nth-of-type(1)::before {
  content: "";
  background-image: url(/_public/images/istqb-new/degree.svg);
  background-size: 30px 30px;
  background-color: #f6f6f6;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  height: 45px;
  width: 45px;
  margin-bottom: 1rem;
}
.istqb-main .course .course-item p:nth-of-type(1)::after {
  content: counter(content, decimal-leading-zero);
  counter-increment: content;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 32px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #d7d7d7;
}
.istqb-main .course .course-item p:nth-of-type(2) {
  margin-top: 8px;
}
.istqb-main .course .course-item .buttons .btn-white img {
  filter: invert(1);
  margin: 0px 0px 0px 10px;
}
.istqb-main .course .form {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.102);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 10px;
}
.istqb-main .course .form h3 {
  margin-bottom: 1rem;
}
.istqb-main .course .form .input-list {
  display: flex;
  flex-direction: column;
}
.istqb-main .course .form .input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 12px;
  background-color: #f6f6f6;
}
.istqb-main .course .form .input-container:last-child {
  align-items: flex-start;
}
.istqb-main .course .form .input-container span {
  display: flex;
  width: 18px;
  height: 18px;
}
.istqb-main .course .form .input-container span img {
  width: 100%;
  height: 100%;
}
.istqb-main .course .form .input-container span img:last-child {
  display: none;
}
.istqb-main .course .form .input-container input,
.istqb-main .course .form .input-container textarea {
  border: none;
  padding: 0;
  outline: 0;
  font-size: 14px;
  width: calc(100% - 30px);
  background-color: transparent;
}
.istqb-main .course .form .input-container input::placeholder,
.istqb-main .course .form .input-container textarea::placeholder {
  color: #A7A7A7;
  font-size: 14px;
  font-weight: 500;
}
.istqb-main .course .form .input-container .checkbox {
  width: 14px;
  height: 14px;
}
.istqb-main .course .form .input-container textarea {
  resize: none;
  overflow: auto;
  height: 70px;
}
.istqb-main .course .form .input-container:nth-of-type(6) {
  align-items: flex-start;
  margin-bottom: 0;
}
.istqb-main .course .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #f6f6f6;
}
.istqb-main .course .form .input-container :-ms-input-placeholder {
  /* Firefox */
  color: #f6f6f6;
}
.istqb-main .course .form .input-container ::placeholder {
  /* Chrome */
  font-size: 13px;
  font-weight: 500;
  color: #f6f6f6;
}
.istqb-main .course .form .input-error {
  border: 1px solid red;
}
.istqb-main .course .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red !important;
}
.istqb-main .course .form .input-error :-ms-input-placeholder {
  /* Firefox */
  color: red !important;
}
.istqb-main .course .form .input-error::placeholder {
  /* Chrome */
  color: red !important;
}
.istqb-main .course .form .input-error span img:first-child {
  display: none;
}
.istqb-main .course .form .input-error span img:last-child {
  display: flex;
}
.istqb-main .course .form p {
  font-size: 11px;
}
.istqb-main .course .form .form-content {
  display: flex;
  flex-direction: column;
}
.istqb-main .course .form .form-consent {
  display: flex;
  margin-top: 0.6rem;
}
.istqb-main .course .form .form-consent p {
  line-height: 19px;
}
.istqb-main .course .form .form-consent:nth-child(1) {
  margin-top: 0;
}
.istqb-main .course .form .form-consent label {
  display: flex;
  width: auto;
  align-self: center;
  font-size: 11px;
  cursor: pointer;
  line-height: 18px;
}
.istqb-main .course .form .form-consent p a {
  font-weight: 800;
  color: #6135CE;
}
.istqb-main .course .form .consent-error {
  display: none;
  margin-top: 0.6rem;
}
.istqb-main .course .form .consent-error p {
  color: red;
}
.istqb-main .course .form .buttons .btn-purple {
  min-width: 114px;
}
.istqb-main .training {
  padding-top: 1rem;
}
.istqb-main .training .training-container {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(98, 54, 204, 0.25) 100%);
  padding: 1.5rem;
}
.istqb-main .training .heading {
  margin-bottom: 0;
}
.istqb-main .training .heading p {
  line-height: 27px;
}
.istqb-main .fact .fact-container,
.istqb-main .fact .fact-content,
.istqb-main .fact .fact-item,
.istqb-main .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.istqb-main .fact .fact-container {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F2EBFC 100%);
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 1.5rem;
}
.istqb-main .fact .fact-content {
  align-items: center;
}
.istqb-main .fact .fact-content h3 {
  text-align: center;
  font-size: 22px;
}
.istqb-main .fact .fact-content p {
  text-align: center;
  margin-top: 5px;
}
.istqb-main .fact .buttons a img {
  filter: brightness(0) invert(1);
  margin: 0 0 0 10px;
}
.istqb-main .fact .fact-item {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  margin-top: 1.5rem;
  padding: 1.2rem;
  align-items: center;
  width: 100%;
  background-color: white;
}
.istqb-main .fact .fact-item span {
  display: flex;
  height: 45px;
  width: 45px;
}
.istqb-main .fact .fact-item span img {
  height: 100%;
  width: 100%;
}
.istqb-main .fact .fact-item strong {
  font-size: 20px;
  font-weight: 600;
}
.istqb-main .fact .fact-item p {
  text-align: center;
}
.istqb-main .fact .fact-detail {
  display: flex;
  margin: 1rem 0 0.5rem;
}
.istqb-main .method {
  counter-reset: section;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(98, 54, 204, 0.25) 100%);
}
.istqb-main .method .method-container,
.istqb-main .method .method-list,
.istqb-main .method .method-info,
.istqb-main .method .method-item {
  display: flex;
  flex-direction: column;
}
.istqb-main .method .heading p {
  line-height: 27px;
}
.istqb-main .method .heading .buttons img {
  margin-left: 10px;
  filter: brightness(0) invert(1);
}
.istqb-main .method .method-info:last-child .method-item:last-of-type::after {
  content: none;
}
.istqb-main .method .method-info:last-child .method-item:last-of-type a {
  margin-bottom: 0;
}
.istqb-main .method .method-item {
  position: relative;
  padding: 1rem;
}
.istqb-main .method .method-item p {
  line-height: 25px;
}
.istqb-main .method .method-item::before {
  content: "METHOD " counter(section, decimal-leading-zero);
  counter-increment: section;
  color: rgba(0, 0, 0, 0.05);
  font-size: 32px;
  font-weight: 600;
  position: absolute;
  left: 82px;
}
.istqb-main .method .method-item::after {
  content: "";
  border-bottom: 2px solid rgba(97, 53, 206, 0.15);
}
.istqb-main .method .method-item:hover span::before {
  background-color: #6135CE;
}
.istqb-main .method .method-item:hover a {
  color: #6135CE;
}
.istqb-main .method .method-item:hover a img {
  filter: none;
}
.istqb-main .method .method-item > span {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: #B9A6E9;
  padding: 10px;
  border-radius: 3px;
  position: relative;
}
.istqb-main .method .method-item > span::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  position: absolute;
  left: -12px;
  top: -14px;
  z-index: -1;
}
.istqb-main .method .method-item > span img {
  width: 100%;
  height: 100%;
}
.istqb-main .method .method-item h3 {
  margin: 1rem 0;
  font-size: 18px;
  font-weight: 600;
}
.istqb-main .method .method-item a {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 600;
}
.istqb-main .method .method-item a span {
  display: flex;
}
.istqb-main .method .method-item a span img {
  height: 100%;
  width: 100%;
  margin-left: 10px;
  filter: brightness(0);
}
.istqb-main .overview {
  padding-top: 4rem;
}
.istqb-main .overview .overview-container,
.istqb-main .overview .overview-content,
.istqb-main .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.istqb-main .overview .heading {
  margin-bottom: 1rem;
}
.istqb-main .overview .overview-content {
  align-items: center;
}
.istqb-main .overview .overview-content p {
  text-align: center;
  line-height: 27px;
  margin-top: 4px;
}
.istqb-main .overview .overview-content p:first-of-type {
  margin-top: 0;
}
.istqb-main .overview .overview-info {
  margin-top: 2rem;
}
.istqb-main .overview .overview-info img {
  height: 100%;
  width: 100%;
}
.istqb-main .package .package-container,
.istqb-main .package .package-list,
.istqb-main .package .package-item,
.istqb-main .package .package-info,
.istqb-main .package .info-content {
  display: flex;
  flex-direction: column;
}
.istqb-main .package .heading {
  margin-bottom: 0.5rem;
}
.istqb-main .package .package-item {
  margin-top: 2rem;
  border: 1px solid #d7d7d7;
}
.istqb-main .package .package-info {
  background-color: #f6f6f6;
  padding: 1.2rem 1rem;
}
.istqb-main .package .package-info h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 27px;
}
.istqb-main .package .package-info strong {
  text-align: center;
  color: #515151;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}
.istqb-main .package .info-content {
  padding: 1.2rem 0.9rem;
}
.istqb-main .package ul {
  display: flex;
  flex-direction: column;
}
.istqb-main .package ul li {
  display: flex;
  margin-top: 10px;
}
.istqb-main .package ul li::before {
  content: "";
  background-image: url(/_public/images/istqb-new/check.svg);
  filter: brightness(0);
  background-size: 100% 100%;
  height: 16px;
  min-width: 16px;
  margin: 4px 8px 0 0;
}
.istqb-main .choose {
  counter-reset: section;
  background-color: #f6f0fc;
}
.istqb-main .choose .choose-container,
.istqb-main .choose .choose-content,
.istqb-main .choose .choose-list,
.istqb-main .choose .choose-item,
.istqb-main .choose .choose-info {
  display: flex;
  flex-direction: column;
}
.istqb-main .choose .heading {
  margin-bottom: 0;
}
.istqb-main .choose .choose-item {
  margin-top: 1.5rem;
  align-items: center;
}
.istqb-main .choose .choose-item span {
  display: flex;
  width: 98px;
  height: 105px;
  padding: 2rem;
  background-image: url(/_public/images/istqb-new/shape.svg);
  background-size: 100% 100%;
  position: relative;
}
.istqb-main .choose .choose-item span img {
  height: 100%;
  width: 100%;
}
.istqb-main .choose .choose-item span::after {
  content: counter(section, decimal-leading-zero);
  counter-increment: section;
  position: absolute;
  top: 6px;
  right: 44px;
  font-size: 12px;
  font-weight: 600;
}
.istqb-main .choose .choose-item p {
  text-align: center;
  line-height: 27px;
}
.istqb-main .choose .choose-item h3 {
  font-size: 14px;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 1.2rem;
}
.istqb-main .choose .choose-item h3::after {
  content: "";
  border-bottom: 2px dashed #d7d7d7;
  width: 60px;
  margin: 10px 0;
}
.istqb-main .choose .choose-info {
  border: 1px solid #d7d7d7;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.612);
  padding: 1.3rem;
  margin-top: 2rem;
}
.istqb-main .choose .choose-info img {
  height: 100%;
  width: 100%;
}
.istqb-main .why .why-container,
.istqb-main .why .why-list,
.istqb-main .why .why-item {
  display: flex;
  flex-direction: column;
}
.istqb-main .why .heading {
  margin-bottom: 0;
}
.istqb-main .why .why-item {
  align-items: center;
  margin-top: 2rem;
}
.istqb-main .why .why-item h3 {
  font-size: 16px;
  text-align: center;
  margin: 10px 0px;
}
.istqb-main .why .why-item p {
  text-align: center;
}
.istqb-main .why .why-item span {
  display: flex;
  height: 50px;
  width: 50px;
  background-color: #6135CE;
  padding: 10px;
  border-radius: 50%;
}
.istqb-main .why .why-item span img {
  height: 100%;
  width: 100%;
}
.istqb-main .popular .popular-container,
.istqb-main .popular .popular-list,
.istqb-main .popular .popular-item {
  display: flex;
  flex-direction: column;
}
.istqb-main .popular .popular-item {
  border: 1px solid #d7d7d7;
  padding: 2rem;
  margin-top: 1.5rem;
  align-items: center;
}
.istqb-main .popular .popular-item span {
  display: flex;
  width: 65px;
  height: 65px;
  border-radius: 25px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.istqb-main .popular .popular-item span img {
  height: 100%;
  width: 100%;
}
.istqb-main .popular .popular-item h3 {
  font-size: 16px;
  text-align: center;
  margin: 1rem 0rem 0.3rem 0;
}
.istqb-main .popular .popular-item p {
  color: #A7A7A7;
  font-size: 12px;
  text-align: center;
}
.istqb-main .popular .popular-item p:nth-of-type(2) {
  margin-top: 4px;
}
.istqb-main .popular .popular-item .buttons .btn-white img {
  filter: invert(1);
  margin: 0px 0px 0px 10px;
}
.istqb-main .framework .framework-container,
.istqb-main .framework .framework-detail,
.istqb-main .framework .framework-content,
.istqb-main .framework .framework-info,
.istqb-main .framework .info-head {
  display: flex;
  flex-direction: column;
}
.istqb-main .framework .framework-list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.istqb-main .framework .framework-list span {
  width: 49%;
  font-weight: 500;
  text-align: center;
  padding: 1rem 0.9rem 1.2rem 0.3rem;
  border: none;
  background: linear-gradient(90deg, #d7d7d7, rgba(215, 215, 215, 0)) bottom left / 100% 2px no-repeat, linear-gradient(180deg, #d7d7d7, rgba(215, 215, 215, 0)) top right / 2px 100% no-repeat;
}
.istqb-main .framework .framework-list span:nth-of-type(2n) {
  background: linear-gradient(90deg, rgba(215, 215, 215, 0), #d7d7d7) bottom left / 100% 2px no-repeat;
}
.istqb-main .framework .framework-detail {
  padding: 1.2rem 1.2rem 2.5rem;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.102);
  border-radius: 10px;
}
.istqb-main .framework .framework-detail h3 {
  align-self: center;
  margin-bottom: 1.8rem;
  font-size: 16px;
  width: fit-content;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #1A1973 0%, rgba(13, 12, 82, 0) 100%) border-box;
}
.istqb-main .framework .framework-detail h3 span {
  background: linear-gradient(90deg, #0D0C52, #1A1973);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.istqb-main .framework .framework-info {
  margin: 3rem 0;
}
.istqb-main .framework .framework-info img {
  height: 100%;
  width: 100%;
}
.istqb-main .framework .framework-content {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.102);
  padding: 1.2rem 1.5rem 2.3rem 1.5rem;
  border-radius: 10px;
}
.istqb-main .framework .framework-content h4 {
  margin-bottom: 13px;
  display: flex;
}
.istqb-main .framework .framework-content h4::before {
  content: "";
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background-position: center;
  margin-right: 13px;
  border: 1px solid transparent;
  background: url(/_public/images/istqb-new/client.svg) center / 25px no-repeat, linear-gradient(#f6f6f6, #f6f6f6) padding-box, linear-gradient(180deg, #1A1973 0%, rgba(13, 12, 82, 0) 100%) border-box;
}
.istqb-main .framework .framework-content p {
  line-height: 24px;
}
.istqb-main .framework .info-detail {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.istqb-main .framework .info-detail span {
  margin-top: 1rem;
  background-image: url(/_public/images/istqb-new/ticket.svg);
  background-size: 100% 100%;
  height: 50px;
  width: 118px;
  display: flex;
}
.istqb-main .framework .info-detail span img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.istqb-main .review .review-container,
.istqb-main .review .review-list,
.istqb-main .review .review-item,
.istqb-main .review .review-info,
.istqb-main .review .info-detail {
  display: flex;
  flex-direction: column;
}
.istqb-main .review .review-item {
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.102);
  border: 1px solid #d7d7d7;
  padding: 1.8rem;
  border-radius: 10px;
  margin-top: 3.2rem;
  position: relative;
}
.istqb-main .review .review-item::before {
  content: "";
  background-image: url(/_public/images/istqb-new/boy.svg);
  background-size: 100% 100%;
  height: 115px;
  width: 130px;
  position: absolute;
  right: 27px;
  top: -50px;
}
.istqb-main .review .review-item p {
  line-height: 27px;
  min-height: 324px;
}
.istqb-main .review .review-item p::before {
  content: "";
  background-image: url(/_public/images/istqb-new/quote.svg);
  background-size: 100% 100%;
  display: flex;
  height: 35px;
  width: 45px;
  margin-bottom: 1.2rem;
}
.istqb-main .review .review-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.istqb-main .review .info-detail b {
  font-size: 18px;
  margin: 1rem 0 0.3rem;
}
.istqb-main .review .info-detail span {
  color: #A7A7A7;
}
.istqb-main .review .review-info {
  background-color: #f6f6f6;
  width: fit-content;
  padding: 5px;
  align-items: center;
  position: relative;
}
.istqb-main .review .review-info strong {
  font-size: 14px;
  font-weight: 500;
}
.istqb-main .review .review-info span {
  display: flex;
  width: 18px;
  min-height: 18px;
}
.istqb-main .review .review-info span img {
  height: 100%;
}
.istqb-main .review .review-info:after {
  content: "";
  background-color: #d7d7d7;
  width: 32px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
  z-index: -1;
}
.istqb-main .review .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}
.istqb-main .review .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  border-radius: 5px;
  margin-right: 8px;
}
.istqb-main .review .owl-dots .owl-dot.active {
  background-color: #6135CE;
}
.istqb-main .review .owl-item.center .review-item {
  background-color: #f6f6f6;
  border: none;
  box-shadow: none;
}
.istqb-main .review .owl-item.center .review-item::before {
  background-image: url(/_public/images/istqb-new/boy-white.svg);
}
.istqb-main .review .owl-item.center .review-item p::before {
  background-image: url(/_public/images/istqb-new/quotes-white.svg);
}
.istqb-main .review .owl-item.center .review-info {
  background-color: white;
}
.istqb-main .review .owl-item.center .review-info::after {
  background-color: white;
  z-index: 1;
}
.istqb-main .contact {
  background-image: linear-gradient(90deg, rgba(97, 53, 206, 0.9) 37.25%, rgba(255, 255, 255, 0.9) 127.74%);
}
.istqb-main .contact .contact-container,
.istqb-main .contact .contact-detail {
  display: flex;
  flex-direction: column;
}
.istqb-main .contact .contact-detail p {
  margin-top: 1rem;
  color: white;
  line-height: 27px;
}
.istqb-main .contact .contact-detail a {
  max-width: 253px;
}
.istqb-main .contact .contact-detail a img {
  height: 100%;
  width: 100%;
}
.istqb-main .contact .contact-icons {
  display: flex;
  margin-top: 1rem;
}
.istqb-main .contact .contact-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.451);
  border-radius: 50%;
  padding: 10px;
  margin-right: 8px;
}
.istqb-main .contact .contact-icons a img {
  height: 100%;
  width: 100%;
}
.istqb-main .footer {
  background-image: linear-gradient(181.46deg, white -94.69%, #F6F0FC 98.76%);
}
.istqb-main .footer .footer-container,
.istqb-main .footer .footer-info,
.istqb-main .footer .faq,
.istqb-main .footer .faq-list,
.istqb-main .footer .faq-item,
.istqb-main .footer .footer-description,
.istqb-main .footer .info-detail,
.istqb-main .footer .footer-list,
.istqb-main .footer .footer-item {
  display: flex;
  flex-direction: column;
}
.istqb-main .footer .faq-list {
  border: 1px solid #A7A7A7;
}
.istqb-main .footer .faq-item {
  padding: 1.2rem;
  border-bottom: 1px solid #A7A7A7;
}
.istqb-main .footer .faq-item:last-of-type {
  border-bottom: none;
}
.istqb-main .footer .faq-item.active {
  background-color: rgba(255, 255, 255, 0.302);
}
.istqb-main .footer .faq-item.active .faq-question::after {
  content: "-";
}
.istqb-main .footer .faq-question {
  display: flex;
  justify-content: space-between;
}
.istqb-main .footer .faq-question h3 {
  font-size: 16px;
  font-weight: 500;
  width: calc(100% - 20px);
}
.istqb-main .footer .faq-question::after {
  content: "+";
  width: 12px;
  height: 12px;
}
.istqb-main .footer .faq-answer p {
  margin-top: 8px;
}
.istqb-main .footer .faq-answer h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}
.istqb-main .footer .faq-answer ul li {
  list-style: disc;
  margin: 1rem 0 0 1rem;
}
.istqb-main .footer .info-detail {
  background-image: url(/_public/images/istqb-new/info-bg.png);
  background-size: 100% 100%;
  border-radius: 10px;
  margin-top: 2rem;
  padding: 1rem;
}
.istqb-main .footer .info-detail h3 {
  color: white;
  font-weight: 700;
}
.istqb-main .footer .info-detail p {
  color: white;
  margin-top: 10px;
  line-height: 27px;
}
.istqb-main .footer .footer-list {
  margin-top: 2rem;
}
.istqb-main .footer .info-content {
  display: flex;
  align-items: center;
}
.istqb-main .footer .info-content span {
  display: flex;
  height: 18px;
  width: 18px;
  margin-right: 10px;
}
.istqb-main .footer .info-content span img {
  height: 100%;
  width: 100%;
}
.istqb-main .footer .footer-item {
  margin-top: 1rem;
}
.istqb-main .footer .footer-item:first-of-type {
  margin-top: 0 !important;
}
.istqb-main .footer .footer-item:first-of-type a {
  text-decoration: underline;
}
.istqb-main .footer .footer-item > span {
  height: 26px;
  width: 26px;
  margin-right: 10px;
}
.istqb-main .footer .footer-item > span img {
  height: 100%;
  width: 100%;
}
.istqb-main .footer .footer-item strong {
  font-weight: 500;
}
.istqb-main .footer .footer-item a {
  margin-top: 10px;
  font-weight: 500;
}
.istqb-main .footer .footer-item:last-of-type {
  flex-direction: row;
  align-items: center;
}
.istqb-main .footer .footer-item:last-of-type strong::after {
  content: "";
  display: flex;
  background-image: url(/_public/images/istqb-new/review.svg);
  background-size: 100% 100%;
  width: 111px;
  height: 18px;
  margin-top: 8px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .istqb-main .banner .logo-container .active + .menu-links {
    width: 50%;
  }
  .istqb-main .banner .banner-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .istqb-main .banner .banner-item {
    width: 31%;
  }
  .istqb-main .banner .banner-item span {
    right: 10px;
  }
  .istqb-main .banner .sticky {
    padding: 1rem 2rem;
  }
  .istqb-main .aim .aim-detail {
    flex-direction: row;
    justify-content: space-between;
  }
  .istqb-main .aim .aim-info {
    width: 48%;
  }
  .istqb-main .aim .aim-info:last-of-type {
    margin-top: 0;
  }
  .istqb-main .course .course-detail {
    flex-flow: wrap;
    justify-content: center;
  }
  .istqb-main .course .course-item {
    width: 47%;
    margin-right: 1.5rem;
  }
  .istqb-main .course .course-item:nth-child(2n) {
    margin-right: 0px;
  }
  .istqb-main .course .course-item:hover {
    border: 1px solid #6135CE;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.102);
    border-radius: 8px;
  }
  .istqb-main .course .course-item:hover .buttons .btn-white {
    background-color: #6135CE;
    color: white;
  }
  .istqb-main .course .course-item:hover .buttons .btn-white img {
    filter: invert(0);
  }
  .istqb-main .course .form h3 {
    font-size: 25px;
  }
  .istqb-main .course .form .input-list {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .istqb-main .course .form .input-container {
    width: 48%;
  }
  .istqb-main .course .form .input-container:last-of-type {
    width: 100%;
  }
  .istqb-main .fact .fact-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .istqb-main .fact .fact-item {
    width: 31%;
    margin-right: 1.2rem;
  }
  .istqb-main .fact .fact-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .istqb-main .fact .fact-item:last-child {
    margin-right: 0;
  }
  .istqb-main .method {
    padding-bottom: 0;
  }
  .istqb-main .method .method-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .istqb-main .method .method-info {
    width: 50%;
    position: relative;
  }
  .istqb-main .method .method-info::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: rgba(97, 53, 206, 0.15);
    position: absolute;
    right: 0;
  }
  .istqb-main .method .method-info:last-of-type::after {
    content: none;
  }
  .istqb-main .method .method-info .method-item {
    padding: 2rem;
  }
  .istqb-main .method .method-info .method-item p {
    min-height: 100px;
  }
  .istqb-main .method .method-info .method-item a {
    margin-bottom: 0;
  }
  .istqb-main .method .method-info .method-item::after {
    width: 100%;
    position: absolute;
    right: 0px;
    bottom: 10px;
  }
  .istqb-main .method .method-info .method-item:last-of-type::after {
    content: "";
    border-bottom: 2px solid rgba(97, 53, 206, 0.149);
  }
  .istqb-main .method .method-info .method-item:nth-of-type(2)::after {
    content: none;
  }
  .istqb-main .method .method-info .method-item::before {
    left: 98px;
  }
  .istqb-main .overview .overview-container {
    align-items: center;
  }
  .istqb-main .overview .overview-info {
    width: 50%;
  }
  .istqb-main .package .package-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .istqb-main .package .package-item {
    width: 46%;
  }
  .istqb-main .package .package-item:hover {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.102);
    border: none;
  }
  .istqb-main .package .package-item:hover .package-info {
    background-color: #B9A6E9;
  }
  .istqb-main .package .package-item:hover .package-info h3 {
    color: white;
  }
  .istqb-main .package .package-item:hover .package-info strong {
    color: white;
    opacity: 0.77;
  }
  .istqb-main .package .package-item:hover .buttons .btn-white {
    background-color: #6135CE;
    color: white;
  }
  .istqb-main .package .package-item:hover .buttons .btn-white img {
    filter: invert(1);
  }
  .istqb-main .package ul {
    min-height: 184px;
  }
  .istqb-main .choose .choose-container {
    align-items: center;
  }
  .istqb-main .choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .istqb-main .choose .choose-item {
    width: 32%;
    margin-top: 0;
  }
  .istqb-main .choose .choose-info {
    width: 65%;
  }
  .istqb-main .why .why-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .istqb-main .why .why-item {
    width: 45%;
  }
  .istqb-main .why .why-item:nth-child(3n) {
    margin-right: 0px;
  }
  .istqb-main .why .why-item:last-child {
    margin-right: 0px;
  }
  .istqb-main .popular .popular-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .istqb-main .popular .popular-item {
    width: 47%;
    margin-right: 1.5rem;
  }
  .istqb-main .popular .popular-item:nth-child(2n) {
    margin-right: 0px;
  }
  .istqb-main .popular .popular-item:hover {
    border: 1px solid #6135CE;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.102);
    border-radius: 8px;
  }
  .istqb-main .popular .popular-item:hover .buttons .btn-white {
    background-color: #6135CE;
    color: white;
  }
  .istqb-main .popular .popular-item:hover .buttons .btn-white img {
    filter: invert(0);
  }
  .istqb-main .framework .info-head {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .istqb-main .framework .framework-detail {
    width: 48%;
    order: 1;
  }
  .istqb-main .framework .framework-info {
    order: 3;
    margin-bottom: 0;
    width: 65%;
  }
  .istqb-main .framework .framework-content {
    width: 42%;
    order: 2;
  }
  .istqb-main .footer .footer-list {
    justify-content: space-between;
    flex-flow: wrap;
  }
  .istqb-main .footer .footer-list .footer-item {
    margin-top: 2.5rem;
  }
  .istqb-main .footer .footer-list .footer-item:nth-of-type(2) {
    margin-top: 0 !important;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .istqb-main .heading h2 {
    font-size: 28px;
  }
  .istqb-main .buttons .btn-purple,
  .istqb-main .buttons .btn-white {
    font-size: 16px;
  }
  .istqb-main .banner .logo-container .menu {
    display: none;
  }
  .istqb-main .banner .logo-container .menu-links {
    transform: translateX(0);
    width: auto;
    box-shadow: none;
    background-color: transparent;
    position: relative;
    padding: 0;
  }
  .istqb-main .banner .logo-container .menu-links .buttons .btn-white {
    height: 44px;
    min-width: 44px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid black;
  }
  .istqb-main .banner .logo-container .menu-links .buttons .btn-white img {
    margin-right: 0px;
  }
  .istqb-main .banner .logo-container .menu-links .menu-toggle {
    display: none;
  }
  .istqb-main .banner .logo-container .menu-links ul {
    display: flex;
    align-items: center;
  }
  .istqb-main .banner .logo-container .menu-links ul li {
    color: black;
    padding: 0px;
    border: none;
    font-weight: 600;
    margin-left: 1.3rem;
  }
  .istqb-main .banner .logo-container .menu-links ul li:first-child {
    margin-left: 0px;
  }
  .istqb-main .banner .logo-container .menu-links ul li:last-child {
    display: flex;
    margin-top: 0px;
    align-items: center;
  }
  .istqb-main .banner .logo-container .menu-links ul li:last-child .btn-purple {
    margin-left: 1.3rem;
    min-width: 172px;
    height: 44px;
  }
  .istqb-main .banner .logo-container .menu-links ul li:nth-child(3) {
    display: none;
  }
  .istqb-main .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5rem;
  }
  .istqb-main .banner .banner-content {
    width: 50%;
  }
  .istqb-main .banner .banner-content h1 {
    font-size: 35px;
  }
  .istqb-main .banner .banner-list {
    flex-direction: column;
    align-items: flex-end;
  }
  .istqb-main .banner .banner-info {
    width: 48%;
    background-image: url(/_public/images/istqb-new/banner-bg.png);
    background-size: 470px 445px;
    background-repeat: no-repeat;
  }
  .istqb-main .banner .banner-item {
    width: 35%;
  }
  .istqb-main .banner .banner-item span {
    right: 6px;
  }
  .istqb-main .banner .banner-item:first-of-type {
    margin-right: 2rem;
  }
  .istqb-main .banner .banner-item:nth-of-type(2) {
    margin-right: 0.6rem;
  }
  .istqb-main .banner .banner-item:last-of-type {
    margin-right: 1.8rem;
  }
  .istqb-main .aim .aim-detail {
    background-image: url(/_public/images/istqb-new/vs.svg);
    background-size: 70px 70px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .istqb-main .aim .aim-info {
    z-index: -1;
  }
  .istqb-main .course .heading {
    margin-bottom: 10px;
  }
  .istqb-main .course .course-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .istqb-main .course .course-list {
    width: 62%;
  }
  .istqb-main .course .form {
    position: sticky;
    top: 20px;
    width: 35%;
    margin-top: 0;
  }
  .istqb-main .course .form .input-container {
    width: 100%;
  }
  .istqb-main .training .training-container {
    padding: 3rem 2.5rem;
    position: relative;
  }
  .istqb-main .training .training-container::after {
    content: "";
    background-image: url(/_public/images/istqb-new/training-bg.svg);
    background-size: 100% 100%;
    width: 144px;
    height: 40px;
    position: absolute;
    right: 30px;
    top: 18px;
  }
  .istqb-main .training .training-container::before {
    content: "";
    background-image: url(/_public/images/istqb-new/line.svg);
    background-size: 100% 100%;
    width: 140px;
    height: 122px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .istqb-main .fact .fact-container {
    align-items: center;
    padding: 2rem;
  }
  .istqb-main .fact .fact-content {
    width: 43%;
  }
  .istqb-main .fact .fact-content h3 {
    font-size: 25px;
  }
  .istqb-main .fact .fact-item {
    width: 18%;
  }
  .istqb-main .fact .fact-item:nth-of-type(3n) {
    margin-right: 1.2rem;
  }
  .istqb-main .fact .fact-item strong {
    font-size: 25px;
  }
  .istqb-main .method .heading {
    order: 2;
    width: 33%;
    margin-bottom: 0;
    padding: 2.5rem 0;
    justify-content: center;
    align-items: center;
  }
  .istqb-main .method .heading h2 {
    text-align: center;
  }
  .istqb-main .method .heading p {
    text-align: center;
  }
  .istqb-main .method .method-info {
    width: 32%;
    position: relative;
  }
  .istqb-main .method .method-info:nth-last-of-type(2) {
    order: 1;
  }
  .istqb-main .method .method-info:nth-last-of-type(2) .method-item:nth-of-type(1)::after {
    left: -84px;
  }
  .istqb-main .method .method-info:last-of-type {
    order: 3;
  }
  .istqb-main .method .method-info:last-of-type::before {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    background-color: rgba(97, 53, 206, 0.149);
  }
  .istqb-main .method .method-info:last-of-type .method-item::after {
    width: calc(100% + 30px);
    left: 0px;
    bottom: 0;
  }
  .istqb-main .method .method-info .method-item::after {
    width: calc(100% + 82px);
  }
  .istqb-main .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .istqb-main .overview .heading h2 {
    text-align: left;
  }
  .istqb-main .overview .overview-content {
    width: 51%;
    align-items: flex-start;
  }
  .istqb-main .overview .overview-content p {
    text-align: left;
  }
  .istqb-main .overview .overview-info {
    width: 40%;
    margin-top: 0;
  }
  .istqb-main .package ul {
    min-height: 200px;
  }
  .istqb-main .package .package-info {
    min-height: 119px;
  }
  .istqb-main .choose .choose-item {
    width: 29%;
  }
  .istqb-main .choose .choose-info {
    width: 52%;
  }
  .istqb-main .popular .popular-item {
    width: 30%;
  }
  .istqb-main .popular .popular-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .istqb-main .popular .popular-item:nth-child(3n) {
    margin-right: 0rem;
  }
  .istqb-main .popular .popular-item:last-child {
    margin-right: 0rem;
  }
  .istqb-main .framework .heading {
    position: absolute;
    left: -33px;
    right: 0;
    margin: 0 auto;
    width: 45%;
    top: 25px;
  }
  .istqb-main .framework .framework-container {
    position: relative;
  }
  .istqb-main .framework .info-head {
    justify-content: space-between;
    align-items: center;
  }
  .istqb-main .framework .framework-detail {
    width: 27%;
  }
  .istqb-main .framework .framework-content {
    width: 30%;
    order: 3;
  }
  .istqb-main .framework .framework-info {
    margin-top: 0;
    width: 35%;
    height: auto;
    order: 2;
  }
  .istqb-main .contact {
    padding: 1.8rem 2rem;
    background-image: url(/_public/images/istqb-new/footer-bg.png);
    background-size: 100% 100%;
  }
  .istqb-main .contact .contact-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .istqb-main .contact .contact-detail {
    width: 66%;
  }
  .istqb-main .contact .contact-icons {
    margin-top: 0;
    align-items: center;
  }
  .istqb-main .footer .footer-info {
    flex-direction: column;
  }
  .istqb-main .footer .faq {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .istqb-main .footer .faq-list {
    width: 50%;
    border: 1px solid #A7A7A7;
  }
  .istqb-main .footer .footer-description {
    width: 45%;
    position: sticky;
    top: 12%;
  }
  .istqb-main .footer .info-detail {
    margin-top: 0;
    padding: 2rem;
  }
  .istqb-main .footer .info-detail h3 {
    font-size: 25px;
  }
}
@media (min-width : 1366px) {
  section {
    padding: 4rem 0;
  }
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  .istqb-main .heading h2 {
    font-size: 32px;
  }
  .istqb-main .banner .logo-container .menu-links .links-li:nth-child(3) {
    display: flex;
  }
  .istqb-main .banner .banner-info {
    width: 40%;
  }
  .istqb-main .banner .banner-content ul {
    display: flex;
    justify-content: space-between;
  }
  .istqb-main .banner .banner-content ul li {
    width: fit-content;
  }
  .istqb-main .aim .aim-container {
    width: 82%;
    margin: auto;
  }
  .istqb-main .course .course-container {
    align-items: center;
  }
  .istqb-main .course .course-list {
    width: 72%;
  }
  .istqb-main .course .course-item {
    width: 31%;
  }
  .istqb-main .course .course-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .istqb-main .course .course-item:nth-child(3n) {
    margin-right: 0px;
  }
  .istqb-main .course .form {
    width: 26%;
  }
  .istqb-main .training .training-container {
    width: 70%;
  }
  .istqb-main .training .heading {
    width: 96%;
  }
  .istqb-main .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .istqb-main .fact .fact-content {
    width: 22%;
    align-items: flex-start;
  }
  .istqb-main .fact .fact-content h3 {
    text-align: left;
  }
  .istqb-main .fact .fact-content p {
    text-align: left;
  }
  .istqb-main .fact .fact-list {
    width: 73%;
  }
  .istqb-main .fact .fact-item {
    margin-top: 0;
  }
  .istqb-main .method:last-of-type .method-item::after {
    width: calc(100% + 80px);
  }
  .istqb-main .why .heading {
    margin-bottom: 1rem;
  }
  .istqb-main .why .why-item {
    width: 19%;
    border-right: 1px solid #d7d7d7;
    padding-right: 1.5rem;
    margin-right: 0.8rem;
  }
  .istqb-main .why .why-item h3 {
    font-size: 15px;
  }
  .istqb-main .why .why-item:nth-child(3n) {
    margin-right: 1.3rem;
  }
  .istqb-main .why .why-item:last-child {
    border-right: none;
    padding-right: 0;
  }
  .istqb-main .package .package-item {
    width: 24%;
  }
  .istqb-main .package ul {
    min-height: 280px;
  }
  .istqb-main .popular .popular-item {
    width: 23%;
  }
  .istqb-main .popular .popular-item h3 {
    min-height: 75px;
  }
  .istqb-main .popular .popular-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .istqb-main .popular .popular-item:nth-child(3n) {
    margin-right: 1.5rem;
  }
  .istqb-main .popular .popular-item:nth-child(4n) {
    margin-right: 0rem;
  }
  .istqb-main .popular .popular-item:last-child {
    margin-right: 0rem;
  }
  .istqb-main .choose .choose-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .istqb-main .choose .choose-content {
    width: 58%;
  }
  .istqb-main .choose .choose-item {
    width: 32%;
    margin-top: 0;
  }
  .istqb-main .choose .choose-info {
    width: 460px;
  }
  .istqb-main .choose .choose-info img {
    object-fit: scale-down;
  }
  .istqb-main .framework .heading {
    left: 12px;
  }
  .istqb-main .framework .framework-detail {
    width: 26%;
  }
  .istqb-main .framework .framework-info {
    width: 40%;
    margin-top: 5.5rem;
  }
  .istqb-main .framework .framework-content {
    width: 25%;
  }
  .istqb-main .footer .faq-list {
    width: 57%;
  }
  .istqb-main .footer .footer-description {
    width: 40%;
  }
  .istqb-main .footer .footer-list {
    padding-left: 2rem;
  }
  .istqb-main .footer .faq-item {
    position: relative;
  }
  .istqb-main .footer .faq-item:first-child::after,
  .istqb-main .footer .faq-item:last-child::after,
  .istqb-main .footer .faq-item:first-child::before,
  .istqb-main .footer .faq-item:last-child::before {
    content: '';
    border: 3px solid #6135CE;
    position: absolute;
    height: 10px;
    width: 10px;
    border-right: none;
    border-bottom: none;
  }
  .istqb-main .footer .faq-item:first-child::before {
    left: -2px;
    top: -2px;
  }
  .istqb-main .footer .faq-item:first-child::after {
    right: -2px;
    top: -2px;
    transform: scaleX(-1);
  }
  .istqb-main .footer .faq-item:last-child::before {
    bottom: -2px;
    left: -2px;
    transform: rotate(270deg);
  }
  .istqb-main .footer .faq-item:last-child::after {
    bottom: -2px;
    right: -2px;
    transform: scaleX(-1) rotate(270deg);
  }
}
