/*
Theme Name: Webdsgn
Author: jankurtak.eu / J�n Kurt�k
Author URI: http://www.jankurtak.eu/
Version: 2.0
*/

/* Fonts */
@import url('css.css');

html, body {
  position:relative;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important; 
}

*:focus {
  outline: none !important;
  box-shadow:none !important; 
}

body{
  color: #15253d;
  font-size: 15px;
  line-height: 1.5;
  font-family: 'PT Sans Caption', sans-serif;

}

/* MAIN */           
h1, h2, h3, h4, h5, h6{
  color: #15253d;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight:bold;
  line-height: 1.3;
}

h1{font-size:42px; margin-bottom: 30px;}
h2{font-size:32px; margin-bottom: 25px;}
h3{font-size:24px; margin-bottom: 15px;}
h4{font-size:18px}
h5{font-size:16px}
h6{font-size:14px}

ul{
  padding-left:0;
  list-style:none;
}

/* Image Cover */
picture.cover, figure.cover {
  margin: 0;
  position: relative;
  display: block;
  padding-top: 56.25%;
}

a > picture.cover > img, a > picture.cover > source, picture.cover > img, picture.cover > source, figure.cover > img, a > figure.cover > img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  top: 0;
}

a{
  color: #ef3623;
} 

.btn {
  border-radius: 50px;
  border-width: 2px;
  padding: 6px 16px;
  transition: all .2s ease-in-out;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 16px;
}


.btn-default {
  background-color: transparent;
  border-color: #e5f2f3;
}

.btn-default:hover, .btn-default:focus {
    color: #15253d;
    background-color: #f3fafa;
    border-color: #e5f2f3;
}

.btn-primary {
  background-color: #ef3623;
  border-color: transparent;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:hover, .btn-primary:active:focus {
  background-color: #15253d;
  border-color: transparent;
}

.btn-link {
    color: #ef3623;
}


/* HEADER */
header {
  height: 100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 0px 29px 0px rgba(25, 24, 20, 0.2)
}

header #logo{
  float: left;
  display: flex;
  align-items: center;
  height: 100px;
}

header #logo img{
  height: 60px;
}

header #menu{
  display: inline-block;
  float: right;
  display: flex;
  align-items: center;
  height: 100px;
}

header #menu > ul{
  font-size: 0;
  margin: 0;  
}

header #menu > ul > li{
  display: inline-block;
}

header #menu > ul > li > a{
  display: block;
  font-size: 15px;
  color: #15253d;
  padding: 25px 10px 15px 10px;
  text-decoration: none;
  transition: all 0.5s; 
  font-weight:bold;
  line-height:1;
  position: relative;

}

header #menu > ul > li > a:hover{
  color: #f03f22;
}

header #menu > ul > li.current-menu-item > a,
header #menu > ul > li.current_page_parent > a,
header #menu > ul > li.current-page-ancestor > a{
  color: #f03f22;
  background: transparent;
}

header #menu > ul > li > a:after{
  bottom: 0;
  content: "";
  height: 3px;
  background: transparent;
  width: 0;
  display: block;
  position: absolute;
  left: 20px;
  transition: all 0.5s; 
}

header #menu > ul > li > a:hover::after {
  background: #f03f22;
  width: calc(100% - 24px);
  left: 12px;
}

header #menu > ul > li > ul.sub-menu
{
    display: block;
    position: absolute;
    width: 295px;
    padding: 0 10px;
    list-style: none;
    border-radius: 5px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    background: #fff;
    box-shadow: 0px 5px 20px 0px rgba(21, 37, 61, 0.1);
}

header #menu > ul > li.pll-parent-menu-item > ul.sub-menu {
  width: auto;
}

header #menu > ul > li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
}

header #menu > ul > li > ul.sub-menu > li
{
    position: relative;
    z-index: 100;
}

header #menu > ul > li > ul.sub-menu > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 25px;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid #e5f2f3;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  color: #15253d;
}

header #menu > ul > li > ul.sub-menu > li > a:hover {
  color: #ef3623;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 25px;
  background:#f3fafa;
}

header #menu > ul > li > ul.sub-menu > li:last-child > a {
    border-bottom: 0;
}

header.mini {
  height: 70px;
  animation-name: top;
  position: fixed;
  animation-duration: 0.6s;
}

@keyframes top {
    from {top:-100px}
    to {top:0;}
}   

header.mini #logo{
  height: 70px;
}

header.mini #logo img{
  height: 40px;
}

header.mini #menu{
  height: 70px;
}

