body{
    padding: 0;
    margin: 0;
    font-family: 'Jost', sans-serif;
    color: #fff;
    background: #000;
    font-weight: 300;
}
body > .content{
    overflow: hidden;
}
a{
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    color: #fff;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
*{
    scroll-behavior: smooth;
}
*:focus{
    outline: none;
}
h1{
    font-size: 50px;
    line-height: 60px;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0px 0px 20px;
    letter-spacing: 5px;
    text-align: center;
}
h2{
    font-size: 37px;
    line-height: 47px;
    font-weight: 300;
    margin: 0px 0px 50px;
    text-align: center;
    letter-spacing: 7.6px;
    text-transform: uppercase;
}
h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 300;
    margin: 0px 0px 15px;
    letter-spacing: 0px;
    text-transform: uppercase;
}
h2 + h3{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0px 0px 30px;
}
p{
    font-size: 18px;
    line-height: 33px;
    margin: 0px 0px 30px;
    letter-spacing: 0.5px;
}
p.center{
    text-align: center;
}
h2:last-child,
h3:last-child,
h2 + h3:last-child,
p:last-child{
    margin-bottom: 0px;
}
a.button{
    display: inline-block;
    text-transform: uppercase;
    width: 300px;
    box-sizing: border-box;
    padding: 18px 10px 18px 12px;
    background: #fff;
    border-radius: 0px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 3.6px;
    color: #000;
    text-decoration: none;
    font-weight: normal;
}
a.button{
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}
a.button:hover{
    color: #000;
    background: #fff;
}
b, strong{
    font-weight: 600;
}
/* header */
header{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 0px;
    box-sizing: border-box;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 100;
    border: none;
    width: 100%;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
header:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: rgba(0,0,0,0.78);
    opacity: 1;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
body.not-front header:before{
    opacity: 1;
    background: #000;
}
header > *{
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
header .logo{
    width: 123px;
    overflow: hidden;
}
header .logo a{
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    height: 50px;
    display: block;
    position: relative;
}
header .logo a img{
    width: 62px;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    position: relative;
    top: 0px;
}
body.scrolled header .logo a img{
    top: -51px;
}
header .logo a:before{
    content: "Pergolas";
    display: block;
    font-size: 25px;
    line-height: 51px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 52px;
    transform: translate(-50%, 0%);
    font-weight: 400;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
body.scrolled header .logo a:before{
    top: 0px;
}
nav.menu{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
}
nav.menu.left{
    right: auto;
    left: 0px;
}
nav.menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: center;
}
nav.menu ul li{
    position: relative;
    margin: 0px;
}
nav.menu ul li a,
nav.menu ul li span{
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: block;
    font-weight: normal;
}
nav.menu ul li span{
    cursor: default;
}
nav.menu ul li ul{
    display: none;
    position: absolute;
    left: 0px;
    top: 100%;
    padding: 35px 45px;
    border-radius: 0px;
    background: rgba(0,0,0,0.78);
    white-space: nowrap;
}
nav.menu ul li:hover ul{
    display: block;
}
nav.menu ul li ul li{
    margin-bottom: 10px;
}
nav.menu ul li ul li:last-child{
    margin-bottom: 0px;
}
nav.menu ul li a.button{
    padding: 8px 16px;
    width: auto;
}
a.menu-switcher{
    display: none;
}
/* obsah */
main{
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}
main > .uvod{
    width: 100vw;
    max-width: 1920px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    max-height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}
main > .uvod .image{
    overflow: hidden;
    height: 100vh;
    width: 100%;
    padding-top: 0px;
    position: relative;
}
main > .uvod .image video{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main > .uvod.obrazek .image{
    overflow: hidden;
    height: auto;
    width: 100%;
    padding-top: 0px;
    position: relative;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
main > .uvod.obrazek .image picture{
    height: 100%;
    width: 100%;
}
main > .uvod.obrazek .image img{
    max-width: 10000px;
    min-height: 100%;
    width: auto;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}
main > .uvod .text{
    width: 100%;
    max-width: 865px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
}
main > .uvod.carport .text{
    top: 72%;
}
main > .uvod.podkres .text:before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 200px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 300px;
    background: radial-gradient(rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%);
}
main > .uvod .text h1{
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 5px;
    margin: 0px;
    padding-top: 20px;
}
body.home main > .uvod .text h1{
    background: transparent url(/build/images/symbol-nekonecno-bez-pozadi.png) no-repeat center top;
    padding-top: 50px;
    background-size: 55px auto;
}
main > .uvod .text p{
    font-size: 27px;
    line-height: 37px;
    letter-spacing: 4.6px;
    text-transform: uppercase;
}
main > .uvod .text p{
    padding-top: 30px;
}
main > .uvod.obrazek picture.slide{
    display: none;
}
main > .uvod.obrazek picture.slide:first-child{
    display: block;
}
main > .uvod a.continue{
    display: block;
    position: absolute;
    animation: jumpInfinite 1.5s infinite;
    top: calc(100vh - 100px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    font-size: 0px;
    text-indent: -9999px;
    z-index: 5;
    background: transparent url(/build/images/angle-down-solid.svg) no-repeat center center;
    background-size: 60px 60px;
}
@keyframes jumpInfinite {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: 20px;
    }
    100% {
        margin-top: 0;
    }
}
main > .nadpis{
    padding: 65px 0px;
    position: relative;
}
main > .nadpis:before,
main > .white-section:before,
body.not-front main > .text:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #fff;
}
main > .nadpis:before{
    background: #000;
}
main > .nadpis h2{
    color: #fff;
    font-size: 47px;
}
main > .text.gray:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #2c2c2c;
}
main > .lists .item.ikona-1{
    background: transparent url(/build/images/jsfiddle.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-2{
    background: transparent url(/build/images/award-solid.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-3{
    background: transparent url(/build/images/hand-holding-heart-solid.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-4{
    background: transparent url(/build/images/rss-solid.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-5{
    background: transparent url(/build/images/circle.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-6{
    background: transparent url(/build/images/gem.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-7{
    background: transparent url(/build/images/envira.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .lists .item.ikona-8{
    background: transparent url(/build/images/infinity-solid.svg) no-repeat 0px top;
    background-size: 53px 53px;
}
main > .white-section{
    position: relative;
    text-align: center;
    color: #000;
    padding: 65px 0px 55px;
}
main > .white-section p{
    font-weight: normal;
}
main > .white-section p.uppercase{
    max-width: 650px;
    margin: 0 auto 70px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 3px;
}
main > .white-section p.tlacitko{
    margin-bottom: 75px;
}
main > .white-section p.tlacitko:last-child{
    margin-bottom: 0px;
}
main > .white-section.produkt{
    color: #fff;
}
main > .white-section.produkt:before{
    background: #000;
}
main > .white-section.produkt p.ikona{
    background: transparent url(/build/images/house-signal-white.svg) no-repeat center bottom;
    background-size: 58px 58px;
}
main > .white-section h3 a{
    color: #000;
}
main > .white-section h3 a.button{
    vertical-align: middle;
    margin-top: -5px;
    border-color: #000;
}
main > .white-section h3 a.button:hover{
    background: #000;
    color: #fff;
}
main > .text{
    position: relative;
    padding: 125px 0px;
    text-align: center;
}
main > .text h2{
    margin-bottom: 30px;
}
main > .text p a.button,
main > .white-section p a.button{
    margin-top: 40px;
}
main > .text.katalog:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #fff;
}
main > .white-section h3 + p{
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}
body.not-front main > .text{
    color: #000;
    padding-top: 200px;
    text-align: left;
}
body.not-front main > .text h1{
    text-align: center;
}
body.not-front main > .text.h1-small h1{
    font-size: 27px;
    line-height: 37px;
    letter-spacing: 4.6px;
}
body.not-front main > .text h2{
    padding-top: 20px;
    margin-bottom: 30px;
}
body.not-front main > .text.dekujeme p{
    text-align: center;
}
body.not-front main > .text.dekujeme p:has(.button){
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
body.not-front main > .text.dekujeme p a.button{
    background: #000;
    border-color: #000;
    width: 340px;
    max-width: 100%;
}
body.not-front main > .text.dekujeme p a.button:hover{
    background: #fff;
    color: #000;
}
body.not-front main > .text.dekujeme form{
    max-width: 600px;
    margin: 0 auto;
}
body.not-front main > .text.dekujeme form > div:nth-child(2),
body.not-front main > .text.dekujeme form > div:nth-child(3){
    width: 100%;
}
body.not-front main > .text.dekujeme form p a{
    color: #000;
}
body.not-front main > .text a{
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}
body.not-front main > .text.gdpr p{
    margin-bottom: 15px;
}
body.not-front main > .text.gdpr p.p-t{
    padding-top: 15px;
}
body.not-front main > .text.gdpr p.p-b{
    padding-bottom: 15px;
}
body.not-front main > .text.gdpr p.text-align-center{
    text-align: center;
}
body.not-front main > .text.gdpr a{
    color: #000;
}
body.not-front main > .text a:hover{
    text-decoration: none;
}
body.not-front main > .text a{
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}
body.not-front main > .text p:last-child a{
    margin-top: 0px;
}
ul{
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 30px;
}
ol{
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 30px;
}
ul li,
ol li{
    font-size: 18px;
    line-height: 30px;
    margin: 0px 0px 10px;
    letter-spacing: 0.5px;
}
ul li::marker,
ol li::marker{
    font-weight: 600;
    color: #000;
}
main > .formular{
    position: relative;
    padding: 140px 0px 50px;
    color: #000;
}
main > .formular .form-inner{
    padding: 20px;
    background: rgba(255,255,255,0.9);
    max-width: 730px;
    margin: 0 auto;
}
main > .formular:before,
body.not-front main > .text.lightgray:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #e9e9e9;
}
main > .formular:before{
    background: transparent url(/build/obrazky/pozadi-ziskat-nabidku.jpg) no-repeat center center;
    background-size: cover;
}
main .formular .text-inner{
    color: #fff;
}
main .formular .text-inner p{
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    margin-bottom: 30px;
}
main > .formular form p{
    text-align: center;
}
main > .formular form p a{
    color: #000;
    text-decoration: underline;
}
main > .formular form p a:hover{
    text-decoration: none;
}
form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
form *{
    font-family: 'Jost', sans-serif;
}
form > *{
    width: 100%;
}
form > div{
    margin: 0px 0px 10px;
}
form > div:first-child,
form > div:nth-child(2),
form > div:nth-child(3),
form > div:nth-child(4),
form > div:nth-child(6),
form > div:nth-child(7){
    width: calc(50% - 10px);
}
form.new > div:first-child,
form.new > div:nth-child(4),
form.new > div:nth-child(6),
form.new > div:nth-child(7){
    width: 100%;
}
form label,
h5{
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #010101;
    margin: 0px 0px 5px;
    text-transform: uppercase;
    letter-spacing: 2.3px;
}
h5{
    padding-top: 25px;
    margin-bottom: 10px;
}
form input[type="text"],
form input[type="email"],
form select{
    width: 100%;
    box-sizing: border-box;
    height: 42px;
    background: #fff;
    border-radius: 0px;
    border: 2px solid #b4b4b4;
    padding: 0px 20px;
    font-size: 15px;
    font-weight: normal;
    color: #010101;
}
form select{
    appearance: none;
    background: #fff url(/build/images/angle-down-solid.svg) no-repeat right 20px center;
    background-size: 20px;
}
form textarea{
    width: 100%;
    box-sizing: border-box;
    height: 120px;
    background: #fff;
    border-radius: 0px;
    border: 2px solid #b4b4b4;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: normal;
    color: #010101;
}
form label a{
    color: #010101;
    font-weight: 600;
}
form .form-actions{
    margin: 0px;
    text-align: center;
    padding: 10px 0px 10px;
}
form input[type="submit"]{
    display: inline-block;
    text-transform: uppercase;
    width: 320px;
    box-sizing: border-box;
    padding: 20px 10px;
    border-radius: 0px;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 3.6px;
    text-decoration: none;
    font-weight: 500;
    background: #000;
    color: #fff;
    cursor: pointer;
    border: 2px solid #000;
}
form input[type="submit"]:hover{
    color: #000;
    background: #fff;
}
main > .references{
    width: 100vw;
    max-width: 1920px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    padding-top: 50px;
}
main > .references > h2,
main > .references > p{
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}
main > .references .swiper + p{
    padding-top: 40px;
}
main > .references > p:last-child{
    padding-bottom: 60px;
}
.swiper-wrapper > .swiper-slide{
    overflow: hidden;
    height: 360px;
    position: relative;
}
.swiper-wrapper > .swiper-slide img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 10000px;
    min-width: 100%;
    width: 100%;
}
main > .references .swiper-wrapper > .swiper-slide img{
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    filter: grayscale(1);
}
main > .references .swiper-wrapper > .swiper-slide:hover img {
    filter: grayscale(0);
}
.swiper-wrapper > .swiper-slide a{
    font-size: 0px;
    text-indent: -9999px;
}
.swiper-wrapper > .swiper-slide a:first-child:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
}
.swiper-wrapper > .swiper-slide p{
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 0%);
    width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;
    margin: 0px;
    text-align: center;
    background: rgba(0,0,0,0.5);
}
.swiper .swiper-pagination{
    display: none;
}
.swiper-button-next,
.swiper-button-prev{
    color: #fff;
}
section.ikony-dlazdice{
    padding: 125px 0px;
}
section.ikony-dlazdice .ikony{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
section.ikony-dlazdice .ikony .item{
    width: calc(25% - 12px);
    text-align: center;
}
section.ikony-dlazdice .ikony .item .ikona{
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 70px;
}
section.ikony-dlazdice .ikony .item .ikona img{
    width: auto;
    height: auto;
    max-height: 70px;
}
section.ikony-dlazdice .ikony .item:nth-child(3) .ikona img{
    max-height: 75px;
}
section.ikony-dlazdice .ikony .item:nth-child(4) .ikona img{
    max-height: 48px;
}
section.ikony-dlazdice .ikony .item .nazev a{
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: uppercase;
}
section.ikony-dlazdice .ikony .item p{
    margin: 0px;
    line-height: 15px;
    font-size: 12px;
}
section.ikony-dlazdice .ikony .item p a{
    text-decoration: underline;
}
section.ikony-dlazdice .ikony .item p a:hover{
    text-decoration: none;
}
section.ikony-dlazdice .dlazdice{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 44px;
}
section.ikony-dlazdice .dlazdice .item{
    width: calc(50% - 8px);
    position: relative;
}
section.ikony-dlazdice .dlazdice .item .image{
    overflow: hidden;
    max-height: 400px;
}
section.ikony-dlazdice .dlazdice .item .image img{
    transform: scale(1);
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
section.ikony-dlazdice .dlazdice .item:hover .image img{
    transform: scale(1.05);
}
section.ikony-dlazdice .dlazdice .item .text{
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 2;
    box-sizing: border-box;
    padding: 20px 20px 37px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9164040616246498) 0%, rgba(0,0,0,0.9192051820728291) 14%, rgba(0,0,0,0) 100%);
    width: 100%;
    text-align: center;
}
section.ikony-dlazdice .dlazdice .item .text .inner{
    display: inline-block;
    vertical-align: middle;
}
section.ikony-dlazdice .dlazdice .item h3{
    margin-bottom: 0px;
    line-height: 28px;
}
section.ikony-dlazdice .dlazdice .item p{
    margin-bottom: 0px;
}
section.ikony-dlazdice .dlazdice .item .text:after{
    background: transparent url(/build/images/angle-down-solid.svg) no-repeat center center;
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 40px;
    background-size: 30px 30px;
    transform: rotate(-90deg);
    z-index: 3;
    margin-right: -40px;
}
section.ikony-dlazdice form label{
    color: #fff;
    text-align: left;
}
form.newsletter label{
    display: none;
}
section.ikony-dlazdice form > div:nth-child(2),
section.ikony-dlazdice form > div:nth-child(3){
    width: calc(50% - 10px);
}
section.ikony-dlazdice form input[type="text"],
section.ikony-dlazdice form input[type="email"],
form.newsletter input[type="email"]{
    border: 1px solid #000;
    border-radius: 5px;
    height: 35px;
}
section.ikony-dlazdice form textarea{
    border: none;
    border-radius: 5px;
    height: 120px;
}
section.ikony-dlazdice form .form-actions,
form.newsletter .form-actions{
    padding: 0;
}
section.ikony-dlazdice form input[type="submit"],
form.newsletter input[type="submit"]{
    width: auto;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    border-radius: 0px;
    padding: 10px 25px;
}
section.ikony-dlazdice form input[type="submit"]:hover,
form.newsletter input[type="submit"]:hover{
    background: #000;
    color: #fff;
}
form.newsletter > div:first-child{
    width: calc(100% - 162px);
}
form.newsletter input[type="email"]{
    height: 42px;
}
form.newsletter > div:nth-child(3){
    width: 142px;
}
form.newsletter > div:nth-child(4){
    width: 100%;
    margin-bottom: 0px;
}
form.newsletter > div:nth-child(4) p{
    font-size: 12px;
    line-height: 16px;
}
section.lists{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 100px;
    align-items: flex-start;
}
section.uvod + div + section.lists{
    padding-top: 125px;
}
section.lists > .item{
    width: calc(50% - 10px);
    margin-bottom: 30px;
    box-sizing: border-box;
    padding-left: 73px;
}
section.lists > .item h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0px 0px 5px;
    letter-spacing: 2px;
}
section.lists > p{
    width: 100%;
    text-align: center;
}
section.lists > .item + p{
    padding-top: 35px;
}
section.reference-text{
    padding: 100px 0px;
}
section.reference-text .swiper-slide {
    height: 450px;
    position: relative;
}
.fancybox__content[id^=reference-] {
    height: 90vh;
    width: 90vh;
    position: relative;
}
.fancybox__content[id^=reference-] .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.reference-text .swiper-slide:before, .fancybox__content[id^=reference-]:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    left: calc(50% - 30px);
    bottom: 0px;
    background: #000 url(/build/images/logo-footer.svg) no-repeat center center;
    background-size: 35px 35px;
    z-index: 2;
}
section.reference-text .swiper-wrapper > .swiper-slide a:first-child:before,
.fancybox__content[id^=reference-] a:first-child:before
{
    display: none;
}
section.reference-text .swiper-slide a,
.fancybox__content[id^=reference-] a {
    font-size: 18px;
    text-indent: 0px;
}
section.reference-text .swiper-slide img,
.fancybox__content[id^=reference-] img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 450px;
    width: auto;
    max-width: 10000px;
}
section.reference-text .swiper-slide .text,
.fancybox__content[id^=reference-] .text{
    position: absolute;
    width: calc(100% - 60px);
    height: calc(100% - 110px);
    left: 30px;
    top: 40px;
    background: rgba(0,0,0,0.5);
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
section.reference-text .swiper-slide .text p,
.fancybox__content[id^=reference-] .text p {
    position: static;
    background: transparent;
    transform: none;
    padding: 0;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
}
section.newsletter{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 0px;
    position: relative;
    color: #000;
    margin-bottom: 40px;
}
section.newsletter:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    background: #fff;
    z-index: -1;
}
section.newsletter > div{
    width: calc(50% - 10px);
}
section.newsletter > div.right{
    padding-top: 70px;
}
section.newsletter h2{
    text-align: left;
    margin-bottom: 15px;
}
section.newsletter form{
    min-height: 1px !important;
}
section.newsletter form > div{
    height: auto !important;
}
section.newsletter form .ec-v-form-step.ec-v-form-step-visible{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section.newsletter form .ec-v-form-column:first-child {
    width: calc(100% - 162px) !important;
}
section.newsletter form .ec-v-form-column:nth-child(2) {
    width: 142px !important;
}
section.newsletter form .ec-v-form-input label{
    margin: 0px;
}
section.newsletter form .ec-v-form-input input[type="email"] {
    border: 1px solid #000;
    border-radius: 5px;
    height: 42px;
}
section.newsletter form button[type="submit"] {
    width: 100%;
    border: 1px solid #000 !important;
    background: transparent !important;
    color: #000 !important;
    border-radius: 0px;
    padding: 10px 25px;
    display: block;
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 20px;
}
section.newsletter form button[type="submit"]:hover{
    background: #000 !important;
    color: #fff !important;
}
section.newsletter .ec-v-form-holder form .ec-v-form-column:first-child p {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5px;
}
section.newsletter form a{
    color: #000;
}
section.newsletter iframe{
    border: none;
}
section.dlazdice-onas{
    display: flex;
    flex-wrap: wrap;
    gap: 16.5px;
    padding: 0px 0px 150px;
    margin-top: -90px;
}
section.dlazdice-onas .item{
    width: calc(33.33% - 11px);
    box-sizing: border-box;
    border: 1px solid #fff;
    padding: 50px;
    position: relative;
    text-align: center;
    overflow: hidden;
}
section.dlazdice-onas .item .image{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
section.dlazdice-onas .item .image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.dlazdice-onas .item p:not(:last-child){
    min-height: 66px;
}
section.dlazdice-onas .item p a.button{
    width: auto;
    padding: 18px 30px;
}
section.dlazdice-onas .item p a.button:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}
section.videos{
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 125px;
}
section.videos .item{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
section.videos .item .text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    padding: 0px 20px;
    text-align: center;
    z-index: 1;
}
section.videos .item .text h3{
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;
}
section.videos .item .text p{
    text-transform: uppercase;
}
section.videos .item .image{
    width: 100%;
    height: 100%;
}
section.videos .item .image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.kontakt-sloupce{
    padding: 140px 0px 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    min-height: 1px;
    align-content: flex-start;
}
section.kontakt-sloupce.white{
    padding: 100px 0;
    position: relative;
    color: #000;
}
section.kontakt-sloupce.white:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #fff;
}
section.kontakt-sloupce h1{
    width: 100%;
}
main section.kontakt-sloupce.hlavni-nadpis > div,
main section.kontakt-sloupce > div{
    width: calc(33.33% - 20px);
    padding-top: 0px;
    margin-top: 45px;
}
main section.kontakt-sloupce > div{
    margin-top: 0;
}
main section.kontakt-sloupce.hlavni-nadpis > div.center,
main section.kontakt-sloupce > div.center{
    padding-top: 7px;
    width: calc(33.33% - 55px);
}
section.kontakt-sloupce .left p:last-child{
    font-size: 11px;
    line-height: 15px;
    padding: 9px 0px;
}
section.kontakt-sloupce .right p{
    margin-bottom: 40px;
}
section.kontakt-sloupce .right p:last-child{
    margin-bottom: 0px;
}
section.kontakt-sloupce.white a{
    color: #000;
}
section.polozky-realizace{
    position: relative;
    color: #000;
}
section.polozky-realizace:before{
    content: "";
    display: block;
    width: 100vw;
    height: calc(100% + 150px);
    position: absolute;
    left: 50%;
    top: -50px;
    z-index: -1;
    background: #fff;
    transform: translate(-50%, 0%);
}
.polozka-realizace{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 100px;
    text-align: center;
    align-items: flex-end;
}
.polozka-realizace .left,
.polozka-realizace .right{
    width: calc(50% - 8px);
}
.polozka-realizace .right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.polozka-realizace .right .text{
    padding: 20px 16px 0px;
}
.polozka-realizace .right .text p{
    margin-bottom: 20px;
    line-height: 25px;
}
.polozka-realizace .galerie{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 16px;
    position: relative;
}
.polozka-realizace .galerie a{
    overflow: hidden;
    width: calc(50% - 8px);
    height: 180px;
    display: none;
    position: relative;
}
.polozka-realizace .galerie a:nth-child(2),
.polozka-realizace .galerie a:nth-child(3){
    display: block;
}
.polozka-realizace .galerie a img{
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.polozka-realizace .galerie a:nth-child(3):before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    background: rgba(0,0,0,0.5);
}
.polozka-realizace .galerie a:nth-child(3):after{
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    top: calc(50% - 48px);
    right: 0px;
    width: 33%;
    height: 96px;
    background: transparent url(/build/images/angle-down-solid.svg) no-repeat center center;
    background-size: 30px 30px;
    transform: rotate(-90deg);
}
section.polozky-realizace + .black-section h3{
    margin-bottom: 30px;
}
section.doplnky{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 50px 0px 100px;
}
section.doplnky > .text{
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
}
section.doplnky > .text p{
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}
section.doplnky .item{
    position: relative;
    width: calc(25% - 12px);
}
section.doplnky .item .image{
    max-height: 360px;
    overflow: hidden;
}
section.doplnky .item .text{
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 2;
    box-sizing: border-box;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9164040616246498) 0%, rgba(0,0,0,0.9192051820728291) 14%, rgba(0,0,0,0) 100%);
    width: 100%;
}
section.doplnky .item .text h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 0px 0px 8px;
    letter-spacing: 2px;
}
section.doplnky .item .text ul{
    padding: 0;
    margin: 0;
    list-style: none;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    max-height: 0px;
    overflow: hidden;
}
section.doplnky .item:hover .text ul{
    max-height: 300px;
}
section.doplnky .item .text ul li{
    margin: 0px;
    line-height: 20px;
    font-size: 16px;
    padding: 2px 0px;
}
section.dlazdice-produktu{
    padding: 100px 0px;
    position: relative;
    color: #000;
}
section.dlazdice-produktu:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #fff;
}
section.dlazdice-produktu .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
}
section.dlazdice-produktu .item:last-child{
    margin-bottom: 0px;
}
section.dlazdice-produktu .item > div{
    width: calc(50% - 20px);
    text-align: center;
}
section.dlazdice-produktu .item:nth-child(even) > .obrazek{
    order: 2;
}
section.dlazdice-produktu .item:nth-child(even) > .text{
    order: 1;
}
section.dlazdice-produktu .item ul{
    padding: 0;
    list-style-position: inside;
}
section.dlazdice-produktu p a.button{
    border-color: #000;
    color: #000;
}
section.dlazdice-produktu p a.button:hover{
    background: #000;
    color: #fff;
}
section.dlazdice-produktu > p{
    width: 100%;
    text-align: center;
}
main > .black-section {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 65px 0px 55px;
}
main > .text.white-section{
    padding: 140px 0px 50px;
}
main > .text.white-section.hlavni-nadpis{
    padding: 140px 0px 45px;
}
main > .text.white-section.hlavni-nadpis h1,
section.kontakt-sloupce.hlavni-nadpis h1{
    margin: 25px 0px 0px;
}
main .formular .text-inner.hlavni-nadpis h1{
    margin-top: 25px;
}
body .ch2-theme-bar .ch2-dialog.ch2-visible {
    align-items: center;
}
body .ch2-theme-bar .ch2-dialog p:last-child{
    font-size: 16px;
    color: #000;
    margin: 0 0 0 5px;
}
body .ch2 .ch2-scale {
    -webkit-transform: none !important;
    transform: none !important;
}
section.katalog{
    padding: 180px 0px 100px;
    position: relative;
}
section.katalog:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #fff;
}
section.katalog .gallery{
    font-size: 0px;
    text-indent: -9999px;
}
section.katalog .gallery > .swiper-slide img{
    max-height: calc(100vh - 150px);
    width: auto;
}
section.katalog .swiper-katalog{
    overflow: hidden;
}
section.katalog .swiper-wrapper > .swiper-slide{
    height: auto;
    background: #000;
}
section.katalog .swiper-wrapper > .swiper-slide img{
    position: static;
    max-width: 100%;
    transform: none;
}
section.katalog p.button{
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-size: 14px;
    text-indent: 0px;
}
section.katalog p.button a{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-top: 40px;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
section.katalog p.button a span{
    display: inline-block;
    text-transform: uppercase;
    width: 162px;
    box-sizing: border-box;
    padding: 10px 10px 10px 12px;
    background: transparent;
    border-radius: 0px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 3.6px;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-weight: normal;
}
section.katalog p.button a span:hover {
    color: #000;
    background: #fff;
}
section.kontakt-tym{
    position: relative;
    color: #000;
    padding: 80px 0px;
    margin: 0 auto;
    max-width: 1040px;
}
section.kontakt-tym:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0%);
    z-index: -1;
    background: #fff;
}
section.kontakt-tym h3{
    text-transform: none;
}
section.kontakt-tym p{
    margin-bottom: 0px;
    font-size: 16px;
}
section.kontakt-tym p a{
    color: #000;
}
section.kontakt-tym .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
section.kontakt-tym .items .item{
    margin-bottom: 60px;
    width: calc(50% - 30px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
section.kontakt-tym .items .item .left{
    order: 2;
    max-width: calc(100% - 210px);
}
section.kontakt-tym .items .item .right{
    order: 1;
    max-width: 180px;
}
section.kontakt-tym .items .item:last-child{
    margin-bottom: 0px;
}
section.mezinadpis{
    text-align: center;
    padding: 30px 0;
}
/* footer */
footer{
    padding: 120px 0px 30px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
footer .logo{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
}
footer p.copyright{
    margin: 0px;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    text-align: center;
}
nav.social ul,
nav.footer-menu ul,
ul.social{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
nav.footer-menu ul{
    gap: 30px 60px;
}
ul.social{
    justify-content: flex-start;
}
nav.social{
    width: 100%;
}
nav.footer-menu{
    width: 100%;
    padding: 30px 0px 20px;
}
nav.social ul li,
nav.footer-menu ul li
ul.social li{
    margin: 0px;
}
nav.footer-menu ul li{
    text-align: center;
}
nav.social ul li a,
ul.social li a{
    display: block;
    width: 20px;
    height: 20px;
    font-size: 0px;
    text-indent: -9999px;
}
nav.social ul li a[href*="instagram"],
ul.social li a[href*="instagram"]{
    background: transparent url(/build/images/instagram.svg) no-repeat center center;
    background-size: contain;
}
nav.social ul li a[href*="facebook"],
ul.social li a[href*="facebook"]{
    background: transparent url(/build/images/square-facebook.svg) no-repeat center center;
    background-size: contain;
}
nav.social ul li a[href*="youtube"],
ul.social li a[href*="youtube"]{
    background: transparent url(/build/images/youtube.svg) no-repeat center center;
    background-size: contain;
    width: 24px;
}
nav.social ul li a[href*="linked"],
ul.social li a[href*="linked"]{
    background: transparent url(/build/images/linkedin-in.svg) no-repeat center center;
    background-size: contain;
}
nav.footer-menu ul li a{
    font-size: 11px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer .telefon-kontakt{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    opacity: 0;
}
body.scrolled footer .telefon-kontakt{
    opacity: 1;
}
footer .telefon-kontakt a{
    display: block;
    width: 70px;
    height: 70px;
    font-size: 20px;
    line-height: 25px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px 0px 10px 70px;
    background: rgba(0,0,0,0.7);
    position: relative;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    border: 1px solid #fff;
}
footer .telefon-kontakt a:hover{
    width: 280px;
}
footer .telefon-kontakt a:before{
    background: transparent url(/build/images/phone-solid.svg) no-repeat center center;
    background-size: 30px 30px;
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    left: 0px;
    top: 0px;
    animation: kontakt 6s infinite;
}
@keyframes kontakt {
    0% {opacity: 1;}
    49%{opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
footer .telefon-kontakt a:after{
    background: transparent url(/build/images/logo-footer.svg) no-repeat center center;
    background-size: 39px 24px;
    content: "";
    display: block;
    width: 73px;
    height: 67px;
    position: absolute;
    left: 0px;
    top: 0px;
    animation: kontakt-reverse 6s infinite;
}
@keyframes kontakt-reverse {
    0% {opacity: 0;}
    50%{opacity: 0;}
    51% {opacity: 1;}
    100% {opacity: 1;}
}
/* responze */
@media screen and (max-width: 1600px){
    .swiper-wrapper > .swiper-slide{height: 300px;}
}
@media screen and (max-width: 1400px){
    .swiper-wrapper > .swiper-slide{height: 270px;}
}
@media screen and (max-width: 1220px){
    header {padding-left: 20px; padding-right: 20px;}
    header nav.menu {right: 20px;}
    nav.menu.left {right: auto; left: 20px;}
    main > .uvod .text {padding: 80px 20px 0px; box-sizing: border-box;}
    nav.social{left: 20px;}
    .swiper-wrapper > .swiper-slide img {width: auto; height: 100%;}
    section.newsletter .ec-v-form-holder{max-width: 100%;}
    section.dlazdice-onas .item {padding: 50px 20px;}
    main > .uvod .image{height: 101vh;}
}
@media screen and (max-width: 1023px){
    h1 {font-size: 44px; line-height: 54px; letter-spacing: 4.8px;}
    header nav.menu{display: none;}
    a.menu-switcher {display: block; position: absolute; right: 0px; top: 50%; transform: translate(0%, -50%);}
    a.menu-switcher span {display: block; margin: 10px 20px; width: 30px; font-size: 0px; text-indent: -9999px; height: 4px; background: #fff; position: relative; transition-duration: 0.3s; transition-timing-function: cubic-bezier(0.55,0.055,0.675,0.19); border-radius: 0px;}
    a.menu-switcher span:before {content: ""; display: block; width: 30px; height: 100%; position: absolute; top: -10px; right: 0px; background: #fff; transition: top 0.1s 0.34s ease-in,opacity 0.1s ease-in,background-color 0.15s ease; border-radius: 0px;}
    a.menu-switcher span:after {content: ""; display: block; width: 30px; height: 100%; position: absolute; bottom: -10px; right: 0px; background: #fff; transition: bottom 0.1s 0.34s ease-in,transform 0.3s cubic-bezier(0.55,0.055,0.675,0.19),background-color 0.15s ease; border-radius: 0px;}
    body.mobile-menu-expanded a.menu-switcher span {transform: rotate(225deg); transition-delay: 0.14s; transition-timing-function: cubic-bezier(0.215,0.61,0.355,1); width: 30px;}
    body.mobile-menu-expanded a.menu-switcher span:before {top: 0; opacity: 0; transition: top 0.1s ease-out,opacity 0.1s 0.14s ease-out,background-color 0.15s ease; width: 30px;}
    body.mobile-menu-expanded a.menu-switcher span:after {bottom: 0; transform: rotate(-90deg); transition: bottom 0.1s ease-out,transform 0.3s 0.14s cubic-bezier(0.215,0.61,0.355,1),background-color 0.15s ease; width: 30px;}
    body.mobile-menu-expanded header nav.menu {display: block; top: calc(100% + 176px); left: auto; right: 0px; width: 270px; padding: 0px 0px 10px; transform: none; background: rgba(0,0,0,0.78);}
    body.mobile-menu-expanded header nav.menu.left{top: 100%; padding: 0;}
    header nav.menu ul {gap: 0px; flex-direction: column;}
    header nav.menu ul li a, header nav.menu ul li span {padding: 10px 20px; text-align: center;}
    header nav.menu ul li span{display: none;}
    nav.menu ul li ul {display: block; position: static; padding: 0px; border-radius: 0; background: transparent;}
    nav.menu ul li ul li {margin-bottom: 0;}
    h2, main > .nadpis h2 {font-size: 30px; line-height: 40px;}
    main{width: 100%; box-sizing: border-box; padding-left: 20px; padding-right: 20px;}
    section.ikony-dlazdice .ikony .item {width: calc(50% - 8px);}
    section.ikony-dlazdice .dlazdice .item {width: 100%;}
    section.lists > .item {width: 100%;}
    section.dlazdice-produktu .item > div {width: 100%;}
    section.dlazdice-produktu .item:nth-child(even) > .obrazek {order: 1;}
    section.dlazdice-produktu .item:nth-child(even) > .text {order: 2;}
    section.doplnky .item {width: calc(33.33% - 11px);}
    .polozka-realizace .right {width: 100%; flex-direction: column-reverse;}
    .polozka-realizace .left{display: none;}
    section.dlazdice-onas .item {width: calc(50% - 9px);}
    section.dlazdice-onas {justify-content: center;}
    main > .uvod .text h1 {font-size: 44px; line-height: 54px; letter-spacing: 3px;}
    section.kontakt-sloupce.white {padding: 55px 0 100px;}
    main section.kontakt-sloupce.hlavni-nadpis > div, main section.kontakt-sloupce > div{width: 100%; margin-top: 45px;}
    main section.kontakt-sloupce.hlavni-nadpis > div.center, main section.kontakt-sloupce > div.center{padding-top: 0px; width: 100%;}
    section.kontakt-tym .items .item{width: 100%;}
}
@media screen and (max-width: 767px){
    main > .uvod {max-height: 450px; min-height: 450px;}
    main > .uvod.obrazek .image {height: 460px;}
    main > .uvod .image {min-height: 460px;}
    main > .uvod .image {height: 460px;}
    main > .uvod .text p {padding-top: 15px; margin: 0;}
    section.newsletter > div {width: 100%; text-align: center;}
    section.newsletter h2 {text-align: center;}
    section.newsletter > div.right {padding-top: 0px;}
    section.newsletter form .ec-v-form-input input[type="email"]{text-align: left;}
    body .ec-v-form-text, body .ec-v-form-input, body .ec-v-form-submit {padding-left: 0 !important; padding-right: 0 !important;}
    nav.footer-menu ul {gap: 5px 60px; flex-direction: column;}
    main > .uvod.obrazek .image img {position: relative; left: 50%; transform: translate(-50%, 0%);}
    section.doplnky .item {width: calc(50% - 8px);}
    section.doplnky .item .text ul li {line-height: 18px; font-size: 14px; letter-spacing: 0;}
    .polozka-realizace .galerie a {height: 155px;}
    section.dlazdice-onas .item {width: 100%;}
    h2 {margin: 0px 0px 15px;}
    main > .uvod.carport .text {margin-top: 0; transform: translate(-50%, 0); top: auto; bottom: 50px;}
}
@media screen and (max-width: 479px){
    h1 {font-size: 28px; line-height: 44px; letter-spacing: 0px;}
    body.not-front h1{font-size: 32px;}
    h2, main > .nadpis h2 {font-size: 24px; line-height: 34px; letter-spacing: 0px;}
    h3 {font-size: 20px; line-height: 30px; letter-spacing: 0px;}
    p {letter-spacing: 0px;}
    a.button {width: 280px; letter-spacing: 1.6px;}
    main > .uvod .text p {font-size: 20px; line-height: 30px; letter-spacing: 1px;}
    main > .nadpis, main > .white-section, main > .text{padding: 50px 0px;}
    main > .cenik .items .item {width: 100%;}
    form > div:first-child, form > div:nth-child(2), form > div:nth-child(3), form > div:nth-child(4), form > div:nth-child(6), form > div:nth-child(7) {width: 100%;}
    form input[type="submit"] {width: 240px;}
    body.poptavka h1{letter-spacing: 0px; font-size: 26px;}
    main > .uvod .text h1 {font-size: 28px; line-height: 44px;}
    section.ikony-dlazdice .ikony .item {width: 100%; margin-bottom: 20px;}
    section.ikony-dlazdice .dlazdice .item .text {padding: 20px 5px 37px;}
    section.ikony-dlazdice .dlazdice .item .text:after {margin-right: 0;}
    section.newsletter form .ec-v-form-column:first-child {width: 100% !important; margin-bottom: 20px;}
    section.doplnky .item {width: 100%;}
    .polozka-realizace .galerie a {height: 180px; width: 100%;}
    .polozka-realizace .galerie {gap: 10px;}
    section.dlazdice-onas .item p:not(:last-child) {min-height: 1px;}
    section.dlazdice-onas .item {padding: 30px 20px;}
    section.dlazdice-onas {padding: 0px 0px 50px; margin-top: 0;}
    section.videos .item .text h3 {font-size: 28px; line-height: 44px;}
    section.newsletter form .ec-v-form-step.ec-v-form-step-visible {justify-content: center;}
    section.kontakt-sloupce .right > div {width: 100%;}
}


