@import url("https://fonts.googleapis.com/css2?family=Merriweather&family=Merriweather+Sans&display=swap");

/* General CSS */

html,
body {
  height: 100%;
}

body {
  font-family: "Merriweather", serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merriweather Sans", sans-serif;
  /*color: #41464b;*/
  color: #000000;
  /*text-transform: uppercase;*/
}

a {
  font-family: "Merriweather", serif;
  color: #2196f3;
}

a:link {
  text-decoration: none;
}

p {
  font-family: "Merriweather", serif;
  color: #41464b;
  font-size: 16px;
  font-weight: 300;
}

/* Navbaar */
.navbar {
  position: relative;
  z-index: 1;
}

.navbar-brand {
  font-family: Viga;
  font-size: 26px;
}

.jumbotron {
  background-image: url("../images/Gedung_2023.jpg");
  background-size: cover;
  height: 550px;
  position: relative;
}

.jumbotron .container {
  z-index: 1;
  position: relative;
}

.jumbotron::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
  position: absolute;
  bottom: 0;
}

.jumbotron .display-4 {
  color: orange;
  text-align: center;
  margin-top: 250px;
  font-weight: 300;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  font-size: 31px;
}

.jumbotron .display-4 span {
  font-weight: 600;
}

/* Info Panel */
.info-panel {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  margin-top: -200px;
  background-color: white;
  padding: 30px;
}

.info-panel img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.info-panel i {
  color: #2196f3;
  float: left;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.info-panel h4 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
}

/* DESKTOP VERSION */
@media (min-width: 992px) {
  .navbar .navbar-brand,
  .nav-link {
    color: orangered !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-weight: 600;
  }

  .nav-link {
    text-transform: uppercase;
    margin-right: 10px;
  }

  .navbar .navbar-brand img {
    width: 58px;
    height: 58px;
  }

  .jumbotron {
    margin-top: -100px;
    height: 850px;
  }

  .jumbotron .display-4 {
    margin-top: 450px;
    font-size: 62px;
    height: 750px;
  }

  .info-panel {
    margin-top: -100px;
  }

  .nav-link:hover::after {
    content: "";
    display: block;
    border-bottom: 3px solid orangered;
    width: 50%;
    margin: auto;
    padding-bottom: 5px;
    margin-bottom: -8px;
  }

  .dropdown-item {
    text-transform: uppercase;
  }
}

/*====================================================
               TITLE CONTENT (Generic)
======================================================*/

.title-bar {
  padding: 10px 0;
}

.title-bar h1 {
  color: #41464b;
  text-align: center;
  font-weight: 700;
  margin: 10px auto 10px auto;
}

.title-bar .heading-border {
  width: 60px;
  height: 10px;
  background-color: #2196f3;
  margin: 0 auto 20px auto;
}

.heading-border-light {
  width: 30px;
  height: 5px;
  background-color: #2196f3;
  margin: 0 0 20px 0;
}

.title-bar p {
  color: #717171;
}

.title-bar p {
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 40px;
  margin: 0 auto;
  max-width: 700px;
}

.title-bar .title-but {
  margin: 0;
  background-color: transparent;
  text-align: center;
}

@media (max-width: 575px) {
  .title-bar {
    padding: 50px 0;
  }

  .title-bar h1 {
    color: #41464b;
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin: 20px auto 10px auto;
  }

  .title-bar p {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 40px;
    margin: 0 auto;
    max-width: 700px;
  }
}

@media (min-width: 1600px) {
  .title-bar p {
    font-size: 16px;
  }
}

.portfolio-item {
  margin-bottom: 30px;
}

/*====================================================
               COLOR (Generic)
======================================================*/

.cl-white {
  color: #fff;
}

.cl-atlantis {
  color: #fff;
}

.bg-white {
  background: #fff;
}

.bg-atlantis {
  background: #2196f3;
}

.bg-starship {
  background: #cdd613;
}

.bg-matisse {
  background: #0b385d;
}

.bg-chathams {
  background: #0aa1b9;
}

.bg-gray {
  background: #f0f0f0;
}

.bg-light-gray {
  background: #f9f9f9;
}

.bg-green {
  background: #bfff00;
}

.bg-orange {
  background: #ffbd33;
}

.bg-new {
  background: #ecf5ff;
}

.bg-gradiant {
  background: -moz-linear-gradient(
    45deg,
    rgba(34, 155, 242, 1) 0%,
    rgba(0, 128, 129, 1) 99%,
    rgba(0, 128, 128, 1) 100%
  );
  /* ff3.6+ */
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    color-stop(0%, rgba(34, 155, 242, 1)),
    color-stop(99%, rgba(0, 128, 129, 1)),
    color-stop(100%, rgba(0, 128, 128, 1))
  );
  /* safari4+,chrome */
  background: -webkit-linear-gradient(
    45deg,
    rgba(34, 155, 242, 1) 0%,
    rgba(0, 128, 129, 1) 99%,
    rgba(0, 128, 128, 1) 100%
  );
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(
    45deg,
    rgba(34, 155, 242, 1) 0%,
    rgba(0, 128, 129, 1) 99%,
    rgba(0, 128, 128, 1) 100%
  );
  /* opera 11.10+ */
}

