@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;
  font-size: 11px;
  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: 12px;
  width: 12px;
  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: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #000000;
}
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%;
}
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;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.health .buttons {
  display: flex;
  margin-top: 1.5rem;
  z-index: 0;
}
.health .buttons .btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: 0;
  min-width: 160px;
  background-color: #00B5DB;
  color: #FFFFFF;
  position: relative;
  transition: 1s all;
  z-index: 1;
  overflow: hidden;
}
.health .buttons .btn-blue img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.health .buttons .btn-blue::before,
.health .buttons .btn-blue::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 1s ease-in-out;
  z-index: -1;
  border-top: 40px solid #020211;
  border-bottom: 40px solid #020211;
}
.health .buttons .btn-blue::before {
  border-right: 34px solid transparent;
  transform: translateX(-100%);
}
.health .buttons .btn-blue::after {
  border-left: 34px solid transparent;
  transform: translateX(100%);
}
.health .buttons .btn-blue:hover {
  box-shadow: 0 0 5px #FFFFFF;
}
.health .buttons .btn-blue:hover::before {
  transform: translateX(-18%);
}
.health .buttons .btn-blue:hover::after {
  transform: translateX(18%);
}
.health .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.health .heading p {
  margin-top: 1rem;
}
.health .heading h2 {
  width: 100%;
}
.health .heading h2 span {
  color: #00B5DB;
}
.health .center-heading {
  justify-content: center;
  align-items: center;
}
.health .center-heading h2,
.health .center-heading p {
  text-align: center;
}
.health .center-heading h2 span {
  justify-content: center;
}
.health .white-heading h2,
.health .white-heading p {
  color: #FFFFFF;
}
.health .banner {
  flex-direction: column;
  background-color: #020211;
  padding-top: 1.5rem;
}
.health .banner .logo-container,
.health .banner .tka-logo,
.health .banner .menu,
.health .banner .menu-toggle {
  display: flex;
}
.health .banner .logo-container {
  height: 100%;
}
.health .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  height: auto;
  border-radius: 50px;
}
.health .banner .tka-logo {
  max-width: 182px;
}
.health .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.health .banner .menu {
  margin-left: auto;
}
.health .banner .menu img {
  width: 22px;
  height: 23px;
}
.health .banner .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #00B5DB;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.health .banner .menu-toggle {
  font-weight: 500;
  color: #FFFFFF;
}
.health .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.health .banner ul .links-li {
  color: #FFFFFF;
  padding: 8px 0;
  border-bottom: 1px dotted #FFFFFF;
  font-weight: 600;
}
.health .banner ul .links-li:first-child {
  padding-top: 0;
}
.health .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.health .banner ul .links-li:last-child {
  display: none;
}
.health .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.health .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.health .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
}
.health .banner .sticky .container {
  border-radius: 0px;
}
.health .banner .sticky-down {
  top: -100px;
}
.health .banner .container {
  height: 100%;
}
.health .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.health .banner .banner-container h1,
.health .banner .banner-container p {
  color: #FFFFFF;
}
.health .banner .banner-container h1 {
  width: 100%;
  font-size: 26px;
  margin-bottom: 1rem;
}
.health .banner .banner-container h1 img {
  width: 40px;
  height: 40px;
  transform: translateY(10px);
  margin-right: 0.5rem;
}
.health .banner .banner-container h1 span {
  color: #00B5DB;
}
.health .overview .overview-container,
.health .overview .overview-content,
.health .overview .overview-info {
  display: flex;
  flex-direction: column;
}
.health .overview .overview-content {
  align-items: center;
}
.health .overview .overview-content p {
  text-align: center;
}
.health .overview .overview-content p:nth-child(3) {
  margin-top: 1rem;
}
.health .overview .overview-info {
  align-items: center;
  margin-top: 8rem;
  align-self: center;
  padding-bottom: 2.8rem;
  width: 240px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}
