/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}
@media (max-width: 992px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

/* @media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
} */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}
.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}
.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}
@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }
  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}
.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
  color: #fff;
  background: #70429a;
}
.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover > a span {
  color: #fff;
}
.nav-menu a:hover,
.nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}
.nav-menu a:hover span,
.nav-menu li:hover > a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}
.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  padding-bottom: 60px;
}

.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact h2 {
  font-size: 40px;
  padding: 40px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
  text-align: center;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #0563bb;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #0678e3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.Contact {
  padding-top: 50px;
  padding-bottom: 20px;
}
.info {
  color: white;
  text-align: justify;
}
.info img {
  width: 50px;
}

.link {
  color: white;
  text-align: justify;
}
.link ul li {
  margin-left: -30px;
  list-style: none;
}
.maps-responsive h5 {
  color: white;
  text-align: center;
}
footer {
  text-align: center;
  background-color: rgb(10, 10, 10);
  color: rgb(241, 239, 239);
  font-weight: bold;
  padding: 8px;
}
#mobile2 {
  display: none;
}

@media (max-width: 992px) {
  #header {
    width: 300px;
    /* background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(-90px); */
    border-right: none;
    left: -300px;
  }
}

@media (max-width: 768px) {
  /* #hero {
    background-image: url(img/Coba1.png);
    background-size: 100% 55%;
    background-attachment: fixed;
  } */

  .maps-responsive {
    overflow: hidden;

    padding-bottom: 100%;

    position: relative;

    height: 100%;
  }

  .maps-responsive iframe {
    left: 0;

    top: 50px;

    height: 55%;

    width: 100%;

    position: absolute;
  }

  .Contact {
    padding-top: 30px;
  }
  .info {
    color: white;
    text-align: justify;
    font-size: 14px;
  }
  .info img {
    width: 50px;
  }
  .link {
    color: white;
    font-size: 14px;
  }
  .link h5 {
    font-size: 14px;
  }
  .link ul li {
    font-size: 14px;
    margin-left: -15px;
  }
  footer {
    text-align: center;
    background-color: rgb(10, 10, 10);
    color: rgb(241, 239, 239);
    font-weight: bold;
    padding: 8px;
  }
}

/* HP   */
@media (max-width: 600px) {
  /* #hero {
    background-image: url(img/Coba1.png);
    background-size: 100% 55%;
    background-attachment: fixed;
  } */
  .maps-responsive {
    overflow: hidden;

    padding-bottom: 100%;

    position: relative;

    height: 100%;
  }

  .maps-responsive iframe {
    left: 0;

    top: 50px;

    height: 100%;

    width: 100%;

    position: absolute;
  }

  .Contact {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .info {
    color: white;
    text-align: justify;
    font-size: 14px;
  }
  .info img {
    width: 50px;
  }
  .link {
    color: white;
    font-size: 14px;
  }
  .link h5 {
    font-size: 14px;
  }
  .link ul li {
    font-size: 14px;
    margin-left: -15px;
  }
  footer {
    text-align: center;
    background-color: rgb(10, 10, 10);
    color: rgb(241, 239, 239);
    font-weight: bold;
    padding: 8px;
    height: 60px;
    margin-bottom: 55px;
  }
  .mobile-version nav {
    overflow: hidden;
    height: 70px;
    width: 100%;
    /* background: #3498db; */
    font-size: 11pt;
    font-family: "PT Sans", Arial, sans-serif;
    font-weight: bold;
    border-radius: 20px 20px 0 0;
    z-index: 1;
  }
  .mobile-version nav ul {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 40px;
    justify-content: space-between;
  }
  .mobile-version nav li {
    display: inline;
    float: left;
    font-size: 10px;
    width: 50px;
    text-align: center;
    /* display: flex; */
  }

  .menu-bawah ul li {
    margin-left: 10px;
    margin-right: 3px;
    margin-top: 15px;
  }
  .menu-bawah ul li img {
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .mobile-version nav ul li {
    display: inline;
    float: left;
    width: 15%;
    text-align: center;
    justify-content: space-between;
    padding-left: 20px;
  }
  .mobile-version nav ul li a {
    list-style: none;
    text-decoration: none;
    color: white;
  }

  #mobile2 {
    position: fixed;
    display: block;
    background-color: #70429a;
    width: 100%;
    color: white;
  }
}

@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }
  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}
