body, html{
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
}

/* Update Tv Resolution */
.not-tv{
  display: block !important;
}
.tv{
  display: none !important;
}
.qrcode-tv-program{
  margin-bottom: 40%;
  display: none;
}
/* Update Tv Resolution */

.burger-icon {
  width: 35px;
  height: 2px;
  background-color: grey;
  margin: 6px 0;
  border-radius: 20px;
}
.burger-icon-2 {
  margin-left: 13px!important;
  width: 22px;
  height: 2px;
  background-color: grey;
  margin: 6px 0;
  border-radius: 20px;
  text-align: right;
}

.navbar-light .navbar-toggler {
  border : none;
}

.center-div {
  margin: 0 auto;
}

.mid-div {
  height: inherit;
  display: grid;
  place-items: center start;
}

.logo-brand {
  max-width: 130px;
  height: auto;
  width: 100%;
  padding: 5px 0px 5px 0px;
}

.navbar-input input {
  border:0;
  outline:0;
}
.navbar-input input:focus {
  outline:0;
  outline:none !important;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: #eef7ff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align:center;
  color: #FAF6F7;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #497aab;
  display: block;
  transition: 0.3s;

}

.sidenav a:hover{
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.bpl-image-about {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

.nav-link {
  color: #222222 !important;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.logo-sidenav {
  width: 30%;
}

.bottom-navbar {
  padding: 0px;
}

.bottom-navbar > li {
  display: inline;
  list-style: none;
  padding-right: 20px;
}

.ul-re-style-black li a{
  color: black;
  text-decoration: none;
}

.ul-re-style-white li a{
  color: white;
  text-decoration: none;
}

.plus{
  display: none !important;
  color: white;
  position: absolute;
  top: 0;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 55px;
  font-size: 38px;
  font-family: 'Roboto';
  font-weight: 300;
  transition: all 0.3s;
}

#container-floating{
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

#container-floating:hover{
  height: 400px;
  width: 90px;
  padding: 30px;
}

#container-floating:hover .plus{
  animation: plus-in 0.15s linear;
  animation-fill-mode: forwards;
}

.edit{
  display: none !important;
  position: absolute;
  top: 0;
  display: block;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  padding: 0;
  opacity: 0;
  margin: auto;
  line-height: 65px;
  transform: rotateZ(-70deg);
  transition: all 0.3s;
}

/* #container-floating:hover .edit{
  animation: edit-in 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}  */

@keyframes edit-in{
    from {opacity: 0; transform: rotateZ(-70deg);}
    to {opacity: 1; transform: rotateZ(0deg);}
}

@keyframes edit-out{
    from {opacity: 1; transform: rotateZ(0deg);}
    to {opacity: 0; transform: rotateZ(-70deg);}
}

@keyframes plus-in{
    from {opacity: 1; transform: rotateZ(0deg);}
    to {opacity: 0; transform: rotateZ(180deg);}
}

@keyframes plus-out{
    from {opacity: 0; transform: rotateZ(180deg);}
    to {opacity: 1; transform: rotateZ(0deg);}
}

.nds{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  z-index: 300;
  transform:  scale(0);
  cursor: pointer;
}

.call{
  background: #ffffff;
  border: 2px solid #d3a411;
  right: 40px;
  /* bottom: 120px; */
  bottom: 30px;
  animation-delay: 0.2s;
  animation-fill-mode:  forwards;
}

.web{
  background: #ffffff;
  border: 2px solid #d3a411;
  right: 40px;
  /* bottom: 180px; */
  bottom: 85px;
  animation-delay: 0.15s;
  animation-fill-mode:  forwards;
}

.wa{  
  background: #ffffff;
  width: 240px;
  height: auto;
  right: 0;
  bottom: 70px;
  animation-delay: 0.1s;
  animation-fill-mode:  forwards;
}

@keyframes bounce-nds{
    from {opacity: 0;}
    to {opacity: 1; transform: scale(1);}
}

@keyframes bounce-out-nds{
    from {opacity: 1; transform: scale(1);}
    to {opacity: 0; transform: scale(0);}
}

#container-floating .nds{
  animation: bounce-nds 0.1s linear;
  animation-fill-mode:  forwards;
}

#container-floating .wa{
  animation-delay: 0.08s;
}
#container-floating .web{
  animation-delay: 0.15s;
}
#container-floating .call{
  animation-delay: 0.2s;
}

