/*general*/

.container{
	padding-left: 35px;
	padding-right: 35px;
}
.section{
	padding-top: 500px;
	padding-bottom: 90px;
}

body{
	background: #fff;
    color: #292929;
	font-family: "Montserrat", "sans-serif";
    }

p   {
    font-size: 21px;
    font-weight: 400;
    color: #292929;
    padding: 0;
    margin: 0 0 30px 0;
    }

a   {
    color: #292929;
    transition: 0.5s;
    }
      
a:hover,
a:active,
a:focus {
    color: #1F8BD1;
    outline: none;
    text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0 0 24px 0;
    padding: 0;
    color: #292929;
    }

h1  {
    font-size: 48px;
    }

h2  {
    font-size: 40px;
    }

h3  {
    font-size: 32px;
    }  
    
h4  {
    font-size: 24px;
    } 

h5  {
    font-size: 18px;
    }

.divider{
	height: 6px;
	width: 40px;
	background-color: #1F8BD1;
	border-radius: 3px;
}
/* Vertical position styles*/
.outer {
  display: table;
  position: relative;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.middlet {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /*whatever width you want*/
}
/* Global Button Styles */
.header-scrolled .btn{
	padding-top: 7px;
	padding-bottom: 7px;
}
.animated-button, .animated-button:visited{
  max-width: 200px;
	position: relative;
	display: block;
	margin:  0;
	padding: 6px 24px;
	color: #1F8BD1;
	font-size:16px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	
	overflow: hidden;
	letter-spacing: .08em;
	border-radius: 50px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.animated-button:after, .animated-button:visited:after {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	z-index: -1;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
	-o-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
}
.animated-button:hover, .animated-button:visited:hover {
	color: #ffffff!important;
}
.animated-button:hover:after, .animated-button:visited:hover:after {
	height: 450%;
}

.animated-button.thar-four:active,
input.animated-button.thar-four:active{
  color: white!important;
}

.animated-button.thar-four {
	color: #ffffff!important;
	cursor: pointer;
	display: block;
  position: relative;
  background-color: #1F8BD1;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.animated-button.thar-four:hover {
	color: #ffffff !important;
	background-color: transparent;
}
a.animated-button.thar-four:hover:before {
	right: 0%;
	left: auto;
	width: 100%;
}
.animated-button.thar-four:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	color: #000 !important;
  	background: #292929;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}


a.animated-button.thar-one {
	color: #1F8BD1;
	cursor: pointer;
	display: block;
  position: relative;
  border: 2px solid #1F8BD1;
  background-color: #ffffff;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-one:hover {
	color: #ffffff !important;
  background-color: transparent;
  border: 2px solid #fff;
}
a.animated-button.thar-one:hover:before {
	right: 0%;
	left: auto;
	width: 100%;
}
a.animated-button.thar-one:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	color: #000 !important;
  background: #292929;
  border: none;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #1F8BD1;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
  }
  
  .back-to-top i {
    padding-top: 12px;
    color: #fff;
  }
  
  /* Prelaoder */
  
  #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 #f2f2f2;
    border-top: 6px solid #1F8BD1;
    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% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  

/*Header*/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
    }
  
#header.header-scrolled,
#header.header-pages {
    height: 60px;
    padding: 10px 0;
    }
  
#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
    }
 
/*Navbar*/    

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #292929;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #1F8BD1;
  text-decoration: none;
}




.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {  
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #1F8BD1;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}


/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #fff;
    transition: 0.4s;
  }
 
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    font-size: 18px;
    display: block;
    position: relative;
    padding: 16px 20px;
    font-weight: 600;
    color:#292929;
  }
.mobile-nav p{
  font-size: 14px;
    display: block;
    position: relative;
    padding: 16px 20px;
    font-weight: 700;
    color:#aaaaaa;
}

  .mobile-nav a:hover,
  .mobile-nav .active > a,
  .mobile-nav li:hover > a {
    color: #1F8BD1;
    text-decoration: none;
  }
  .mobile-nav img{
    max-height: 40px;
  }
  .mobile-nav img:after{
    content: "";
    clear: both;
  }
  
  .mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
   
  .mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #1F8BD1;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    left: 0;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }

/*intro*/

#intro {
  width: 100%;
  position: relative;
  background: url("img/intro1.svg") center bottom no-repeat;
  background-size: cover;
}

#intro img{ 
  width: 70%;
}
#intro p.desktop{
  display: block;
}
#intro p.mobile{
  display: none;
}
#partner img{height: 24px;}

/*intro*/

#intro2 {
  width: 100%;
  position: relative;
  background: url("img/intro2.svg") center bottom no-repeat;
  background-size: cover;
}

#intro2 img{ 
  width: 70%;
}
#intro2 p.desktop{
  display: block;
}
#intro2 p.mobile{
  display: none;
}

/*makro*/

#makro {
  width: 100%;
  position: relative;
  /*background: url("img/makro.svg") center bottom no-repeat;*/
  background-size: cover;
  padding: 330px 0 160px 0;
  margin-top: -130px;
}
#makro img{ 
  width: 70%; 
  padding:auto;
}
#makro img.brand-logo{
  width: auto;
  height: 35px;
  margin-bottom: 65px;
  padding: 0;
}

/*proč appelis*/
#why{
  padding: 160px 0 160px 0;
}
#why .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#why .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#why .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #1F8BD1;
  transition: all 0.3s ease-in-out;
}

#why .icon-box .icon p {
  color: #1F8BD1;
  font-size: 24px;
  font-weight: 600;
  margin: 0px;
}

#why .icon-box:hover .icon {
  background: #1F8BD1;
}

#why .icon-box:hover .icon p {
  color: #fff !important;
}

#why .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 24px;
}

#why .icon-box .title  {
  color:black;
}
#why .icon-box:hover .title  {
  color: #1F8BD1;
}

#why .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 18px;
}

/*partner*/

#partner h5{
  font-size: 14px;
  color:#9F9F9F;
  margin-bottom: 16px;
}
#partner{
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
}

/*why*/
#whyapp {
  padding: 160px 0 160px 0;
  background: #FBFBFB;
}

#whyapp .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

#whyapp .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#whyapp .section-header{
  padding: 0 0 80px 0;
}

#whyapp .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#whyapp .title a {
  color: #111;
}

#whyapp .box:hover .title a {
  color: #007bff;
}

#whyapp .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

#whyapp .icon {
  position: absolute;
  left: 20px;
  top: calc(50% - 32px);
}

#whyapp .icon i {
  font-size: 56px;
  line-height: 1;
  transition: 0.5s;
}




/*karuzel*/
#karuzel{ padding: 160px 0 160px 0;}
.owl-carousel .owl-item img {border-radius:24px!important}
#karuzel .appgallery-carousel .item{
  max-width: 180px ;
  margin: 24px 0 24px 0;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
}
#karuzel .owl-prev {
  font-size: 32px;
  color:#fff;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25%;
  left: -30px;
  display: block !important;
  border:0px solid black;
}

#karuzel .owl-next {
  font-size: 32px;
  color:#fff;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25%;
  right: -30px;
  display: block !important;
  border:0px solid black;
}




/*FAQ*/

.section-bg {
  background: #ecf5ff;
}

#testimonials {
  padding: 200px 0 200px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}



#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 32px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #000;
}


#testimonials .icon-box .icon {
  margin:31px 0 0 0;
  float: left;
  background: #fff;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

#testimonials .icon-box .icon i {
  color: #000000;
  font-size: 40px;
  margin: 0;
}
#testimonials .icon-box .description {
  padding: 20px;
  background: #fff;
  border-radius: 25px;
  margin-right: 200px;
  margin-left: 60px;
  line-height: 24px;
  font-size: 18px;
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
}
#testimonials .icon-box .title {
  margin-left: 60px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

