
.toggle,
[id^=drop] {
  display: none;
}

/* Giving a background-color to the nav container. */
nav { 
  margin:0;
  padding: 0;
  background-color: #fff;
}

.modtitle {
    border-bottom: 2px solid #eee;
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: 0;
    margin-bottom: 15px; }
  .modtitle:after {
    position: absolute;
    content: "";
    width: 110px;
    height: 2px;
    background-color: #b8350b;
    bottom: -2px;
    left: 0; }
  .modtitle span {
     font-size: 18px;
    text-transform: uppercase;
    color: #39342e;
    /* background: #f7f7f7; */
    padding-right: 12px;
    display: inline-block;
    margin-top: 0;
    letter-spacing: 1px;
}

#logo {
  display: block;
  padding: 0 30px;
  float: left;
  font-size:20px;
  line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
  content:"";
  display:table;
  clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
  float: right;
  padding:0;
  margin:0;
  list-style: none;
  position: relative;
  }
  
/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display:inline-block;
  float: left;
  background-color: #fff;
  }

/* Styling the links */
nav a {
  display:block;
  /*padding:14px 20px;*/
  /* color:#FFF; */
  font-size:14px;
  text-decoration:none;
}


nav ul li ul li:hover { background: #f5f5f5; }

/* Background color change on Hover */
nav a:hover {
  /* background-color: #000000; */
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
  display: none;
  position: absolute; 
  /* has to be the same number as the "line-height" of "nav a" */
  top: 45px; 
  
}
  
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display:inherit;
}
  
/* Fisrt Tier Dropdown */
nav ul ul li {
  width:170px;
  float:none;
  display:list-item;
  position: relative;

}

/* Second, Third and more Tiers 
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top:-60px;
  /* has to be the same number as the "width" of "nav ul ul li" */ 
  left:170px; 
}

  
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' '; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

  #logo {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }

  nav {
    margin: 0;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }

  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    /* background-color: #fff; */
    padding: 0px 15px;
    color: #333;
    font-size: 17px;
    /* text-decoration:none; */
    border:none;
    font-weight: 400;
  }

  .toggle:hover {
    /* background-color: #000000; */
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked + ul {
    display: block;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    }

  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    padding: 0 80px;
  }

  nav a:hover,
  nav ul ul ul a {
    /* background-color: #000000; */
  }
  
  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a{
    /* padding:14px 20px; */
    color: #333;
    font-size:17px;
  }
  
  
  nav ul li ul li .toggle,
  nav ul ul a {
    /* background-color: #f74550; */
  }

  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position:static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }
    
  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }
    
  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */ 

  }

}