/* #container-floating:hover .nds{
  animation: bounce-nds 0.1s linear;
  animation-fill-mode:  forwards;
}

#container-floating:hover .wa{
  animation-delay: 0.08s;
}
#container-floating:hover .web{
  animation-delay: 0.15s;
}
#container-floating:hover .call{
  animation-delay: 0.2s;
} */

.letter{
  font-size: 23px;
  font-family: 'Roboto';
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 40px;
}

.reminder{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 40px;
}
.reminder:hover {
  transition: all 600ms ease;
  transform: translateX(10px);
}
/* End Floating */

.img-review {
  width: 604px;
  height: 340px;
}

button.btn.float:focus {
  box-shadow: none;
}

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  p {
    line-height: 1.0;
  }
  .img-banner-home {
    height: 30vh;
  }
  .img-banner-programs {
    height: 30vh;
  }
  .img-banner-shape {
    height: 23vh;
  }
  .img-banner-review {
    min-height: 30vh;
  }
  .img-banner-about {
    min-height: 30vh;
  }
  .img-review-mobile {
    width: 50vw;
    height: 25vh;
  }
  .review-title {
    font-size: 2vh;
  }
  .review-desc {
    font-size: 1vh;
  }

  .banner-about-desc {
    padding-top: 125%;
    padding-left: 2%;
    font-size: 35px;
  }
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    p {
      line-height: 1.0;
    }
    .img-banner-home {
      height: 100vh;
    }
    .img-banner-programs {
      height: 100vh;
    }
    .img-banner-shape {
      height: 75vh;
    }
    .img-banner-review {
      min-height: 100vh;
    }
    .img-banner-about {
      min-height: 100vh;
    }
    .img-review-mobile {
      width: 100%;
      height: auto;
    }
    .review-title {
      font-size: 4vw;
    }
    .review-desc {
      font-size: 4vh;
    }

    .banner-about-desc {
      padding-top: 135%;
      padding-left: 2%;
      font-size: 35px;
    }
  }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 
  .img-banner-home {
    height: 100vh;
  }
  .img-banner-review {
    min-height: 46vh;
  }
  .img-banner-about {
    min-height: 50vh;
  }
  .review-title {
    font-size: 4vw;
  }
  .review-desc {
    font-size: 2vh;
  }
  .img-review {
    width: 50vw;
    height: 35vh;
  }
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { }
.bg-img-blue {
  background-image: url("/images/layanan-kami-background.svg");
  background-size: 100%;
}

.bg-img-footer {
  background-image: url("/images/footer-background.svg");
  background-size: cover;
}

.bg-img-blue-about-us {
  background-image: url("/images/background-about-us.svg");
  background-size: cover;
}

.bg-img-kenapa-pilih-kami {
  background-image: url("/images/background-kenapa-pilih-kami.png");
  background-size: 100%;
}

.bg-img-terpercaya {
  background-image: url("/images/terpercaya.svg");
  background-size: cover;
}

.bg-img-sertifikasi {
  background-image: url("/images/sertifikasi.svg");
  background-size: 100%;
}

.bg-img-blue-sertifikasi {
  background-image: url("/images/bg-biru.svg");
  background-size: 100%;
}