#testimonials .icon-box .title  {
  color:#333;
}

#testimonials .icon-box-2 .icon-2 {
  margin:31px 0 0 0;
  float: right;
  background: #fff;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

#testimonials .icon-box-2 .icon-2 img {
  max-width: 40px;
  margin: 0;
}
#testimonials .icon-box-2 .description-2 {
  text-align: right;
  padding: 20px;
  background: #fff;
  border-radius: 25px;
  margin-right: 60px;
  margin-left:200px;
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 18px;
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
}
#testimonials .icon-box-2 .title-2 {
  text-align: right;
  margin-right: 60px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

#testimonials .icon-box-2 .title-2  {
  color:#333;
}

#testimonials .icon-box-2 .title-3 {
  text-align: right;
  margin-right: 60px;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 14px;
}
#testimonials .icon-box-2 .title-3  {
  color:#333;
  margin-bottom: 40px;
}

/*vyberapp*/

#vyberapp {
  padding: 200px 0 200px 0;
}
#vyberapp li{padding: 10px 0 0 0; display: block}
#vyberapp li i{
  padding: 0 10px 0 0; color: #1F8BD1
}
.bunka {
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  padding: 24px;
}

.bunka p,.bunka h3 {
  margin-bottom: 10px
}
.title{
  font-size: 18px!important
}
.bunka p { 
  font-size: 16px;
}
.bunka h3 span{
font-size: 20px;
color:#757575;

}
#vyberapp .favorit{
  position: absolute;
  right: -70px;
  top:90px;
  text-align: center;
  background-color: #fff;
  transform: rotate(-90deg);
  padding: 10px 24px 10px 24px;
  border-radius: 16px;

}
#vyberapp .favorit p{
  margin:0px;
  font-weight: 600;
  font-size: 16px
}

.bg-lightblue{
	background-color:#E5F3FB!important;
}
.bg-blue{
  background-color:#56BBFE!important;
}
.bg-deepblue{
background-color: #1F8BD1!important;}
.bg-darkblue{
  background-color: #05f!important;;
}
#vyberapp .panel{
  width:300px;
  max-height: 500px;
  padding: 60px 20px 60px 20px;
  margin: 16px auto;
  background: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

#vyberapp .btnm{
  padding: 0 30px 0 30px;
}

#vyberapp .panel:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/*contact*/
#contact {
  padding: 60px 0 200px 0;
}

.contact-form{
	
	float:left;
	background:#fff;
	
	border: 1px solid #9F9F9F;
	border-radius: 24px;
	color:black;
  -webkit-box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.15);
}
.contact-form:hover{cursor: pointer;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);

}

.big-one{
	min-height: 190px;
}

.p-contact{
  
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	margin:0px;
	margin-top: 16px;
	padding:0 0 0 12px; 
}

/*footer*/

#footer {
  
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .footer-top {
  border-bottom: 1px solid #ddd;
  padding: 60px 0 30px 0;
}




#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: black;
  border: 1px solid black;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.5s
}

#footer .footer-top .social-links a:hover {
  color: white;
  background-color: #1F8BD1; 
  border: transparent;
}



#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 4px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

/*appky*/

#appky {
  width: 100%;
  position: relative;
  background: url("img/appky.svg") center bottom no-repeat;
  background-size: cover;
  padding: 330px 0 40px 0;
  margin-top: -130px;
}
#appky .appky-carousel .img {display: block; margin-right: auto!important; margin-left: auto!important;width: 90%}
#appky .padi{
  padding: 0 80px 0 80px;
}
#appky .owl-dots {
  margin-top: 32px;
  text-align: center;
}

#appky .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#appky .owl-dot.active {
  background-color: #000;
}

/*about app*/

#aboutapp { padding:280px 0 200px 0 ;
}
#aboutapp img {border-radius: 24px;-webkit-box-shadow: 0 25px 98px 0 rgba(0,0,0,.1);
  box-shadow: 0 25px 98px 0 rgba(0,0,0,.1);}