@media all and (max-width : 330px) {

  nav ul li {
    display:block;
    width: 94%;
  }

}
section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
  }
  
  h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    /* color: #333; */
    font-size: 1.4rem;
    margin: 1.3rem 0;
  }
  
  .section-lead {
    max-width: 600px;
    margin: 1rem auto 1.5rem;
  }
  
  .service a {
    color: #5b7abb;
    display: block;
  }
  
  .service h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #56ceba;
    font-size: 1.3rem;
    margin: 1rem 0 0.6rem;
  }
  
  .services-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  
  .service {
    background: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    -webkit-box-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #e7e7e7;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .service:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  }
  
  .service i {
    font-size: 3.45rem;
    margin: 1rem 0;
  }
  
  .service1 i,
  .service1 h4,
  .service1 .cta {
    color: #42b7ca;
  }
  
  .service1:hover {
    border: 2px solid #42b7ca;
  }
  
  .service2 i,
  .service2 h4,
  .service2 .cta {
    color: #425fca;
  }
  
  .service2:hover {
    border: 2px solid #425fca;
  }
  
  .service3 i,
  .service3 h4,
  .service3 .cta {
    color: #9c42ca;
  }
  
  .service3:hover {
    border: 2px solid #9c42ca;
  }
  
  .service .cta span {
    font-size: 0.6rem;
  }
  
  .service > * {
    flex: 1 1 100%;
  }
  
  .service .cta {
    align-self: flex-end;
  }
  
  @media all and (max-width:900px) {
    .services-grid {
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
    }
  }

  .owl-nav button {
    background: #f1f1f1 !important;
    margin: 0px 5px 0px 0px;
    width: 35px;
    height: 35px; outline: none;
}
.owl-nav button span {
    font-size: 40px;
    line-height: 25px;
    color: #333;
}
         .item {
            border-radius: 8px;
            background: #f7fcff;
            text-align: center;
            margin: 20px;
            padding: 20px;
            position: relative;
            overflow: hidden;
            padding: 30px;
            }
        .item img {/* width: 64px !important; */margin: 10px auto 10px auto;}    
         .item h4 { display: block; margin-bottom: 30px;}
         .item:before{ content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #2196f3;
    border-radius: 100%;
    top: -110px;
    right: -89px;
    opacity: 0.06;
    z-index: 1; }
            .item a { width: 40px; height: 40px; text-align: center; line-height: 40px; border-radius: 40px; background: #2196F3; display: block; text-align: center; margin: auto;        color: #fff;     font-size: 18px;}
                        
            
.owl-nav button:hover {
    background: #85c6f9 !important; 
} 

.page-navigation{text-align:middle;padding:.1rem .5rem;border-radius:5px;font-family:$family-head}#kontak-kami{background-color:#babefe!important;padding: 19px;}.menu a{font-size:.8rem!important}.chevron-small{font-size:18px;position:relative;top:3px}.product-tile{padding:1rem 1.5rem 3rem}.tile-image{height:250px!important}.tile-image img{width:100%;height:auto}.product-name{width:250px}

.service-widget{
  position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #f1f1f11c;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
  padding: 10px 10px;
  border: 1px solid #f2f2f2;
}
@media all and (max-width:490px) {
   .service-widget{
      padding: 0px;
      border: 1px solid #f2f2f2;
      background-color: #ffffff;
      -webkit-box-shadow: 0px 2px 16px 0px rgba(204,204,204,1);
      -moz-box-shadow: 0px 2px 16px 0px rgba(204,204,204,1);
      box-shadow: 0px 2px 16px 0px rgba(204,204,204,1);
    }
  }

  
.features-items,
.features-items .items-box {
  overflow: hidden;
}

.features-area .equal-height::after {
  background: #e7e7e7 none repeat scroll 0 0;
  content: "";
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
}

.features-area.item-full .equal-height::before {
  background: #e7e7e7 none repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
}

.features-area .features-items .col-md-5, 
.features-area .features-items .col-md-7 {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.features-area .features-items.reversed .col-md-5, 
.features-area .features-items.reversed .col-md-7 {
  display: inline-block;
  float: left;
}

.features-area .features-items.reversed .info-box {
  float: right;
}

.features-area .features-items .item {
  padding: 15px 30px;
}

.features-area.item-full .features-items .item {
  padding: 30px;
}

.features-area .features-items .item h4 {
  position: relative;
}

.features-area.bottom-small {
  padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
  padding-bottom: 30px;
}

.features-area .item .icon {
  margin-bottom: 20px;
}

.features-area .item .info {
}

.features-area .item .icon i {
  background: #ffffff none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  color: #ffaf5a;
  display: inline-block;
  font-size: 30px;
  height: 100px;
  line-height: 100px;
  position: relative;
  text-align: center;
  width: 100px;
  z-index: 1;
}

.features-area .features-items .items-box i {
  background: transparent;
}

.features-area .item .icon {
  margin-bottom: 25px;
}

.features-area .features-items.icon-solid i {
  border-radius: inherit;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  color: #ffaf5a;
  display: inline-block;
  font-size: 50px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
}


.features-area .item .info h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
}
.features-area .item .info p {
  margin: 0;
}

.features-area .features-items.less-icon .items-box.inc-cell .item .info {
  padding-left: 0;
}

.features-area .features-items .items-box.inc-cell .item .info a {
  color: #666666;
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
}

.features-area .features-items .items-box.inc-cell .item .info a:hover {
  color: #ffaf5a;
}
.how-item .hi-icon {
  position: relative;
  width: 75px;
  height: 65px;
  border-radius: 25%;
  background: #f9ca24;
  margin-bottom: 25px;
}
.text-white {
  color: #fff!important;
}
.how-item .hi-icon i {
  padding: 10px;
  bottom: 0;
  color: #C60E04;
}
.box19 {
  text-align: center;
  position: relative
}

.box19 .box-content {
  width: 100%;
  height: 100%;
  background: 0 0;
  padding-top: 25%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s ease 0
}

.box19 .icon,
.box19 .title {
  transition: all .2s ease 0
}

.box19:hover .box-content {
  background: #333333bd;
}

.box19 .title {
  font-size: 24px;
  color: #fff;
  transform: scale(0)
}

.box19:hover .title {
  transform: scale(1)
}

.box19 .icon {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0
}

.box19:hover .icon {
  opacity: 1
}

.box19 .icon li {
  display: inline-block
}

.box19 .icon li:first-child a,
.box19 .icon li:last-child a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  color: #fff;
  border: 1px solid #fff;
  position: relative
}

.box19 .icon li a {
  top: -150px
}

.box19:hover .icon li a {
  top: 0
}

.box19:hover .icon li a:hover {
  background: #000;
  border-color: #000
}

.box19 .icon li:first-child a {
  transition: all .6s cubic-bezier(.175, .885, .32, 1.275) 0
}

.box19 .icon li:last-child a {
  transition: all .6s cubic-bezier(.175, .885, .32, 1.275) .1s
}

@media only screen and (max-width:990px) {
  .box19 {
      margin-bottom: 30px
  }
}

@media only screen and (max-width:360px) {
  .box19 .box-content {
      padding-top: 20%
  }
}

.service-widget h3 {
  height: 40px;
  font-size: 13px;
  color: #fff;
  padding: 12px;
  margin: 0;
  font-weight: 500 !important
}

.service-widget h3 a,
.section.wb .service-widget h3,
.section.lb .service-widget h3 {
  color: #fff !important
}

.service-widget p {
  margin-bottom: 0;
  padding-bottom: 0
}

.message-box h4 {
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 5px;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 15px;
  color: #999
}

.message-box h2 {
  font-size: 38px;
  font-weight: 300;
  padding: 0 0 10px;
  margin: 0;
  line-height: 62px;
  margin-top: 0;
  text-transform: none
}

.message-box p {
  margin-bottom: 20px
}

.message-box .lead {
  padding-top: 10px;
  font-size: 19px;
  font-style: italic;
  color: #999;
  padding-bottom: 0
}

.service-widget {
  padding: 0 0 20px;
  border: 1px solid #f2f2f2;
  background-color: #fff;
  margin-bottom: 20px
}

.service-widget:hover {
  -webkit-box-shadow: 0 2px 16px 0 rgba(204, 204, 204, 1);
  -moz-box-shadow: 0 2px 16px 0 rgba(204, 204, 204, 1);
  box-shadow: 0 2px 16px 0 rgba(204, 204, 204, 1)
}

/******************************************************/
/******************** Desain Menu *********************/
/******************************************************/

.nav1 {
  height: 40px;
 width: 100%;
  background: #3498db;
  font-size: 11pt;
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: bold;
  position: relative;
}
.nav1 ul {
  padding: 0;
 margin: 0 auto;
 width: 500px;
 height: 40px;
}
.nav1 li {
  display: inline;
  float: left;
}
.nav1 a {
  color: #ffffff;
 display: inline-block;
  width: 100px;
 text-align: center;
 text-decoration: none;
  line-height: 40px;
}
.nav1 a:hover, .nav1 a:active {
  background-color: #ecf0f1;
  color: #333;
}
.nav1 a#pull {
 display: none;
}