header.mini #menu > ul > li > a {
  padding:  15px 10px;
}

header.mini .top-actions > div {
  height: 50px;
}

header.mini .top-actions > div.infolinka {
  padding: 5px 15px;
  font-size: 13px;

}

header.mini .top-actions > div.infolinka > span {
  font-size: 14px;
}

header.mini .top-actions > div.ponuka {
  padding: 6px 8px;

}

header.mini .top-actions > div.ponuka img {
    width: 36px;
}

header.mini .top-actions > div.ponuka span {
    padding-top: 1px;
    font-size: 13px;
}


.top-actions {
  float: right;
  margin-left: 10px;
}

.top-actions > div {
  float: left;
  height: 70px;
  margin-left: 15px;
  padding: 8px 6px;
  border-radius: 5px;
  position:relative;
  font-size: 14px;   
}

.top-actions > div.infolinka {
  border: 2px solid #e5f2f3;
  margin-left: 0;
  padding: 12px;
}

.top-actions > div.infolinka > span {
  font-size: 16px;
  font-weight: bold;
  display: block;
  position: relative;
}

.top-actions > div.infolinka > span a{
  color:#15253d;
}

.top-actions > div.infolinka > span a:hover{
  text-decoration:none;
}


.top-actions > div > a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition:all 0.3s ease-in-out;
}

.top-actions > div.ponuka {
    background: #15253d;
    color:#fff;
}

.top-actions > div.ponuka:hover {
    background: #224d8f;
}

.top-actions > div.ponuka img{
    float:left;
    padding: 2px 2px 0px 0px;
}

.top-actions > div.ponuka span{
  padding-top: 7px;
  display: block;
}


/* Section */
section {
  margin-bottom:75px;
}

.single-page ul{
  padding-left:25px;
  list-style:square;
}

.welcome-text{
    background: #f3fafa;
    padding: 50px 0;
    margin-bottom:75px;
}

.welcome-text .button{
    margin-top:20px;
}

.welcome-text h2 span {
    display: block;
    font-weight: normal;
}

.welcome-text .icon{
    position: relative;
    text-align: center;
}

.welcome-text .icon img {
    z-index: 1;
    position: relative;
    max-width: 164px;
}

