
.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 20px;
  }

  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:0; 
    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;*/
    top: 10px;
    /* display: block; */
    /* padding: 50px; */
    /* margin: 90px; */
    left: 30px;
    /* bottom: 80px; */
    margin-bottom: 5px;

  }

}

@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: 'Quicksand', sans-serif;
    font-weight: 600;
    /* color: #333; */
    font-size: 1.825rem;
    margin: 1.3rem 0;
  }
  
  .section-lead {
    max-width: 600px;
    margin: 1rem auto 1.5rem;
  }
  
  .service a {
    color: #5b7abb;
    display: block;
  }
  
  .service h4 {
    font-family: 'Quicksand', 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;}.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: #fff;
    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{
      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: 57px;
  height: 57px;
  border-radius: 50%;
  background: #ffe2ae;
  margin-bottom: 25px;
}
.text-white {
  color: #fff!important;
}
.how-item .hi-icon img {
  position: absolute;
  right: -8px;
  bottom: 0;
}



.blog-full-width .blog-content {
  border: none;
}

.blog-content {
  border-image: none;
  /*border: 1px solid #e1e1e1;*/
  /*border-style: none solid solid;*/
  border-width: 0 1px 1px;
  padding: 10px 15px 19px;
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}

.blog-full-width-date {
  width: 76px;
  background: #F18506;
  float: left;
  text-align: center;
  margin-top: 29px;
  border-radius: 5px;
  padding: 13px 0 0;
  box-shadow: 0 3px 0 #F18506;
  margin-left: 10PX;
}

.blog-title, .blog-item .blog-title a {
  color: #373737;
  font-size: 19px;
  text-transform: none;
  line-height: 26px;
}

.big-font {
  font-size: 16px;
  line-height: 30px;
}

.blog-content p {
  color: #616161;
  line-height: 1.42857;
  margin-bottom: 10px;
}

.blog-content .blog-meta {
  color: #727272;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 10px;
}

.day {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 900;
  line-height: 44px;
  margin: 0 0 0 2px;
  font-weight: 800;
}

.blog-full-width-date a {
  color: #fff;
  margin: 8px 0 5px;
  display: block;
}

.blog-full-width-date .monthyear {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.monthyear {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 13px;
  margin: 2px 0 0;
}

.dis {
  text-decoration: line-through;
  display: inline-block;
  margin-right: 10px;
}

@media all and (max-width : 768px) {

.im{
    /*max-width: 100%;*/
    height: 150px !important;
    
}
}
.im{
    max-width: 100%;
    height: auto;
    
}