@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,900;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;
  margin-left: 0;
  border-radius: 3px;
  border: 1px solid #0F0F0F;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #7BBBD1;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Nunito';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #0F0F0F;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #0F0F0F;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.nebosh .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.nebosh .buttons .btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: 0;
  min-width: 160px;
  background-color: #7BBBD1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition: 1s all;
  z-index: 1;
}
.nebosh .buttons .btn-blue::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #002B7F;
  z-index: -1;
  transition: 1s all;
  border-radius: 30px;
}
.nebosh .buttons .btn-blue:hover {
  box-shadow: 0 0 5px #FFFFFF;
}
.nebosh .buttons .btn-blue:hover::before {
  height: 100%;
  bottom: auto;
  top: 0;
  -webkit-animation: fadeInLeft 1s linear;
  animation: fadeInLeft 1s linear;
}
.nebosh .buttons .btn-blue img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.nebosh .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.nebosh .heading h4 {
  color: #7BBBD1;
  font-weight: 600;
}
.nebosh .heading h2 {
  width: 100%;
  margin-top: 0.5rem;
}
.nebosh .heading h2 span {
  display: flex;
  position: relative;
  background-color: #002B7F;
  width: 90px;
  height: 4px;
  top: 7px;
}
.nebosh .heading h2 span::before,
.nebosh .heading h2 span::after {
  content: '';
  width: 7px;
  height: 4px;
  position: absolute;
  top: 0;
  background-color: #002B7F;
  border-left: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
}
.nebosh .heading h2 span::before {
  left: 10px;
  animation: heading1 6s linear infinite;
}
.nebosh .heading h2 span::after {
  right: 10px;
  animation: heading2 6s linear infinite;
}
.nebosh .heading p {
  margin-top: 0.8rem;
}
.nebosh .center-heading {
  justify-content: center;
  align-items: center;
}
.nebosh .center-heading h2 span {
  margin: auto;
}
.nebosh .center-heading h2,
.nebosh .center-heading p {
  text-align: center;
}
.nebosh .white-heading h2 span {
  background-color: #FFFFFF;
}
.nebosh .white-heading h2 span::before,
.nebosh .white-heading h2 span::after {
  background-color: #FFFFFF;
  border-left: 3px solid #7BBBD1;
  border-right: 3px solid #7BBBD1;
}
.nebosh .white-heading h2,
.nebosh .white-heading p {
  color: #FFFFFF;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heading2 {
  0% {
    right: 0;
  }
  50% {
    right: 86%;
  }
  100% {
    right: 0;
  }
}
@keyframes heading1 {
  0% {
    left: 0;
  }
  50% {
    left: 86%;
  }
  100% {
    left: 0;
  }
}
.nebosh .banner {
  flex-direction: column;
  background-color: #002B7F;
  padding-top: 1.5rem;
}
.nebosh .banner .container {
  height: 100%;
}
.nebosh .banner .logo-container,
.nebosh .banner .tka-logo {
  display: flex;
}
.nebosh .banner .logo-container .container {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 1rem;
}
.nebosh .banner .tka-logo {
  width: 190px;
}
.nebosh .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.nebosh .banner .menu {
  width: 22px;
  height: 23px;
  margin-left: auto;
}
.nebosh .banner .menu img {
  width: 100%;
  height: 100%;
}
.nebosh .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.nebosh .banner .menu-links {
  position: fixed;
  background-color: #7BBBD1;
  color: #FFFFFF;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  right: 0;
  top: 0;
  width: 0;
  z-index: 1;
}
.nebosh .banner .menu-links li {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  color: #FFFFFF;
  border-bottom: 1px dotted #FFFFFF;
}
.nebosh .banner .menu-links li:first-child {
  padding-top: 0;
}
.nebosh .banner .menu-links li:nth-last-child(2) {
  padding-bottom: 0;
  border-bottom: none;
}
.nebosh .banner .menu-links li:last-child {
  display: none;
}
.nebosh .banner .active + .menu-links {
  display: flex;
  flex-direction: column;
  width: 85%;
  padding: 1rem;
}
.nebosh .banner .active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nebosh .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  padding: 1rem 1.5rem;
  border-bottom: none;
  box-shadow: 0 0 3px #FFFFFF;
  background-color: #002B7F;
}
.nebosh .banner .sticky .container {
  padding-bottom: 0!important;
  border-bottom: none;
}
.nebosh .banner .sticky-down {
  top: -100px;
}
.nebosh .banner .banner-container,
.nebosh .banner .banner-content,
.nebosh .banner .banner-skill,
.nebosh .banner .banner-item,
.nebosh .banner .banner-list,
.nebosh .banner h1 {
  display: flex;
  flex-direction: column;
}
.nebosh .banner .banner-container {
  padding-top: 2rem;
}
.nebosh .banner .banner-content h1,
.nebosh .banner .banner-content p {
  color: #FFFFFF;
}
.nebosh .banner .banner-content h1 {
  margin-bottom: 0.8rem;
  font-size: 23px;
  line-height: 1.3;
}
.nebosh .banner .banner-content h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 600;
}
.nebosh .banner .banner-content h1 img {
  width: 46px;
  height: 46px;
  margin-right: 0.8rem;
  transform: translateY(10px);
}
.nebosh .banner .banner-content p {
  border-left: 1px solid #FFFFFF;
  padding-left: 1.5rem;
}
.nebosh .banner .banner-skill {
  margin-top: 2rem;
}
.nebosh .banner .banner-skill .heading {
  margin-bottom: 0;
  align-items: flex-start;
}
.nebosh .banner .banner-skill .heading h4 {
  color: #FFFFFF;
  font-size: 17px;
}
.nebosh .banner .banner-skill .heading h2 {
  border-bottom: 4px solid #FFFFFF;
  margin-top: 0;
  width: auto;
}
.nebosh .banner .banner-skill .heading h2 span {
  display: none;
}
.nebosh .banner .banner-skill .number {
  display: none;
  color: #FFFFFF;
  font-size: 26px;
  width: 13%;
  font-weight: 600;
  transform: rotate(-90deg) translate(25px, 430px);
  justify-content: flex-end;
  position: relative;
}
.nebosh .banner .banner-skill .number::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0px;
  height: 2px;
  width: 45%;
  background-color: #FFFFFF;
}
.nebosh .banner .banner-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
  align-items: center;
  padding: 1.5rem;
  margin-top: 2rem;
}
.nebosh .banner .banner-item img {
  height: 60px;
  width: 60px;
}
.nebosh .banner .banner-item h3 {
  font-size: 17px;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.nebosh .overview {
  padding-bottom: 1rem;
}
.nebosh .overview .overview-container,
.nebosh .overview .overview-content,
.nebosh .overview .info {
  display: flex;
  flex-direction: column;
}
.nebosh .overview .overview-info {
  display: flex;
  align-items: flex-end;
  margin-top: 2rem;
  border-radius: 10px;
  background-image: url(/_public/images/nebosh/overview-info.png);
  background-size: 100% 100%;
  height: 250px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.nebosh .overview .content-info {
  display: flex;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  justify-content: space-between;
  padding: 1rem 0.8rem;
  border-radius: 10px;
  width: 216px;
}
.nebosh .overview .content-info img {
  height: 45px;
  width: 45px;
}
.nebosh .overview .info {
  width: calc(100% - 55px);
}
.nebosh .overview .info h3 {
  font-size: 16px;
  font-weight: 600;
  background-image: linear-gradient(90deg, #002B7F 45%, #7BBBD1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nebosh .overview .info p {
  font-weight: 800;
}
.nebosh .course .course-container,
.nebosh .course .timer-content,
.nebosh .course .timer,
.nebosh .course .info,
.nebosh .course .course-list {
  display: flex;
  flex-direction: column;
}
.nebosh .course .timer-content {
  background-color: #002B7F;
  padding: 1rem;
  border-radius: 10px;
  align-items: flex-start;
}
.nebosh .course .timer-content .heading h2 {
  margin-top: 0;
}
.nebosh .course .timer-content h3 {
  color: #FFFFFF;
  font-size: 16px;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 0.5rem;
}
.nebosh .course .timer-content .timer-list {
  display: flex;
  margin-top: 1.6rem;
}
.nebosh .course .timer-content .timer {
  width: 50px;
  margin-right: 0.8rem;
}
.nebosh .course .timer-content .timer:last-child {
  margin-right: 0;
}
.nebosh .course .timer-content .timer span,
.nebosh .course .timer-content .timer p {
  color: #FFFFFF;
  text-align: center;
}
.nebosh .course .timer-content .timer span {
  display: flex;
  width: 50px;
  height: 50px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.nebosh .course .course-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}
.nebosh .course .course-item span {
  display: flex;
  background-color: #F5F5F5;
  padding: 0.6rem;
  border-radius: 5px;
  width: 55px;
  height: 50px;
}
.nebosh .course .course-item span img {
  width: 100%;
  height: 100%;
}
.nebosh .course .course-item h3 {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  padding: 0.5rem;
  border-radius: 5px;
  width: calc(100% - 66px);
  font-size: 16px;
  font-weight: 500;
}
.nebosh .course .course-item .info {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin-top: 0.8rem;
  padding: 1.2rem 1rem;
  width: 100%;
}
.nebosh .course .course-item .info:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.nebosh .course .course-item .info p:nth-last-child(2) {
  margin-top: 0.2rem;
  font-size: 13px;
}
.nebosh .course .course-item .info .buttons {
  margin-top: 1rem;
}
.nebosh .benefit {
  background-color: #F5F5F5;
}
.nebosh .benefit .benefit-container,
.nebosh .benefit .benefit-content {
  display: flex;
  flex-direction: column;
}
.nebosh .benefit .benefit-content {
  align-items: center;
}
.nebosh .benefit .benefit-content p {
  text-align: center;
}
.nebosh .benefit .benefit-img {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.nebosh .benefit .benefit-img img {
  width: 100%;
  height: 100%;
}
.nebosh .method .method-container,
.nebosh .method .method-list,
.nebosh .method .method-content,
.nebosh .method .method-info {
  display: flex;
  flex-direction: column;
}
.nebosh .method .method-list {
  background-image: url(/_public/images/nebosh/list-bg.png);
  background-size: cover;
  background-position: center;
  height: 485px;
  border-radius: 8px;
  padding: 2rem 1rem 0 1rem;
}
.nebosh .method .method-list .method-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  padding: 0.5rem 0.8rem;
  margin-top: 1rem;
  border-radius: 6px;
  transition: 0.6s all;
}
.nebosh .method .method-list .method-item:first-child {
  margin-top: 0;
}
.nebosh .method .method-list .method-item:hover {
  background-color: #002B7F;
}
.nebosh .method .method-list .method-item:hover span img:first-child {
  display: none;
}
.nebosh .method .method-list .method-item:hover span img:last-child {
  display: flex;
}
.nebosh .method .method-list .method-item:hover h3 {
  color: #FFFFFF;
}
.nebosh .method .method-list .method-item span {
  display: flex;
  width: 30px;
  height: 30px;
}
.nebosh .method .method-list .method-item span img {
  width: 100%;
  height: 100%;
}
.nebosh .method .method-list .method-item h3 {
  font-size: 14px;
  width: calc(100% - 44px);
}
.nebosh .method .method-list .method-item span img:last-child {
  display: none;
}
.nebosh .method .method-content {
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.nebosh .method .method-content .method-info {
  margin-top: 2rem;
  align-self: flex-start;
  width: 100%;
  height: 100%;
}
.nebosh .method .method-content .method-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.nebosh .method .method-content .method-info span img {
  width: 100%;
  height: 100%;
}
.nebosh .method .method-content .method-info h3 {
  margin: 1.2rem 0;
  font-size: 22px;
}
.nebosh .fact {
  background-color: #002B7F;
}
.nebosh .fact .fact-container,
.nebosh .fact .fact-content,
.nebosh .fact .skill-content,
.nebosh .fact .budget-content,
.nebosh .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.nebosh .fact .skill-content p {
  color: #FFFFFF;
}
.nebosh .fact .skill-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.nebosh .fact .skill-item .bar {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 10px;
  height: 7px;
  margin-top: 0.5rem;
  width: 100%;
}
.nebosh .fact .skill-item .bar span {
  width: 0%;
  transition: 1s all;
  border-radius: 10px;
}
.nebosh .fact .skill-item h4 {
  font-size: 14px;
  width: calc(100% - 50px);
  font-weight: 500;
  color: #FFFFFF;
}
.nebosh .fact .skill-item p {
  width: 30px;
}
.nebosh .fact .budget-content {
  margin-top: 2rem;
  background-color: #FFFFFF;
  border-bottom: 4px solid #7BBBD1;
  padding: 1rem;
  align-items: center;
  border-radius: 10px;
}
.nebosh .fact .budget-content .heading {
  margin-bottom: 0;
}
.nebosh .fact .budget-content .heading h2 {
  margin-top: 0;
}
.nebosh .fact .budget-content ul li {
  margin-top: 0.8rem;
  padding-left: 1.7rem;
  position: relative;
}
.nebosh .fact .budget-content ul li::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-image: url(/_public/images/nebosh/polygon.svg);
  background-size: 100% 100%;
}
.nebosh .fact .budget-content h4 {
  margin-top: 0.8rem;
}
.nebosh .fact .budget-content .buttons .btn-blue {
  box-shadow: none;
}
.nebosh .fact .fact-content {
  margin-top: 2rem;
}
.nebosh .fact .fact-content .heading {
  margin-bottom: 0;
}
.nebosh .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid #FFFFFF;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 10px;
}
.nebosh .fact .fact-item h3,
.nebosh .fact .fact-item span,
.nebosh .fact .fact-item p {
  color: #FFFFFF;
  text-align: center;
}
.nebosh .fact .fact-item h3,
.nebosh .fact .fact-item span {
  font-size: 40px;
  font-weight: 600;
}
.nebosh .fact .fact-item p {
  font-size: 15px;
  line-height: 1.5;
}
.nebosh .staff .staff-container,
.nebosh .staff .staff-content,
.nebosh .staff .staff-img {
  display: flex;
  flex-direction: column;
}
.nebosh .staff .staff-content p:nth-child(3) {
  margin-top: 1rem;
}
.nebosh .staff .staff-content ul li {
  margin-top: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}
.nebosh .staff .staff-content ul li::before {
  content: '';
  position: absolute;
  background-color: #7BBBD1;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  left: 0;
  top: 5px;
}
.nebosh .staff .staff-img {
  margin-top: 2rem;
  height: 100%;
}
.nebosh .staff .staff-img .image {
  display: flex;
  height: 100%;
}
.nebosh .staff .staff-img .image img {
  width: 100%;
  height: 100%;
}
.nebosh .choose {
  padding-top: 0;
}
.nebosh .choose .choose-container,
.nebosh .choose .choose-list,
.nebosh .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.nebosh .choose .choose-container .heading {
  margin-bottom: 0;
}
.nebosh .choose .choose-item {
  margin-top: 2rem;
}
.nebosh .choose .choose-item span {
  display: flex;
  background-color: #FFFFFF;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  padding: 1rem;
  width: 65px;
  height: 65px;
}
.nebosh .choose .choose-item span img {
  height: 100%;
  width: 100%;
}
.nebosh .choose .choose-item h3 {
  font-size: 15px;
  margin: 1rem 0 0.5rem;
  border-bottom: 2px solid #9E9E9E;
  padding-bottom: 0.8rem;
}
.nebosh .faq {
  background-color: #002B7F;
}
.nebosh .faq .faq-content,
.nebosh .faq .faq-container,
.nebosh .faq .faq-list,
.nebosh .faq .faq-item,
.nebosh .faq .input-list,
.nebosh .faq .form {
  display: flex;
  flex-direction: column;
}
.nebosh .faq .faq-content .heading {
  margin-bottom: 1rem;
}
.nebosh .faq .faq-item {
  margin-top: 1rem;
}
.nebosh .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #FFFFFF;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}
.nebosh .faq .faq-item .ques h3 {
  color: #FFFFFF;
  font-size: 14px;
  width: calc(100% - 28px);
}
.nebosh .faq .faq-item .ques span {
  display: flex;
  width: 15px;
  height: 15px;
}
.nebosh .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
}
.nebosh .faq .faq-item .ques span img:last-child {
  display: none;
}
.nebosh .faq .faq-item .ans {
  display: none;
  margin-top: 1rem;
  padding-left: 0.5rem;
}
.nebosh .faq .faq-item .ans p {
  color: #FFFFFF;
}
.nebosh .faq .faq-item.active .ques {
  background-color: #7BBBD1;
  border: 1px solid transparent;
}
.nebosh .faq .faq-item.active .ques span img:first-child {
  display: none;
}
.nebosh .faq .faq-item.active .ques span img:last-child {
  display: flex;
}
.nebosh .faq .form {
  margin-bottom: 0;
  background-color: #FFFFFF;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 8px;
}
.nebosh .faq .form .heading h2 {
  margin-top: 0;
}
.nebosh .faq .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid #9E9E9E;
  padding-bottom: 0.6rem;
}
.nebosh .faq .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.nebosh .faq .form .input-container span img {
  height: 100%;
  width: 100%;
}
.nebosh .faq .form .input-container span .red {
  display: none;
}
.nebosh .faq .form .input-container input,
.nebosh .faq .form .input-container textarea {
  width: 85%;
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
}
.nebosh .faq .form .input-container textarea {
  height: 34px;
  resize: none;
  overflow: auto;
}
.nebosh .faq .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #9E9E9E;
}
.nebosh .faq .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #9E9E9E;
}
.nebosh .faq .form .input-container ::placeholder {
  color: #9E9E9E;
}
.nebosh .faq .form .input-error {
  border-bottom: 1px solid #ff0000;
}
.nebosh .faq .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.nebosh .faq .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.nebosh .faq .form .input-error ::placeholder {
  color: #ff0000;
}
.nebosh .faq .form .input-error span .white {
  display: none;
}
.nebosh .faq .form .input-error span .red {
  display: flex;
}
.nebosh .faq .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.nebosh .faq .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.nebosh .faq .form .form-consent label {
  display: flex;
  font-size: 12px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
}
.nebosh .faq .form .form-consent label {
  color: #0F0F0F;
}
.nebosh .faq .form .form-consent p {
  font-size: 12px;
}
.nebosh .faq .form .form-consent a {
  font-weight: 600;
  color: #7BBBD1;
}
.nebosh .faq .form .consent-error,
.nebosh .faq .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.nebosh .faq .form .consent-error p,
.nebosh .faq .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 12px;
}
.nebosh .faq .form .buttons .btn-blue {
  min-width: 110px;
}
.nebosh .faq .form .buttons .btn-blue img {
  height: 16px;
  width: 16px;
}
.nebosh .testimonial {
  background-color: #7BBBD1;
}
.nebosh .testimonial .testimonial-container,
.nebosh .testimonial .testimonial-list,
.nebosh .testimonial .testimonial-item {
  display: flex;
  flex-direction: column;
}
.nebosh .testimonial .heading {
  margin-bottom: 2rem;
}
.nebosh .testimonial .testimonial-container .heading h4 {
  color: #FFFFFF;
}
.nebosh .testimonial .testimonial-item {
  background-color: rgba(0, 43, 127, 0.42);
  align-items: center;
  border-radius: 12px;
  padding: 1.5rem;
  padding-bottom: 6rem;
  width: 96%;
  margin: auto;
}
.nebosh .testimonial .testimonial-item p,
.nebosh .testimonial .testimonial-item h3 {
  color: #FFFFFF;
}
.nebosh .testimonial .testimonial-item h3 {
  font-size: 17px;
  margin-top: 0.8rem;
}
.nebosh .testimonial .testimonial-item p {
  margin: 1rem 0;
  text-align: center;
  min-height: 380px;
}
.nebosh .testimonial .testimonial-item img {
  width: 120px;
  height: 20px;
}
.nebosh .testimonial .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 120px;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
.nebosh .testimonial .owl-nav .owl-prev,
.nebosh .testimonial .owl-nav .owl-next {
  display: flex;
  width: 28px;
  height: 20px;
  background-image: url(/_public/images/nebosh/nav-arrow.svg);
  background-size: 100% 100%;
  opacity: 0.7;
}
.nebosh .testimonial .owl-nav .owl-next {
  transform: rotate(180deg);
}
.nebosh .testimonial .owl-nav .btn-active {
  opacity: 1;
}
.nebosh .testimonial .owl-dots {
  counter-reset: slides-num;
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  width: 35px;
  margin: auto;
  color: #FFFFFF;
}
.nebosh .testimonial .owl-dots:after {
  content: counter(slides-num);
  font-size: 18px;
  font-weight: 700;
  padding-left: 1.7rem;
}
.nebosh .testimonial .owl-dot {
  counter-increment: slides-num;
  margin-right: 5px;
}
.nebosh .testimonial .owl-dot.active:before {
  content: counter(slides-num) " /";
  font-size: 18px;
  position: absolute;
  left: -2px;
  top: 22px;
  font-weight: 700;
}
.nebosh .work .work-container,
.nebosh .work .work-list {
  display: flex;
  flex-direction: column;
}
.nebosh .work .heading {
  margin-bottom: 0;
}
.nebosh .work .work-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
  padding: 2rem 1.8rem;
  border-radius: 5px;
}
.nebosh .work .work-item img {
  width: 50px;
  height: 50px;
}
.nebosh .work .work-item span {
  display: flex;
  color: #F5F5F5;
  font-size: 50px;
}
.nebosh .work .work-item h3 {
  margin: 1.2rem 0;
  font-size: 17px;
  width: 100%;
}
.nebosh .footer {
  background-color: #002B7F;
}
.nebosh .footer .footer-container,
.nebosh .footer .footer-list,
.nebosh .footer .footer-info {
  display: flex;
  flex-direction: column;
}
.nebosh .footer .heading h2 {
  margin-top: 0;
}
.nebosh .footer .buttons {
  margin-top: 0;
  align-self: center;
}
.nebosh .footer .footer-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  border: 1px solid #FFFFFF;
  align-items: center;
  margin-top: 2rem;
}
.nebosh .footer .footer-item .icon {
  width: 30px;
  height: 30px;
}
.nebosh .footer .footer-item .footer-info {
  width: calc(100% - 45px);
}
.nebosh .footer .footer-item .footer-info .stars {
  width: 120px;
  height: 20px;
}
.nebosh .footer .footer-item .footer-info h3,
.nebosh .footer .footer-item .footer-info a {
  color: #FFFFFF;
}
.nebosh .footer .footer-item .footer-info h3 {
  margin-bottom: 0.3rem;
  font-size: 15px;
}
.nebosh .footer .footer-item .footer-info a {
  font-size: 13px;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nebosh .overview .info h3 {
    background-image: none;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .nebosh .buttons .btn-blue {
    font-size: 16px;
  }
  .nebosh .banner .active + .menu-links {
    width: 50%;
  }
  .nebosh .banner .sticky {
    padding: 1rem 2rem!important;
  }
  .nebosh .banner .banner-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .nebosh .banner .banner-item {
    width: 30%;
  }
  .nebosh .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nebosh .overview .overview-content {
    width: 50%;
  }
  .nebosh .overview .overview-info {
    margin-top: 0;
    position: sticky;
    top: 60px;
    width: 45%;
  }
  .nebosh .course .course-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nebosh .course .timer-content {
    width: 50%;
    position: sticky;
    top: 60px;
  }
  .nebosh .course .course-list {
    width: 46%;
  }
  .nebosh .course .course-item:first-child {
    margin-top: 0;
  }
  .nebosh .course .course-item .info {
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .nebosh .course .course-item .info p:nth-last-child(2) {
    width: 40%;
  }
  .nebosh .course .course-item .info .buttons {
    width: 55%;
    margin-top: 0.5rem;
    justify-content: flex-end;
  }
  .nebosh .course .course-item .info .buttons .btn-blue {
    font-size: 14px;
    min-width: 140px;
    padding: 8px 12px;
  }
  .nebosh .course .course-item .info .buttons .btn-blue img {
    width: 16px;
    height: 16px;
  }
  .nebosh .benefit .benefit-container {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nebosh .benefit .benefit-content {
    align-items: flex-start;
    width: 48%;
  }
  .nebosh .benefit .benefit-content .heading {
    align-items: flex-start;
  }
  .nebosh .benefit .benefit-content .heading h2 span {
    margin: 0;
  }
  .nebosh .benefit .benefit-content .heading h2,
  .nebosh .benefit .benefit-content .heading h4 {
    text-align: left;
  }
  .nebosh .benefit .benefit-content p {
    text-align: left;
  }
  .nebosh .benefit .benefit-img {
    width: 48%;
    position: sticky;
    top: 60px;
    margin-top: 0;
  }
  .nebosh .method .method-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .nebosh .method .method-list {
    width: 42%;
    margin-top: 0;
  }
  .nebosh .method .method-list .method-item h3 {
    font-size: 15px;
  }
  .nebosh .method .method-content {
    width: 50%;
  }
  .nebosh .method .method-content .method-info {
    margin-top: 0;
  }
  .nebosh .fact .fact-container {
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .nebosh .fact .fact-content {
    width: 100%;
  }
  .nebosh .fact .skill-content {
    width: 48%;
  }
  .nebosh .fact .budget-content {
    width: 46%;
    margin-top: 0;
  }
  .nebosh .fact .fact-list {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .nebosh .fact .fact-item {
    width: 23%;
  }
  .nebosh .staff .staff-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nebosh .staff .staff-content {
    width: 48%;
    align-items: flex-start;
  }
  .nebosh .staff .staff-img {
    width: 46%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .nebosh .choose .choose-container .heading {
    align-items: center;
  }
  .nebosh .choose .choose-container .heading h2 span {
    margin: auto;
  }
  .nebosh .choose .choose-container .heading h4,
  .nebosh .choose .choose-container .heading h2,
  .nebosh .choose .choose-container .heading p {
    text-align: center;
  }
  .nebosh .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .nebosh .choose .choose-item {
    width: 45%;
  }
  .nebosh .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nebosh .faq .faq-list {
    overflow-y: scroll;
    max-height: 502px;
    padding-right: 1rem;
  }
  .nebosh .faq .faq-content {
    width: 48%;
  }
  .nebosh .faq .form {
    width: 46%;
    margin-top: 0;
  }
  .nebosh .testimonial .testimonial-item p {
    min-height: 135px;
  }
  .nebosh .work .work-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .nebosh .work .work-item {
    width: 47%;
    margin-right: 2rem;
  }
  .nebosh .work .work-item:nth-child(2),
  .nebosh .work .work-item:last-child {
    margin-right: 0;
  }
  .nebosh .footer .footer-list {
    justify-content: space-around;
    flex-flow: wrap;
  }
  .nebosh .footer .footer-list .footer-item {
    width: 47%;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .nebosh .heading h2 {
    font-size: 32px;
  }
  .nebosh .banner {
    background-image: url(/_public/images/nebosh/banner-bg.png);
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
  }
  .nebosh .banner::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -135px;
    height: 610px;
    width: 600px;
    border-radius: 100%;
    background-color: #7BBBD1;
  }
  .nebosh .banner::after {
    content: '';
    position: absolute;
    bottom: 13%;
    left: 52%;
    height: 110px;
    width: 130px;
    background-image: url(/_public/images/nebosh/grid.png);
    background-size: 100% 100%;
  }
  .nebosh .banner .tka-logo {
    width: 220px;
  }
  .nebosh .banner .logo-container {
    background-color: transparent;
  }
  .nebosh .banner .sticky {
    background-color: #002B7F;
  }
  .nebosh .banner .menu-links {
    display: flex;
    width: 75%;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .nebosh .banner .menu,
  .nebosh .banner .menu-toggle {
    display: none;
  }
  .nebosh .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .nebosh .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.3rem;
    padding: 0;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-weight: 600;
  }
  .nebosh .banner ul .links-li::before {
    content: "•";
    position: absolute;
    color: transparent;
    text-shadow: transparent 0px 0px;
    font-size: 20px;
    bottom: -20px;
    left: 0px;
    right: 0px;
    width: 8px;
    transition: text-shadow 0.5s ease 0s, color 1s ease 0s;
    margin: auto;
  }
  .nebosh .banner ul .links-li:hover::before {
    color: #FFFFFF;
    text-shadow: 10px 0 #FFFFFF, -10px 0 #FFFFFF;
  }
  .nebosh .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .nebosh .banner ul .links-li:last-child::before {
    content: none;
  }
  .nebosh .banner ul .buttons .btn-blue {
    min-width: 146px;
    padding: 8px 18px;
  }
  .nebosh .banner ul .buttons .btn-white {
    display: flex;
    border-radius: 50px;
    margin-right: 1.5rem;
    border: 1px solid #FFFFFF;
    padding: 10px;
    min-height: 41px;
    width: 41px;
    overflow: hidden;
    position: relative;
    transition: 1s all;
    z-index: 1;
  }
  .nebosh .banner ul .buttons .btn-white::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #7BBBD1;
    z-index: -1;
    transition: 1s all;
    border-radius: 30px;
  }
  .nebosh .banner ul .buttons .btn-white:hover::before {
    height: 100%;
    bottom: auto;
    top: 0;
    -webkit-animation: fadeInLeft 1s linear;
    animation: fadeInLeft 1s linear;
  }
  .nebosh .banner ul .buttons .btn-white img {
    width: 18px;
    height: 18px;
  }
  .nebosh .banner .banner-content {
    width: 45%;
  }
  .nebosh .banner .banner-skill {
    margin-top: 0;
    width: 51%;
    position: absolute;
    right: -15px;
    top: 30%;
  }
  .nebosh .banner .banner-skill .heading {
    width: 68%;
    align-items: flex-end;
  }
  .nebosh .banner .banner-skill .heading h2 {
    font-weight: 800;
    font-size: 42px;
  }
  .nebosh .banner .banner-skill .number {
    display: flex;
  }
  .nebosh .banner .banner-item {
    width: 31%;
  }
  .nebosh .overview .overview-container {
    width: 97%;
  }
  .nebosh .overview .overview-info {
    width: 38%;
    height: 310px;
    top: 0px;
    align-self: center;
    position: relative;
  }
  .nebosh .overview .overview-info::before {
    content: '';
    position: absolute;
    top: 26px;
    right: -24px;
    height: 96%;
    width: 96%;
    z-index: -1;
    border-radius: 10px;
    border: 4px solid #002B7F;
  }
  .nebosh .overview .content-info {
    transform: translate(-70px, -26px);
  }
  .nebosh .course .timer-content {
    background-image: url(/_public/images/nebosh/timer-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .nebosh .course .timer-content .timer {
    width: 86px;
    margin-right: 1.8rem;
  }
  .nebosh .course .timer-content .timer span {
    width: 86px;
    height: 86px;
    font-size: 38px;
  }
  .nebosh .course .timer-content .timer p {
    font-size: 16px;
  }
  .nebosh .benefit .benefit-container {
    align-items: center;
  }
  .nebosh .benefit .benefit-img {
    position: static;
    top: 0px;
  }
  .nebosh .method .method-list {
    padding: 2rem 3rem 0 3rem;
  }
  .nebosh .method .method-list .method-item {
    width: 100%;
    margin: 1rem auto 0;
  }
  .nebosh .fact {
    background-image: url(/_public/images/nebosh/skill-bg.png);
    background-repeat: no-repeat;
    background-size: 75% 90%;
    background-position: center left;
  }
  .nebosh .fact .budget-content {
    padding: 2rem;
  }
  .nebosh .staff .staff-img {
    position: static;
    top: 0px;
  }
  .nebosh .choose {
    background-image: url(/_public/images/nebosh/grid.png);
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .nebosh .choose .choose-container .heading p {
    width: 85%;
    margin: 0.8rem 0 auto;
  }
  .nebosh .choose .choose-item {
    width: 22%;
  }
  .nebosh .faq .form {
    padding: 2rem;
  }
  .nebosh .testimonial {
    background-image: url(/_public/images/nebosh/testimonial-bg.png);
    background-color: transparent;
    background-size: 100% 100%;
  }
  .nebosh .testimonial .testimonial-item {
    width: 72%;
    margin: auto;
    padding: 2.5rem 2.5rem 6rem 2.5rem;
  }
  .nebosh .testimonial .testimonial-item p {
    min-height: 151px;
  }
  .nebosh .work .work-item {
    width: 31%;
  }
  .nebosh .work .work-item p {
    min-height: 125px;
  }
  .nebosh .work .work-item:nth-child(2) {
    margin-right: 2rem;
  }
  .nebosh .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .nebosh .footer .heading {
    margin-bottom: 0;
    width: 62%;
  }
  .nebosh .footer .heading h2 span {
    margin: 0;
  }
  .nebosh .footer .heading h2,
  .nebosh .footer .heading p {
    text-align: left;
  }
  .nebosh .footer .buttons {
    align-self: flex-end;
    justify-content: flex-end;
    width: 30%;
  }
  .nebosh .footer .footer-list {
    justify-content: space-between;
    width: 100%;
  }
  .nebosh .footer .footer-list .footer-item {
    padding: 1rem;
    width: 35%;
  }
  .nebosh .footer .footer-list .footer-item:first-child {
    width: 23%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .nebosh .heading h2 {
    font-size: 40px;
  }
  .nebosh .banner {
    padding-bottom: 6rem;
  }
  .nebosh .banner::before {
    height: 750px;
    width: 715px;
  }
  .nebosh .banner .logo-container .container {
    padding-bottom: 1.7rem;
  }
  .nebosh .banner .banner-container {
    padding-top: 5rem;
  }
  .nebosh .banner .banner-content h1 {
    font-size: 46px;
  }
  .nebosh .banner .banner-content h1 span {
    font-size: 70px;
  }
  .nebosh .banner .banner-content h1 span img {
    width: 74px;
    height: 74px;
  }
  .nebosh .banner .sticky {
    padding: 1rem 0!important;
  }
  .nebosh .banner .banner-skill {
    width: 46%;
  }
  .nebosh .banner .banner-skill .heading {
    width: 56%;
  }
  .nebosh .banner .banner-item {
    margin-top: 3.5rem;
  }
  .nebosh .banner .banner-item img {
    height: 65px;
    width: 65px;
  }
  .nebosh .overview .overview-content {
    width: 55%;
  }
  .nebosh .overview .overview-info {
    width: 33%;
    align-self: flex-start;
    height: 340px;
  }
  .nebosh .course .timer-content {
    padding: 3rem 2rem;
    width: 45%;
  }
  .nebosh .course .course-list {
    width: 50%;
  }
  .nebosh .benefit .benefit-img {
    width: 42%;
  }
  .nebosh .method .method-list {
    width: 32%;
  }
  .nebosh .method .method-content {
    width: 60%;
  }
  .nebosh .fact {
    background-size: 66% 95%;
  }
  .nebosh .fact .fact-container {
    align-items: flex-start;
  }
  .nebosh .fact .skill-content {
    width: 65%;
  }
  .nebosh .fact .skill-item {
    width: 85%;
  }
  .nebosh .fact .budget-content {
    width: 33%;
  }
  .nebosh .fact .fact-content {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5rem;
  }
  .nebosh .fact .fact-content .heading {
    width: 30%;
    align-items: flex-start;
  }
  .nebosh .fact .fact-content .heading h2 span {
    display: none;
  }
  .nebosh .fact .fact-content .heading h2,
  .nebosh .fact .fact-content .heading h4 {
    text-align: left;
  }
  .nebosh .fact .fact-list {
    width: 68%;
  }
  .nebosh .fact .fact-item {
    margin-top: 0;
    padding: 1.8rem 1rem;
  }
  .nebosh .faq .faq-container {
    position: relative;
  }
  .nebosh .faq .form {
    width: 40%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .nebosh .faq .faq-list {
    max-height: 388px;
  }
  .nebosh .faq .faq-content {
    position: relative;
  }
  .nebosh .faq .faq-content::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/nebosh/grid.svg);
    background-size: 100% 100%;
    width: 34px;
    height: 240px;
    right: -108px;
    bottom: -135px;
  }
  .nebosh .testimonial {
    padding-top: 7rem;
  }
  .nebosh .testimonial .testimonial-item p {
    min-height: 125px;
  }
  .nebosh .work .heading {
    padding-left: 0.8rem;
  }
  .nebosh .work .work-item p {
    min-height: 100px;
  }
  .nebosh .footer {
    background-image: url(/_public/images/nebosh/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    padding: 3rem 0;
  }
  .nebosh .footer::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/nebosh/square.png);
    right: 0;
    background-size: 100% 100%;
    top: 0;
    height: 140px;
    width: 166px;
  }
  .nebosh .footer .footer-list .footer-item {
    width: 29%!important;
  }
}
@media (min-width : 1500px) {
  .nebosh .banner .banner-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nebosh .banner .banner-skill {
    position: relative;
    width: 50%;
  }
  .nebosh .footer {
    background-image: none;
  }
  .nebosh .footer::before {
    content: none;
  }
}
