@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); /* Montserrat font */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800); /* Open sans font */

/* ##### GENERAL  ##### */
* {
  outline: 0;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: #fff;
  color: #60606e;
  font-family: "Open sans", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ##### 00 : GENERAL  ##### */
section {
  margin-top: 150px;
}
.green-section {
  background-color: #7beec7;
}
.white-section {
  background-color: #fff;
}
.light-gray-section {
  background-color: #efeff0;
}
img {
  width: 100%;
}

/*blockquote*/
blockquote.bq {
  padding: 30px;
  border-left: solid 10px #7beec7;
  font-style: italic;
  font-size: 14px;
  line-height: 30px;
  color: #999999;
  background-color: #efeff0;
}

/*links*/
a {
  color: #60606e;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.link {
  position: relative;
}
a.link:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #7beec7;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  color: #60606e;
  text-decoration: none;
}
a:hover:after {
  width: 50%;
}
/*texts*/
.montserrat-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.open-sans-text {
  font-family: "Open sans", sans-serif;
}
.white-text {
  color: white;
}
.green-text {
  color: #7beec7;
}
.gray-text {
  color: #999999;
}

.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
p {
  font-family: "Open sans", sans-serif;
  color: #999999;
  line-height: 30px;
}
ul.social-icons li a:hover {
  color: #7beec7;
}
/*section's title*/
.section-title {
  width: 50%;
  margin: 0 auto 100px;
  text-align: center;
}
.section-title span {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.section-title span:after {
  content: "";
  background-color: #2cbadd;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
  width: 60px;
  height: 20px;
}
.section-title p {
  line-height: 24px;
  color: #000;
}
.home_p {
  color: #000;
}
.section-title2 span {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
  position: relative;
  display: inline-block;
  margin-right: 20px;
}
.section-title2 span:after {
  content: "";
  background-color: #3edbf0;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
  width: 60px;
  height: 20px;
}
.section-title2 p {
  line-height: 24px;
  color: #000;
}

@media (max-width: 991px) {
  .section-title {
    margin: 0 auto 50px;
  }
  .section-title span:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/*lists*/
/*list 1*/
ul.list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
ul.list li:last-child {
  margin-bottom: 0;
}
ul.list li:before {
  font-family: "Ionicons";
  content: "\f374";
  position: absolute;
  left: 0;
  color: #7beec7;
}
/*list 2*/
ul.list_2 li {
  list-style: none;
  float: left;
  width: 100%;
}
ul.list_2 li a {
  display: inline-block;
  padding: 20px;
  border-bottom: solid 1px #bfbfbf;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
ul.list_2 li:first-child a {
  border-top: solid 1px #bfbfbf;
}
ul.list_2 li a > span {
  float: right;
}
ul.list_2 li a:hover {
  border-bottom: solid 1px #7beec7;
}
/*list 3 (tags)*/
ul.tags {
  float: left;
}
ul.tags li {
  list-style: none;
  margin-right: 5px;
  margin-bottom: 5px;
  float: left;
}
ul.tags li a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: #999999;
  background-color: #e5e5e5;
  padding: 0 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
ul.tags li a:hover {
  background-color: #f2f2f2;
  color: #60606e;
}

/*social icons*/
ul.social-icons li {
  list-style: none;
  float: left;
  margin: 0 10px;
}
ul.social-icons li:first-child {
  margin: 0 10px 0 ;
}
ul.social-icons li:last-child {
  margin:  0 0 10px;
}
ul.social-icons li a {
  color: #999999;
  font-size: 18px;
}

/*buttons*/
.btn {
  height: 50px;
  line-height: 50px;
  min-width: 150px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tombol {
  height: 50px;
  line-height: 50px;
  min-width: 150px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #2cbadd;
  margin-top: 10px;
}
.tombol:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.btn.green {
  background-color: #2cbadd;
  color: #fff;
  width: 180px;

}
.btn.white {
  background-color: #fff;
  color: #0a6f97;
}
.tombol .surat{
  background-color: #2cbadd;
  color: #fff;
  width: 180px;

}
@media (max-width: 991px) {
  .btn {
    margin: 20px 0;
  }
  .tombol{
    margin-top: 40px;
    min-width: 180px;
  }
  .tombol span .surat {
    margin-top: 50px;
    /* margin-bottom: -50px;  */
  }
}

/*tab menu*/
.tab {
  overflow: hidden;
  float: left;
}
.tab nav {
  width: 100%;
  display: inline-block;
  /* float: left; */
  border-bottom: solid 2px #e6e6e6;
  margin-bottom: 30px;
  position: relative;
}
.tab nav .bottom-line {
  height: 2px;
  background-color: #3edbf0;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tab nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 10px 20px;
  color: #999999;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.tab nav a.current {
  color: #000;
}
.tab .tab_single {
  display: none;
}
.tab .tab_single.shown {
  display: block;
}

/* ##### 01 : HEADER & FOOTER  ##### */
/*header*/
header.main-header {
  height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
/*logo*/
header.main-header .logo1 {
  float: left;
  height: 100px;
  line-height: 100px;
  margin-top: -5px;
}
 header.main-header .logo2 {
  float: left;
  height: 100px;
  line-height: 100px;
  margin-top: -30px;
}
header.main-header .logo3 {
  float: left;
  height: 100px;
  line-height: 100px;
  margin-top: -30px;
}
  
@media (max-width: 991px) {
  header.main-header .logo1 {
  float: left;
  height: 100px;
  line-height: 100px;
  
}
 header.main-header .logo2 {
  float: left;
  height: 100px;
  line-height: 100px;
  margin-top: -25px;
}
header.main-header .logo3 {
  float: left;
  height: 100px;
  line-height: 100px;
  margin-top: -30px;
}

}




.menu {
  float: right;
}

/*desktop nav*/
nav.desktop-nav {
  float: left;
}
nav.desktop-nav li {
  list-style: none;
}
nav.desktop-nav ul.first-level > li {
  float: left;
  margin-right: 20px;
  position: relative;
}
nav.desktop-nav ul.first-level > li:last-child {
  margin-right: 0;
}
nav.desktop-nav ul.first-level > li > a {
  display: inline-block;
  line-height: 100px;
  position: relative;
  -webkit-transition: none;
  transition: none;
  color : #fff;
}
nav.desktop-nav ul.first-level > li > a:after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
nav.desktop-nav ul.first-level > li:hover > a:after {
  top: 35px;
  opacity: 1;
}
nav.desktop-nav ul.first-level > li a {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

nav.desktop-nav ul.first-level > li > ul.second-level {
  display: none;
  z-index: 999;
  position: absolute;
  top: 70px;
  left: 0;
  min-width: 200px;
  background-color: #60606e;
}
nav.desktop-nav ul.first-level > li:last-child > ul.second-level {
  left: auto;
  right: 0;
}
nav.desktop-nav ul.first-level > li > ul.second-level > li > a {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  color: #fff;
}
nav.desktop-nav ul.first-level > li > ul.second-level > li:nth-child(even) > a {
  background-color: #585866;
}
nav.desktop-nav ul.first-level > li > ul.second-level > li > a:hover {
  background-color: #000;
}
@media (max-width: 991px) {
  .menu nav.desktop-nav {
    display: none;
  }
}


/*mobile nav*/
nav.mobile-nav {
  display: inline-block;
  min-width: 200px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 100px;
  display: none;
}
nav.mobile-nav > ul.first-level li {
  list-style: none;
}
nav.mobile-nav > ul.first-level > li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #60606e;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
nav.mobile-nav > ul.first-level > li a:hover {
  background-color: #404051;
}
nav.mobile-nav > ul.first-level > li > ul.second-level {
  display: none;
  background-color: #50505f;
}

/*menu icon*/
header.main-header .menu-icon {
  float: left;
  cursor: pointer;
  margin-top: 41.5px; /* (100 - 17) / 2 (17px is the icon's height) */
  display: none;
}
header.main-header .menu-icon .line {
  height: 1px;
  width: 30px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header.main-header .menu-icon .line:nth-child(2) {
  margin: 7px 0;
  width: 15px;
}
header.main-header .menu-icon .line:last-child {
  width: 20px;
}
@media (max-width: 991px) {
  header.main-header .menu-icon {
    display: block;
  }
}

/*footer*/
.bg_footer{
  background-color:#fff ;
 box-shadow: 0px 133px 500px rgba(0, 0, 0, 0.17), 
 0px 40.0956px 150.735px rgba(0, 0, 0, 0.11077), 
 0px 16.6537px 62.6078px rgba(0, 0, 0, 0.085), 
 0px 6.0233px 22.644px rgba(0, 0, 0, 0.0592299);  
}
footer.main-footer {
  margin-top: 100px;
}
footer.main-footer nav.footer-nav ul {
  padding: 0;
  margin: 0;
}
footer.main-footer nav.footer-nav ul li {
  list-style: none;
  float: left;
  margin: 0 20px;
  padding: 0;
}
footer.main-footer nav.footer-nav ul li:first-child {
  margin: 0 20px 0 0;
}
footer.main-footer nav.footer-nav ul li a {
  text-transform: uppercase;
  color: #9a9a9a;
}
@media (max-width: 991px) {
  footer.main-footer * {
    text-align: center;
  }
  footer.main-footer ul.social-icons {
    float: left;
    width: 60%;
    text-align: center;
  }
  footer.main-footer ul.social-icons li {
    margin: 0;
    width: -webkit-calc(40% / 2);
    width: calc(30% / 2);
  }
  footer.main-footer nav.footer-nav ul li {
    text-align: center;
    width: 30%;
  }
  footer.main-footer nav.footer-nav ul li,
  footer.main-footer nav.footer-nav ul li:first-child {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.narahubung 
{
margin-top: 30px;
list-style: none;
color: #000;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.nama
{
  list-style: none;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
}

/* ##### 02 : SITE HEROS  ##### */
/*site hero 1 */
.site-hero {
  height: 800px;
  width: 100%;
  background: url("../img/11new.png") no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.site-hero ul.slides {
  height: 450px; /* 850 - 400 */
  width: 100%;
  position: absolute;
  top: 100px;
}
.site-hero ul.slides li {
  opacity: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.site-hero .small-title {
  color: #fff;
  padding: 7px 12px;
  background-color: #2cbadd;
  display: inline-block;
}
.site-hero .big-title {
  font-size: 42px;
  color: #fff;
  padding: 10px 40px;
  border: solid 7px #fff;
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width:991px){
  .site-hero .big-title{
    border: solid 5px #fff;
  }
}
.site-hero p {
  font-size: 20px;
  width: 50%;
  margin: 0 auto;
  color: #fff;
}

/*site hero 2 */
.site-hero_2 {
  background: url("../img/mesjid1.png") no-repeat;
  background-size: cover;
  height: 750px;
  width: 100%;
  position: relative;
}

.site-hero_2 .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.site-hero_2 .page-title .big-title {
  font-size: 42px;
  color: #fff;
}
.site-hero_2 .big-title:after {
  content: "";
  background-color: #2cbadd;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  width: 90px;
  height: 25px;
}
.site-hero_2 .page-title .small-title {
  font-size: 20px;
  color: #fff;
}
@font-face {
  font-family: snowday;
  src: url(../fonts/The_Snowday.ttf);
}
.smb img{
  font-family: snowday;
}

@media (max-width:991px){
  .smb img {
    max-height: 400px;
    margin-bottom: 140px;
    margin-top: -50px;
    
  }
  /* .smb {
    margin-top: -100px;
  } */
}

/* Site Hero 3 */
.site-hero_3 {
  background: url("../img/mesjid3.png") no-repeat;
  background-size: cover;
  height: 850px;
  width: 100%;
  position: relative;
}
.site-hero_3 .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.site-hero_3 .page-title .big-title {
  font-size: 42px;
  color: #fff;
}
.site-hero_3 .big-title:after {
  content: "";
  background-color: #2cbadd;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  width: 90px;
  height: 25px;
}
.site-hero_3 .page-title .small-title {
  font-size: 30px;
  color: #fff;
}
/* Site Hero 4 */
.site-hero_4 {
  background: url("../img/mesjid3.png") no-repeat;
  background-size: cover;
  height: 850px;
  width: 100%;
  position: relative;
}
.site-hero_4 .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.site-hero_4 .page-title .big-title {
  font-size: 42px;
  color: #fff;
}
.site-hero_4 .big-title:after {
  content: "";
  background-color: #2cbadd;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  width: 90px;
  height: 25px;
}
.site-hero_4 .page-title .small-title {
  font-size: 20px;
  color: #fff;
}

/* Site Hero 5 */
.site-hero_5 {
  background: url("../img/mesjid5.png") no-repeat;
  background-size: cover;
  height: 850px;
  width: 100%;
  position: relative;
}
.site-hero_5 .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.site-hero_5 .page-title .big-title {
  font-size: 42px;
  color: #fff;
}
.site-hero_5 .big-title:after {
  content: "";
  background-color: #2cbadd;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  width: 90px;
  height: 25px;
}
.site-hero_5 .page-title .small-title {
  font-size: 20px;
  color: #fff;
}

.sapa-poster{
  max-height: 480px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 43px 188px rgba(0, 0, 0, 0.07), 
  0px 19.8802px 86.9181px rgba(0, 0, 0, 0.0519173), 
  0px 11.375px 49.7326px rgba(0, 0, 0, 0.0438747), 
  0px 6.90454px 30.1873px rgba(0, 0, 0, 0.0377964), 
  0px 4.16029px 18.1892px rgba(0, 0, 0, 0.0322036), 
  0px 2.31672px 10.1289px rgba(0, 0, 0, 0.0261253), 
  0px 0.996405px 4.35637px rgba(0, 0, 0, 0.0180827);
  border-radius: 10px;
}

@media (max-width: 991px){
  .kotdok{
    margin-top: 65px;
  }
}


.struktur {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 43px 188px rgba(0, 0, 0, 0.07), 
  0px 19.8802px 86.9181px rgba(0, 0, 0, 0.0519173), 
  0px 11.375px 49.7326px rgba(0, 0, 0, 0.0438747), 
  0px 6.90454px 30.1873px rgba(0, 0, 0, 0.0377964), 
  0px 4.16029px 18.1892px rgba(0, 0, 0, 0.0322036), 
  0px 2.31672px 10.1289px rgba(0, 0, 0, 0.0261253), 
  0px 0.996405px 4.35637px rgba(0, 0, 0, 0.0180827);
border-radius: 20px;
}
.peserta{
  color: black;
}

.agency {
  width: 100%;
  height: auto;
  float: left;
  margin-top: -300px;
}
.shadow_img{
  box-shadow: 0px 365px 500px rgba(0, 0, 0, 0.03), 
  0px 133.231px 182.508px rgba(0, 0, 0, 0.0206994), 
  0px 64.6812px 88.6044px rgba(0, 0, 0, 0.0166887), 
  0px 31.7079px 43.4355px rgba(0, 0, 0, 0.0133113), 
  0px 12.5374px 17.1745px rgba(0, 0, 0, 0.00930055);
}
.agency img {
  max-height: 400px;
}
.agency span {
  color: #fff;
}
.agency  p {
  color: #fff;
  font-size: 20px;
}
.agency .huzur {
  max-width: 400px;
}
.agency .section-title {
  text-align: left;
  width: 100%;
  margin: 0 auto 30px;
}
@media (max-width: 991px) {
  .site-hero ul.slides {
    height: 750px; 
  }
  .tbl-lomba .tombol a span .surat{
    margin-top: 100px;
  }
  .agency {
    margin-top: 30px;
  }
  .agency img {
    margin-bottom: 30px;
  }
  .agency .huzur{
    max-width: 450px;

  }
  .agency .section-title {
    margin: 0 auto;
    text-align: center;
  }
  .agency span {
    color: #000;
    text-align: center;
  }
  .agency p {
    text-align: center;
    color: #000;
  }
}


/* ##### 03 : SERVICES  ##### */
.services .services-left i.icon {
  display: block;
  font-size: 20px;
  margin-bottom: -35px;
  /* margin-left: -35px; */
}
.services .services-left i span {
  margin-top: -20px;
  color: black;
  text-align: center;
}
.services .services-left .service-title {
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  margin-top: -35px;
}
.services .services-left ul li {
  list-style: none;
  text-transform: uppercase;
  line-height: 30px;
  color: black;
  font-size: 26px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  margin-top: -20px;
}
.chart {
  justify-content: center;
  text-align: center;
  margin-top: 20rem;
}
.chart-text {
justify-content: center;
margin-top: 7%;
margin-left: 10%;
}
@media (max-width: 991px) {
  .services .services-left {
    text-align: center;
    margin-bottom: 50px;

  }
  .services .services-left .icon2 i.icon{
    margin-left: -65px;
    margin-right: auto;
    align-content: center;
  }  
  .services .services-left .icon2 span{
    margin-left: -65px;
    margin-right: auto ;
  }
  .services .services-left .icon2 ul li{
    margin-left: -60px;
    margin-right: auto;
  }  
  @media (max-width: 768px){
    .services .services-left .icon2 i.icon{
    margin-left: -5px;
    margin-right: auto;
    align-content: center;
  }  
  .services .services-left .icon2 span{
    margin-left: -5px;
    margin-right: auto ;
  }
  .services .services-left .icon2 ul li{
    margin-left: -1px;
    margin-right: auto;
  }  
  }
  .services2 h2{
    text-align: center;
    margin-bottom: 50px;
    margin-right: 18%;
  }
  .chart{
  justify-content: center;
  text-align: center;
  margin: 5%;
  }
  .susunan-acara span .teks{
    text-align: center;
    color: #000;
  }

  .susunan-acara img {
  align-items: center;
  margin: 5%;
  justify-content: center;
  max-width: 300px;
  }
  .susunan-acara{
  max-width: 330px;
  }
}

.susunan-acara{
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0px 43px 188px rgba(0, 0, 0, 0.07), 
  0px 19.8802px 86.9181px rgba(0, 0, 0, 0.0519173), 
  0px 11.375px 49.7326px rgba(0, 0, 0, 0.0438747), 
  0px 6.90454px 30.1873px rgba(0, 0, 0, 0.0377964), 
  0px 4.16029px 18.1892px rgba(0, 0, 0, 0.0322036), 
  0px 2.31672px 10.1289px rgba(0, 0, 0, 0.0261253), 
  0px 0.996405px 4.35637px rgba(0, 0, 0, 0.0180827);
}

.sa span{
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
  position: relative;
  display: inline-block;
  margin-right: 20px;
}
.susunan-acara img {
  padding-top: 10px;
  padding-bottom: 20px;
}
.sa span :after{
  content: "";
  background-color: #2cbadd;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
  width: 60px;
  height: 20px;
}

.hg-kpa {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hg-kpa2 p{
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  /* text-transform: uppercase; */
  margin-bottom: -5px;
}
.hg-kpa p .tih {
  margin-top: -50px;
}

.hg-kpa img {
  margin-bottom: -50px;
}

.pstr img {
   
  max-height: 700px;
  width: 100%;
}
.pstr{
  align-content: center;
  
}
.pstrr{
  max-height: 750px;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0px 43px 188px rgba(0, 0, 0, 0.07), 
  0px 19.8802px 86.9181px rgba(0, 0, 0, 0.0519173), 
  0px 11.375px 49.7326px rgba(0, 0, 0, 0.0438747), 
  0px 6.90454px 30.1873px rgba(0, 0, 0, 0.0377964), 
  0px 4.16029px 18.1892px rgba(0, 0, 0, 0.0322036), 
  0px 2.31672px 10.1289px rgba(0, 0, 0, 0.0261253), 
  0px 0.996405px 4.35637px rgba(0, 0, 0, 0.0180827);
  margin-top: 15px;
  border-radius: 8px;
}

@media (max-width: 991px){
  .hg-kpa ul li {
    margin-left: 20px;
  }
  .hg-kpa2{
    margin-bottom: -15px;
    margin-top: 15px;
  }
  .hg-kpa span .jarak {
  margin-top: -300px;
  }
  .pstr .pstrr {
    max-height: 600px;
    width: 100%;
    margin-top: 15px;
  }
  .pstr img {
    max-height: 550px;
    width: 100%;
  }
  .list-mapel p.tih{
    margin-bottom: 100px;
  }
  .mb{
    margin-bottom: -100px;
  }
  .bljr{
    margin-top: 80px;
  }
  .lmba{
    margin-top: 150px;
  }
}

.frame{
  width :100%; 
  height:450px;
  border-radius: 10px;
}
.mapel{ 
  height:280px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.btn-lomba{
text-align: right;
font-size: 10px;
color: #2cbadd;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

.tekelas{
  color: #000;
  font-size: 18px;
}
.tekmat p{
  color: #000;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.linkbel{
  color: #000;
  font-size: 10px;
}
@media (max-width: 991px){
  .mapel img {
    margin-top: 100px;
  }
  .btn-lomba{
    text-align: center;
    font-size: 8px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
.bgkomat{
  background-size: cover;
  position: relative;
}
.komat {
  height: 550px;
  box-shadow: 0px 43px 188px rgba(0, 0, 0, 0.07), 
  0px 19.8802px 86.9181px rgba(0, 0, 0, 0.0519173), 
  0px 11.375px 49.7326px rgba(0, 0, 0, 0.0438747), 
  0px 6.90454px 30.1873px rgba(0, 0, 0, 0.0377964), 
  0px 4.16029px 18.1892px rgba(0, 0, 0, 0.0322036), 
  0px 2.31672px 10.1289px rgba(0, 0, 0, 0.0261253), 
  0px 0.996405px 4.35637px rgba(0, 0, 0, 0.0180827);
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  
}
/* nambahin ulang css yang dulu ada */

/* ##### 04 : PORTFOLIO  ##### */
.portfolio .categories-grid span {
  font-size: 30px;
  margin-bottom: 50px;
  display: inline-block;
}
.portfolio .categories-grid .categories ul li {
  list-style: none;
  margin: 20px 0;
}
.portfolio .categories-grid .categories ul li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #60606e;
  margin-left: 20px;
}
.portfolio .categories-grid .categories ul li a.active {
  margin-left: 0;
  background-color: #3edbf0;
  padding: 0 10px;
  color: white;
}
@media (max-width: 991px) {
  .portfolio .categories-grid span {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
  .portfolio .categories-grid .categories ul li {
    text-align: center;
  }
  .portfolio .categories-grid .categories ul li a {
    margin-left: 0;
  }
}
.portfolio_item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: inline-block;
}
.portfolio_item .portfolio_item_hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio_item .portfolio_item_hover .item_info {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.portfolio_item .portfolio_item_hover .item_info span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #60606e;
  font-size: 18px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s;
  opacity: 0;
}
.portfolio_item .portfolio_item_hover .item_info em {
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  background-color: #3edbf0;
  padding: 5px;
  color: white;
  margin-top: 5px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out 0.5s;
  transition: all 0.5s ease-in-out 0.5s;
  opacity: 0;
}
.portfolio_item:hover .portfolio_item_hover {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/*single project*/
.project_images {
  float: left;
}
.related_projects {
  float: left;
}
.pages_pagination {
  width: 100%;
  height: 50px;
  line-height: 50px;
  float: left;
  text-align: right;
  font-size: 24px;
  margin: 50px 0;
}
.pages_pagination .all {
  float: left;
}
.pages_pagination > a {
  display: inline-block;
  height: 100%;
  width: 50px;
  text-align: center;
}
.pages_pagination > a:hover {
  background-color: #3edbf0;
  color: white;
}
@media (max-width: 991px) {
  .related_projects img {
    margin-bottom: 30px;
  }
}
/* ##### 05 : INPUTS & TEXTAREAS STYLES  ##### */
/*textarea 1*/
.textarea_1 {
  height: 200px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
.textarea_1 textarea {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 20px;
  background-color: transparent;
  float: left;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #9a9a9a;
}
.textarea_1 > span {
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #cdcdcd;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
/*input 1*/
.input_1 {
  height: 50px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
.input_1 input[type="text"] {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0 20px;
  float: left;
  position: relative;
  background-color: transparent;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #9a9a9a;
}
.input_1 > span {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #cdcdcd;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.input_1 > span.active,
.textarea_1 > span.active {
  color: #3edbf0;
  font-size: 10px;
  top: 0px;
  left: 5px;
  background-color: #fff;
  padding: 5px;
}
/*input 2*/
.input_2 {
  width: 100%;
  height: 40px;
  background-color: #ececec;
  position: relative;
}
.input_2 > input {
  height: 100%;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  border: 0;
  background-color: transparent;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  float: left;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.input_2 > button {
  height: 100%;
  width: 40px;
  border: 0;
  background-color: transparent;
}
.input_2 > input:focus {
  background-color: #f2f2f2;
}
/* ##### 06 : BENEFITS STYLES  ##### */
/*benefits 1*/
.benefits_1_single {
  width: 100%;
  text-align: center;
}
.benefits_1_single > i {
  display: inline-block;
  font-size: 60px;
  position: relative;
}
.benefits_1_single > i:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 20px;
  width: 40px;
  background-color: #3edbf0;
  z-index: -1;
}
.benefits_1_single > .title {
  font-size: 18px;
}
/*benefits 2 */
.benefits_2_single {
  margin-bottom: 30px;
}
.benefits_2_single:nth-last-child(-n + 3) {
  margin-bottom: 30px;
}
.benefits_2_single > i {
  display: inline-block;
  background-color: #3edbf0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  font-size: 30px;
  margin-right: 20px;
}
.benefits_2_single > .title {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  color: #60606e;
}
.benefits_2_single p {
  color: #000;
}
/* ##### 07 : PRICING PLANS STYLES  ##### */
.pricing_plan {
  padding: 30px;
  border-top: solid 5px #3edbf0;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pricing_plan:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid #3edbf0;
}
.pricing_plan:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}
.pricing_plan .plan_title {
  font-size: 30px;
}
.pricing_plan .plan_price {
  background-color: #3edbf0;
  padding: 5px 20px;
  color: white;
  font-size: 14px;
  display: inline-block;
}
.pricing_plan ul {
  margin: 50px 0;
}
/* ##### 08 : TEAM STYLES  ##### */
.team_member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.team_member .team_member_hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.team_member .team_member_hover .team_member_info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.team_member .team_member_hover .team_member_info .team_member_name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #60606e;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out 0.2s;
  transition: all 0.2s ease-in-out 0.2s;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
.team_member .team_member_hover .team_member_info .team_member_job {
  display: inline-block;
  margin-top: 10px;
  background-color: #3edbf0;
  padding: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  -webkit-transition: all 0.2s ease-in-out 0.3s;
  transition: all 0.2s ease-in-out 0.3s;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
.team_member:hover .team_member_hover {
  opacity: 1;
}
.team_member:hover .team_member_info .team_member_name,
.team_member:hover .team_member_info .team_member_job {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* ##### 09 : TESTIMONIALS STYLES  ##### */
.testimonials {
  position: relative;
  float: left;
}
.testimonials_single {
  width: 100%;
  text-align: center;
}
.testimonials_single .author_pic {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.testimonials_single p {
  margin: 30px 0;
}
.testimonials_single .author_name {
  padding: 7px;
  background-color: #3edbf0;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  display: inline-block;
}
/* ##### 10 : CLIENTS STYLES  ##### */
.clients_single {
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 20px;
  overflow: hidden;
  text-align: center;
}
.clients div[class^="col"] {
  margin-bottom: 30px;
}
.clients div[class^="col"]:nth-last-child(-n + 3) {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .clients div[class^="col"]:first-child {
    margin-top: 30px;
  }
  .clients div[class^="col"]:nth-last-child(-n + 3) {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .clients div[class^="col"]:first-child {
    margin-top: 30px;
  }
  .clients div[class^="col"]:nth-last-child(-n + 3) {
    margin-bottom: 30px;
  }
}
.clients_single img {
  max-width: 100%;
  max-height: 100px;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.clients_single:hover img {
  opacity: 1;
}
/* ##### 11 : BLOG STYLES  ##### */
/*blog posts*/
.blog_post {
  margin-bottom: 100px;
}
.post_media {
  margin-bottom: 30px;
}
.post_media * {
  width: 100%;
  max-height: 500px;
}
.post_title {
  margin-bottom: 20px;
}
.post_title span.post_date {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background-color: #3edbf0;
  padding: 5px;
  color: white;
}
.post_info {
  margin-bottom: 20px;
}
.post_info .post_date {
  background-color: #3edbf0;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  color: white;
  float: left;
  margin-right: 15px;
}
.post_info > * {
  line-height: 30px;
}
.post_info > i {
  color: #cccccc;
  font-size: 18px;
  margin-right: 5px;
}
.post_info > span {
  color: #cccccc;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-right: 20px;
}
.blog_post > a {
  display: inline-block;
  margin-top: 10px;
}
/*masonry blog posts*/
.blog_post_masonry {
  width: 100%;
  margin-bottom: 50px;
}
.blog_post_masonry .post_media {
  margin-bottom: 0;
}
.blog_post_masonry .post_info {
  margin: 10px 0;
}
.blog_post_masonry .post_date {
  display: block;
  width: 100%;
}
/*sidebar*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 100px;
  }
}
.sidebar {
  float: left;
}
.sidebar .widget {
  margin-bottom: 50px;
  width: 100%;
  float: left;
}
.sidebar .widget:last-child {
  margin-bottom: 0;
}
.sidebar .widget .widget_title {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.sidebar .widget .related_post {
  margin-bottom: 15px;
  width: 100%;
  float: left;
}
.related_post:hover .thumb {
  opacity: 0.5;
}
/* .thumb {
  max-height: 60px;
  max-width: 60px;
  display: inline-block;
  margin-right: 15px;
  float: left;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
} */
.sidebar .widget .related_post .post_title {
  font-size: 14px;
}
.sidebar .widget .related_post .post_date {
  font-size: 12px;
}
.thumb:hover {
  opacity: 0.5;
}
/*pagination*/
.blog_pagination {
  width: 100%;
  text-align: center;
  float: left;
}
.blog_pagination .page {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
}
.blog_pagination .page span {
  display: inline-block;
  padding: 0 20px;
}
.blog_pagination .page i {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog_pagination .page:hover i.prev {
  color: #3edbf0;
  display: inline-block;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.blog_pagination .page:hover i.next {
  color: #3edbf0;
  display: inline-block;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}