.health .overview .overview-info .image {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -85px;
  left: 0;
  right: 0;
  margin: auto;
}
.health .overview .overview-info h3,
.health .overview .overview-info p {
  text-align: center;
}
.health .overview .overview-info h3 {
  width: 100%;
  margin: 2rem 0 1.2rem;
  font-size: 20px;
}
.health .overview .overview-info p {
  color: rgba(7, 7, 7, 0.42);
  font-size: 17px;
}
.health .overview .overview-info .buttons {
  margin-top: 2rem;
}
.health .overview .overview-info::before {
  content: "";
  position: absolute;
  background-image: url(/_public/images/health-safety/triangle.png);
  background-size: 100% 100%;
  height: 89px;
  width: calc(100% + 15px);
  left: -8px;
  top: -89px;
}
.health .overview .overview-info::after {
  content: '';
  position: absolute;
  background-image: url(/_public/images/health-safety/border.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 83%;
  width: calc(100% + 34px);
  height: calc(100% + 20px);
  left: -17px;
  top: 0;
  z-index: -1;
}
.health .work {
  background-color: #F6F4EF;
}
.health .work .work-container,
.health .work .work-content,
.health .work .work-info {
  display: flex;
  flex-direction: column;
}
.health .work .work-container {
  align-items: flex-start;
}
.health .work .work-content {
  align-items: center;
  width: 100%;
}
.health .work .work-content p {
  text-align: center;
}
.health .work .work-content p:nth-child(3) {
  margin-top: 1rem;
}
.health .work .work-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.health .work .work-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.health .work .work-info .image img {
  width: 100%;
  height: 100%;
}
.health .course .course-container,
.health .course .course-list,
.health .course .course-item {
  display: flex;
  flex-direction: column;
}
.health .course .heading {
  margin-bottom: 0;
}
.health .course .heading p {
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.health .course .heading p strong {
  color: #00B5DB;
}
.health .course .course-item {
  border: 1px dashed #020211;
  padding: 2.5rem 1rem 1.5rem;
  border-radius: 10px;
  align-items: center;
  margin-top: 3rem;
  width: 272px;
  align-self: center;
  position: relative;
}
.health .course .course-item span {
  display: flex;
  width: 60px;
  height: 60px;
  top: -28px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transition: 1s all;
}
.health .course .course-item span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.health .course .course-item span img:last-child {
  display: none;
}
.health .course .course-item h3 {
  width: 100%;
  font-size: 14px;
  margin-bottom: 0.5rem;
  text-align: center;
}
.health .course .course-item p {
  font-size: 12px;
  text-align: center;
}
.health .course .course-item::before,
.health .course .course-item::after {
  content: '';
  position: absolute;
  background-color: #F6F4EF;
  height: 75%;
  width: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 1s all;
}
.health .course .course-item::before {
  left: -1px;
}
.health .course .course-item::after {
  right: -1px;
}
.health .course .course-item:hover::before,
.health .course .course-item:hover::after {
  background-color: #020211;
}
.health .course .course-item:hover span img:first-child {
  display: none;
}
.health .course .course-item:hover span img:last-child {
  display: flex;
}
.health .course .buttons {
  margin-top: 1rem;
}
.health .course .buttons .btn-blue {
  min-width: 130px;
  font-size: 14px;
  padding: 8px 12px;
}
.health .course .buttons .btn-blue img {
  width: 18px;
  height: 18px;
}
.health .method {
  padding-top: 0;
}
.health .method .method-container,
.health .method .method-list,
.health .method .method-item,
.health .method .content {
  display: flex;
  flex-direction: column;
}
.health .method .method-container {
  align-items: flex-start;
}
.health .method .method-list {
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.health .method .heading {
  margin-bottom: 0;
}
.health .method .method-item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-top: 2rem;
  width: 272px;
  align-self: center;
  transition: 1s all;
  height: 100%;
  align-items: flex-start;
}
.health .method .method-item:hover {
  background-color: #00B5DB;
}
.health .method .method-item:hover .content h3,
.health .method .method-item:hover .content a {
  color: #FFFFFF;
}
.health .method .method-item:hover .content a img:first-child {
  display: none;
}
.health .method .method-item:hover .content a img:last-child {
  display: flex;
}
.health .method .icon {
  display: flex;
  position: absolute;
  width: 65px;
  height: 65px;
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 1rem;
  right: 15px;
  top: 15px;
}
.health .method .icon img {
  width: 100%;
  height: 100%;
}
.health .method .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.health .method .image img {
  width: 100%;
  height: 100%;
}
.health .method .content {
  padding: 1.5rem 2rem;
  width: 100%;
}
.health .method .content h3 {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.health .method .content a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.health .method .content a img {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}
.health .method .content a img:last-child {
  display: none;
}
.health .service {
  background-color: #020211;
}
.health .service .service-container,
.health .service .service-content,
.health .service .service-item,
.health .service .pro-list,
.health .service .pro-item,
.health .service .form,
.health .service .input-list {
  display: flex;
  flex-direction: column;
}
.health .service .service-content .text {
  color: #FFFFFF;
  margin: 1.5rem 0 2rem;
}
.health .service .service-list {
  display: flex;
  justify-content: space-between;
}
.health .service .service-item {
  width: 28%;
  align-items: center;
}
.health .service .service-item span {
  display: flex;
  background-color: #F6F4EF;
  padding: 0.8rem;
  border-radius: 50px;
  width: 65px;
  height: 65px;
}
.health .service .service-item span img {
  width: 100%;
  height: 100%;
}
.health .service .service-item p {
  color: #FFFFFF;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}
.health .service .pro-list {
  overflow: hidden;
}
.health .service .pro-item {
  margin-bottom: 2rem;
}
.health .service .pro-item h4 {
  color: #FFFFFF;
  font-size: 15px;
  width: 66%;
}
.health .service .pro-item .bar {
  display: flex;
  background-color: #FFFFFF;
  width: 100%;
  height: 6px;
  margin-top: 0.5rem;
}
.health .service .pro-item .bar .image {
  display: flex;
  width: 0%;
  transition: 2s all;
  position: relative;
}
.health .service .pro-item .bar .image span {
  display: flex;
  background-color: #FFFFFF;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 15px;
  margin: auto;
  border: 3px solid #FF6232;
}
.health .service .pro-item:nth-child(2) .bar span span {
  border: 3px solid #9B3CE6;
}
.health .service .pro-item:last-child .bar span span {
  border: 3px solid #00B5DB;
}
.health .service .form {
  margin-top: 3rem;
  padding: 1rem;
  margin-bottom: 0;
  background-color: #FFFFFF;
}
.health .service .form .input-list .input-error {
  border-color: #ff0000;
}
.health .service .form .input-list .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.health .service .form .input-list .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.health .service .form .input-list .input-error ::placeholder {
  color: #ff0000;
}
.health .service .form .input-list .input-error span .white {
  display: none;
}
.health .service .form .input-list .input-error span .red {
  display: flex;
}
.health .service .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background-color: #F6F4EF;
  justify-content: space-between;
  border: 1px solid transparent;
}
.health .service .form .input-container input,
.health .service .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: #F6F4EF;
}
.health .service .form .input-container textarea {
  resize: none;
  overflow: auto;
  min-height: 50px;
}
.health .service .form .input-container span {
  display: flex;
  width: 16px;
  height: 16px;
}
.health .service .form .input-container span img {
  width: 100%;
  height: 100%;
}
.health .service .form .input-container span .white {
  display: flex;
}
.health .service .form .input-container span .red {
  display: none;
}
.health .service .form .input-container ::-webkit-input-placeholder {
  color: rgba(7, 7, 7, 0.56);
}
.health .service .form .input-container :-ms-input-placeholder {
  color: rgba(7, 7, 7, 0.56);
}
.health .service .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.health .service .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.health .service .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 90%;
}
.health .service .form .form-consent p {
  font-size: 11px;
}
.health .service .form .form-consent a {
  color: #00B5DB;
  font-weight: 600;
}
.health .service .form .consent-error p {
  color: #ff0000;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.health .service .form .buttons {
  align-self: center;
}
.health .service .form .buttons .btn-blue {
  min-width: 120px;
  font-size: 14px;
}
.health .service .form .buttons img {
  height: 16px;
}
.health .choose .choose-container,
.health .choose .choose-content,
.health .choose .image,
.health .choose .choose-list,
.health .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.health .choose .heading {
  padding: 1.5rem;
  margin-bottom: 0;
}
.health .choose .choose-content {
  background-color: #F6F4EF;
  padding-bottom: 2.5rem;
  width: 272px;
  align-self: center;
  height: 100%;
}
.health .choose .choose-content .buttons {
  align-self: center;
  margin-top: 2rem;
}
.health .choose .image {
  width: 100%;
  height: 100%;
}
.health .choose .image h3 {
  background-color: #00B5DB;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 15px;
}
.health .choose .image img {
  width: 100%;
  height: 100%;
}
.health .choose .choose-item {
  border-top: 2px solid #00B5DB;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  width: 272px;
  align-self: center;
}
.health .choose .choose-item img {
  width: 35px;
  height: 35px;
}
.health .choose .choose-item h3 {
  font-size: 15px;
  margin: 1rem 0;
}
.health .choose .choose-item p {
  font-size: 13px;
  line-height: 1.4;
}
.health .benefit {
  background-color: #F6F4EF;
}
.health .benefit .benefit-container,
.health .benefit .benefit-content,
.health .benefit .benefit-info {
  display: flex;
  flex-direction: column;
}
.health .benefit .benefit-container {
  align-items: flex-start;
}
.health .benefit .benefit-content {
  width: 100%;
}
.health .benefit .benefit-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.health .benefit .benefit-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.health .benefit .benefit-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url(/_public/images/health-safety/square.png);
  background-size: 100% 100%;
  width: 18px;
  height: 18px;
}
.health .benefit .benefit-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.health .benefit .benefit-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.health .benefit .benefit-info .image img {
  width: 100%;
  height: 100%;
}
.health .fact .fact-container,
.health .fact .fact-list,
.health .fact .fact-item {
  display: flex;
  flex-direction: column;
}
.health .fact .heading {
  background-color: #020211;
  padding: 1rem;
}
.health .fact .fact-container {
  background-color: #F6F4EF;
}
.health .fact .fact-item {
  align-items: center;
  margin-bottom: 2rem;
}
.health .fact .fact-item img {
  width: 33px;
  height: 33px;
  margin-bottom: 0.5rem;
}
.health .fact .fact-item p {
  text-align: center;
  font-weight: 500;
  font-size: 13px;
}
.health .fact .fact-count {
  display: flex;
}
.health .fact .fact-count span,
.health .fact .fact-count h4 {
  font-size: 28px;
  font-weight: 700;
}
.health .client {
  background-color: #020211;
}
.health .client .client-container,
.health .client .client-list,
.health .client .client-item {
  display: flex;
  flex-direction: column;
}
.health .client .client-item {
  background-color: #FFFFFF;
  padding: 1.5rem 1rem;
  width: 94%;
  margin-bottom: 3rem;
}
.health .client .client-item h4 {
  margin: 1.5rem 0 0.5rem;
  font-size: 18px;
}
.health .client .client-item img {
  width: 83px;
  height: 17px;
}
.health .client .client-item p {
  position: relative;
}
.health .client .client-item p::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/health-safety/quote.svg);
  background-size: 100% 100%;
  width: 40px;
  height: 40px;
  left: -7px;
  top: -13px;
}
.health .client .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100px;
}
.health .client .owl-nav .owl-prev,
.health .client .owl-nav .owl-next {
  display: flex;
  background-image: url(/_public/images/health-safety/nav-arrow.svg);
  background-size: 100% 100%;
  width: 33px;
  height: 33px;
  opacity: 0.5;
}
.health .client .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.health .client .owl-nav .btn-active {
  opacity: 1;
}
.health .manage .manage-container,
.health .manage .content,
.health .manage .faq,
.health .manage .faq-list,
.health .manage .faq-item {
  display: flex;
  flex-direction: column;
}
.health .manage .content ul li {
  margin-top: 0.5rem;
}
.health .manage .faq {
  margin-top: 2rem;
}
.health .manage .faq-item {
  margin-top: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.health .manage .faq-item.active .ques {
  background-color: #F6F4EF;
}
.health .manage .faq-item.active .ques span img {
  transform: rotate(180deg);
}
.health .manage .ques {
  display: flex;
  padding: 0.8rem 1.3rem;
  justify-content: space-between;
  cursor: pointer;
}
.health .manage .ques h3 {
  font-size: 15px;
  width: calc(100% - 30px);
  padding-left: 1.5rem;
  position: relative;
}
.health .manage .ques h3::before {
  content: '?';
  position: absolute;
  color: #00B5DB;
  font-size: 25px;
  left: 0;
  top: -5px;
}
.health .manage .ques span {
  display: flex;
  width: 22px;
  height: 22px;
  background-color: #FFFFFF;
  border-radius: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 0.4rem;
}
.health .manage .ques span img {
  transition: 1s all;
  width: 100%;
  height: 100%;
}
.health .manage .ans {
  display: none;
  padding: 0.5rem 1rem 1rem 3rem;
}
.health .footer {
  background-color: #020211;
}
.health .footer .footer-container,
.health .footer .contact-list,
.health .footer .info {
  display: flex;
  flex-direction: column;
}
.health .footer .contact-item {
  display: flex;
}
.health .footer .contact-item:nth-child(2) {
  margin-top: 1rem;
}
.health .footer .contact-item span {
  display: flex;
  background-color: #FFFFFF;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  padding: 0.6rem;
  margin-right: 1rem;
}
.health .footer .contact-item span img {
  width: 100%;
  height: 100%;
}
.health .footer .info {
  width: calc(100% - 70px);
}
.health .footer .info h3 {
  font-size: 15px;
  color: #FFFFFF;
}
.health .footer .info a {
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 0.2rem;
  font-weight: 500;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .health .banner .menu.active + .menu-links {
    width: 50%;
  }
  .health .banner .logo-container .container {
    padding: 1.5rem 2rem;
  }
  .health .banner .sticky .container {
    padding: 1.2rem 2rem;
  }
  .health .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .health .overview .overview-content {
    width: 52%;
    align-items: flex-start;
  }
  .health .overview .overview-content .heading h2 {
    text-align: left;
  }
  .health .overview .overview-content p {
    text-align: left;
  }
  .health .overview .overview-info {
    width: 42%;
    align-self: flex-start;
    position: sticky;
    top: 60px;
  }
  .health .work .work-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .health .work .work-content {
    width: 48%;
    align-items: flex-start;
  }
  .health .work .work-content h2,
  .health .work .work-content p {
    text-align: left;
  }
  .health .work .work-info {
    width: 46%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .health .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .health .course .course-item {
    width: 45%;
    margin-right: 1rem;
  }
  .health .course .course-item h3 {
    min-height: 42px;
  }
  .health .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .health .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .health .method .method-item {
    width: 46%;
  }
  .health .service .service-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .health .service .service-content {
    width: 48%;
  }
  .health .service .form {
    width: 47%;
    margin-top: 0;
  }
  .health .choose .choose-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .health .choose .choose-content {
    align-self: flex-start;
    width: 48%;
    position: sticky;
    top: 60px;
  }
  .health .choose .choose-list {
    width: 50%;
  }
  .health .choose .choose-item:first-child {
    margin-top: 0;
  }
  .health .benefit .benefit-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .health .benefit .benefit-info {
    width: 47%;
    position: sticky;
    top: 60px;
    margin-top: 0;
  }
  .health .benefit .benefit-content {
    width: 47%;
  }
  .health .fact .heading {
    margin-bottom: 0;
  }
  .health .fact .fact-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .health .fact .fact-item {
    width: 25%;
    margin-top: 2rem;
  }
  .health .client {
    background-image: url(/_public/images/health-safety/client-bg.png);
    background-size: 100% 100%;
    background-color: transparent;
  }
  .health .client .client-container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  .health .client .heading {
    width: 45%;
    margin-bottom: 0;
  }
  .health .client .client-list {
    width: 48%;
    position: static;
  }
  .health .client .client-item {
    margin: auto;
  }
  .health .client .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .health .manage .manage-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .health .manage .content {
    width: 47%;
    position: sticky;
    top: 60px;
    height: 100%;
  }
  .health .manage .faq {
    width: 48%;
    margin-top: 0;
  }
  .health .footer .contact-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .health .footer .contact-item:first-child {
    width: 18%;
  }
  .health .footer .contact-item:nth-child(2) {
    width: 32%;
    margin-top: 0;
  }
  .health .footer .buttons {
    width: 42%;
    margin-top: 0;
    justify-content: flex-end;
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .health .heading h2 {
    font-size: 28px;
  }
  .health .buttons .btn-blue {
    font-size: 16px;
  }
  .health .banner {
    background-image: url(/_public/images/health-safety/banner-bg.png);
    background-size: 100% 100%;
    position: relative;
  }
  .health .banner::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/health-safety/banner-info.png);
    background-size: 100% 100%;
    width: 47%;
    height: 87%;
    right: 0;
    top: 0;
    z-index: 0;
  }
  .health .banner .logo-container .container {
    z-index: 1;
  }
  .health .banner .tka-logo {
    max-width: 230px;
  }
  .health .banner .menu-links {
    width: 75%;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .health .banner .menu {
    display: none;
  }
  .health .banner .menu-toggle {
    display: none;
  }
  .health .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .health .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
    color: #000000;
    z-index: 1;
    position: relative;
  }
  .health .banner ul .links-li::before,
  .health .banner ul .links-li::after {
    content: "";
    position: absolute;
    top: 0;
    background-color: #020211;
    z-index: -1;
    transition: 0.7s ease;
  }
  .health .banner ul .links-li::before {
    left: 50%;
  }
  .health .banner ul .links-li::after {
    right: 50%;
  }
  .health .banner ul .links-li:hover {
    color: #020211;
  }
  .health .banner ul .links-li:hover::before,
  .health .banner ul .links-li:hover::after {
    width: 2px;
    height: 100%;
  }
  .health .banner ul .links-li:hover::before {
    left: -6px;
  }
  .health .banner ul .links-li:hover::after {
    right: -6px;
  }
  .health .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .health .banner ul .links-li:last-child::before,
  .health .banner ul .links-li:last-child::after {
    content: none;
  }
  .health .banner ul .links-li .btn-white {
    border: 1px solid #000000;
    min-width: 45px;
    height: 45px;
    border-radius: 50px;
    padding: 0.8rem;
    margin-right: 1.3rem;
    overflow: hidden;
    position: relative;
  }
  .health .banner ul .links-li .btn-white img {
    width: 17px;
    height: 17px;
    margin-right: 0;
  }
  .health .banner ul .links-li .btn-white::before,
  .health .banner ul .links-li .btn-white::after {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    bottom: 0;
    left: 0;
    transition: 1s ease-in-out;
    z-index: -1;
    border-top: 40px solid #F6F4EF;
    border-bottom: 40px solid #F6F4EF;
  }
  .health .banner ul .links-li .btn-white::before {
    border-right: 13px solid transparent;
    transform: translateX(-100%);
  }
  .health .banner ul .links-li .btn-white::after {
    border-left: 13px solid transparent;
    transform: translateX(100%);
  }
  .health .banner ul .links-li .btn-white:hover {
    box-shadow: 0 0 5px #FFFFFF;
  }
  .health .banner ul .links-li .btn-white:hover::before {
    transform: translateX(-18%);
  }
  .health .banner ul .links-li .btn-white:hover::after {
    transform: translateX(18%);
  }
  .health .banner .banner-container {
    width: 52%;
  }
  .health .overview .overview-content {
    width: 65%;
  }
  .health .overview .overview-info {
    width: 30%;
    position: relative;
    top: 0;
  }
  .health .overview .overview-info .image {
    width: 120px;
    height: 120px;
    top: -98px;
  }
  .health .overview .overview-info h3 {
    margin-top: 3.5rem;
  }
  .health .work .work-info {
    position: static;
    top: 0;
  }
  .health .course .course-item {
    width: 32%;
  }
  .health .course .course-item:nth-child(2n) {
    margin-right: 1rem;
  }
  .health .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .health .method .method-list {
    justify-content: space-between;
  }
  .health .method .method-item {
    width: 23.5%;
  }
  .health .method .content h3 {
    min-height: 50px;
  }
  .health .service .pro-item h4 {
    width: 100%;
  }
  .health .service .form {
    padding: 1.5rem;
  }
  .health .service .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .health .service .form .input-container {
    width: 48%;
  }
  .health .service .form .input-container:last-child {
    width: 100%;
  }
  .health .choose .choose-container {
    align-items: center;
    padding-left: 2rem;
  }
  .health .choose .choose-content {
    width: 41%;
  }
  .health .choose .choose-content .buttons {
    padding-left: 2.5rem;
    align-self: flex-start;
  }
  .health .choose .heading {
    padding: 3rem 2.5rem;
  }
  .health .choose .heading h2,
  .health .choose .heading p {
    text-align: left;
  }
  .health .choose .image {
    transform: translateX(29px);
    position: relative;
  }
  .health .choose .image h3 {
    position: absolute;
    padding: 1rem 2rem;
    transform: rotate(-90deg);
    top: 100px;
    left: -155px;
  }
  .health .choose .image img {
    min-height: 255px;
  }
  .health .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .health .choose .choose-item {
    width: 47%;
  }
  .health .choose .choose-item h3 {
    min-height: 46px;
  }
  .health .choose .choose-item p {
    min-height: 162px;
  }
  .health .choose .choose-item:nth-child(2) {
    margin-top: 0px;
  }
  .health .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .health .fact .heading {
    width: 24%;
  }
  .health .fact .fact-list {
    width: 71%;
    align-items: center;
  }
  .health .fact .fact-item {
    margin: 3.5rem 0;
  }
  .health .client .heading {
    width: 37%;
  }
  .health .client .client-list {
    width: 50%;
  }
  .health .client .client-item {
    padding: 2.2rem;
  }
  .health .manage {
    padding-bottom: 1rem;
  }
  .health .manage .content {
    position: static;
    top: 0;
  }
  .health .footer {
    background-image: url(/_public/images/health-safety/footer-bg.png);
    background-size: 100% 100%;
    background-color: transparent;
    padding-top: 9rem;
  }
  .health .footer .heading {
    display: none;
  }
  .health .footer .footer-item:first-child {
    width: 19%;
  }
  .health .footer .footer-item:nth-child(2) {
    width: 32%;
  }
  .health .footer .info a {
    font-size: 13px;
  }
  .health .footer .buttons {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .health .heading h2 {
    font-size: 32px;
  }
  .health .banner {
    padding-bottom: 8rem;
  }
  .health .banner .sticky {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    background-color: #FFFFFF;
  }
  .health .banner .sticky .container {
    box-shadow: none;
    padding: 1rem 0;
  }
  .health .banner .banner-container {
    padding-top: 4rem;
  }
  .health .banner .banner-container h1 {
    font-size: 45px;
  }
  .health .banner .banner-container h1 img {
    width: 54px;
    height: 54px;
  }
  .health .banner ul .links-li {
    margin-right: 1.5rem;
    font-size: 15px;
  }
  .health .overview .overview-info {
    width: 26.5%;
  }
  .health .course .course-item {
    width: 24%;
  }
  .health .course .course-item:nth-child(3n) {
    margin-right: 1rem;
  }
  .health .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .health .course .course-item h3 {
    min-height: 63px;
  }
  .health .service .service-item {
    width: 22%;
  }
  .health .choose .choose-content {
    position: static;
    top: 0;
  }
  .health .choose .choose-item {
    margin-top: 3rem;
    width: 45%;
  }
  .health .choose .choose-item p {
    min-height: 126px;
  }
  .health .benefit .benefit-info {
    position: static;
    top: 0px;
  }
  .health .footer .contact-item:nth-child(2) {
    width: 30%;
  }
  .health .footer .buttons {
    width: 26%;
  }
}
@media (min-width : 1500px) {
  .health .banner::before {
    content: none;
  }
  .health .banner .banner-container {
    align-items: center;
    width: 100%;
  }
  .health .banner .banner-container h1,
  .health .banner .banner-container p {
    text-align: center;
  }
}