.welcome-text .icon::before {
    position: absolute;
    width: 172px;
    height: 172px;
    background: #e5f1f1;
    content: "";
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Obsah */

.obsah .centerrow{
  margin-bottom: 75px;
}

.obsah.bluebg{
  background: #f3fafa;
  padding: 50px 0;
  margin-bottom: 75px;
}

.obsah.bluebg .centerrow{
  margin-bottom: 0;
}


.obsah ol > li{
  margin-bottom: 20px;
}

.obsah ol > li > ul > li{
  margin-left: 20px;
  list-style: square;
}


/* Slider */
section.slider{
  margin-bottom:0;
  overflow: hidden;
}

section.slider .slick-slide{
  position:relative;
}

section.slider .slide-wrap picture{
  padding-top: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/*section.slider .slick-carousel:not(.slick-initialized) {
	display: none;
}*/

section.slider .slide-wrap, section.slider .slide-wrap .centerrow{
    height:700px;
    position: relative;
}

section.slider .slide-wrap .slide-text h1{
    color:#fff;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.40;
    margin-bottom:30px;
}    

section.slider .slide-wrap .slide-text p{
    color:#fff;
    font-size: 20px;
    font-weight:normal;
}

section.slider .slide-wrap .slide-text span{
    font-weight:800;
    font-size: 36px;
    display:block;
    margin-top:10px;
}

section.slider .slide-wrap .slide-image {
    margin-top: 40px;
    min-width: 1000px;
}

section.slider .btn-default {
  background-color: #fff;
  border-color: transparent;
  font-weight: bold;
  line-height: 32px;
  padding: 8px 22px 8px 52px;
  position: relative;
}

section.slider .btn-default:hover {
  background-color: #15253d;
  border-color: transparent;
  color: #fff;
}


section.slider .btn-default i {
  font-size: 32px;
  position: absolute;
  top: 10px;
  left: 20px;
}
/* V�pis slu�ieb*/
section.vypis-sluzieb.home {
  margin-top:-90px;
  position: relative;
}

section.vypis-sluzieb.home::before {
  content: "";
  background: #f3fafa;
  height: calc(100% + 30px);
  width: 100%;
  position: absolute;
  z-index: -1;
}

section.vypis-sluzieb .sluzba {
  box-shadow: 0px 5px 20px 0px rgba(21, 37, 61, 0.1);
  padding: 30px 16px 20px 16px;
  text-align: center;
  background: #fff;
  position:relative;
  transition:all 0.3s ease-in-out;
  border-radius:5px;
  margin-bottom: 30px;
  min-height: 220px;
  top: 0;
}

section.vypis-sluzieb .sluzba::before {
  position: absolute;
  width: 96px;
  height: 96px;
  background: #feefe7;
  content: "";
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; 
}

section.vypis-sluzieb .sluzba img {
  max-width:96px;
  margin-bottom:30px;  
  z-index: 2;
  position: relative;  
}

section.vypis-sluzieb .sluzba h3 {
  font-size:15px;
  margin-bottom: 0;
}

section.vypis-sluzieb .sluzba a{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  z-index: 3;
  left:0;
}

section.vypis-sluzieb .sluzba:hover{
  box-shadow: 0px 15px 20px 0px rgba(21, 37, 61, 0.1);
  top: -15px;
}

/*Slu�by podstranka */  

section.vypis-sluzieb.sub .sluzba{
  box-shadow: none;
  background: #f3fafa;
  padding: 60px 20px;
  margin-bottom: 0;
}

section.vypis-sluzieb.sub .sluzba:hover{
  box-shadow: none;
  top: 0;
}

section.vypis-sluzieb.sub .sluzba::before {
  position: absolute;
  width: 172px;
  height: 172px;
  background: #e5f1f1;
  content: "";
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

section.vypis-sluzieb.sub .row.centerrow {
    margin-bottom: 75px;
}


section.vypis-sluzieb.sub .sluzba img {
    max-width: 172px;
    margin-bottom: 0;
}

section.vypis-sluzieb.sub .popis .perex{
    margin-bottom:25px;
}

/* Sekcia pre�o my*/

section.sekcia-preco {
  background:#f3fafa;
  position: relative;
  padding: 30px 0;
}

section.sekcia-preco h2{
  margin-bottom:20px;
  padding: 0 30px;
}

section.sekcia-preco .perex{
  margin-bottom:40px;
}

section.sekcia-preco .item-pm {
    padding: 15px 30px 15px 15px;
    margin-bottom: 30px;
    background:#fff;
    min-height: 94px; 
    flex-flow: inherit; 
}


section.sekcia-preco .item-pm img{
  height: 64px;
  padding-right: 15px;
}

section.sekcia-preco .item-pm p{
  margin:0;
}

/* Moving Day */
.moving-day-wrap {
    border: 3px solid #e5f2f3;
    border-radius: 5px;
    padding: 25px;
    position:relative;
    background:url("image/movingday_bg.png") no-repeat 90% 104%;
}

.moving-day-wrap .left {
    padding: 0 30px 0 15px;
}
.moving-day-wrap .left h3 {
    font-size:32px;
    color:#ef3623;
}

.moving-day-wrap .left p {
    margin-bottom:15px;
}


/* V�pis cennikov */

section.vypis-cennikov .slick-pricelist{
  margin-bottom: 75px;
}   

section.vypis-cennikov h2{
  margin-bottom: 50px;
} 

section.vypis-cennikov .cennik{
  margin-bottom: 30px;
}   

section.vypis-cennikov h3{
  margin-bottom: 30px;
  text-align:center;
}   


section.vypis-cennikov .cennik {
  padding: 30px 15px;
  text-align: center;
  background: #fff;
  position:relative;
  transition:all 0.3s ease-in-out;
  border-radius:5px;
  overflow:hidden;
  z-index: 0;
  border:3px solid #e5f2f3;
  margin: 0 15px;  
}

section.vypis-cennikov .cennik::before {
    position: absolute;
    content: "";
    border-left: 640px solid transparent;
    border-top: 350px solid #f3fafa;
    left: -65px;
    top: 0;
    z-index: 0;
    width: 100%;
    z-index: -1;
}

section.vypis-cennikov .cennik span {
    display: inline-block;
    float: right;
    background: #fff;
    padding: 10px 10px 8px 16px;
    border-radius: 20px 0 0 20px;
    margin-right: -33px;
    font-size: 14px;
    font-weight: bold;
    border: 3px solid #e5f2f3;
    position: absolute;
    right: 30px;
}
section.vypis-cennikov .cennik h3 {
    margin-bottom:15px;
    padding: 0 25px;
    font-size: 22px;
    min-height: 58px;
}

section.vypis-cennikov .cennik img {
    margin-bottom:15px;
}

section.vypis-cennikov .cennik p.price {
    font-weight: bold;
    margin-bottom: 10px;
    background: #e5f2f3;
    display: inline-block;
    padding: 6px 18px 6px 34px;
    position:relative;
    border-radius: 0 100px 100px 0;
    min-height: auto;
}

section.vypis-cennikov .cennik p.price::before {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    background: #f3fafa;
    left: 0;
    top: 0;
    border-bottom: 24px solid #d4e4e6;
    border-left: 24px solid #fff;
}

section.vypis-cennikov .cennik p {
    margin-bottom:20px;
    font-size: 14px;
} 

section.vypis-cennikov.home .welcome-text{
  background:#f3fafa url("image/cennik_home_bg.png") no-repeat 20% 102%;
}    

section.vypis-cennikov.home .slick-pricelist{
  margin-bottom: 50px;
}   

.slick-pricelist { position: relative; height: 445px; opacity: 0; overflow: hidden; transition: opacity 0.3s ease; }
.slick-pricelist.slick-initialized { height: auto; opacity: 1; }

/* Formular modul */
section.sekcia-formular {
  background:#f3fafa;
  margin-bottom: 30px;
}

section.sekcia-formular.noleft {
  margin-bottom: 75px;
  background:#fff;
}

section.sekcia-formular .quick {
    padding: 50px 0 0px 0;
}

section.sekcia-formular .quick h3 {
    padding-bottom:30px;
    border-bottom:2px solid #e5f2f3;
    margin-bottom:30px;
}

section.sekcia-formular .quick ul > li{
  position:relative; 
  padding: 8px 0 8px 50px;
  margin-bottom: 30px;

}

section.sekcia-formular .quick ul > li:before{
  position:absolute;
  content: "";
  width:32px;
  height:32px;
  left: 0;
  top: 2px;
}

section.sekcia-formular .quick ul > li.phone:before{
  background:url("image/form_icon_phone.svg") no-repeat center center;
}
section.sekcia-formular .quick ul > li.email:before{
  background:url("image/form_icon_mail.svg") no-repeat center center;
}
section.sekcia-formular .quick ul > li.address:before{
  background:url("image/form_icon_address.svg") no-repeat center center;
}

section.sekcia-formular form {
  position: relative;
  background: #15253d;
  padding: 50px 0px 50px 50px;
  z-index: 1;
  color:#fff;
}

section.sekcia-formular form p{
  margin-left:10px;
}

section.sekcia-formular form input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
}

section.sekcia-formular form .check{
  display: block;
  position: absolute;
  border: 4px solid #445164 !important;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

section.sekcia-formular form .check.checkbox{
  border-radius: 0;
  margin-top: 0;
}


section.sekcia-formular form .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 4px;
  width: 4px;
  top: 4px;
  left: 4px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

section.sekcia-formular form .check.checkbox::before {
  border-radius: 0;
  margin-top: 0;
}

input[type=radio]:checked ~ .check, input[type=checkbox]:checked ~ .check  {
  border: 4px solid #f03f22 !important;
}

input[type=radio]:checked ~ .check::before, input[type=checkbox]:checked ~ .check::before{
  background: #f03f22;
}

input[type=radio]:checked ~ label, input[type=checkbox]:checked ~ label{
  color: #f03f22;
}


section.sekcia-formular form::before {
  content: "";
  background: #15253d;
  height: 100%;
  left: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

section.sekcia-formular form::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  right: 0;
  bottom: 100px;
  background: url("image/form_icon_mail2.svg") no-repeat center center;
  opacity: 0.04;
  transform: scale(11);
  z-index: -1;
}


section.sekcia-formular form h3{
    color:#fff;
    padding:0 0 30px 50px;
    position:relative;
}

section.sekcia-formular form h3:before{
    position:absolute;
    content: "";
    width:32px;
    height:32px;
    left: 0;
    top: 2px;
    background:url("image/form_icon_mail2.svg") no-repeat center center;
}

section.sekcia-formular .form-control{
  padding: 12px 16px;
  height: auto;
  background: transparent;
  border: 2px solid rgba(255,255,255,.2);
  margin-bottom: 30px;
  color: #fff;
}

section.sekcia-formular .form-control:hover{
  border: 2px solid rgba(255,255,255,.4);
}

section.sekcia-formular .form-control:focus{
  border: 2px solid rgba(255,255,255,.6);
}

section.sekcia-formular .btn {
    padding: 12px 16px;
    float: right;
}

section.sekcia-formular .btn-link:focus, section.sekcia-formular .btn-link:hover {
    color: #fff;
}

/* V�pis spolo�nosti */

section.vypis-spolocnosti {
    margin-bottom: 20px;
}

section.vypis-spolocnosti h3 {
    margin-bottom:0;
}

section.vypis-spolocnosti .company-logo {
    padding: 0 30px;
}

section.vypis-spolocnosti .company-logo > img {
  max-height: 100px;
  margin: 0 auto;
}

section.vypis-spolocnosti .slick-prev::before, section.vypis-spolocnosti .slick-next::before {
    font-size: 14px;
    background: #e5f2f3;
    opacity:1;
    border-radius: 50px;
    position: absolute;
    width: 36px;
    height: 36px;
    top: 0;
    left: 0;
    color: #15253d;
}
section.vypis-spolocnosti .slick-prev::before {
    padding: 11px 1px 0 0px;
}
section.vypis-spolocnosti .slick-next::before {
    padding: 11px 0 0 1px;
}

section.vypis-spolocnosti .slick-prev, section.vypis-spolocnosti .slick-next {
    width: 36px;
    height: 36px;
}

section.vypis-spolocnosti .slick-prev {
    left: -25px;
}

section.vypis-spolocnosti .slick-next {
    right: -25px;
}

section.vypis-spolocnosti.sub .company-logo {
  border: 2px solid #e5f2f3;
  border-radius: 5px;
  padding: 15px;
  margin-bottom:30px;
}

section.vypis-spolocnosti.sub .company-logo h5{
  min-height:42px;
}

section.vypis-spolocnosti.sub .company-logo p{
  min-height:42px;
}

section.vypis-spolocnosti.sub .company-logo img {
  max-width: 128px;
  margin: 0 auto;
  margin-bottom:15px;
  transition: all 0.3s ease-in-out;
  height: 90px;
}

section.vypis-spolocnosti.sub .company-logo:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0%);
  opacity: 1;
}

/* Footer */

footer{
  padding: 50px 0 0px 0;
  background:#0a0d11;
  color:#5e636a;
  font-size:13px;
}

footer .box{
  margin-bottom:30px;
}

footer .box img{
  max-width:160px;
  margin-bottom:20px;
}

footer .box h4{
  color:#fff;
  margin-bottom:20px;
}

footer .box ul > li{
  padding-bottom: 8px;
}

footer .box ul > li.pll-parent-menu-item{
  display: none;
}

footer .box ul > li a{
  color:#5e636a;
  padding-left:30px;
  position:relative;
  padding-bottom: 8px; 
  transition: all 0.3s ease-in-out;
}

footer .box ul > li a:before{
  position:absolute;
  content: "";
  width:10px;
  height:2px;
  left: 0;
  top: 8px;
  background:#ef3623;
  transition: all 0.3s ease-in-out;
}


footer .box ul > li a:hover{
  color:#fff;
}

footer .box ul > li a:hover:before{
  position:absolute;
  content: "";
  width:20px;
  height:2px;
  left: 0;
  top: 8px;
  background:#ef3623;
}

footer .copy{
  border-top: 2px solid #1e2124;
  padding: 15px 0 5px 0;
}

footer .copy a, footer .copy a:hover{
  color:#5e636a;
}

footer .btn.oznam{
  position: fixed;
  bottom: 0; 
  margin-left: calc(50% - 720px);  
  border-radius: 10px 10px 0 0; 
  background: #ef3623; 
  border-color: transparent;  
  font-weight: bold;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 300;
}

.oznam ul {
  padding-left: 30px;
  list-style: square;
}

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

/* Page header */

section.page-header{
  padding:75px 0;
  position: relative;
  background: #f03f22;
  margin: 0;
  border: 0;
  color: #fff;
}

section.page-header > picture{
  padding-top: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
section.page-header h1{
  color:#fff;
  margin-bottom: 0;
}


/* Page bread */
section.page-bread{
  margin-bottom: 0;
}

section.page-bread .breadcrumb{
  padding: 15px 0;
  margin-bottom: 0;
  list-style: none;
  background-color: #fff;
  border-radius: 0;
}

/* Single Page */

section.single-page .description .image img, section.obsah .image img{
  border-radius:5px;
}

section.single-page .description .centerrow{
  margin-bottom:75px;
  padding-bottom: 75px;
  border-bottom: 2px solid #f3fafa;
}

section.single-page .description .centerrow:last-child{
  margin-bottom: 0;
}

section.priebeh-stahovania {
    background:#f3fafa;
    padding:50px 0;
}

section.priebeh-stahovania h2{
  margin-bottom:50px;
}

section.priebeh-stahovania h2 span{
  display: block;
  font-weight: normal;
}

section.priebeh-stahovania .step {
    margin-bottom:40px;
}

section.priebeh-stahovania .step-description {
    min-height: 145px;
}

section.priebeh-stahovania .step-icon img{
  width: 100%;
  max-width: 96px;
}

/* CTA */

.cta .cta-text p{
  margin-bottom: 30px;
}

/* Cenova ponuka */

section.cp .border-box{
  padding: 30px;
  border: 3px solid #e5f2f3;
  border-radius: 5px;
  margin-bottom: 30px;
}

section.cp .border-box input[type="radio"], section.cp .border-box input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
}


section.cp .border-box label{
  z-index: 9;
  padding: 20px 0 10px 35px;
  margin-right: 20px; 
  -webkit-transition: all 0.25s linear;
}

section.cp .border-box.termin label, section.cp .border-box.udaje label{
  padding: 20px 0 10px 0;
}

section.cp .border-box .check{
  display: block;
  position: absolute;
  border: 5px solid #E5F2F3;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 20px;
  left: 0;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

section.cp .border-box .check.checkbox{
  border-radius: 0;
  margin-top: 0;
}


section.cp .border-box .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 9px;
  width: 9px;
  top: 4px;
  left: 4px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

section.cp .border-box .check.checkbox::before {
  border-radius: 0;
  margin-top: 0;
}

input[type=radio]:checked ~ .check, input[type=checkbox]:checked ~ .check  {
  border: 5px solid #f03f22;
}

input[type=radio]:checked ~ .check::before, input[type=checkbox]:checked ~ .check::before{
  background: #f03f22;
}

input[type=radio]:checked ~ label, input[type=checkbox]:checked ~ label{
  color: #f03f22;
}

.form-control{
  height: 44px;
  padding: 14px;
  box-shadow: none;
  border: 2px solid #e5f2f3;
}

.form-control:focus {
  border-color: #d3dfe0;
}

textarea.form-control {
    height: auto;
}

.input-group-addon {
    border: 2px solid #e5f2f3;
    background: #f3fafa;
}

.input-group-addon span {
    color: #bdd9db;
}

section.cp .border-box .suhlas label {
    padding: 20px 0 10px 35px;
}

section.cp .border-box .send-form button, section.cp .border-box .send-form button:focus {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 100px;
    border-color: transparent;
}

/* Cenniky */
section.single-page.cennik h2 {
  margin-bottom: 10px;
}

section.single-page.cennik .objem {
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    position: relative;
    border: 2px solid #e5f2f3;
    background: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}


section.single-page.cennik ul > li {
    margin-bottom: 10px;
}

section.single-page.cennik .price {
  padding: 10px 24px 10px 40px;
  background: #15253d;
  display: inline-block;
  border-radius: 0 100px 100px 0;
  color: #fff;
  margin-top: 15px;
  position: relative;
}

section.single-page.cennik .price::before {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  background: #f3fafa;
  left: 0;
  top: 0;
  border-bottom: 24px solid #3e5477;
  border-left: 24px solid #f3fafa;
}


/* Kontakt */  

section.kontakt .welcome-text li{
  padding-left:80px;
  font-size:20px;
  margin-bottom:30px;
  position: relative;
  line-height: 64px;
}

section.kontakt .welcome-text li.mail a{
  color:#15253d;
}

section.kontakt .welcome-text li:last-child{
  margin-bottom:0;
}

section.kontakt .welcome-text li:before{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background-size: contain;
}

section.kontakt .welcome-text li.mail:before{
  background: url("image/kontakt_icon_email@2x.png") no-repeat center center  / contain;
}

section.kontakt .welcome-text li.tel:before{
  background: url("image/kontakt_icon_phone@2x.png") no-repeat center center  / contain;
}

section.map{
  margin-bottom: 0;
}

/* Pracovne ponuky */
section.vypis-prace{
  margin-top: 30px;
}

section.vypis-prace .ponuka{
  padding:20px;
  border:2px solid #e5f2f3;
  margin-bottom:15px;
  position: relative;
  overflow: hidden;
}

section.vypis-prace .ponuka::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f15c";
  color: #e5f2f3;
  font-size: 96px;
  bottom: -40px;
  right: 20px;
  height: auto;
}

section.vypis-prace .ponuka h2{
  font-size:22px;
  margin-bottom:10px;
}
section.vypis-prace .ponuka ul {
      margin-bottom:0px;
}


section.vypis-prace .ponuka ul > li {
    display: inline-block;
    min-width: 320px;
}


section.pracovne-ponuky{
  margin-top: 75px;
}

section.pracovne-ponuky .ponuka {
    padding: 30px;
    border: 2px solid #e5f2f3;
    border-radius: 5px;
}

section.pracovne-ponuky .ponuka ul {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5f2f3;
}

section.pracovne-ponuky .ponuka ul > li{
  margin-bottom: 15px;
}

.tabs-left, .tabs-right {
  border-bottom: none;
  padding-top: 2px;
}
.tabs-left {
  border-right: 2px solid #e5f2f3;
}
.tabs-right {
  border-left: 2px solid #e5f2f3;
}
.tabs-left>li, .tabs-right>li {
  float: none;
}
.tabs-left>li:not(:last-child), .tabs-right>li:not(:last-child) {
  margin-bottom: 2px;
}
.tabs-left>li {
  margin-right: -2px;
}
.tabs-right>li {
  margin-left: -2px;
}
.tabs-left>li.active>a,
.tabs-left>li.active>a:hover,
.tabs-left>li.active>a:focus {
  border-color: #e5f2f3;
  border-right-color: transparent;
  border-width: 2px;
  color: #ef3623;
}

.tabs-right>li.active>a,
.tabs-right>li.active>a:hover,
.tabs-right>li.active>a:focus {
  border-bottom: 2px solid #e5f2f3;
  border-left-color: transparent;
}
.tabs-left>li>a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  display:block;
  border-width: 2px;
  padding: 15px 15px;
  font-weight: bold;
  color: #15253d;
}
.tabs-right>li>a {
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}