#aboutapp h4{padding-top: 24px; }  
#aboutapp h1{padding-bottom: 88px; }  
#aboutapp .row{
  padding-top: 100px
}
 

#aboutapp2 { padding:48px 0 200px 0 ;
}

#aboutapp2 h4{padding-top: 24px; }  
#aboutapp2 h1{padding-bottom: 88px; }  
#aboutapp2 .row{
  padding-top: 100px
}


/*jumbo*/
#jumbos { padding:0px 0 100px 0}

#jumbos .owl-dots {
  margin-top: 32px;
  text-align: center;
}
#jumbos .owl-prev {
  font-size: 32px;
  color:#fff;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25%;
  left: -30px;
  display: block !important;
  border:0px solid black;
}

#jumbos .owl-next {
  font-size: 32px;
  color:#fff;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25%;
  right: -30px;
  display: block !important;
  border:0px solid black;
}

#jumbos .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2C9CE4;
}

#jumbos .owl-dot.active {
  background-color: #fff;
}

#jumbos .jumbotron  {background-color: #1F8BD1; border-radius: 24px;-webkit-box-shadow: 0 25px 98px 0 rgba(0,0,0,.1);
  box-shadow: 0 25px 98px 0 rgba(0,0,0,.1);}
#jumbos h4 {color: #fff; }
.jumbos-carousel {width: 90%}
#jumbos .item {
  text-align: center;
  padding: 24px;
  height: 170px!important;
  border-radius: 16px;
  margin: 0 10px 0 10px;
  opacity: 1;
  height: 100%;
  background-color: #fff;
}
#jumbos .item h5 {
  margin-bottom: 10px
}
#jumbos .item p {
  font-size: 14px;
  margin: 0;
}




/*navrhnout app*/
#navrhnout {
  padding:200px 0 200px 0 ;
  
}
#navrhnout img{
  float: right; 
  width: 80%; 
  padding:auto;
}
.product-count-select{
	display: block;
	overflow: hidden;
    position: relative;
}
.product-count-select:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 2;
}
#navrhnout select{
	-moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 300;
    margin: 0;
    padding: 1.25rem 0;
    position: relative;
    width: 100%;
}

.range {
  position: relative;
  width: 100%;
  height: 5px;
}

.range input {
  width: 100%;
  position: absolute;
  top: 2px;
  height: 0;
  -webkit-appearance: none;
}
.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -7px 0  0;
  border: 4px solid #1F8BD1 !important;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -7px 0  0;
  border: 4px solid #1F8BD1 !important;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -7px 0  0;
  border: 4px solid #1F8BD1 !important;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #dadada;
}
.range input::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #dadada;
}
.range input::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #dadada;
}
.range input:focus {
  background: none;
  outline: none;
}
.range input::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.range-labels {
  margin: 18px -8% 0;
  padding: 0;
  list-style: none;
}
.range-labels li {
  position: relative;
  float: left;
  width: 14.2857143%;
  text-align: center;
  color: #292929;
  font-size: 14px;
  cursor: pointer;
}
.range-labels li::before {
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 10px;
  height: 10px;
  background: white;
  border: 3px solid #1F8BD1;
  border-radius: 50%;
}
.range-labels .selected::before {
  background: #fff;
}
.range-labels .active.selected::before {
  display: none;
}


/*team*/
#team {padding: 250px 0 60px 0;box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);}

#team p {
    font-size: 18px;
    font-weight: 400;
    color: #292929;
    padding: 0;
    margin: 0 0 30px 0;
}
#team li p {
	margin: 0 0 10px 0;
}

#team .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#team .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#team .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}


#team .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}
#team .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#team .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#team .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#team .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#team .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#team .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#team .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#team .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#team .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#team .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#team .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#team .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#team .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#team .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}