/******************************************************/
/*************** Desain Menu Responsive ***************/
/******************************************************/
  
/* Desain untuk perangkat dengan layar 600px kebawah*/
@media screen and (max-width: 992px) {
  .nav1 {
     height: auto;
     border-bottom: 0;
     background: #3498db;
    }
    .nav1 ul {
      width: 100%;
      display: none;
      height: auto;
   }
   .nav1 li {
      width: 100%;
      float: none;
      display: block;
     background: #ffffff;
    }
    .nav1 li a {
    border-bottom: 1px solid #f0f0f0;
   border-right: 1px solid #f0f0f0;
  }
   .nav1 a {
     text-align: left;
     width: 100%;
      text-indent: 25px;
      color: #333333;
   }
   .nav1 a#pull {
    display: block;
   background-color: #3498db;
    width: 100%;
    position: relative;
   color: #ffffff;
 }
 .nav1 a#pull:after {
    content:"";
   background: url('nav-icon.png') no-repeat;
    width: 30px;
    height: 30px;
   display: inline-block;
    position: absolute;
   right: 15px;
    top: 10px;
  }
}
.dora{
  height: 33vh;
  overflow: hidden;
}
.dora2{
  height: 23vh;
  overflow: hidden;
}
.sk{
  display: none;
}
.main-container{
  margin-top: 70px;
}
.ab{
  margin-top: 0;
}

.sk2{
  display: inline;
}
@media screen and (max-width: 992px) {
  .dora{
    height: 15vh;
    overflow: hidden;
  }
  .dora2{
    height: 15vh;
    overflow: hidden;
  }
  .ab{
    margin-top: 50px;
  }
  .sk{
    display: inline;
  }
  .sk2{
    display: none !important;
  }
}