.tabs-left>li>a:hover, .tabs-left>li>a:focus{
  background-color: #f3fafa;
  border-color: #e5f2f3;
}

/* OOU Fix*/
section.oou{
  margin-top: 75px;
}

/* RESPONSIVE */  

@media (min-width: 1400px) {    
  .container {
      max-width: 1260px;
      width:auto;
  }
  
  .text-right-lg {
      text-align: right;
  }
  
  .text-center-lg {
      text-align: center;
  }

}

@media (min-width: 920px) {    
  
  .centerrow {
    box-sizing: border-box;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    //flex-flow: row wrap;
  }

}

@media (max-width: 1199px) {  
  header{

  }
  
  header #logo{

  }
  
  header .titlepage {
    margin-top: 12px;
    margin-left: 0px;
  }
  
  header .titlepage h1 {
    font-size: 20px;
    color: #fff;
  }
    
  header .titlepage span {
    font-size: 14px;
  }
  
  
  #logo > a > img{

  }
  
  header #menu {
    height: auto;
  }
  
  header #menu #responsiveMenuToggle  {
    position: absolute;
    top: 25px;
    right: 0;
    width: 50px;
    height: 50px;
    border: 0;
    color: #FFFFFF;
    padding-left: 15px;
    line-height: 52px;
    font-size: 22px;
    text-align: left;
    background: #16253D;
  }
  
  header.mini #menu #responsiveMenuToggle  {
    top: 10px;
  }
  
  header #menu #responsiveMenuToggle > .fa  {
    font-size: 22px;
  }
  
  header #menu > ul  {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    padding: 20px 10px !important;
    padding-right: 0;
    background: #16253d;
    visibility: hidden;                                   
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
  }

  header.mini #menu > ul  {
    top: 70px;
  }
  
  
  header #menu > ul > li  {
    display: block;
    z-index: 9999;  
}
  
  header #menu > ul > li > a{
    padding: 15px 10px;
    color: #fff;
    border-radius: 0;
    border-bottom: 1px solid #354e75;
    margin: 0 15px;
  }
  
  header #menu > ul > li.current_page_item > a,
  header #menu > ul > li.current_page_parent > a
  header #menu > ul > li > a:hover
  {
    background: transparent;
    color: #fff;
    border-radius: 0;
  }
  
  header #menu > ul > li > a:hover {
    color: #fff;
    border-radius: 0;
    border: 0;
    background: #ef3623;
    border-bottom: 1px solid transparent;
  }
    
  header #menu > ul > li > a:hover::after {
      display: none;
  }
  
  header #menu > ul > li.menu-item-has-children
  {
    position: relative;
  }

  header #menu > ul > li.menu-item-has-children > a + span
  {
    display: block;
    position: absolute;
    cursor: pointer;
    top: 2px;
    right: 10px;
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    padding: 20px;
    left: auto;
    font-weight: bold;
    z-index: 99;
  }

  header #menu > ul > li.menu-item-has-children > a + span::after
  {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: "FontAwesome";
    content: "\f0fe";
    font-size: 24px;
  }

  section.slider .slide-wrap, section.slider .slide-wrap .centerrow {
    height: auto;
    padding: 30px 15px 65px 15px;
  }
  
  section.slider .slide-wrap .slide-text h2 {
      font-size: 32px;
  }

  header #menu > ul > li > ul.sub-menu
  {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    width: calc(100% + 20px);
    border-radius: 0;
    margin: 10px 0 10px -10px;
  }
  
  body.responsiveMenuToggled header #menu > ul,
  body.responsiveMenuToggled header #menu > ul:before
  {
    visibility: visible;
    opacity: 1;
  }  
    
  section.page-header {
      padding: 30px 0;
  }
    
  section.page-header h1 {
      padding-left: 15px;
  }
  
  .top-actions {
      float: none;
      margin-left: 0;
      margin-top:15px;
  }
  
  .top-actions > div {
      width: calc(52% - 15px);
      color: #fff;
      border:2px solid #354e75;
      font-size: 13px;
  }
  
  .top-actions > div.infolinka, .top-actions > div.ponuka {
      border:2px solid #354e75; 
  }
    
  .top-actions > div.infolinka {
      padding: 14px 10px 14px 12px;
  }
    
  .top-actions > div.infolinka > span, .top-actions > div > span {
      font-size: 13px;
      font-weight: normal;
  }
    
  .top-actions > div:hover {
      border-color: transparent;
      background: #224d8f;
  }  
  
  .top-actions > div:nth-child(2) {
      width: 48%;
  }
  
  .top-actions > div.infolinka > span a {
      color: #fff;
  }
    
  section.vypis-sluzieb .sluzba:hover {
      top: 0;
  }
    
  section.cp .border-box label {
      min-width: 45%;
      margin-left: 0;
  }
    
  section.vypis-cennikov .cennik {
    padding: 30px 20px;
  }
    
  section.vypis-cennikov .cennik h3 {
      font-size: 18px;
      min-height: 50px;
  }
  
  footer{
    padding: 40px 10px 20px;
    width: 100%;
    margin: 0;
  }
  

}
 