/*ebook*/
#ebook {padding: 250px 0 200px 0}
#ebook img {border-radius: 10px;-webkit-box-shadow: 0 25px 98px 0 rgba(0,0,0,.1);
  box-shadow: 0 25px 98px 0 rgba(0,0,0,.1);}
#ebook li{padding: 10px 0 0 0; display: block}
#ebook li i{
  padding: 0 10px 0 0; color: #1F8BD1
}
#ebook p{font-size: 16px}
#ebook .form {padding-right: 32px}



/*makro*/
#mojemakro {padding: 200px 0 0px 0;background-color: #2D3A4B;}
#mojemakro h1, #mojemakro p {color:#fff;}

.bg-image-full {
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

#whymakro {
  padding: 150px 0 100px 0;
}
#whymakro1 {
  padding: 50px 0 100px 0;
}
#whymakro2 {
  padding: 100px 0 100px 0;
  background-color: #2D3A4B;
 
}
#whymakro2 h2, #whymakro2 p{ color: #fff!important;}


#download {
  padding: 0px 0 80px 0;
}




 /*Media*/ 
.nav-ico {
    display: none;
    }
 
.mobile {
    display: none;
    }
   
@media (max-width: 991px) {
  #download img {padding-top: 60px}
  #ebook .imgs {padding: 80px 0 80px 0 }
  #karuzel .appgallery-carousel .img{
    width: 220px!important ;}
  #team .px-5 {padding-left: 0px!important;padding-right:0px!important }
   
    .section {padding: 150px 0 90px 0}
.nav-ico {
    display: inline;
    }

#header {
    height: 60px;
    padding: 10px 0;
    }

.mobile {
    display: block;
    }

.desktop {
    display: none;
    visibility: hidden!important;
}
 h1{font-size: 40px}
 p{font-size:24px}
 #intro {background: none}
 #intro2 {background: none}
 #ebook {padding-bottom: 80px; padding-top: 140px } 
 #intro {padding-bottom: 40px; padding-top: 140px }    
 #intro img{ width: 100%; padding: 80px 80px 25px 80px;}
 #intro2 {padding-bottom: 40px; padding-top: 140px }    
 #intro2 img{ width: 100%; padding: 80px 80px 25px 80px;}
 #partner { position: relative;}
 #makro img{ width: 100%; padding: 60px 80px 10px 80px;} 
 #navrhnout img{ width: 100%; padding: 60px 80px 40px 80px;} 
 #aboutapp img{ width: 100%; padding: 60px 80px 40px 80px;} 
 #aboutapp2 {padding-bottom: 40px;padding-top: 140px} 
#aboutapp2 img{ width: 100%; padding: 60px 80px 40px 80px;} 
 #aboutapp {padding-bottom: 40px;padding-top: 140px} 
 #navrhnout {padding-bottom: 40px;padding-top: 140px} 
 #jumbos {padding-bottom: 40px;padding-top: 140px} 
 #makro {padding-top: 140px}
 #appky {padding-top: 140px}
 #aboutapp .row {padding-top:  0;}
 #aboutapp h1{ padding-bottom: 16px; text-align: left;}
#aboutapp2 .row {padding-top:  0;}
 #aboutapp2 h1{ padding-bottom: 16px; text-align: left;}
 #appky .padi {padding:60px 50px 40px 50px}
 #why {padding-bottom: 40px;padding-top: 140px}  
 #why img{ width: 100%; padding: 60px 80px 10px 80px;}    
 #whyapp .box {margin:10px 0 20px 0;}
 #whyapp {padding-bottom: 40px;padding-top: 60px}  
 #karuzel .appgallery-carousel {margin-top: 60px}
 #karuzel {padding-bottom: 40px;padding-top: 140px}
 #karuzel .pl-5 {padding-left: 0 !important}  
 #testimonials .icon-box .description {margin-right: 0px;}
 #testimonials .icon-box-2 .description-2 {margin-left: 0px!important;}
 #testimonials .container { padding: 0px!important; max-width: 900px; }
 #testimonials .testimonial-item .mx-5 { margin-left: 0!important;margin-right: 0!important}
 #testimonials {padding-bottom: 80px;padding-top: 140px}
 #vyberapp {padding-bottom: 80px;padding-top: 140px}
