*,
::after,
::before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(13px + 5 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

body {
  padding: 0;
  margin: 0;
  background-color: white;
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem !important;
}

p {
  line-height: 2;
}
@media (max-width: 991px) {
  p {
    line-height: 1.75;
  }
}
@media (max-width: 767px) {
  p {
    line-height: 1.5;
  }
}

.text--lora {
  font-family: "Lora", serif !important;
}
.text--poppins {
  font-family: "Poppins", sans-serif !important;
}
.text--main-heading {
  font-size: 3rem !important;
}
.text--main-title {
  font-size: 2rem !important;
}
.text--sub-title {
  font-size: 1.35rem !important;
}
.text--small {
  font-size: 0.75rem !important;
}
@media (max-width: 991px) {
  .text--main-heading {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .text--main-heading {
    font-size: 2.25rem !important;
  }
}
@media (max-width: 575px) {
  .text--main-heading {
    font-size: 2rem !important;
  }
  .text--main-title {
    font-size: 1.75rem !important;
  }
  .text--sub-title {
    font-size: 1rem !important;
  }
}

.banner {
  display: block;
  position: relative;
  width: 100%;
}
.banner--home {
  height: auto;
  background-color: #FF9000;
}
.banner--home__video {
  display: block;
  width: 100%;
  height: 600px;
}
.banner--home__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 1199px) {
  .banner--home__video {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .banner--home__video {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .banner--home__video {
    height: 300px;
  }
}

.card--service {
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.card--service .card-body {
  background-color: #f8f9fa;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.card--service:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,.25);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,.25);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,.25);
}
.card--service:hover .card-body {
  background-color: white !important;
}
.card--lph {
  position: relative;
  width: 100%;
  height: 350px;
  perspective: 600px;
}
.card--lph:hover .card--lph__content {
  transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.card--lph__img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}
.card--lph__content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  transform-style: preserve-3d;
}
.card--lph__content-vertical {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.card--lph__content--front, .card--lph__content--back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  backface-visibility: hidden;
}
.card--lph__content--front {
  color: black;
  text-align: center;
}
.card--lph__content--back {
  background-color: #023983;
  color: white;
  text-align: left;
  padding: 1rem 1.5rem;
  overflow-y: auto;
  transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) #023983;
}
.card--lph__content--back::-webkit-scrollbar {
  width: 10px;
}
.card--lph__content--back::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
}
.card--lph__content--back::-webkit-scrollbar-track {
  background-color: #023983;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
@media (max-width: 1199px) {
  .card--lph__img {
    width: 100px;
  }
}
@media (max-width: 991px) {
  .card--lph {
    height: 250px;
  }
}
@media (max-width: 575px) {
  .card--lph {
    height: 230px;
  }
  .card--lph__img {
    width: 70px;
  }
}

.img--halal {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
.img--halal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: -1;
}
.img--halal > img {
  width: 120px;
  height: auto;
  padding: 0 2rem;
  background-color: white;
}
@media (max-width: 575px) {
  .img--halal > img {
    width: 80px;
    padding: 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .img--halal > img {
    width: 90px;
    padding: 0 1.7rem;
  }
}
@media (max-width: 991px) {
  .img--halal > img {
    width: 100px;
    padding: 0 1.8rem;
  }
}

.wrapper--wrap, .wrapper--full {
  display: block;
  position: relative;
  height: auto;
}

.wrapper--full-screen {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  height: calc(100vh - 6.6rem);
}
.wrapper--full {
  width: 100%;
}
.wrapper--wrap {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

.placeholder--article {
  width: 100%;
  height: 240px;
}
.placeholder--review {
  width: 100%;
  height: 400px;
}
.placeholder--team {
  width: 100%;
  height: 300px;
}
.placeholder--guideline {
  width: 180px;
  height: 180px;
}

.swiper--review {
  padding-bottom: 2rem !important;
}
.swiper--review .swiper-button-next, .swiper--review .swiper-button-prev {
  color: white !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.swiper--review .swiper-button-next::after, .swiper--review .swiper-button-prev::after {
  font-size: 1.35rem;
  padding: 1rem 1.35rem;
  border-radius: 0.3rem;
  background-color: rgba(2, 57, 131, 0.25);
}
.swiper--review .swiper-button-prev {
  left: 1rem;
}
.swiper--review .swiper-button-next {
  right: 1rem;
}
.swiper--review:hover .swiper-button-next,
.swiper--review:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.swiper--review .swiper-pagination {
  text-align: left;
}
.swiper--review .swiper-pagination-bullet-active {
  background: #023983;
}
.swiper--instrument .swiper-content {
  position: relative;
  display: block;
  width: 100%;
  height: 650px;
}
.swiper--instrument .swiper-content > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}
.swiper--instrument .swiper-content .swiper-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}
.swiper--instrument .swiper-button-next, .swiper--instrument .swiper-button-prev {
  color: white !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.swiper--instrument .swiper-button-next::after, .swiper--instrument .swiper-button-prev::after {
  font-size: 1.35rem;
  padding: 1rem 1.35rem;
  border-radius: 0.3rem;
  background-color: rgba(2, 57, 131, 0.25);
}
.swiper--instrument .swiper-button-prev {
  left: 0.5rem;
}
.swiper--instrument .swiper-button-next {
  right: 0.5rem;
}
.swiper--instrument:hover .swiper-button-next,
.swiper--instrument:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.swiper--instrument .swiper-pagination {
  display: block;
  text-align: right;
  padding-right: 2rem;
  padding-bottom: 1.6rem;
}
.swiper--instrument .swiper-pagination-bullet {
  vertical-align: middle;
  margin: 0 7px !important;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.95);
}
.swiper--instrument .swiper-pagination-bullet-active {
  background-color: white;
  width: 10px;
  height: 10px;
}
.swiper--lph {
  padding-bottom: 2rem !important;
}
.swiper--lph .swiper-wrapper .swiper-slide {
  position: relative;
  width: 300px;
  height: 200px;
}
.swiper--lph .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
  border-radius: 0.3rem;
}
.swiper--lph .swiper-wrapper .swiper-slide p {
  position: absolute;
  bottom: -0.5rem;
  left: 1rem;
  color: white;
}
.swiper--lph .swiper-button-next, .swiper--lph .swiper-button-prev {
  color: #023983 !important;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  top: 50%;
  transform: translateY(-45%);
  -o-transform: translateY(-45%);
  -moz-transform: translateY(-45%);
  -webkit-transform: translateY(-45%);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.swiper--lph .swiper-button-next::after, .swiper--lph .swiper-button-prev::after {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
}
.swiper--lph .swiper-button-prev {
  left: 0.3rem;
}
.swiper--lph .swiper-button-prev::after {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.swiper--lph .swiper-button-next {
  right: 0.3rem;
}
.swiper--lph .swiper-button-next::after {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.swiper--lph:hover .swiper-button-next,
.swiper--lph:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.swiper--lph .swiper-pagination {
  bottom: 0 !important;
  text-align: center;
}
.swiper--lph .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: black;
}
.swiper--lph .swiper-pagination-bullet-active {
  background: #023983;
}
@media (max-width: 1399px) {
  .swiper--instrument .swiper-content {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .swiper--instrument .swiper-content {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .swiper--instrument .swiper-content {
    height: 350px;
  }
  .swiper--instrument .swiper-pagination {
    padding-bottom: 1.1rem;
  }
  .swiper--lph .swiper-wrapper .swiper-slide {
    position: relative;
    width: 260px;
    height: 185px;
  }
}
@media (max-width: 767px) {
  .swiper--instrument .swiper-content {
    height: 300px;
  }
  .swiper--instrument .swiper-pagination {
    display: none;
  }
  .swiper--lph .swiper-wrapper .swiper-slide {
    position: relative;
    width: 200px;
    height: 120px;
  }
  .swiper--lph .swiper-button-prev {
    left: 0.1rem;
  }
  .swiper--lph .swiper-button-next {
    right: 0.1rem;
  }
  .swiper--lph .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* generated by https://loading.io/ */
@keyframes spinner-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loader {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.loader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.loader--wrapper {
  width: 180px;
  height: 180px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.loader--item {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
.loader--item div {
  box-sizing: content-box;
  left: 82.8px;
  top: 50.4px;
  position: absolute;
  animation: spinner-animation linear 1.3333333333s infinite;
  background: #023983;
  width: 14.4px;
  height: 14.4px;
  border-radius: 7.2px/7.2px;
  transform-origin: 7.2px 39.6px;
}
.loader--item div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.2s;
  background: #023983;
}
.loader--item div:nth-child(2) {
  transform: rotate(36deg);
  animation-delay: -1.0666666667s;
  background: #023983;
}
.loader--item div:nth-child(3) {
  transform: rotate(72deg);
  animation-delay: -0.9333333333s;
  background: #023983;
}
.loader--item div:nth-child(4) {
  transform: rotate(108deg);
  animation-delay: -0.8s;
  background: #023983;
}
.loader--item div:nth-child(5) {
  transform: rotate(144deg);
  animation-delay: -0.6666666667s;
  background: #023983;
}
.loader--item div:nth-child(6) {
  transform: rotate(180deg);
  animation-delay: -0.5333333333s;
  background: #023983;
}
.loader--item div:nth-child(7) {
  transform: rotate(216deg);
  animation-delay: -0.4s;
  background: #023983;
}
.loader--item div:nth-child(8) {
  transform: rotate(252deg);
  animation-delay: -0.2666666667s;
  background: #023983;
}
.loader--item div:nth-child(9) {
  transform: rotate(288deg);
  animation-delay: -0.1333333333s;
  background: #023983;
}
.loader--item div:nth-child(10) {
  transform: rotate(324deg);
  animation-delay: 0s;
  background: #023983;
}

/* generated by https://loading.io/ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: white;
  z-index: 5;
}
.header--shadow {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}
.header__info {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: white;
}
.header__info-content {
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
}
.header__info-content img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.625rem;
}
.header__info-content a {
  color: black;
  font-size: 0.85rem;
  text-decoration: none;
}
.header__info-content:first-child {
  margin-right: 1.5rem;
}
.header__info-content:hover > img {
  filter: invert(15%) sepia(30%) saturate(6673%) hue-rotate(207deg) brightness(92%) contrast(98%);
}
.header__info-content:hover > a {
  color: #023983;
}
.header__nav {
  display: block;
  position: relative;
  background-color: white;
}
.header__search {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: auto;
  padding: 1.5rem 0;
  background-color: white;
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}
.header__search.hide {
  top: -15rem;
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.header__search .search--form {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}
.header__search .search--form label {
  display: block;
  position: relative;
  color: #023983;
  font-weight: 500;
  padding: 0.875rem 0;
}
.header__search .search--form label span {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 1.35rem;
  padding: 0 0.5rem;
  margin-right: -0.5rem;
  cursor: pointer;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.header__search .search--input {
  display: block;
  position: relative;
  width: 100%;
}
.header__search .search--input input[type=text] {
  position: relative;
  width: 100%;
  padding: 0.75rem 2.25rem 0.85rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  border: solid 2px #023983;
}
.header__search .search--input img {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  cursor: pointer;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 991px) {
  .header__search {
    padding: 1rem 0;
  }
}
@media (max-width: 767px) {
  .header__nav {
    padding: 1.25rem 0;
  }
}

.nav__toggle {
  display: none;
  width: 22px;
  height: 18px;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.nav__toggle span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background-color: #505050;
  border-radius: 0.5rem;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.nav__toggle span:nth-child(1) {
  top: 0px;
}
.nav__toggle span:nth-child(2), .nav__toggle span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.nav__toggle span:nth-child(4) {
  bottom: 0;
}
.nav__toggle.active span:nth-child(1) {
  width: 0%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.nav__toggle.active span:nth-child(2) {
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.nav__toggle.active span:nth-child(4) {
  width: 0%;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.nav__logo img {
  width: auto;
  height: 2.5rem;
}
.nav__list {
  position: relative;
  padding: 0;
  margin: 0 0.75rem 0 0;
}
.nav__list-item {
  display: inline-block;
}
.nav__list-item > a {
  display: block;
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 1.75rem 0.875rem;
  font-size: 0.875rem;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.nav__list-item > a:hover, .nav__list-item > a:focus, .nav__list-item > a.active {
  color: #FF9000;
}
.nav__list-item .hvr-border-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.nav__list-item .hvr-border-center::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  height: 0.275rem;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav__list-item .hvr-border-center:hover::before, .nav__list-item .hvr-border-center:focus::before, .nav__list-item .hvr-border-center:active::before {
  left: 0;
  right: 0;
}
.nav__list-item .hvr-border-center--orange::before {
  background: #FF9000;
}
.nav__list-item .hvr-border-center--red::before {
  background: #E30005;
}
.nav__list-item .dropdown--arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.nav__list-item .dropdown--wrapper {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 1.5rem 0;
  background-color: #fafafa;
  z-index: -1;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.nav__list-item .dropdown--content {
  display: block;
  width: 90%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
}
.nav__list-item .dropdown--title-desktop {
  display: block;
}
.nav__list-item .dropdown--title-mobile {
  display: none;
  cursor: pointer;
}
.nav__list-item .dropdown--link-about {
  text-decoration: none;
  color: #212529;
  padding-bottom: 1rem;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.nav__list-item .dropdown--link-about:hover, .nav__list-item .dropdown--link-about.active {
  color: #E30005 !important;
}
.nav__list-item .dropdown--link-about.active {
  font-weight: 600;
  color: #E30005 !important;
}
.nav__list-item .dropdown--link-service {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.nav__list-item .dropdown--link-service:hover p:nth-child(1), .nav__list-item .dropdown--link-service.active p:nth-child(1) {
  color: #E30005 !important;
}
.nav__list-item .dropdown--link-service:hover p:nth-child(2), .nav__list-item .dropdown--link-service.active p:nth-child(2) {
  color: rgba(227, 0, 5, 0.65) !important;
}
.nav__search {
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.nav__search:hover, .nav__search:focus {
  filter: invert(57%) sepia(36%) saturate(2969%) hue-rotate(1deg) brightness(103%) contrast(105%);
}
@media (min-width: 992px) {
  .nav__list-item.dropdown:hover .dropdown--wrapper {
    top: 6.6rem;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 768px) {
  .nav__list-item.dropdown:hover .dropdown--wrapper {
    top: 6rem;
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
}
@media (max-width: 991px) {
  .nav__logo img {
    width: auto;
    height: 2rem;
  }
  .nav__list-item > a {
    padding: 1.5rem 0.65rem;
  }
}
@media (max-width: 767px) {
  .nav__toggle {
    display: block;
    width: 22px;
    height: 15px;
  }
  .nav__toggle span {
    display: block;
    position: absolute;
    height: 1.8px;
  }
  .nav__list {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: nowrap;
    top: 4rem;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  }
  .nav__list.active {
    top: 6.2rem;
    opacity: 1;
    visibility: visible;
    height: calc(100% - 6.2rem);
    z-index: 4;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  }
  .nav__list-item {
    display: block;
    border-bottom: solid 1px #e4e4e4;
  }
  .nav__list-item > a {
    position: relative;
    display: block;
    padding: 1.5rem 1.875rem;
  }
  .nav__list-item .hvr-border-center {
    display: block;
  }
  .nav__list-item .dropdown--arrow {
    position: absolute;
    right: 1rem;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  .nav__list-item .dropdown--wrapper {
    left: 25vw;
    top: 6.5rem;
    height: calc(100vh - 6.5rem);
    opacity: 0;
    visibility: hidden;
    background-color: ghostwhite;
    padding-bottom: 1rem;
    overflow: auto;
    white-space: normal;
    z-index: 6;
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
  }
  .nav__list-item .dropdown--wrapper.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
  }
  .nav__list-item .dropdown--content {
    width: 100%;
  }
  .nav__list-item .dropdown--title-desktop {
    display: none;
  }
  .nav__list-item .dropdown--title-mobile {
    display: block;
    padding: 0.5rem 1.5rem;
  }
  .nav__list-item .dropdown--link-about, .nav__list-item .dropdown--link-service {
    display: block;
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
    border-bottom: solid 1px #e4e4e4;
  }
}

.below-navbar {
  margin-top: 6.6rem;
}
@media (max-width: 991px) {
  .below-navbar {
    margin-top: 6.2rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 1rem;
  background-color: #00CB36;
  border-radius: 5em;
  z-index: 2;
}

.footer {
  display: block;
  width: 100%;
  height: auto;
  padding: 1.5rem 0;
  background-color: #023983;
}
.footer--list {
  display: inline-block;
  margin-right: 1rem;
}
.footer--socmed {
  width: 200px;
  margin: 0 0 0 auto;
}
.footer--icon img {
  width: 1.75rem;
  height: 1.75rem;
}
.footer--lang {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 2rem;
}
.footer--lang label {
  position: absolute;
  left: 0.8rem;
  top: 46%;
  z-index: 2;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.footer--lang select {
  position: relative;
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  padding: 0.875rem 1rem 0.875rem 2.25rem;
  font-size: 0.875rem;
  border-radius: 0.4rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background-color: #022e6a;
  background-image: url("../icon/down-arrow.png");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: right;
  background-origin: content-box;
}
@media (max-width: 991px) {
  .footer--socmed {
    margin: 1rem auto 0 0;
  }
  .footer--list {
    margin-right: 0.875rem;
  }
}
@media (max-width: 767px) {
  .footer--socmed {
    margin: 1rem auto 0 auto;
  }
  .footer--list {
    display: block;
    font-size: 1.15rem;
    padding: 0.875rem 0;
    margin-right: 0;
  }
}

.home--acsent {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: auto;
  z-index: -1;
}
.home--heading {
  font-size: 3.875rem;
  font-weight: 600;
  margin-bottom: 4.25rem;
  text-shadow: #fff 0px 0px 10px;
}
.home--heading span:nth-child(1) {
  display: block;
}
.home--heading span:nth-child(2) {
  display: block;
  margin-left: 4rem;
}
.home--video {
  display: block;
  position: relative;
  width: 80%;
  height: 380px;
  margin: 0 auto;
}
.home--video video {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
}
.home--company-logo {
  width: 220px;
  height: auto;
}
.home--company-logo:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 1199px) {
  .home--video {
    width: 90%;
    height: 300px;
  }
  .home--company-logo {
    width: 180px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .home--heading {
    margin-bottom: 3.5rem;
  }
  .home--video {
    height: 250px;
    margin-bottom: 2rem;
  }
  .home--company-logo {
    width: 150px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .home--heading {
    font-size: 3rem;
    margin-bottom: 3.25rem;
  }
  .home--heading span:nth-child(2) {
    display: block;
    margin-left: 3rem;
  }
  .home--video {
    width: 100%;
    height: 350px;
  }
}
@media (max-width: 575px) {
  .home--heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .home--heading span:nth-child(2) {
    display: block;
    margin-left: 1rem;
  }
  .home--video {
    height: 280px;
  }
  .home--company-logo {
    width: 140px;
    height: auto;
  }
}

.accreditation--image {
  width: 250px;
  height: auto;
}

.vision-mission--blue-vertical {
  position: absolute;
  top: 0;
  left: 0;
  width: 550px;
  height: 100%;
  background-color: #023983;
  z-index: -1;
  border-bottom-right-radius: 0.5rem;
}
.vision-mission--card {
  display: block;
  width: 100%;
  height: auto;
  background-color: white;
  padding: 1.25rem 1.75rem;
  text-align: left;
  border-radius: 0.3rem;
}

.validation--kan-logo {
  width: 280px;
  height: auto;
}
.validation--button {
  width: 300px;
  color: white;
  text-align: center;
  margin-left: auto;
  padding: 1rem 0;
  background-color: #023983;
}
.validation--table thead tr th {
  padding: 1.25rem 0.5rem;
}
.validation--table tbody tr td {
  padding: 1rem 0.5rem;
}

.guideline--item {
  text-decoration: none;
  color: black;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.guideline--item img {
  width: auto;
  height: 90px;
  margin-bottom: 1.5rem;
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.guideline--item:hover {
  color: #023983;
}
.guideline--item:hover img {
  transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

.our-team--banner {
  display: block;
  position: relative;
  width: 92%;
  max-width: 800px;
  height: 100%;
}
.our-team--thumbnail {
  display: block;
  margin: 0 auto;
  width: 90%;
  height: auto;
}
.our-team--wave {
  position: absolute;
  right: -1rem;
  bottom: -2.5rem;
  width: 95%;
  height: auto;
  transform: skewY(175deg);
  -o-transform: skewY(175deg);
  -moz-transform: skewY(175deg);
  -webkit-transform: skewY(175deg);
}
.our-team--text {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.our-team--people {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.our-team--blue-horizontal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-color: #023983;
}
.our-team--card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 4rem auto;
  text-align: center;
}
.our-team--card__header {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 1rem;
  background: #f2f2f2;
  border-radius: 0.3rem;
}
.our-team--card__photo {
  position: relative;
  display: block;
  width: 100%;
  height: 180px;
  margin-bottom: 0.5rem;
}
.our-team--card__photo > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70%;
  max-width: 300px;
  height: auto;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.our-team--card__desc {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.875rem;
}

.facility--sticky {
  position: sticky;
  top: 8rem;
  padding-bottom: 1rem;
}
.facility--sticky-left {
  padding-right: 1rem;
}
.facility--sticky-right {
  padding-left: 1rem;
}

@media (max-width: 1399px) {
  .vision-mission--blue-vertical {
    width: 400px;
  }

  .our-team--card {
    margin: 1rem auto 2rem auto;
  }
  .our-team--card__photo {
    height: 150px;
  }
  .our-team--card__photo > img {
    width: 75%;
  }
}
@media (max-width: 1199px) {
  .accreditation--image {
    width: 200px;
  }

  .vision-mission--blue-vertical {
    width: 350px;
  }

  .our-team--card__photo {
    height: 130px;
  }
  .our-team--card__photo > img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .vision-mission--blue-vertical {
    width: 300px;
  }

  .validation--button {
    width: 250px;
  }

  .our-team--blue-horizontal {
    height: 180px;
  }
  .our-team--card {
    margin: 0 0 2rem 0;
  }
  .our-team--card__photo {
    height: 150px;
  }
  .our-team--card__photo > img {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .vision-mission--blue-vertical {
    width: 250px;
  }
  .vision-mission--card {
    text-align: center;
  }

  .validation--button {
    width: 200px;
  }
  .validation--table thead tr th {
    padding: 1.15rem 0.4rem;
  }
  .validation--table tbody tr td {
    padding: 0.875rem 0.4rem;
  }

  .guideline--item img {
    height: 80px;
    margin-bottom: 1rem;
  }

  .our-team--banner {
    width: 100%;
  }
  .our-team--wave {
    bottom: -1.75rem;
  }
  .our-team--text {
    position: relative;
    width: 92%;
    left: 0;
    top: 0;
    margin: 2rem auto 1rem auto;
    transform: translateY(0);
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .our-team--blue-horizontal {
    height: 150px;
  }
  .our-team--card__photo {
    height: 130px;
  }
  .our-team--card__photo > img {
    width: 220px;
  }

  .facility--sticky {
    position: relative;
    top: 0;
    padding-bottom: 1rem;
  }
  .facility--sticky-left {
    padding-right: 0;
  }
  .facility--sticky-right {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .accreditation--image {
    width: 150px;
  }

  .vision-mission--blue-vertical {
    width: 25%;
  }
  .vision-mission--card {
    padding: 0.875rem 1.25rem;
  }

  .validation--kan-logo {
    width: 150px;
  }
  .validation--button {
    width: 140px;
    margin-left: 0;
    padding: 0.75rem 0;
  }

  .our-team--people {
    width: 90%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  .our-team--card {
    max-width: 320px;
    margin: 0 auto 3rem auto;
    border: solid 1.5px #f2f2f2;
    border-radius: 0.3rem;
  }
  .our-team--card__header {
    border-radius: 0.3rem 0.3rem 0 0;
  }
  .our-team--card__photo {
    height: 120px;
  }
  .our-team--card__photo > img {
    width: 210px;
  }
}
.service--banner-image {
  position: absolute;
  top: 2.3rem;
  right: 1rem;
  width: 350px;
  height: 350px;
}
.service--banner-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}
.service--banner-text {
  display: block;
  width: 100%;
  max-width: 950px;
}
.service--contract {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 0.3rem;
  border: solid 1px #FF9000;
}
@media (max-width: 1399px) {
  .service--banner-text {
    max-width: 750px;
  }
}
@media (max-width: 1199px) {
  .service--banner-image {
    top: 4rem;
    right: 0;
    width: 280px;
    height: 280px;
  }
  .service--banner-text {
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .service--banner-image {
    width: 250px;
    height: 250px;
  }
  .service--banner-text {
    max-width: 480px;
  }
}
@media (max-width: 767px) {
  .service--banner-image {
    display: none;
  }
  .service--banner-text {
    max-width: 100%;
  }
}

.lph--acsent-text {
  width: 100%;
  height: 160px;
  background-color: #FDF9FA;
  position: relative;
}
.lph--acsent-text > h2 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  padding-right: 1rem;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.lph--acsent-left {
  position: relative;
  width: 100%;
  max-width: calc(100% - 400px);
}
.lph--acsent-left > .lph--acsent-left-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 160px;
  background-color: #FDF9FA;
}
.lph--acsent-right {
  position: relative;
  width: 100%;
}
.lph--acsent-right > .lph--acsent-right-background {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 299px;
  background-color: #f8f9fa;
}
.lph--list {
  padding-left: 0.75rem;
  list-style-image: url(../../assets/img/checked.png);
}
.lph--list li::marker {
  padding-top: 5px;
}
.lph--list li > p {
  list-style: 1 !important;
  margin-bottom: 0;
}
.lph--service {
  display: block;
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.lph--service:hover {
  background-color: #023983;
  color: white;
}
.lph--service:hover .lph--service-image {
  filter: invert(97%) sepia(3%) saturate(11%) hue-rotate(14deg) brightness(102%) contrast(102%);
}
.lph--service-body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 1.5rem;
  transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
}
.lph--service-image {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  filter: invert(14%) sepia(45%) saturate(4749%) hue-rotate(207deg) brightness(95%) contrast(98%);
  transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
@media (max-width: 991px) {
  .lph--acsent-left {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .lph--acsent-left {
    max-width: 100%;
  }
  .lph--acsent-right > .lph--acsent-right-background {
    height: 194px;
  }
  .lph--service {
    height: 200px;
  }
  .lph--service-body {
    padding: 0 1rem;
  }
  .lph--service-image {
    width: 60px;
  }
}

.form--search {
  width: 100%;
  max-width: 400px;
}
.form--category {
  margin-left: 1rem;
  padding: 0.5rem;
  position: relative;
}
.form--category > img {
  width: 40px;
  height: auto;
}
.form--category:hover .form--category-dropdown {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.form--category-dropdown {
  position: absolute;
  top: 3.75rem;
  right: 0.3rem;
  width: 180px;
  padding: 1rem;
  border-radius: 0.3rem;
  background-color: white;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 10px 0 rgba(0,0,0,.25);
  -moz-box-shadow: 0px 0px 10px 0 rgba(0,0,0,.25);
  box-shadow: 0px 0px 10px 0 rgba(0,0,0,.25);
}
@media (max-width: 991px) {
  .form--search {
    max-width: 100%;
  }
}

.embed-map {
  width: 100%;
  height: 350px;
  display: block;
  padding-right: 1rem;
}

.qr-code--image {
  text-align: center;
  width: 160px;
  padding-right: 0.5rem;
}
.qr-code--image > img {
  width: 100%;
  height: auto;
}
.qr-code--text {
  width: calc(100% - 160px - .5rem);
}

@media (max-width: 767px) {
  .embed-map {
    padding-right: 0;
  }

  .qr-code--image {
    width: 120px;
  }
  .qr-code--text {
    width: calc(100% - 120px);
  }
}

/*# sourceMappingURL=style.css.map */