/*====================================================
                   BUSINESS-GROWTH-P1
======================================================*/

.business-growth-p1 {
  padding-bottom: 100px;
}

.business-growth-p1 > .container > .row > .service-padding {
  padding: 0;
}

.service-item {
  padding: 40px 0 0 0;
  margin: 0;
  border: 1px solid #ddd;
  border-right: 0px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  transition: padding 0.5s ease;
}

.service-item:last-child {
  border-right: 1px solid #ddd;
}

.service-item:hover {
  padding: 20px 0 20px 0;
  margin: 0;
  transition: all 0.5s ease;
  border-bottom: 5px solid #2196f3;
}

.service-item-icon {
  width: 102px;
  height: 102px;
  margin: 0 auto;
  margin-bottom: 30px;
  border: 6px solid #f6f6f6;
  border-radius: 100%;
}

.service-item-icon i {
  color: #2196f3;
  height: 90px;
  line-height: 90px;
  width: 90px;
  border: 1px solid #e0e0e0;
  border-radius: 100%;
  text-align: center;
}

.service-item:hover .service-item-icon i {
  color: #fff;
  background-color: #2196f3;
}

.service-item-title h3 {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  margin: 0 0 10px 0;
  text-transform: capitalize;
}

.service-item-desc p {
  margin: 20px auto;
  width: 70%;
  text-align: center;
}

ul.service-spec {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 40px 0;
}

ul.service-spec li p {
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .business-growth-p1 {
    padding: 0 40px 100px 40px;
  }
}

/*====================================================
                       STORY
======================================================*/

#story {
  padding-bottom: 50px;
}

.story-desc {
  padding: 0 40px 40px 10px;
}

.story-desc > h6 {
  color: #2196f3;
  font-weight: 700;
}

.story-desc > p {
  font-size: 15px;
}

.story-descb {
  padding: 10px 10px 30px 10px;
  margin: 60px 0;
  background: #f7f7f7;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.story-descb:hover {
  box-shadow: 2px 2px 6px 1px rgba(158, 158, 158, 0.77);
  border-bottom: 5px solid #2196f3;
  margin-top: 55px;
  cursor: pointer;
}

.story-descb > i {
  font-size: 45px;
  height: 60px;
  line-height: 60px;
  color: #999;
}

.story-descb h6 {
  font-size: 18px;
  color: #666;
  padding: 25px 0 5px;
}

.story-descb p {
  color: #867f7f;
  font-size: 14px;
}

@media (max-width: 767px) {
  .story-descb {
    padding: 10px 10px 30px 10px;
    margin: 20px 0;
    background: #f7f7f7;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

@media (max-width: 585px) {
  .story-descb {
    padding: 10px 10px 30px 10px;
    margin: 20px 10%;
    background: #f7f7f7;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

@media (max-width: 420px) {
  .story-descb {
    padding: 10px 10px 30px 10px;
    margin: 20px 0%;
    background: #f7f7f7;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

@media (min-width: 1600px) {
  .story-desc > p {font-size: 16px;}

  .story-descb p {
    color: #867f7f;
    font-size: 16px;
  }
}

.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4 {
  position: relative;
  /*opacity: 0.65;*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgimg-1 {
  background-image: url("../images/Gedung_2023.jpg");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("../images/Guru_2023.jpg");
  min-height: 100%;
}

.bgimg-3 {
  background-image: url("../images/Lapangan_2023.jpg");
  min-height: 100%;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .bgimg-1,.bgimg-2,.bgimg-3 {background-attachment: scroll;}
}

@media (max-width: 767px) {
  .card-img {width: 50%;}
}

/* img zoom */
.card-album {
  background-color:#fff;
  background-clip:border-box;
  height: 300px;
  overflow: hidden;
  border-radius: .25em;
  border:1px solid rgba(0,0,0,.125);
}

.img-hover-zoom {background: #222f3e;overflow: hidden;}
.img-hover-zoom--basic img {transition: transform .5s ease;}
.img-hover-zoom--basic:hover img {transform: scale(1.5);}

/* zabuto_calendar */
.holiday {background-color: #FA2601;}
.grade-2 {background-color: #FA8A00;}
.grade-3 {background-color: #FFEB00;}
.grade-4 {background-color: #27AB00;}
.purple {background-color: purple;}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #575757;
  border-top-color: #ffffff;
  animation: spinner 0.9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*footer bottom*/

#footer-bottom {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px 0;
}

#footer-copyrights p {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  color: #bbb;
  text-align: center;
}

#footer-copyrights p a:last-child {
  border-left: 2px solid #fff;
  padding-left: 10px;
  margin-left: 10px;
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  padding: 3px 15px;
  border-radius: 0;
  display: none;
}

@media (min-width: 1600px) {
  address.address-details-f,
  address.address-details-f a {
    color: #ddd;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .footer .container {width: 90%;}

  .footer-s1 .heading-footer h2 {
    color: #eee;
    font-size: 18px;
    margin-top: 50px;
    text-transform: none;
  }

  .footer-s1 .heading-footer {
    text-align: left;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 2px;
  }
}

@media print {
  .page-break {display: block;page-break-before: always;}
}
