@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700");
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  font-size: 62.5%;
  font-size: 10px;
  background-color: whitesmoke;
}

.container-fluid {
  margin: 0;
  padding: 0;
}
/* Navbar section */

.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
  z-index: 99;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  color: #00e676;
  font-size: 2.5rem;
}

.nav div.logo a:hover {
  color: #00e676;
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 65px;
  font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
  color: #009dae;
}
.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    margin: 0;
  }
}

@media screen and (max-width: 868px) {
  .navTrigger {
    display: block;
  }
  .nav div.logo {
    margin-left: 15px;
  }
  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  .nav div.show_list {
    height: auto;
    display: none;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: 400px;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(14, 1, 1, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    /*same background color of navbar*/
    background-position: center top;
  }
  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    font-size: 3rem;
    padding: 20px;
  }
  .nav div.media_button {
    display: block;
  }
}

/* Animation */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background: rgba(14, 1, 1, 0.55);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.myH2 {
  text-align: center;
  font-size: 4rem;
}
.myP {
  text-align: justify;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 20px;
}
@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}

/* end navbar */

#btn-back-to-top {
  position: fixed;
  bottom: 60px;
  right: 60px;
  display: none;
  transition: all ease 1s;
}
.btn {
  width: 60px;
  height: 60px;
  font-size: 40px;
  text-align: center;
  justify-content: center;
  z-index: 99;
}
.btn i {
  margin: auto;
  padding-bottom: 10px;
  align-items: center;
}

/* footer */
footer {
  margin-top: 100px;
}
footer .font {
  font-size: 1.5rem;
  text-decoration: none;
}
footer a {
  text-decoration: none;
}
/* end footer */

/* small navigation */
.small-nav {
  margin-top: 20px;
  display: flex;
}
.small-nav a {
  text-decoration: none;
  color: black;
  font-size: 1.8rem;
  margin: 10px;
}
.small-nav i {
  font-size: 13px;
  margin-top: 18px;
}
/* end small nav */

/* line */

.line {
  margin-top: 50px;
}
.color-1 {
  margin-right: 25px;
  background-color: #346751;
  height: 10px;
  border-radius: 6px;
}
.color-2 {
  margin-right: 25px;
  height: 10px;
  background-color: #27496d;
  border-radius: 6px;
}
.color-3 {
  height: 10px;
  background-color: #ea5e5e;
  border-radius: 6px;
}
/* end line */

/* head */

.head {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.head h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #1b262c;
}
.clr h1 {
  color: #1b262c;
  padding-top: 50px;
}
.head i {
  font-size: 40px;
  margin-top: 56px;
  color: #27496d;
  padding: 0 15px;
}
.head .hidden {
  color: #346751;
}

/* end head */

/* slider */

.jumbotron {
  margin: 0;
  height: 680px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), #222), url("/img/Fasilitas\ \(mall\).jpeg") no-repeat center;
  background-size: 100%;
}
/* parralax effect */
.wp-block-cover-image {
  background-attachment: fixed;
  background-position: 50% 0;
}
/* end Parallax Effect */

/* end slider */

/* content */

.content img {
  width: 600px;
  margin: 50px 0;
}

.content h1 {
  text-align: center;
  font-size: 4rem;
}
.content .artikel {
  font-size: 1.6rem;
  margin: auto;
  text-align: justify;
  width: 1000px;
}
.content .artikel span {
  font-weight: 600;
}

/* end content */
h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 0;
}
.padded {
  padding: 100px 0;
}
.wrapper-grey {
  background: #f4f4f4;
}
.avatar {
  width: 30px;
  border-radius: 50%;
}
.avatar-bordered {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: white 1px solid;
}
.avatar-large {
  width: 50px;
}
.card {
  background-image: url();
  height: 250px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  background-size: cover !important;
  color: white;
  position: relative;
  border-radius: 5px;
  margin-bottom: 20px;
}
.card-user {
  position: absolute;
  right: 10px;
  top: 10px;
}
.card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
}
.card-description {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.card-description h2 {
  font-size: 22px;
}
.card-description p {
  font-size: 15px;
}
.card-link {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background: black;
  opacity: 0;
}
.card-link:hover {
  opacity: 0.1;
}
.features img {
  width: 100px;
}
.features h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.features p {
  font-size: 15px;
  font-weight: lighter;
}

/* tablet mode */
@media screen and (max-width: 868px) {
  .col-lg-3 {
    width: 30%;
  }
  .container {
    margin: auto;
  }
  .jumbotron {
    height: 400px;
  }
}

/* responsive Mobile */
@media only screen and (max-width: 768px) {
  /* scroll top btn */
  #btn-back-to-top {
    bottom: 20px;
    right: 20px;
  }
  /* line */

  .col-lg-3 {
    width: 25%;
  }
  .line {
    margin-top: 20px;
  }

  /* end line */
  .head .hidden {
    display: none;
  }

  /* slider */

  .jumbotron {
    height: 180px;
  }

  /* end slider */

  /* content */

  .content h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }
  .judul h3 {
    font-size: 1.3rem;
  }
  .content img {
    width: 100%;
  }
  .content .artikel {
    width: 100%;
  }
  .btn-halaman {
    width: 100%;
  }
  .btn-halaman a {
    font-size: 1.8rem;
  }

  /* end content */
  .small-nav {
    position: relative;
    top: 50px;
    left: 10px;
  }
  .line {
    margin-top: 80px;
  }
}