#contact {padding-bottom: 80px; padding-top: 100px }
}


@media  (max-width: 767px) {
  #vyberapp .bunka {
    margin-bottom: 24px
  }
  #intro img{ width: 100%; padding: 60px 40px 25px 40px;} 
  #intro2 img{ width: 100%; padding: 60px 40px 25px 40px;} 
 #makro img{ width: 100%; padding: 60px 40px 10px 40px;} 
 #navrhnout img{ width: 100%; padding: 60px 40px 40px 40px;} 
    #aboutapp img{ width: 100%; padding: 60px 40px 40px 40px;} 
#aboutapp2 img{ width: 100%; padding: 60px 40px 40px 40px;} 
 #why img{ width: 100%; padding: 60px 40px 10px 40px;}   

 .middlet {
  display: table-cell;
  vertical-align: top;
}

.section{
    padding-top: 100px;
    padding-bottom: 80px;
    }
    
    
  #vyberapp .float-right  {float: none!important;}
  #vyberapp .float-left  {float: none!important;}
  h1{font-size:32px }
  p{font-size:20px }
  }





@media  (max-width: 574px) {
  .animated-button, .animated-button:visited{font-size: 14px;padding: 8px 10px}
  #karuzel .appgallery-carousel .item{
    width: 120px ;}
    .section-header {padding-top: 32px!important;}
    .section{
      padding-bottom: 48px;
      }
      #karuzel .appgallery-carousel .item{
        max-width: 240px ;}
#appky .padi {padding: 0px}
}
 

  @media (max-width: 521px) {
    #intro img{ width: 100%; padding: 0px 0px 25px 0px;} 
    #intro2 img{ width: 100%; padding: 0px 0px 25px 0px;} 
    #makro img{ width: 100%; padding: 60px 0px 10px 0px;} 
    #navrhnout img{ width: 100%; padding: 60px 0px 40px 0px;}
    #aboutapp img{ width: 100%; padding: 60px 0px 40px 0px;}
#aboutapp2 img{ width: 100%; padding: 60px 0px 40px 0px;}
    #why img{ width: 100%; padding: 60px 0px 10px 0px;}   
  }
  @media  (max-width: 472px) {

  }
  @media  (max-width: 375px){
  h1{font-size: 28px}
  p{font-size:16px }
  #intro p.desktop{display: none;}
  #intro p.mobile{display: block;}
  #intro2 p.desktop{display: none;}
  #intro2 p.mobile{display: block;}
  #makro img.brand-logo { height: 25px; margin-bottom: 50px;}
  #vyberapp .panel {max-width: 270px; padding: 30px 5px}
	#why .icon-box .title {
    font-size: 20px;
  }
  #why .icon-box .description {font-size:16px}
  #testimonials .icon-box .icon { display: none; }
  #testimonials .icon-box-2 .icon-2 { display: none; }
  #testimonials .icon-box .description { margin-left: 0; margin-right: 0; font-size: 16px;}
  #testimonials .icon-box-2 .description-2 { margin-left: 0; margin-right: 0;font-size: 16px;}
  #testimonials .icon-box .title { margin-left: 0; margin-right: 0;font-size: 14px;}
  #testimonials .icon-box-2 .title-2 { margin-left: 0; margin-right: 0;font-size: 14px;}
  #testimonials .icon-box-2 .title-3 {  margin-right: 0;font-size: 14px;}
  }
  
  @media (max-width: 341px){
    #vyberapp .panel {max-width: 250px;}
    #karuzel .appgallery-carousel .item{
      max-width: 200px ;}
  
  }
  
