html,
body {
  font-family: Open Sans;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins;
  color: #333;
}

.section {
  padding: 120px 0;
}

.row-v-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bg-grey {
  background: #f8f8f8;
}

.img-100 {
  width: 100%;
}

.single-page {
  max-width: 700px;
}

.preloader {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.preloader img {
  width: 60px;
  margin-bottom: 15px;
}

.preloader .preloader-bar {
  width: 60px;
  display: block;
  height: 5px;
  overflow: hidden;
  position: relative;
}

.preloader .preloader-bar span {
  width: 0;
  height: 100%;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 0px;
  -webkit-animation: bar-slide 3s infinite;
  animation: bar-slide 3s infinite;
}

@-webkit-keyframes bar-slide {
  0% {
    width: 0;
    left: 0;
  }

  25% {
    width: 50%;
  }

  50% {
    width: 0;
    left: 100%;
  }

  75% {
    width: 50%;
  }

  100% {
    width: 0;
    left: 0;
  }
}

@keyframes bar-slide {
  0% {
    width: 0;
    left: 0;
  }

  25% {
    width: 50%;
  }

  50% {
    width: 0;
    left: 100%;
  }

  75% {
    width: 50%;
  }

  100% {
    width: 0;
    left: 0;
  }
}

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header .header-logo > img {
  height: 40px;
  margin-right: 8px;
  display: inline-block;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header .header-logo > .text-logo {
  display: inline-block;
}

.header .header-logo > .text-logo > span {
  color: #fff;
  display: block;
  line-height: 22px;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header .header-logo > .text-logo > span:first-child {
  font-size: 24px;
  font-weight: 700;
}

.header .header-logo > .text-logo > span:last-child {
  font-size: 16px;
}

.header .header-logo:hover {
  text-decoration: none;
}

.header nav > ul {
  display: block;
  margin-bottom: 0;
  padding-left: 0;
}

.header nav > ul > li {
  display: inline-block;
  margin-right: 30px;
}

.header nav > ul > li > a {
  display: block;
  font-weight: 600;
  color: #FFF;
  padding: 20px 0;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header nav > ul > li > a:hover {
  text-decoration: none;
  color: #71bb42;
}

.header nav > ul > li:last-child {
  margin-right: 0;
}

.header nav > ul > li.dropdown {
  position: relative;
}

.header nav > ul > li.dropdown > ul {
  background: #FFF;
  margin-bottom: 0;
  width: 250px;
  padding: 10px 0;
  list-style: none;
  visibility: hidden;
  border-radius: 4px;
  opacity: 0;
  position: absolute;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header nav > ul > li.dropdown > ul > li > a {
  font-family: "Poppins";
  color: #333;
  font-weight: 600;
  padding: 15px 20px;
  display: block;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header nav > ul > li.dropdown > ul > li > a:hover {
  text-decoration: none;
}

.header nav > ul > li.dropdown > a:after {
  content: "\f107";
  font-family: "fontAwesome";
  margin-left: 10px;
}

.header nav > ul > li.dropdown:hover > a {
  color: #71bb42;
}

.header nav > ul > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}

.header nav > ul > li.dropdown:hover > ul > li > a:hover {
  color: #71bb42;
}

.header nav > ul > li.active > a {
  color: #71bb42;
}

.header .header-action .btn {
  color: #fff;
}

.header .header-action .btn:first-child {
  color: #71bb42;
}

.header.scroll {
  background: #fff;
  height: 65px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.scroll .header-logo {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.header.scroll .header-logo > .text-logo > span {
  color: #333;
}

.header.scroll nav > ul > li > a {
  color: #333;
}

.header.header-page {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.header-page .header-logo > .text-logo > span {
  color: #333;
}

.header.header-page nav > ul > li > a {
  color: #333;
}

.header .btn-mobile-nav {
  display: none;
}

.btn {
  font-size: 14px;
  font-family: Poppins;
  font-weight: 600;
  padding: 8px 15px;
}

.list {
  padding-left: 0;
  margin-bottom: 0;
}

.list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.list > li:before {
  font-family: fontAwesome;
  margin-right: 20px;
  color: #71bb42;
}

.list.check-square > li:before {
  content: "\f14a";
  font-family: fontAwesome;
  margin-right: 20px;
}

.btn-main,
.btn-second {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.btn-main {
  background: #51a62f;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.btn-main:hover {
  color: #fff;
  background: #66a83b;
}

.btn-second {
  background: #33cdf3;
}

.btn-lg {
  padding: 14px 25px;
}

.form-check .form-check-input {
  margin-top: 9px;
}

.form-check .form-check-label {
  margin-left: 5px;
}

.accordion-faq {
  display: block;
  width: 100%;
  list-style: none;
  padding-left: 0;
}

.accordion-faq > li {
  display: block;
  background: #FFF;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-faq > li:last-child {
  margin-bottom: 0;
}

.accordion-faq > li > .faq-question {
  padding: 20px 25px;
  background: #e1fbd1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  color: #71bb42;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.accordion-faq > li > .faq-question:after {
  content: "\f107";
  font-family: fontAwesome;
  margin-left: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.accordion-faq > li > .faq-question:hover {
  cursor: pointer;
  background: #d1f9b9;
}

.accordion-faq > li > .faq-answer {
  padding: 20px 25px;
  margin-bottom: 0;
  background: #f8f8f8;
  display: none;
  color: #555;
}

.accordion-faq > li > .faq-answer > ol,
.accordion-faq > li > .faq-answer > ul {
  padding-left: 17px;
}

.accordion-faq > li > .faq-answer > ol > li,
.accordion-faq > li > .faq-answer > ul > li {
  margin-bottom: 10px;
}

.accordion-faq > li > .faq-answer:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.wp-price {
  background: rgba(51, 205, 243, 0.1);
  border-radius: 4px;
  padding: 30px;
  margin: 40px 0;
  color: #09809d;
}

.wp-price .price-title {
  font-weight: 700;
  color: #09809d;
  margin-bottom: 30px !important;
}

.wp-price p {
  color: #09809d;
}

.credit-simulation {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.credit-simulation > li {
  width: 33.3333%;
  border-right: 1px solid rgba(62, 69, 124, 0.3);
  padding: 0 30px;
}

.credit-simulation > li:last-child {
  border: 0;
}

.credit-simulation > li > h5 {
  font-weight: 700;
  color: #09809d;
}

.wp-foto-360 {
  width: 100%;
  height: 300px;
  background: #555;
  display: block;
}

.action-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(51, 205, 243, 0.1);
  border-radius: 4px;
}

.action-block .side-left,
.action-block .side-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.action-block .side-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.action-block .side-right > span {
  color: #09809d;
}

.action-block .side-right > ul {
  display: inline-block;
  margin-left: 10px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.action-block .side-right > ul > li {
  display: inline-block;
  margin-right: 6px;
}

.action-block .side-right > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  color: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.action-block .side-right > ul > li.fb > a {
  background: #5d82d1;
}

.action-block .side-right > ul > li.tw > a {
  background: #00acee;
}

.action-block .side-right > ul > li.wa > a {
  background: #25D366;
}

.action-block .side-right > ul > li.tl > a {
  background: #0088cc;
}

.aside-right .contact-marketer {
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 50px;
}

.aside-right .contact-marketer > .bio-marketer {
  overflow-y: auto;
  margin-bottom: 20px;
}

.aside-right .contact-marketer > .bio-marketer > .frame-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}

.aside-right .contact-marketer > .bio-marketer > .frame-img > img {
  width: 100%;
}

.aside-right .contact-marketer > .bio-marketer > .text-bio {
  display: block;
  margin-left: 65px;
}

.googlemap-kavling {
  display: block;
  padding-bottom: 40px;
}

.googlemap-kavling > .map-inner {
  width: 100%;
  height: 400px;
  display: block;
  background: #555;
}

.breadcrumb-kavling {
  background: none;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.breadcrumb-kavling > li {
  display: inline-block;
  font-size: 14px;
  color: #999;
}

.breadcrumb-kavling > li:after {
  content: "/";
  padding: 0 7px;
  font-size: 12px;
}

.breadcrumb-kavling > li > a {
  color: #999;
}

.breadcrumb-kavling > li:last-child:after {
  display: none;
}

.breadcrumb-kavling > li.active {
  font-weight: 600;
}

.form-basic {
  margin-top: 150px;
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.form-basic > form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 40px;
  border-radius: 4px;
}

.form-basic > form > .form-group {
  margin-bottom: 40px;
}

.form-basic > form > .form-group > label {
  font-family: Poppins;
  font-weight: 600;
}

.form-basic .card form {
  padding: 40px;
}

.form-basic .card form > .form-group {
  margin-bottom: 40px;
}

.form-basic .card form > .form-group > label {
  font-family: Poppins;
  font-weight: 600;
}

.form-basic .nav-tabs .nav-link {
  color: #333;
}

.form-basic .card-header {
  padding: 30px;
}

.form-basic .card-header-tabs {
  margin-bottom: -30px;
  margin-left: 0;
  margin-right: 0;
}

.form-basic .nav-link {
  padding: 10px 20px;
}

.form-basic .card-body {
  padding: 30px;
}

.form-basic .card-body .form-group {
  margin-bottom: 40px;
}

.form-basic .card-body .form-group > label {
  font-family: Poppins;
  font-weight: 600;
}

.main-facility ul {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 0;
  margin-left: -15px;
  margin-right: -15px;
}

.main-facility ul > li {
  width: 33.3333%;
  padding: 15px;
  display: block;
  overflow: hidden;
}

.main-facility ul > li > .outer-list {
  width: 100%;
  padding-top: 80%;
  display: block;
  overflow: hidden;
  position: relative;
}

.main-facility ul > li > .outer-list:before {
  content: " ";
  width: 100%;
  height: 100%;
  opacity: .15;
  position: absolute;
  background-size: cover;
  top: 0;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.main-facility ul > li > .outer-list > .inner-list {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-facility ul > li > .outer-list > .inner-list > h3 {
  color: #fff;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
}

.main-facility ul > li > .outer-list > .inner-list > h3 > span {
  display: block;
}

.main-facility ul > li > .outer-list > .inner-list > span {
  color: #fff;
  font-size: 16px;
}

.main-facility ul > li:nth-child(odd) > .outer-list {
  background: #71bb42;
}

.main-facility ul > li:nth-child(even) > .outer-list {
  background: #1b1464;
}

.main-facility ul > li:first-child > .outer-list:before {
  background-image: url(../images/bg-facility-1.jpg);
}

.main-facility ul > li:nth-child(2) > .outer-list:before {
  background-image: url(../images/bg-facility-2.jpg);
}

.main-facility ul > li:nth-child(3) > .outer-list:before {
  background-image: url(../images/bg-facility-3.jpg);
}

.main-facility ul > li:nth-child(4) > .outer-list:before {
  background-image: url(../images/bg-facility-4.jpg);
}

.main-facility ul > li:nth-child(5) > .outer-list:before {
  background-image: url(../images/bg-facility-5.jpg);
}

.main-facility ul > li:last-child > .outer-list:before {
  background-image: url(../images/bg-facility-6.jpg);
}

.main-facility ul > li:hover > .outer-list:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}

.slider-marketer {
  margin-top: 50px;
}

.slider-marketer .slider-item {
  display: block;
  background: #1b1464;
  position: relative;
}

.slider-marketer .slider-item > img {
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.slider-marketer .slider-item > .name {
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  position: absolute;
  top: 60%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.slider-marketer .slider-item:hover > img {
  opacity: .15;
}

.slider-marketer .slider-item:hover > .name {
  top: 50%;
  opacity: 1;
}

.slider-marketer .owl-dots {
  display: block;
  text-align: center;
  margin-top: 50px;
}

.slider-marketer .owl-dots > .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #bcbcbc;
  margin-left: 5px;
  margin-right: 5px;
}

.slider-marketer .owl-dots > .owl-dot.active {
  background: #71bb42;
}

.slider-marketer .owl-dots > .owl-dot:focus {
  outline: none;
}

.thumb-item {
  display: block;
  background: #fff;
}

.thumb-item > img {
  width: 100%;
}

.thumb-item .thumb-text {
  padding: 30px;
}

.thumb-item .thumb-text > a {
  font-size: 18px;
  font-weight: 600;
  font-family: Poppins;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  display: block;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.thumb-item .thumb-text > a:hover {
  color: #71bb42;
  text-decoration: none;
}

.thumb-item .thumb-text .thumb-meta {
  padding-left: 0;
  margin-bottom: 15px;
  display: block;
  list-style: none;
}

.thumb-item .thumb-text .thumb-meta > li {
  display: inline-block;
  font-size: 14px;
  color: #999;
}

.list-group-item {
  font-family: Poppins;
  font-weight: 600;
}

.list-group-item.active {
  background: #71bb42;
  border-color: #71bb42;
}

.section-bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}

.section-bio > .frame-img {
  width: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.section-bio .list-bio {
  padding-left: 30px;
}

.section-bio .list-bio > ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.section-bio .list-bio > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.section-bio .list-bio > ul > li > span:first-child {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  font-weight: 600;
}

.section-bio .list-bio > ul > li > span:nth-child(2) {
  padding: 0 10px;
}

.page-item.active .page-link {
  background: #1b1464;
  border-color: #1b1464;
}

.page-link {
  color: #1b1464;
}

.page-link:hover {
  color: #1b1464;
}

.map-google {
  width: 100%;
  height: 500px;
  background: #444;
}

.contact-list {
  padding-left: 0;
  list-style: none;
  margin-top: 40px;
}

.contact-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.contact-list > li > .icon {
  width: 35px;
  height: 35px;
  font-size: 14px;
  background: #71bb42;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}

.contact-list > li:last-child {
  margin-bottom: 0;
}

.master-plan-svg .cluster:hover {
  cursor: pointer;
}

.mapsvg-disabled:hover {
  cursor: not-allowed !important;
}

.widget-simang {
  padding: 30px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  margin-bottom: 50px;
}

.widget-simang .form-group label {
  font-size: 14px;
  font-weight: 700;
}

.output-simang {
  margin-top: 45px;
  margin-bottom: 0;
  padding: 20px 25px;
}

.output-simang .h-output-simang {
  display: block;
  font-family: Poppins;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.output-simang ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.output-simang ul > li {
  display: block;
  margin-bottom: 3px;
}

.output-simang ul > li > span {
  display: inline-block;
}

.output-simang ul > li > span:first-child {
  margin-right: 13px;
}

.output-simang ul > li:nth-child(4) {
  line-height: 1.3;
  margin-top: 12px;
  margin-bottom: 25px;
}

.has-error .form-control {
  border-color: #ff0000;
}

.has-error .form-control:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.has-error .input-group-text {
  color: #ff0000;
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.2);
}

.error {
  color: #ff0000;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
}

.clt-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px;
  border: 1px solid #ddd;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.clt-link > img {
  display: block;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.clt-link > span {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #71bb42;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.clt-link:hover {
  border-color: #71bb42;
  text-decoration: none;
}

.main-hd {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  display: block;
  margin-bottom: 30px;
}

.main-hd > h5 {
  color: #71bb42;
  font-weight: 600;
}

.main-hd h2 {
  font-weight: 700;
}

.main-hd > span {
  color: #71bb42;
}

.main-hd > h2 {
  font-weight: 700;
  line-height: 1.4;
}

.main-hd > h2 > span {
  color: #71bb42;
}

p {
  color: #555;
}

.meta.article {
  padding-left: 0;
  margin-bottom: 30px;
}

.meta.article > li {
  display: inline-block;
  margin-right: 20px;
  color: #999;
}

.main-access ul {
  padding-left: 0;
  margin-bottom: 0;
}

.main-access ul > li {
  display: block;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}

.main-access ul > li:before {
  content: " ";
  width: 8px;
  height: 8px;
  background: #71bb42;
  position: absolute;
  top: 12px;
  left: 0;
}

.main-access ul > li > h3 {
  color: #71bb42;
  font-weight: 700;
}

.main-access ul > li:last-child {
  margin-bottom: 0;
}

.banner-cluster .text-banner {
  position: relative;
}

.banner-cluster .text-banner .main-hd {
  margin-bottom: 0;
  text-align: center;
}

.main-news .main-hd {
  margin-bottom: 80px;
}

.main-banner-video {
  width: 100%;
  height: 100vh;
  display: block;
  background: #1b1464;
  position: relative;
}

.main-banner-video:before {
  content: " ";
  background: rgba(27, 20, 100, 0.75);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.main-banner-video > .video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.main-banner-video > .banner-heading {
  width: 100%;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.main-banner-video > .banner-heading > h1 {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 1px;
  word-spacing: 3px;
}

.main-banner-video > .banner-heading > h1 > span {
  color: #71bb42;
}

.main-banner-video > .banner-heading > a {
  margin-top: 40px;
  padding: 12px 20px;
  font-size: 16px;
  letter-spacing: 1px;
}

.main-banner-video > .banner-heading > a:hover {
  background: #fff;
  color: #51a62f;
  text-decoration: none;
}

.main-banner-video > .scroll-bottom {
  position: absolute;
  left: 50%;
  bottom: 20px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 4;
}

.banner-cluster {
  background: #1b1464;
  position: relative;
}

.banner-cluster:before {
  content: " ";
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-section-cluster.jpg);
  background-size: cover;
  opacity: .1;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-cluster .main-hd {
  color: #fff;
}

.slider-photo-fluid,
.main-gallery {
  margin-top: 80px;
  margin-bottom: 60px;
}

.slider-photo-fluid .slider-item,
.main-gallery .slider-item {
  display: block;
  background: #000;
  position: relative;
}

.slider-photo-fluid .slider-item:before,
.main-gallery .slider-item:before {
  content: "\f002";
  font-family: fontAwesome;
  padding: 10px 17px;
  background: #71bb42;
  display: block;
  color: #fff;
  border-radius: 4px;
  opacity: 0;
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.slider-photo-fluid .slider-item > img,
.main-gallery .slider-item > img {
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.slider-photo-fluid .slider-item > h6,
.main-gallery .slider-item > h6 {
  color: #fff;
  background: #71bb42;
  border-radius: 4px;
  font-weight: 600;
  padding: 8px 15px;
  margin-bottom: 0;
  position: absolute;
  bottom: 20px;
  left: 20px;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.slider-photo-fluid .slider-item:hover:before,
.main-gallery .slider-item:hover:before {
  opacity: 1;
  top: 50%;
}

.slider-photo-fluid .slider-item:hover > img,
.main-gallery .slider-item:hover > img {
  opacity: .3 !important;
}

.slider-photo-fluid .slider-item:hover > h6,
.main-gallery .slider-item:hover > h6 {
  bottom: -100px;
}

.slider-photo-fluid .owl-nav.disabled,
.main-gallery .owl-nav.disabled {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-photo-fluid .owl-nav.disabled > .owl-prev,
.slider-photo-fluid .owl-nav.disabled > .owl-next,
.main-gallery .owl-nav.disabled > .owl-prev,
.main-gallery .owl-nav.disabled > .owl-next {
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 22px !important;
  background: rgba(0, 0, 0, 0.7) !important;
  color: #FFF !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-photo-fluid .owl-nav.disabled > .owl-prev:focus,
.slider-photo-fluid .owl-nav.disabled > .owl-next:focus,
.main-gallery .owl-nav.disabled > .owl-prev:focus,
.main-gallery .owl-nav.disabled > .owl-next:focus {
  outline: none;
}

.slider-photo-fluid .owl-nav.disabled > .owl-prev,
.main-gallery .owl-nav.disabled > .owl-prev {
  border-radius: 0 6px 6px 0;
  left: 0;
}

.slider-photo-fluid .owl-nav.disabled > .owl-next,
.main-gallery .owl-nav.disabled > .owl-next {
  border-radius: 6px 0 0 6px;
  right: 0;
}

.main-gallery {
  height: 270px;
  margin-top: 0;
  margin-bottom: 0;
}

.main-gallery .slider-item > img {
  width: auto;
  height: 270px;
}

.main-gallery .slider-item:before {
  padding: 0;
  background: none;
  font-size: 24px;
}

.main-gallery .owl-nav.disabled > .owl-prev,
.main-gallery .owl-nav.disabled > .owl-next {
  background: none !important;
}

.login-page {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/bg-login.jpg);
  background-size: cover;
  position: relative;
}

.login-page:before {
  content: " ";
  width: 100%;
  height: 100vh;
  background: #1b1464;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
}

.login-page .form-login {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  width: 350px;
  font-family: Poppins;
  position: relative;
}

.login-page .form-login .frame-logo {
  display: block;
  margin-bottom: 40px;
}

.login-page .form-login .frame-logo > img {
  width: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.login-page .form-login .form-group {
  display: block;
}

.login-page .form-login .form-group.oth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.login-page .form-login .form-group.oth > a {
  font-size: 14px;
}

.login-page .form-login .form-group.oth > a:last-child {
  color: #ED4C67;
}

.login-page .form-login .form-control {
  padding: 22px 20px;
  border-color: #e9e9e9;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.login-page .form-login .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #c5e4b2;
}

.not-found {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/bg-login.jpg);
  background-size: cover;
  position: relative;
}

.not-found:before {
  content: " ";
  width: 100%;
  height: 100vh;
  background: #1b1464;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
}

.not-found .content-frame {
  position: relative;
}

.not-found .content-frame > .content-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.not-found .content-frame > .content-heading > h1 {
  font-size: 130px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}

.not-found .content-frame > .content-heading > h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.3;
}

.not-found .content-frame > .content-heading > h2 > span {
  color: #ff0000;
}

.not-found .content-frame > .content-heading > img {
  height: 100px;
  margin-left: 10px;
  margin-right: 10px;
}

.not-found .content-frame > span {
  margin-bottom: 40px;
  font-family: Poppins;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-align: center;
  letter-spacing: 1px;
}

.footer {
  background: #1b1464;
  padding-top: 100px;
  padding-bottom: 70px;
}

.footer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.footer-text ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-text ul > li {
  display: inline-block;
  margin-right: 10px;
}

.footer-text ul > li.fb > a {
  color: #4267B2;
}

.footer-text ul > li.tw > a {
  color: #38A1F3;
}

.footer-text ul > li.ig > a {
  color: #231F20;
}

.footer-text ul > li > a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.footer-text ul > li > a:hover {
  text-decoration: none;
  color: #fff;
  background: #261d8f;
}

.footer-text ul > li:last-child {
  margin-right: 0;
}

@media (min-width: 992px) {
  .header nav > ul > li.show-mbl {
    display: none;
  }

  .header nav .close-btn {
    display: none;
  }

  .header .btn-nav-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .header {
    height: 70px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .header .header-logo > img {
    height: 40px;
  }

  .header .header-logo .text-logo > span {
    color: #333;
  }

  .header nav {
    width: 250px;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    right: -250px;
    z-index: 999;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  .header nav .close-btn {
    width: 24px;
    height: 24px;
    display: block;
    margin-top: 30px;
    margin-left: 20px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header nav .close-btn > span {
    background: #333;
    position: absolute;
  }

  .header nav .close-btn > span:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header nav .close-btn > span:last-child {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .header nav .close-btn:hover {
    cursor: pointer;
  }

  .header nav ul {
    margin-top: 30px;
  }

  .header nav ul > li {
    display: block;
    margin-right: 0;
  }

  .header nav ul > li > a {
    width: 100%;
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #333;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header nav ul > li.show-mbl > a {
    display: block;
  }

  .header nav ul > li.dropdown {
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  .header nav ul > li.dropdown.active {
    background: #f8f8f8;
  }

  .header nav ul > li.dropdown.active > a {
    color: #71bb42;
  }

  .header nav ul > li.dropdown > ul {
    background: #f8f8f8;
    display: none;
    width: 100%;
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    padding: 0 0 10px 0;
    border-radius: 0;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .header nav ul > li.dropdown > ul > li > a {
    padding: 15px 0 15px 40px;
  }

  .header .header-action {
    display: none;
  }

  .header .btn-mobile-nav {
    width: 23px;
    display: block;
    position: relative;
  }

  .header .btn-mobile-nav > span {
    width: 100%;
    height: 2px;
    display: block;
    background: #333;
    margin-bottom: 5px;
  }

  .header .btn-mobile-nav > span:last-child {
    margin-bottom: 0;
  }

  .header .btn-mobile-nav:hover {
    cursor: pointer;
  }

  .header.nav-active nav {
    right: 0;
  }

  .action-block {
    margin-bottom: 40px;
  }

  .main-facility ul > li {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .main-facility ul > li {
    width: 100%;
  }

  .credit-simulation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .credit-simulation > li {
    border: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .credit-simulation > li:last-child {
    margin-bottom: 0;
  }

  .action-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .action-block > .side-right {
    margin-top: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .action-block .side-left,
  .action-block .side-right {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .section-bio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-bio > .frame-img {
    width: 100%;
    margin-bottom: 30px;
  }

  .section-bio > .list-bio {
    padding-left: 0;
  }

  .banner-cluster .text-banner .main-hd {
    font-size: 30px;
  }

  .main-banner-video > .banner-heading > h1 {
    font-size: 48px;
  }

  .footer-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-text > span {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-text > ul {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .banner-cluster .text-banner .main-hd {
    font-size: 24px;
  }

  .main-banner-video > .banner-heading > h1 {
    font-size: 32px;
  }

  .login-page .form-login {
    width: 90%;
  }
}