@media (max-width: 991px) {      
 
  section.sekcia-formular form {
      padding: 50px 30px 50px 30px;
      margin-left: -15px;
      margin-right: -15px;
  }
  
  section.sekcia-formular form::before {
  
      left: -100%;
      width: 300%;
  }
  
  section.single-page .description .image, section.obsah .image {
      margin-bottom: 30px;
  }
  
    
  section.vypis-spolocnosti .slick-next::before {
      left: -20px;
  }
  section.vypis-spolocnosti .slick-prev::before {
      left: 20px;
  }
    
  .float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 30px;
    background-color: #29cf67;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s;
  }
    
  .float i{
  	margin-top:16px;
  }
  
  .float:hover, float:focus{
  	color:#fff;
    background-color: #ef3623;
  }

  .tabs-left {
    border-right: 0;
  }

  .tabs-left > li > a {
    border-radius: 4px;
    border: 2px solid #e5f2f3;
    margin-bottom: 10px;
  }

  .tabs-left > li.active > a, .tabs-left > li.active > a:hover, .tabs-left > li.active > a:focus {
    border-right-color: #e5f2f3;
  }

  section.zalozky .tab-content {
    padding: 20px 15px;
  }
  
  
}

@media (max-width: 767px) {  

  section.slider .slide-wrap .slide-text h1 {
    font-size: 24px;
  }

  section.slider .btn-default {
    display: block;
  }

  h1 {font-size: 32px;}  
  h2 {font-size: 24px;}
  h3 {font-size: 20px;}
    
  section.single-page .description .centerrow {
      margin-bottom: 40px;
      padding-bottom: 30px;
  }
  
  section.vypis-sluzieb .sluzba {
      padding: 30px 15px;
      min-height: 250px;
  }

  section.vypis-sluzieb .sluzba.image {
    margin-bottom: 30px;
  }
    
  section.vypis-sluzieb .sluzba h3 {
      font-size: 16px;
  }
    
  section.priebeh-stahovania .step {
      text-align: center;
  }
    
  section.priebeh-stahovania .step-icon img {
      margin: 0 auto 20px auto;
  }
    
  .welcome-text .icon {
      margin-bottom: 30px;
  }
    
  section.cp .border-box label {
      display: block;
      margin-left: 0;
  }
    
}     

@media (max-width: 330px) {
  section.vypis-sluzieb .sluzba {
      min-height: 250px;
  }
}    

/* ADDITIONAL FIXES */