@charset "utf-8";

/* CSS Document */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 100%;
  font-family: "Lato-Regular";
}

@font-face {
  font-family: "Lato-Regular";
  src: url('../font/lato.regular.ttf');
}

@font-face {
  font-family: "Lato-Black";
  src: url('../font/Lato-Black.ttf');
}

@font-face {
  font-family: "Lato-Italic";
  src: url('../font/Lato-Italic.ttf');
}

.background-custom {
  background: url("../images/rectangle1.png");
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.nusanet .background-custom {
  background-image: url("../images/background-nusanet.png");
}

.nusaid .background-custom {
  background-image: url("../images/background-nusaid.png");
}

.nusawork .background-custom {
  background-image: url("../images/background-nusawork.png");
}

.profile {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.logo {
  padding-top: 40px;
  position: relative;
  z-index: 3;
}

.logo img {
  max-height: 80px;
  max-width: 200px;
}

.karyawan {
  text-align: center;
  position: absolute;
  padding-top: 100px;
  left: 50%;
  margin-left: -250px;
  bottom: 0;
}


.karyawan::before {
  content: "";
  background-color: rgba(33, 134, 138, 0.7);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-left: -325px;
  top: 45%;
  margin-top: -325px;
}

.nusanet .karyawan::before {
  background-color: rgba(33, 134, 138, 0.7);
}

.nusaid .karyawan::before {
  background-color: rgba(183, 4, 4, 0.7);
}

.nusawork .karyawan::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.karyawan img {
  z-index: 2;
  position: relative;
  width: 600px;
  margin-bottom: -70px;
}

.employee-detail {
  width: 550px;
  position: absolute;
  bottom: 70px;
  z-index: 3;
}

.employee-star {
  text-align: center;
}

.employee-star img {
  width: 50px;
}

.employee-name {
  background-color: rgba(33, 134, 138, 0.7);
  padding: 20px;
  text-align: center;
  color: white;
}

.nusanet .employee-name {
  background-color: rgba(33, 134, 138, 0.7);
}

.nusaid .employee-name {
  background-color: rgba(183, 4, 4, 0.7);
}

.nusawork .employee-name {
  background-color: rgba(33, 134, 138, 0.7);
}

.name {
  color: #FEFEFE;
  font-size: 70px;
  text-transform: uppercase;
  font-weight: bolder;
  font-family: "Lato-Black";
}

.full-name {
  color: #FEFEFE;
  margin-top: -15px;
  font-size: 30px;
}

.employee-id {
  background-color: rgba(33, 134, 138, 0.7);
  color: #FEFEFE;
  text-align: center;
  margin-top: 5px;
  letter-spacing: 5px;
  font-weight: bolder;
  font-family: "Lato-Black";
}

.nusanet .employee-id {
  background-color: rgba(33, 134, 138, 0.7);
}

.nusaid .employee-id {
  background-color: rgba(183, 4, 4, 0.7);
}

.nusawork .employee-id {
  background-color: rgba(255, 255, 255, 0.5);
}

.employee-id p {
  margin-top: 8px;
  font-size: 40px;
}

.employee-info {
  position: absolute;
  bottom: 115px;
  z-index: 3;
  left: 50%;
  margin-left: 380px;
}

.employee-info2 {
  display: none;
}

.info {
  border-left: 3px solid #6CC9CD;
  padding-left: 10px;
  font-size: 20px;
  font-family: "Lato-Italic";
}

.nusanet .info {
  border-left: 3px solid #6CC9CD;
}

.nusaid .info {
  border-left: 3px solid #B70404;
}

.nusawork .info {
  border-left: 3px solid #000000;
}

.info p {
  font-family: "Lato-Black";
  font-size: 30px;
  margin-top: -10px;
}

a.floating {
  position: fixed;
  bottom: 10px;
  right: 10px;
  -webkit-animation-name: example;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s;
  /* Safari 4.0 - 8.0 */
  animation-name: floating;
  animation-duration: 2s;
  z-index: 3;
}

a.floating img {
  width: 90px;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes floating {
  0% {
    right: 10px;
    bottom: -100px;
  }

  50% {
    right: 10px;
    bottom: 40px;
  }

  60% {
    right: 10px;
    bottom: 10px;
  }

  70% {
    right: 10px;
    bottom: 30px;
  }

  80% {
    right: 10px;
    bottom: 10px;
  }

  90% {
    right: 10px;
    bottom: 20px;
  }

  100% {
    right: 10px;
    bottom: 10px;
  }
}

/* Standard syntax */
@keyframes floating {
  0% {
    right: 10px;
    bottom: -100px;
  }

  50% {
    right: 10px;
    bottom: 40px;
  }

  60% {
    right: 10px;
    bottom: 10px;
  }

  70% {
    right: 10px;
    bottom: 30px;
  }

  80% {
    right: 10px;
    bottom: 10px;
  }

  90% {
    right: 10px;
    bottom: 20px;
  }

  100% {
    right: 10px;
    bottom: 10px;
  }
}

.copy {
  position: relative;
}

.copy p {
  position: absolute;
  bottom: 5px;
  left: 5px;
  margin: 0;
  font-size: 14px;
  font-style: italic;
}

.table td,
.table th {
  padding: .75rem 0;
  border-top: none;
}

.nst-employee-note {
  padding: 0;
}

.nst-employee-note td {
  font-size: 14px;
}

.ket {
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 20px 20px 0;
}

.ket img {
  width: 18px;
}

.employee-star2 {
  display: none;
}

@media screen and (max-width:1400px) {
  .karyawan img {
    width: 550px;
  }

  .logo,
  .employee-detail {
    margin-left: 0;
  }

  .karyawan::before {
    width: 550px;
    height: 550px;
    margin-top: -275px;
    margin-left: -275px
  }

  .employee-info {
    margin-left: 280px;
  }

  .info p {
    font-size: 25px;
  }

  .info {
    font-size: 18px;
  }

  .name {
    font-size: 60px;
    color: #fff;
    font-weight: 900;
  }

  .full-name {
    font-size: 25px;
    font-weight: 900;
    color: #FEFEFE;
  }

  .employee-detail {
    width: 500px;
  }

  .employee-detail.sales {
    bottom: 110px;
  }

  .employee-id p {
    font-size: 25px;
  }
}

@media screen and (max-width:1024px) {
  .profile {
    height: 950px;
  }

  .employee-info {
    display: none;
  }

  .employee-info2 {
    display: block;
  }

  .karyawan img {
    width: 550px;
    margin-bottom: 0;
  }

  .karyawan::before {
    width: 550px;
    height: 550px;
    margin-left: -300px;
    margin-top: -230px;
    top: 35%;
  }

  .employee-info2 .row {
    margin: 70px 0;
  }

  .logo {
    margin-left: 0;
    text-align: center;
  }

  .employee-detail {
    margin-left: 0;
  }

  .skills {
    margin-bottom: 50px;
  }

  .info p {
    margin-top: 4px;
    font-size: 25px;
  }

  .info {
    font-size: 18px;
  }
}

@media screen and (max-width:768px) {
  .karyawan img {
    width: 430px;
  }

  .profile {
    height: 80%;
  }

  .karyawan {
    margin-left: -190px;
  }

  .karyawan::before {
    top: 40%;
    width: 430px;
    height: 430px;
    margin-left: -215px;
    margin-top: -200px;
  }

  .employee-detail {
    width: 400px;
    bottom: 50px;
  }

  .name {
    font-size: 55px;
  }

  .full-name {
    color: #FEFEFE;
    font-size: 22px;
  }

  .employee-star img {
    width: 45px;
  }

  .employee-id p {
    font-size: 30px;
  }

  .nst-employee-skills {
    font-size: 20px;
  }

  .employee-info2 .col-sm-12 {
    padding-left: 0;
  }

  .info p {
    font-size: 25px;
    margin-top: -5px;
  }

  .info span {
    font-size: 18px;
  }
}

@media screen and (max-width:500px) {
  .profile {
    height: 480px;
  }

  .karyawan {
    margin-left: -140px;
  }

  .karyawan img {
    width: 280px;
  }

  .karyawan::before {
    top: 50%;
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -155px;
  }

  .logo {
    padding-top: 20px;
  }

  .logo img {
    width: 160px;
  }

  .employee-detail,
  .employee-detail.sales {
    width: 220px;
    bottom: 10px;
  }

  .name {
    font-size: 30px;
  }

  .full-name {
    font-size: 12px;
    margin-top: -5px;
  }

  .employee-id p {
    font-size: 14px;
    padding: 5px 0;
  }

  .employee-name {
    padding: 15px;
  }

  .employee-star2 {
    display: block;
  }

  .employee-star {
    display: none;
  }

  .employee-star2 {
    display: block;
    position: absolute;
    bottom: 30px;
    z-index: 3;
    right: 10px;
  }

  .employee-star2 img {
    width: 23px;
    margin: 0 -1px;
  }

  a.floating img {
    width: 70px;
  }

  .employee-info2 .row {
    margin: 20px 0;
  }

  .info span {
    font-size: 12px;
  }

  .info p {
    font-size: 18px;
  }

  .nst-employee-skills {
    font-size: 14px;
  }

  .nst-employee-skills img {
    width: 20px;
  }

  td.star {
    text-align: right;
  }

  .ket {
    margin: 20px 40px;
  }

  .copy p {
    font: 14px;
    color: #a5a5a5;
  }

  .copy {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
}