.bg-img-card-sertifikasi {
  background-image: url("/images/background-sertifikasi-2.svg");
  background-size: cover;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.bg-img-card-sertifikasi-mobile {
  background: #277abe;
  border-top-left-radius: 100px;
}

.bg-img-our-vision {
  background-image: url("/images/our-vision.svg");
  background-size: 100%;
}

.bg-corporate {
  background-image: url("/images/background-corporate.svg");
  background-size: 100%;
}

.bg-business-segment {
  background-image: url("/images/background-business-segment.svg");
  background-size: 100%;
}

.bg-perjalanan-kami {
  background-image: url("/images/background-perjalanan-kami.svg");
  background-size: cover;
}

.bg-dark-mobile {
  background-image: url("/images/bg-footer-mobile.png");
  background-size: cover;
  border-top-right-radius: 100px;
}

.bg-blue {
  background: #ccdfed;
}

.bg-orange {
  background: #FCB833;
}

.red {
  color: #9D2235;
}

.white {
  color: #ffffff;
}

.light-grey {
  color: #4F4F4F;
}

.dark-grey {
  color: #333333;
}

.black{
  color: #3D3B3C;
}

.blue {
  color: #277BBF;
}

.yellow {
  color: #FCB833;
}

.hr-width {
  border: 1px solid #9D2235;
}

.hr-grey {
  border: 1px solid #323031;
  margin-bottom: 25px;
}

.button-red {
  background-color: #ffffff;
  border: 2px solid #9D2235;
  padding: 5px 10px;
}

.show-hide-br {
  display: none;
}

.mt-lg-n23 {
  margin-top: -25.5rem !important;
}

.mb-md-18 {
  margin-bottom: 2rem !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-22 {
  font-size: 28px !important;
}

.our-vision {
  top: 52rem;
  left: 18rem;
  color: #FCB833;
}

.p-our-vision {
  top: 57rem;
  left: 16rem;
}

.our-mission {
  top: 52rem;
  left: 45rem;
  color: #FCB833;
}

.p-our-mission {
  top: 57rem;
  left: 43rem;
}

.segment-finance {
  left: 46rem;
  top: 14rem;
}

.segment-mining {
  left: 46rem;
  top: 20rem;
}

.segment-telecommunication {
  left: 46rem;
  top: 26rem;
}

.capital-financing {
  top: 3rem;
  left: -3rem;
}

.new-office {
  top: 0;
  left: 7rem;
}

.reorganization {
  top: 2rem;
  left: 10rem;
}

.implementation-boss {
  top: 0;
  left: 21rem;
}

.digitalization {
  top: 3rem;
  left: 29rem;
}

.new-company {
  top: 1rem;
  left: 36rem;
}

.corporate {
  top: 3rem;
  left: 39rem;
}

.surviving {
  top: 0;
  left: 44rem;
}

.recovering {
  top: 3rem;
  left: 58rem;
}

.vh-25 {
  height: 25rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

@media only screen and (min-width: 1600px) {
  .show-hide-br {
    display: block;
  }
}

@media only screen and (max-width: 1000px) {
  .show-hide-br {
    display: block;
  }
}

.nav-item-margin {
  margin-right: 30px;
}

.nav-active {
  padding-bottom: 0px !important;
  border-width: 0 0 2px;
  border-style: solid;
  color: #317abe !important;
  font-weight: bold;
}

.filter-black {
  filter:  brightness(0) invert(0);
  width: 20px;
  height: 20px;
}

.filter-youtube-black {
  filter:  brightness(0) invert(0);
  width: 25px;
  height: 25px;
}

.filter-white {
  width: 20px;
  height: 20px;
}

.filter-youtube-white {
  width: 25px;
  height: 25px;
}
.lead {
  word-break: break-word;
}

@media only screen and (max-width:540px) {
  .bpl-image-about {
    min-height: 105px;
  }
  .bg-img-blue-about-us {
    background-size: contain;
  }
  .bottom-5 {
    bottom: 1rem;
  }
  .vh-25 {
    height: 16rem;
  }
  .pb-10 {
    padding-bottom: 3rem;
  }
  .font-14 {
    font-size: 10px;
  }
  .mt-lg-n23-kenapa {
    margin-top: 0.5rem !important;
  }
  .mb-md-18 {
    margin-bottom: 1rem !important;
  }
  .mt-lg-n23 {
    margin-top: -5.5rem !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .bpl-image-about {
    min-height: 170px;
}
  .bottom-5 {
    bottom: 5rem;
  }
  .font-size-22 {
    font-size: 45px !important;
  }
  .mt-lg-n23-kenapa {
    margin-top: 0.5rem !important;
  }
  .mb-md-18 {
    margin-bottom: 4rem !important;
  }
  .mt-lg-n23 {
    margin-top: -12.5rem !important;
  }
}

@media (min-width: 768px) {
  .bottom-5 {
    bottom: 5rem;
  }
  .mt-lg-n23 {
    margin-top: -13.5rem !important;
  }
  .vh-25 {
    height: 35rem;
  }
  .font-size-22 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-n23 {
    margin-top: -13.5rem !important;
  }
  .segment-finance {
    left: 37rem;
    top: 13rem;
  }
  .segment-mining {
    left: 37rem;
    top: 18rem;
  }
  .segment-telecommunication {
    left: 37rem;
    top: 23rem;
  }
  .vh-25 {
    height: 22rem;
  }
}
@media (min-width: 1200px) {
  .segment-finance {
    left: 48rem;
    top: 15rem;
  }
  .segment-mining {
    left: 48rem;
    top: 20rem;
  }
  .segment-telecommunication {
    left: 48rem;
    top: 25rem;
  }
}
@media (min-width: 1400px) {
  .bg-img-blue-about-us {
    background-size: cover;
  }
  .segment-finance {
    left: 53rem;
    top: 15rem;
  }
  .segment-mining {
    left: 53rem;
    top: 20rem;
  }
  .segment-telecommunication {
    left: 53rem;
    top: 25rem;
  }
}