@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    overflow-x: hidden;
    overflow-y: scroll;
    max-width: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    background: white;
    color: #111111;
}

a:-webkit-any-link {
    text-decoration: none;
}

.header {
    width: 100%;
    padding: 25px 0px 14px;
    margin: 0 auto;
    background: #fff;
    color: #111111;
    display: flex;
    left: 0px;
    position: relative;
}

.logo {
    display: flex;
    width: auto;
    float: none;
    position: relative;
    margin-right: 2%;
    margin-left:80px;
}

.logo img {
    position: relative;
    display: block;
    width: auto;
    height: 50px;
}

.menu {
    display: flex !important;
    margin-left: auto;
    margin-right: 80px;
}

.menu ul li {
    list-style: none;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
        -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    margin-left: 15px;
    margin-right: 15px;
}

.menu ul li a {
    margin-left: 0px;
    margin-right: 0px;
    color: #111111;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.menu ul li a:hover {
    color: #392b93;
}

.menu ul li a:after {
    -ms-transition: -webkit-transform .2s ease-out,border-color .2s ease-out;
    -webkit-transition: -webkit-transform .2s ease-out,border-color .2s ease-out;
    transition: transform .2s ease-out,border-color .2s ease-out;
    position: absolute;
    display: block;
    bottom: -10px;
    left: 0;
    width: 100%;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-top: 4px solid #ffd940;
    content: '';
    padding-bottom: inherit;
}

.menu ul li a:hover:after {
    backface-visibility: hidden;
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


li.dropdown-menu ul.sub-menu {
    position: absolute;
    display: none;
    top: 28.5px;
    left: 0px;
    z-index: 9999;
    padding: 0;
    width: 210px;
}

ul.sub-menu li {
    display: block;
    float: none;
    padding: 15px 10px !important;
    background: #fff;
    margin-left: 0;
    margin-right: 0;
}

ul.sub-menu li a {
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 14px;
    text-transform: none;
}

.dropdown-menu:hover ul.sub-menu {
   display: inline-block !important;
}

ul.sub-menu li a:after {
    display: none;
}


/***MOBILE MENU***/

@media (max-width: 1000px) {
  .menu {
    display: none !important;
  }
  .logo {
    display: flex;
    width: auto;
    float: none;
    position: relative;
    margin-right: 2%;
    margin-left: 20px;
}
.logo img {
    position: relative;
    display: block;
    width: auto;
    height: 32px;
}
.header {
    width: 100%;
    padding: 25px 0px 25px;
}
ul.sub-menu li {
    padding: 0px 5px !important;
}
}
  
@media (min-width: 1001px) {
nav.mobile-navigation {
 display: none;
}}


nav.mobile-navigation a
{
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

nav.mobile-navigation a:hover
{
  color: #392b93;
}

nav.mobile-navigation #menuToggle
{
  display: block;
  position: absolute;
  top: 32px;
  left: auto;
  right: 30px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

nav.mobile-navigation #menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;  
  cursor: pointer;  
  opacity: 0;
  z-index: 2;
  
  -webkit-touch-callout: none;
}


nav.mobile-navigation #menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #111;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

nav.mobile-navigation #menuToggle span:first-child {
  transform-origin: 0% 0%;
}

nav.mobile-navigation #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
nav.mobile-navigation #menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #111;
}

/*
 * But let's hide the middle one.
 */
nav.mobile-navigation #menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


nav.mobile-navigation #menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
nav.mobile-navigation #menu
{
  position: fixed;
  width: 330px;
  margin: -100px 0 0 -230px;
  padding: 50px 30px;
  padding-top: 110px;
  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  height: 100vh;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

nav.mobile-navigation #menu li
{
  padding: 10px 0;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
font-weight: 600;
}

nav.mobile-navigation #menuToggle input:checked ~ ul
{
  transform: none;
}





.row {
    width: 100%;
    display: block;
}

/*a.play {
    display: none !important;
}

a.pause {
    display: none !important;
}*/


.content {
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-flex-wrap: wrap; 
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap; 
    overflow: hidden;
}

.content1 {
    width: 55%; 
    float: left; 
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex;
    background-image: url(../images/symbol-1.png), url(../images/symbol-2.png);
    background-repeat: no-repeat;
    background-position: left center, right bottom -20px;
}


.content2 {
    width: 45%; 
    float: left; 
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex;
}

.content2 img {
    box-shadow: -2px 0 8px 0px rgba(0, 0, 0, 0.15);
}

.content-text{
    padding-left: 360px;
    margin-top: 7%;
}
.content1 h3 {
color: #392b93;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 22px;
line-height: 1.3;

}

.content1 h2 {
color: #111111;
font-family: "Montserrat", sans-serif;
font-weight: 800;
font-size: 40px;
line-height: 1.3;
text-transform: uppercase;

max-width: 500px;
}

.content1 .content-text p {
color: #777777;
font-family: 'Roboto';
font-size: 18px;
line-height: 1.5;

max-width: 500px;
padding-top: 20px;
}

button.button {
    display: block;
    margin-top: 30px;
    color: #111111;
    background: transparent;
    border: 1px solid #ffd940;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    
    font-size: 14px;
    height: 64px;
    width: 240px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

button.button:hover {
    border: 2px solid #ffd940;
    color: #ffd940;
}

.row.produkty {
    background-image: url(../images/produkty-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;;
    margin-right: auto;
}

.hp-produkty {
    padding: 60px 0 40px;
}

.hp-produkty h3 {
    color: #392b93;
    text-align: center;
   font-size: 22px;
   line-height: 1.3;
   font-family: "Montserrat", sans-serif;
font-weight: 500;
   
   margin: 0;
   padding-bottom: 15px;
}

.hp-produkty h2 {
    color: #111111;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    margin: 0;
}

.banner-hp {
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-flex-wrap: wrap; 
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap; 
    overflow: hidden;
}

.banner-hp .col-4 {
    width: 31.33%; 
    float: left; 
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex;
    margin-left: 1%;
    margin-right: 1%;
    text-align: center;
}

.banner1, .banner2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background: #fff;
    padding: 40px 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.banner1, .banner2, .banner3 {
    box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.2);
    margin-bottom: 25px;
}

.banner-hp h3 {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.banner3 h3 {
  color: #fff;
    text-transform: uppercase;  
}

.banner3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
    width: 100%;
    background-image: url(../images/banner3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.banner3 p {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto';
    line-height: 2;
    
}

.banner3 button.button {
    margin-left: 0;
    margin-right: 0;
    float: none;
    position: relative;
    display: inline-block;
    color: #fff;
    transition: all 0.2s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

.banner3 button.button:hover {
    color: #ffd940;
}

.button-cp {
  display: block;
}

.banner1 img, .banner2 img {
    height: 200px;
    width: auto;
    transition: all 0.25s ease-in-out;
} 

.banner1:hover img, .banner2:hover img {
    transform: scale(1.1);
}


.row.icony {
    padding: 50px 0 90px;
    margin-top: 100px;
    border-bottom: 1px solid #eeeeee;
}

.icony-home {
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-flex-wrap: wrap; 
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap; 
    overflow: hidden;
}

.icony-home .col-4 {
    width: 31.33%; 
    float: left; 
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex;
    margin-left: 1%;
    margin-right: 1%;
    text-align: left;
}


.icon-img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}

.icons h4 {
    display: inline-block;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
}


.row.clanky {
    background-image: url(../images/Background-house.png);
    background-repeat:no-repeat;
    background-position: bottom -100px right -80px;
    background-size: 400px;
    padding: 50px 0;
}

.row.clanky h2 {
    font-size: 40px;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
}

.novinky-post {
    display: block;
}

.novinky-post .col-6 {
    width: 49%; 
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

.novinky-post .datum {
    display: inline-block;
    min-width: 80px;
    min-height: 70px;
    width: 80px;
    height: 70px;
    border: 2px solid #42359a;
    text-align: center;
    color: #42359a;
    margin-right: 25px;
}

.novinky-post .datum p {
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 1.5;
}

.novinky-post .post-title {
    display: inline-block;
    width: auto;
    padding-right: 15px;
}

.novinky-post .post-title a {
    font-family: 'Roboto';
    font-size: 18px;
    color: #777777;
    line-height: 1.3; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.novinky-post .post-title p {
    margin: 0px;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.novinky-post .post-title a:hover {
    color: #42359a;
}

.novinky-post .post {
    display: flex;
    margin-bottom: 20px;
}

.footer .row.top { 
background: url(../images/background-texture.png),  #363aa2;
}

.footer-icons {
display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-flex-wrap: wrap; 
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap; 
    overflow: hidden;
    padding: 50px 0;
}

.footer-icons .col-4 {
    width: 31.33%; 
    float: left; 
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex;
    margin-left: 1%;
    margin-right: 1%;
    text-align: left;
}

.ikona-footer {
    display: inline-block;
    margin-right: 25px;
    vertical-align: middle;
    position: relative;
}

.ikona-footer img {
    vertical-align: middle;
    top: 25px;
    position: relative;
}

.footer-text {
    display: inline-block;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
}


p.f-title {
    color: #ffd93f !important;
    font-family: "Montserrat", sans-serif;
font-weight: 700 !important;
    font-size: 14px !important;
}

.footer-text a {
    color: #fff;
    font-size: 20px;
    font-family: 'Roboto';
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.15s ease;
}

.footer-text a:hover {
    color: #ffd93f;
}

.footer-text p {
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.4;
}

.row.bottom {
    background-color: #2e2b40;
}

.menu-footer {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.menu-footer ul {
    margin-left: 0;
    margin-bottom: 0;
    padding: 15px 30px 30px;
}

.menu-footer ul {
    display: flex;
    flex: 1 1 0;
    justify-content: space-between;
}

.menu-footer ul li {
    list-style: none;
}

.menu-footer ul li a {
    color: #fff;
    font-family: "Montserrat", sans-serif;
font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s ease;
}

.menu-footer ul li a:hover {
    color: #ffd93f
}

.container.copyright {
    padding: 30px 0;
}

.container.copyright .col-9 {
    width: 68%; 
    display: inline-flex;
    text-align: left;
    vertical-align: top;
}

.container.copyright .col-3 {
    width: 31%;
    display: inline-flex;
    position: relative;
    float: right;
    vertical-align: top;
}

.container.copyright .col-9 img {
    display: flex;
    margin-right: 20px;
}

.copyright-text {
    display: flex;
    width: auto;
    padding: 0 15px 0 0;
}

.copyright-text p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Roboto';
}

.container.copyright button.button {
    margin-top: 10px;
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

.container.copyright button.button:hover {
    color: #ffd940 !important;
}

.container.copyright button.button {
    width: 280px;
}


/***O NAS***/

.row.title {
    background: url(../images/o-nas-header.png), #392b95;
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.row.title h1 {
    color: #fff;
    text-align: center;
    font-size: 60px;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.row.onas1 h2 {
    max-width: 640px;
}

.row.onas1 .content1 .content-text p {
    max-width: 600px;
}

.row.onas1 .content1 h3 {
    max-width: 500px;
}

.row.onas1 {
    background-image: url(../images/o-nas-content1-background.jpg);
}

.row.onas1 .content1 {
    background-image: none;
}

.mam-zaujem-button {
    display: block;
    background: url(../images/mam-zaujem-button.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    max-width: 500px;
    text-decoration: none;
    margin-top: -4px;
    transition: all 0.25s ease-in-out;
}

.row.onas1 .content2 img {
    display: inline-flex;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.row.onas1 .content2 {
    width: 45%;
    float: left;
    display: block;
}

.mam-zaujem-button .inner {
    display: block;
    position: relative;
left: 50px;
top: 50%;
transform: translateY(-50%);
}

.mam-zaujem-button .inner img,
.mam-zaujem-button .inner p {
    display: inline-block;
    vertical-align: middle;
}

.mam-zaujem-button .inner p {
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    color: #000;
    margin-left: 40px;
}

.mam-zaujem-button:hover {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

.row.text-onas {
    padding: 80px 0 60px;
}

.row.text-onas .col-7.text1 {
    display: inline-block;
    width: 57.5%;
    vertical-align: top;
}

.row.text-onas .col-5.text2 {
    display: inline-block;
    width: 41.5%;
    vertical-align: top;
    border: 4px solid #3a2c93;
}

.col-7.text1 .text-left p {
    margin: 0;
    font-size: 18px;
    font-family: 'Roboto';
    max-width: 620px;
    line-height: 2;
}

.col-5.text2 p {
    color: #3a2c93;
    padding: 50px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 2;
}

.row.icony.onas {
    padding: 50px 0 50px;
    margin-top: 0px;
    border-top: 1px solid #eeeeee;
    border-bottom: none;
}

.row.onas-imagebanner {
    background-image: url(../images/Background-house.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top 30px left 60px;
    padding-bottom: 100px;
}

.onasbluebanner {
    background: url(../images/blue-banner-bgr.png), linear-gradient(to right, #383099, #324fb6);
    background-repeat: no-repeat;
    width: 600px;
    height: 300px;
    transform: translate(-50px, -150px);
    z-index: 3;
}

.onasbluebanner p {
    color: #fff;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 30px;
    position: relative;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.onasbgimage {
    margin-bottom: -300px;
}


/***PLASTOVE KONSTRUKCIE***/

.row.plast-konstrukcie .content1 .content-text p {
    max-width: 600px;
}

.row.plast-konstrukcie .content1 .content-text p strong {
    color: #000;
}

.row.plast-konstrukcie .content1 h3 {
    max-width: 600px;
}

.row.plast-konstrukcie {
    background: #f4f4f4  ;
}

.row.plast-konstrukcie .content1 {
    background-image: none;
}

.row.plast-konstrukcie .content2 img {
    display: inline-flex;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.row.plast-konstrukcie .content2 {
    width: 45%;
    float: left;
    display: block;
}

.row.plast-1 {
    padding: 100px 0 50px;
}

.row.plast-1 .image-left {
    position: absolute;
    display: block;
    float: left;
}

.white-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.13);
    padding-bottom: 5px;
    background-image: url(../images/lines-bgr.png);
    background-repeat: no-repeat;
}

#show-more {
    display: block;
    background-color: transparent;
    width: auto;
    font-size: 14px;
    text-transform: uppercase;
    margin: 40px 0px 40px 0px;
    cursor: pointer;
    height: auto;
    padding: 0;
    color: #392b92;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    transition: all 0.15 ease-in-out;
    border: 0px;
}

#show-more2 {
    display: block;
    background-color: transparent;
    width: auto;
    font-size: 14px;
    text-transform: uppercase;
    margin: 40px 0px 40px 0px;
    cursor: pointer;
    height: auto;
    padding: 0;
    color: #392b92;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    transition: all 0.15 ease-in-out;
    border: 0px;
}


#show-more:after, #show-more2:after {
    content: url(../images/arrow-down.png);
    display: inline-block;
    position: relative;
    top: -3px;
    left: 10px;
}

#show-more:hover, #show-more2:hover {
    color: #ffd93f;
}

#show-more:focus, #show-more2:focus {
    outline: none;
}


.text-inner {
    padding: 30px 50px 0px 130px;
}


.row.plast-1 h2, .row.plast-2 h2 {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
}

.row.plast-1 p, .row.plast-2 p {
    font-size: 18px;
    font-family: 'Roboto';
    color: #777;
    line-height: 2;
}

.row.plast-2 {
    padding: 100px 0 50px;
}

.row.plast-2 .text-inner {
    padding: 30px 130px 0px 50px;
}

.row.plast-2 .image-right {
    display: block;
    margin-right: 0;
    margin-left: auto;
    float: right;
}

.row.plast-2 .white-block {
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.13);
    padding-bottom: 5px;
    background-image: url(../images/lines-bgr.png);
    background-repeat: no-repeat;
}

.row.plast-2 .text-inner {
    padding: 30px 130px 0px 50px;
}

.row.plast-3  {
    padding: 100px 0 50px;
}

.row.plast-3 .image-left {
    position: absolute;
    display: block;
    float: left;
}

.row.plast-3 .white-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.13);
    padding-bottom: 5px;
    background-image: url(../images/lines-bgr.png);
    background-repeat: no-repeat;
}

.row.plast-3 .text-inner {
    padding: 30px 50px 30px 130px;
}

.row.plast-3 h2 {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
}

.row.plast-3  p {
    font-size: 18px;
    font-family: 'Roboto';
    color: #777;
    line-height: 2;
}

#more {display: none;}
#more2 {display: none;}


.row.kovanie {
    background-image: url(../images/kovanie-bgr.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 100px 0 300px 0;
    margin-top: 50px;
}

.row.kovanie h2 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
}

.row.kovanie p {
    font-family: 'Roboto';
}

.row.kovanie p strong {
    font-family: 'Roboto Bold';
    font-size: 20px;
    line-height: 1.8;
} 

.row.kovanie p.small {
    font-size: 16px;
    line-height: 1.7;
}

.row.kovanie h3 {
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    margin: 0;
}

.row.kovanie .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: top;
    
}

.row.kovanie .col-4 {
    width: 34%;
display: inline-block;
}

.row.kovanie .text-1 {
    padding: 0 80px 0 0px; 
}

.row.kovanie .text-2 {
    padding: 0 0px 0 30px; 
}

.row.zasklenie {
    margin-top: 0px;
    background: url(../images/symbol-3.png) #f4f4f4;
    background-repeat: no-repeat;
    background-position: right 120px top -110px;
    background-size: auto;
    margin-bottom: -100px;
}

.row.zasklenie .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
}

.row.zasklenie .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: middle;
}

.row.zasklenie .container {
    transform: translateY(-200px);
    background: #fff;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    padding: 30px 0;
}

.row.zasklenie .text-inner {
    padding: 15px 30px 0px 50px;
}

.row.zasklenie h3 {
    margin: 0;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    color: #392b92;
}

.row.zasklenie h2 {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    line-height: 1.5;
    margin-top: 10px;
}

.row.zasklenie p.dark {
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.5;
    color: #111111;
}

.row.zasklenie p {
    font-family: 'Roboto';
    font-size: 16px;
    color: #777777;
    line-height: 1.5;
}


.row.a-thermo-pasiv {
    background: #f4f4f4;
    padding-bottom: 100px;
    padding-top: 60px;
}

.row.a-thermo-pasiv .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
}

.row.a-thermo-pasiv .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: middle;
}

.row.a-thermo-pasiv .col-6 {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.row.a-thermo-pasiv .col-3 {
    width: 24.5%;
    display: inline-block;
    vertical-align: middle;
}

.row.a-thermo-pasiv .container .col-4 {
    text-align: center;
}


.row.a-thermo-pasiv .yellow-box, .row.a-thermo-9000 .yellow-box {
    background: #ffd940;
    padding: 30px;
}

.row.kovanie .yellow-box {
    background: #ffd940;
    padding: 30px;
    margin-left: 30px;
}


.row.a-thermo-pasiv .yellow-box p, .row.a-thermo-9000 .yellow-box p, .row.kovanie .yellow-box p  {
     font-family: "Montserrat", sans-serif;
font-weight: 500;
     font-size: 18px;
     line-height: 1.7;
     text-align: left;
     margin: 0 0 15px 0;
     color: #111;
}

.row.a-thermo-pasiv .yellow-box a button.infoletak, .row.a-thermo-9000 .yellow-box a button.infoletak, .row.kovanie .yellow-box a button.infoletak  {
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: 1px solid #111;
    padding: 20px 0;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
}

.row.a-thermo-pasiv .yellow-box a button.infoletak:hover, .row.a-thermo-9000 .yellow-box a button.infoletak:hover, .row.kovanie .yellow-box a button.infoletak:hover   {
    border: 1px solid rgba(17, 17, 17, 0.5);
    color: rgba(17, 17, 17, 0.7);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

.row.a-thermo-pasiv .col-8 .inner {
    padding: 0 0px 0 80px;
}

.row.a-thermo-pasiv h2, .row.a-thermo-9000 h2  {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
}

.row.a-thermo-pasiv h3, .row.a-thermo-9000 h3 {
    color: #392b92;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    line-height: 1.5;
}

.row.a-thermo-pasiv p, .row.a-thermo-9000 p {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.6;
}

.row.a-thermo-pasiv .container.popis {
    margin-top: 60px;
    border: 1px solid #ddd;
}

.row.a-thermo-pasiv .container.popis h3 {
    font-size: 18px;
}

.row.a-thermo-pasiv .container.popis .col-3 {
    text-align: center;
}

.row.a-thermo-pasiv .container.popis .col-6 .inner {
    padding: 50px 0px 50px 50px;
}

.row.a-thermo-9000 {
    padding: 50px 0 100px;
}

.row.a-thermo-9000 .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
}

.row.a-thermo-9000 .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: middle;
}

.row.a-thermo-9000 .col-8 .inner {
    padding: 0 80px 0 0px;
}

.row.a-thermo-9000 .col-4 {
    text-align: center;
}

.row.a-thermo-9000 .col-4 img {
    width: 300px;
}


.row.farby-button {
    padding: 0 0 50px;
}

.row.farby-button .container {
    text-align: center;
}

a button.farebna-paleta {
    font-size: 16px;
    color: #111;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    background: #ffd93f;
    border: 2px solid #ffd93f;
    padding: 27px 48px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

a button.farebna-paleta:hover {
    background: transparent;
}

a.video-link:before {
    content: '';
    background-image: url(../images/icon-play-button.png);
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    top: -2px;
}

a.link-pdf:before {
    content: '';
    background-image: url('../images/file.png');
    width: 23px;
    height: 23px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    top: -2px;
}

a.video-link, a.link-pdf  {
    color: #000;
}
a.video-link:hover, a.link-pdf:hover  {
   color: #392b92;
}


/***HLINIKOVE KONSTRUKCIE***/
.row.hlinik-konstrukcie .content1 .content-text p {
    max-width: 600px;
}

.row.hlinik-konstrukcie .content1 .content-text p strong {
    color: #000;
}

.row.hlinik-konstrukcie .content1 h3 {
    max-width: 600px;
}

.row.hlinik-konstrukcie {
    background: #f4f4f4  ;
}

.row.hlinik-konstrukcie .content1 {
    background-image: none;
}

.row.hlinik-konstrukcie .content2 img {
    display: inline-flex;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.row.hlinik-konstrukcie .content2 {
    width: 45%;
    float: left;
    display: block;
}

.row.vyhody-ho {
    padding: 50px 0 20px;
}

.row.vyhody-ho .col-6 {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.row.vyhody-ho h3 {
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    line-height: 1.5; 
}

.row.vyhody-ho li {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.5;
    max-width: 500px;
}

.col-6.vyhody ul {
    list-style: none;
    padding-left: 0;
}
.col-6.vyhody li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.col-6.vyhody li:before {
    content: '';
    width: 16px;
    height: 12px;
    position: absolute;
    background-image: url('/images/check.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 7px;
}

.col-6.nevyhody ul {
    list-style: none;
    padding-left: 0;
}
.col-6.nevyhody li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.col-6.nevyhody li:before {
    content: '';
    width: 14px;
    height: 13px;
    position: absolute;
    background-image: url('/images/cross.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 7px;
}

.row.aluprof {
    background-image: url(../images/hlinikove-konstrukcie-bgr.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    margin-top: 50px;
}

.row.aluprof h2 {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}
.row.aluprof p {
    font-family: 'Roboto';
    max-width: 800px;
    margin: 20px 0 20px 0;
}

.row.aluprof p strong {
    font-family: 'Roboto Bold';
    font-size: 20px;
    line-height: 1.8;
} 

.row.aluprof p.small {
    font-size: 16px;
    line-height: 1.7;
}

.row.kovanie h3 {
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    margin: 0;
}

.row.system-mb-70 {
    background: #f4f4f4;
    padding-bottom: 100px;
    padding-top: 50px;
}

.row.system-mb-70 .col-8,
.row.system-mb-86 .col-8,
.row.system-mb-104 .col-8  {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
}

.row.system-mb-70 .col-8 .inner,
.row.system-mb-104 .col-8 .inner {
    padding: 0 0px 0 80px;
}

.row.system-mb-70 .col-4,
.row.system-mb-86 .col-4,
.row.system-mb-104 .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: middle;
}

.row.system-mb-70 .col-4 img,
.row.system-mb-86 .col-4 img,
.row.system-mb-104 .col-4 img  {
    width: 100%;
}

.row.system-mb-70 h2,
.row.system-mb-86 h2,
.row.system-mb-104 h2 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
}

.row.system-mb-70 h3,
.row.system-mb-86 h3,
.row.system-mb-104 h3 {
    color: #392b92;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    line-height: 1.5;
}

.row.system-mb-70 p,
.row.system-mb-86 p,
.row.system-mb-104 p {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.6;
}

.row.system-mb-86 {
    padding-bottom: 100px;
    padding-top: 50px;
}

.row.system-mb-86 .col-8 .inner {
    padding: 0 80px 0 0px;
}

.row.system-mb-104 {
    background: #eee;
    padding-bottom: 100px;
    padding-top: 80px;
}

.row.system-mb-104 p strong {
    font-family: 'Roboto Bold';
    color: #111;
}

.vyhody-white {
    margin-top: 40px;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1)
}

.vyhody-white h3 {
    font-size: 20px !important;
    color: #111 !important;
    font-family: "Montserrat", sans-serif;
font-weight: 700 !important;
    margin: 0;
}

.vyhody-white li {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.5;
}

.vyhody-white ul {
    list-style: none;
    padding-left: 0;
    margin-left: 15px;
}

.vyhody-white li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.vyhody-white li:before {
    content: '';
    width: 16px;
    height: 12px;
    position: absolute;
    background-image: url('/images/check.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 7px;
}

.container.bordered {
    margin-top: 50px;
    padding-right: 13px;
}

.container.bordered .inner {
    border: 4px solid #392b93;
    padding: 20px 20px;
    text-align: center;
}

.container.bordered .inner p {
    color: #392b93;
    font-size: 18px;
    line-height: 2;
    font-family: 'Roboto';
}

.row.farby-button.hlinik {
    background: #eee;
}


/***KONTAKT***/

.row.kontakt {
    padding: 50px 0;
}

.row.kontakt h2 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    margin: 0 0 10px 0;
}

.row.kontakt h3 {
    color: #392b93;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    
}

.row.kontakt p {
    color: #777777;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.row.kontakt .col-3  {
    width: 33.1%;
    display: inline-block;
    vertical-align: top;
}



.row.kontakt li.adresa,
.row.kontakt li.tel,
.row.kontakt li.mobil,
.row.kontakt li.email,
.row.kontakt li.email a,
.row.kontakt li.fax {
    color: #777777;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.row.kontakt ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0px;
}

.row.kontakt li.adresa,
.row.kontakt li.tel,
.row.kontakt li.mobil,
.row.kontakt li.email,
.row.kontakt li.fax  {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.row.kontakt li.adresa:before {
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    background-image: url('../images/icon-adresa.png');
    background-size: contain;
    background-position: center;
    left: 0;
    top: 2px;
}

.row.kontakt li.tel:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url('../images/icon-telefon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 2px;
}

.row.kontakt li.mobil:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url('../images/icon-mobil.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 2px;
}

.row.kontakt li.fax:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url('../images/icon-fax.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 2px;
}

.row.kontakt li.email:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url('../images/icon-email.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 2px;
}

.row.kontakty {
    background: #eee;
    padding: 50px 0;
}

.row.kontakty .col-4 {
    width: 24.5%;
    display: inline-block;
    vertical-align: top;
}

.row.kontakty .col-4 p {
    font-family: 'Roboto';
    color: #111;
    line-height: 1.5;
}

.row.kontakty .col-4 p a {
    font-family: 'Roboto';
    color: #111;
    line-height: 1.5;
    font-size: 18px;
}

.row.kontakty .col-4 p a:hover {
    font-family: 'Roboto';
    color: #392b93;
}

.row.kontakty .col-4 p strong {
    font-family: 'Roboto Bold';
    font-size: 20px;
}

h3.info {
    color: #111;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    
    margin-top: 50px;
}

h3.info span {
color: #392b93;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}

.map {
    margin-bottom: -30px;
}


/***REFERENCIE***/


.row.referencie-1 {
    background: #fff;
    padding: 50px 0;
}

.row.referencie-1 .col-6 {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
}

.row.referencie-1 h3 {
    color: #111;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    
    text-transform: uppercase;
}

ul.referencie-zoznam {
    list-style: none;
    padding-left: 0;
    margin-left: 0px;
}

ul.referencie-zoznam li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px !important;
    color: #777777;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

ul.referencie-zoznam li:before {
    content: '';
    width: 16px;
    height: 12px;
    position: absolute;
    background-image: url('../images/check.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 7px;
}

.row.galeria {
    padding: 50px 0;
    background: #eee;
}


/***DVERE***/

.row.vchodove-dvere {
    background: #fff;
    padding-bottom: 100px;
    padding-top: 50px
}

.row.vchodove-dvere .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: middle;
}

.row.vchodove-dvere .col-8 .inner, .row.dvere-hst .col-8 .inner {
    padding: 0 0px 0 80px;
}

.row.vchodove-dvere .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
}

.row.vchodove-dvere .col-4 img, .row.dvere-hst .col-4 img {
    width: 100%;
}

.row.vchodove-dvere h3.dverove-vyplne {
    color: #000 !important;
   font-family: "Montserrat", sans-serif;
font-weight: 900 !important;
}

.row.vchodove-dvere h2, .row.dvere-hst h2 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
}

.row.vchodove-dvere h3, .row.dvere-hst h3 {
    color: #392b92;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    line-height: 1.5;
}

.row.vchodove-dvere p, .row.dvere-hst p {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.6;
}

.loga-dodavatelia a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.loga-dodavatelia a img {
    max-width: 200px;
    max-height: 50px;
}

.row.vchodove-dvere .col-4, .row.dvere-hst .col-4 {
    text-align: center;
}

.row.vchodove-dvere .yellow-box, .row.dvere-hst .yellow-box {
    background: #ffd940;
    padding: 30px;
    margin-top: 30px;
}

.row.vchodove-dvere .yellow-box p, .row.dvere-hst .yellow-box p {
     font-family: "Montserrat", sans-serif;
font-weight: 500;
     font-size: 18px;
     line-height: 1.7;
     text-align: left;
     margin: 0 0 15px 0;
     color: #111;
}

.row.vchodove-dvere .yellow-box a button.infoletak, .row.dvere-hst .yellow-box a button.infoletak {
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: 1px solid #111;
    padding: 20px 0;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
}

.row.vchodove-dvere .yellow-box a button.infoletak:hover, .row.dvere-hst .yellow-box a button.infoletak:hover {
    border: 1px solid rgba(17, 17, 17, 0.5);
    color: rgba(17, 17, 17, 0.7);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

.row.vchodove-dvere .col-4 img {
    max-width: 300px;
}


.row.pvk-dvere .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: top;
}

.row.pvk-dvere .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: top;
}

.row.pvk-dvere .col-4 img {
    width: 100%;
}

.row.pvk-dvere h2 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-top: 0;
}

.row.pvk-dvere h3 {
    color: #392b92;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    line-height: 1.5;
}

.row.pvk-dvere p {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.6;
}

.row.pvk-dvere {
    padding-bottom: 100px;
    padding-top: 70px;
    background: #eeeeee;
}

.row.pvk-dvere .col-8 .inner {
    padding: 0 80px 0 0px;
}


.row.dvere-hst {
    padding-bottom: 80px;
    padding-top: 80px;
}

.row.dvere-hst .video-section {
    margin-top: 50px;
}

.row.dvere-hst p strong {
    font-family: 'Roboto Bold';
    color: #111;
}

.row.dvere-hst .col-8 {
    width: 65%;
    display: inline-block;
    vertical-align: top;
}

.row.dvere-hst .col-4 {
    width: 34%;
    display: inline-block;
    vertical-align: top;
}

/***SLUZBY***/

.row.sluzby-servis h2 {
    max-width: 640px;
}

.row.sluzby-servis .content1 .content-text p {
    max-width: 600px;
}

.row.sluzby-servis .content1 h3 {
    max-width: 600px;
}

.row.sluzby-servis .content-text {
    padding-left: 360px;
    margin-top: 3%;
}

.row.sluzby-servis .content-text strong {
    color: #111;
    font-family: 'Roboto Bold';
}

.row.sluzby-servis {
    background-image: none;
    background-color: #f4f4f4;
}

.row.vchodove-dvere.sluzby-doplnky .col-4 img {
    max-width: 100%;
}

.row.sluzby-servis .content1 {
    background-image: none;
}

.row.sluzby-servis .content2 img {
    display: inline-flex;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.row.sluzby-servis .content2 {
    width: 45%;
    float: left;
    display: block;
}

.row.na-stiahnutie {
    background: url(../images/symbol-4.png) #eee;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 50px 0;
}

.row.na-stiahnutie h2, .row.video-nastavenie h2 {
   font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
    line-height: 1.5;
}

.download ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0px;
}

.download ul li {
    margin-bottom: 15px !important;
}

.download ul li a {
    position: relative;
    padding-left: 30px;
    color: #111;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}

.download ul li a:hover {
    color: #392b92;
}

.download ul li a:before {
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    background-image: url('../images/file.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 0px;
}

.row.video-nastavenie {
    padding: 30px 0 100px;
}

/***FAREBNA PALETA***/

.row.farby {
    padding: 50px 0;
}

.row.farby h2 {
    color: #111111;
font-family: "Montserrat", sans-serif;
font-weight: 800;
font-size: 40px;
line-height: 1.3;
text-transform: uppercase;

margin-bottom: 10px;
}


.row.farby h3 {
    color: #392b92;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 22px;
line-height: 1.3;

}

.row.farby li {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.5;
}

.row.farby ul {
    list-style: none;
    padding-left: 0;
}
.row.farby li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.row.farby li:before {
    content: '';
    width: 16px;
    height: 12px;
    position: absolute;
    background-image: url('/images/check.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 7px;
}

.row.color-swatche .col-6 {
    width: 49.5%; 
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

.image-zoom {
    width: 90px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60px;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
}

.swatch-title {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
    color: #111;
    font-family: 'Roboto';
}

.image-zoom span {
    width: 90px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60px;
    display: block;
    cursor: pointer;
}

.image-zoom:hover {
    transform: scale(3.5);
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.image-zoom:hover .image-zoom:not(:hover) {
 z-index: 5;
}

.row.color-swatche .swatch {
    margin-bottom: 20px;
}

.image-zoom img {
    width: 100%;
    height: 100%;
}

.row.color-swatche .small-text {
    font-family: 'Roboto';
    font-size: 14px;
    line-height: 1.5;
    color: #777
}

.row.farby p {
    color: #777;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.5;
}

.row.color-swatche h3 {
    color: #111;
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    text-transform: uppercase;
}

.swatch-title span.small-title {
    color: #777;
    font-size: 12px;
}

.row.color-swatche.folie {
    padding-top: 50px;
}

h4 {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
font-weight: 600;
    text-transform: uppercase;
}





/***RESPONSIVE***/

@media (max-width: 1660px) {
    .logo {
    margin-left: 30px;
}
.menu {
    margin-right: 30px;
}
.menu ul li a {
    font-size: 12px;
}
.menu ul li {
    margin-left: 10px;
    margin-right: 10px;
}
.logo img {
    height: 40px;
}}

@media (max-width: 1300px) {
.logo img {
    height: 30px;
}
.menu ul li a {
    font-size: 12px;
}
.menu ul li {
    margin-left: 5px;
    margin-right: 5px;
}}

@media (max-width: 1100px) {
.menu ul li a {
    font-size: 10px;
}}



@media (max-width: 1000px) {
.skdslider {
    display: none !important;
}}

@media (min-width: 1000px) {
    .row.slide-mobile {
        display: none;
}}


@media (max-width: 1600px) {
.content1.home {
   background-image: url(../images/symbol-2.png);
   background-position: right bottom -20px;
}}

@media (max-width: 1600px) and (min-width: 1201px) {
.skdslider .slide-desc {
    padding: 50px 15px 0 80px !important;
    top: 0px !important;
}
.skdslider .slide-desc > h1 {
    font-size: 48px !important;
}

.skdslider .slide-desc > h1.slide-3 {
    font-size: 36px !important;
}

.skdslider .slide-desc img {
    width: auto;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
}}

@media (max-width: 1200px) {
.skdslider .slide-desc {
    padding: 50px 15px 0 80px !important;
    top: 0px !important;
    max-width: 100% !important;
}
.skdslider .slide-desc > h1 {
    font-size: 28px !important;
}

.skdslider .slide-desc > h1.slide-3 {
    font-size: 28px !important;
}

.skdslider .slide-desc img {
    width: auto;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
}

.skdslider .slide-desc > p {
    font-size: 16px !important;
    margin-bottom: 10px !important;
}}


@media (max-width: 1000px) {
.row.slide-mobile {
    height: 600px;
    background-image: url(../images/slides/3.jpg);
    background-size: cover;
    background-position: center;
}

.row.slide-mobile .content {
    display: block;
    padding: 50px;
}

.row.slide-mobile .content h3 {
 font-size: 22px;
 font-family: "Montserrat", sans-serif;
font-weight: 600;
 color: #ffd93f;
}

.row.slide-mobile .content h1 {
    color: #fff;
font-family: "Montserrat", sans-serif;
font-weight: 800;
font-size: 44px;
line-height: 1.5;
text-transform: uppercase;

margin-bottom: 10px;
}

.row.slide-mobile button.button {
    margin-top: 50px;
    color: #ffd940;
    width: 250px;
}

.content {
    display: block;
}

.content1 {
    width: 100%;
    float: none;
    display: block;
    background-image: none;
}

.content-text {
    padding-left: 0px;
    padding: 25px;
    margin-top: 0%;
}

.content1 h2 {
    font-size: 22px;
}

.content2 {
    width: 100%;
    float: none;
    display: block;
}

.content2 img {
    width: 100%;
}

.hp-produkty h2 {
    font-size: 22px;
}
.banner-hp .col-4 {
    width: 100%;
    float: none;
    display: block;
    display: -ms-flexbox;
    display: flex;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
}

.banner1, .banner2 {
    width: 100%;
    padding: 20px;
}

.row.produkty {
    height: 100%;
    background-image: url(../images/produkty-background.jpg);
    background-repeat: no-repeat;
    background-size: auto 300px;
}
.hp-produkty {
    padding: 30px 0 40px;
}

.row.icony {
    padding: 30px 0 50px;
    margin-top: 0px;
    border-bottom: 1px solid #eeeeee;
}

.icony-home {
    display: block;
}

.icony-home .col-4 {
    width: 100%;
    float: none;
    margin-left: 25px;
    margin-right: 25px;
    text-align: left;
}

.icon-img {
    width: 60px;
    text-align: center;
}

.icons h4 {
    display: inline-block;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
}

.row.clanky h2 {
    font-size: 22px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 50px;
}

.novinky-post .col-6 {
    width: 100%;
    display: block;
    text-align: left;
    padding-left: 25px;
    padding-right: 25px;
}

.novinky-post .datum {
    display: block;
    min-width: 80px;
    min-height: 70px;
    width: 80px;
    height: 70px;
    border: 2px solid #42359a;
    text-align: center;
    color: #42359a;
    margin-right: 15px;
}
.novinky-post .post {
    display: block;
    margin-bottom: 25px;
}

.novinky-post .datum {
    display: block;
    min-width: 100px;
    min-height: 50px;
    width: 100px;
    height: 50px;
    margin-right: 25px;
}

.novinky-post .post-title p {
    margin: 0px;
    top: 0%;
    position: relative;
    transform: translateY(0%);
    margin-top: 10px;
}

.novinky-post .datum p {
    font-family: "Montserrat", sans-serif;
font-weight: 700;
    font-size: 13px;
    line-height: 1.1;
}

  .container.copyright .col-9 {
    width: 100%;
    display: block;
    text-align: left;
}  

.container.copyright .col-3 {
    width: 100%;
    display: block;
    position: relative;
    float: none;
}
.container.copyright button.button {
    margin-top: 10px;
    position: relative;
    right: 0;
    color: #fff;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
    -webkit-font-smoothing: antialiased;
}
.container.copyright {
    padding-left: 25px;
    padding-right: 25px;
}
.container.copyright .col-9 img {
    display: none;
    margin-right: 20px;
}}


@media (max-width: 480px) {
.novinky-post .col-6 {
    max-width: 300px;
}}


@media (max-width: 1000px) and (min-width: 640px) {
.footer-icons {
    padding: 25px;
}
.ikona-footer img {
    top: 15px;
    max-width: 30px;
    max-height: 30px;
}
.ikona-footer {
    margin-right: 15px;
}
.footer-text p {
    font-size: 15px;
    line-height: 1.6;
}
.footer-text a {
    font-size: 15px;
    line-height: 1.6;
}
.menu-footer ul {
    margin-left: 0;
    margin-bottom: 0;
    padding: 15px 20px 30px;
}
.menu-footer ul li a {
    font-size: 10px;
}}

@media (max-width: 640px) {
 .footer-icons {
    display: block;
    padding: 50px 25px;
}   

.footer-icons .col-4 {
    width: 100%;
    float: none;
}
.menu-footer ul {
    display: block;
}
.menu-footer ul li {
    list-style: none;
    margin-bottom: 20px;
    text-transform: uppercase;
}}



/***O NAS RESPONSIVE***/

@media (max-width: 1000px) {
.row.title h1 {
    font-size: 32px;
    line-height: 1.5;
}
.row.title {
    padding: 40px 0;
}


.row.onas1 .content2 img {
    display: block;
}
.row.onas1 .content2 {
    width: 100%;
    float: none;
}

.mam-zaujem-button {
    display: block;
    background: url(../images/mam-zaujem-button.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    max-width: 100%;
    text-decoration: none;
    margin-top: -4px;
    transition: all 0.25s ease-in-out;
}
.mam-zaujem-button .inner {
    position: relative;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}
.mam-zaujem-button .inner img {
    width: auto;
    height: 100%;
    display: inline-block;
     vertical-align: middle;
}

.mam-zaujem-button .inner p {
      display: inline-block;
      vertical-align: middle;
      margin: 10px 0px 0 15px;
}

.row.text-onas .col-7.text1 {
    display: block;
    width: 100%;
}

.text-left {
    padding-left: 25px;
    padding-right: 25px !important;
}

.row.text-onas .col-5.text2 {
    display: block;
    width: 90%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.row.onas-imagebanner {
    background-image: none;
    padding-bottom: 50px;
}

.onasbgimage img {
    width: 100%;
}
.onasbgimage {
    margin-bottom: -100px;
}
.onasbluebanner {
    width: 100%;
    max-width: 500px;
    height: 200px;
    transform: translate(-30px, 0px);
    z-index: 3;
}
.onasbluebanner p {
    font-size: 20px;
    position: relative;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}}

@media (max-width: 1600px) and (min-width: 1281px) {
.content-text {
    padding-left: 100px;
}}

@media (max-width: 1280px) and (min-width: 1025px) {
.content-text {
    padding-left: 40px;
}}

@media (max-width: 1024px) and (min-width: 1001px) {
.content-text {
    padding-left: 40px;
    padding-right: 30px;
}
.content1 h2 {
    font-size: 32px;
}

.col-7.text1 .text-left {
    padding-left: 25px;
    padding-right: 25px;
}

.row.text-onas .col-7.text1 {
    width: 57%;
}

.row.text-onas .col-5.text2 {
    width: 40%;
}}

@media (max-width: 1180px) and (min-width: 1001px) {
.row.plast-1 .text-inner,
.row.plast-3 .text-inner {
    padding: 30px 50px 0px 210px;
}
.row.plast-1 .image-left img,
.row.plast-2 .image-right img,
.row.plast-3 .image-left img {
    max-width: 380px;
}
.row.plast-2 .text-inner {
    padding: 30px 210px 0px 50px;
}
.row.kovanie .col-8 {
    width: 55%;
    padding: 0 2%;
}
.row.kovanie .text-1 {
    padding: 0 20px 0 0px;
}
.row.kovanie .col-4 {
    width: 38%;
    padding: 0 0 0 2%;
    vertical-align: top;
}

.row.kovanie .col-4 img {
    width: 100%;
}}



/***PLASTOVE KONSTRUKCIE RESPONSIVE***/

@media (max-width: 1000px) {
.row.plast-konstrukcie .content2 img {
    display: block;
}
.row.plast-konstrukcie .content2 {
    width: 100%;
    float: none;
}

.row.plast-konstrukcie .content1 h3,
.row.plast-konstrukcie .content1 .content-text p {
    max-width: 100%;
}

.row.plast-1 .image-left,
.row.plast-3 .image-left,
.row.plast-2 .image-right {
    position: relative;
    float: none;
}
.row.plast-1 .image-left img,
.row.plast-2 .image-right img,
.row.plast-3 .image-left img {
    width: 100%;
}

.white-block {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-position: top left -80px;
}

.row.plast-1 .text-inner,
.row.plast-3 .text-inner,
.row.plast-2 .text-inner  {
    padding: 30px 25px 0px 25px;
}

.row.plast-1 h2, .row.plast-2 h2, .row.plast-3 h2 {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
}

.row.kovanie {
    padding: 50px 0 350px 0;
}

.row.kovanie .col-8 {
    width: 100%;
    display: block;
}

.row.kovanie .col-4 {
    width: 100%;
    display: block;
}

.row.kovanie h2 {
    font-size: 22px;
padding: 0 25px;
}

.row.kovanie .col-8 img {
 padding: 0 25px;   
}

.row.kovanie .text-1 {
    padding: 0 25px 0 25px;
}
.row.kovanie p strong {
    font-size: 18px;
    line-height: 1.6;
}

.row.kovanie .text-2 {
    padding: 0 25px 0 25px;
}

.row.zasklenie .container {
    transform: translateY(-280px);
    background: #fff;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    padding: 25px 0;
    width: 90%
}

.row.zasklenie .col-8, .row.zasklenie .col-4,
.row.a-thermo-pasiv .col-4, .row.a-thermo-pasiv .col-8,
.row.a-thermo-pasiv .col-6, .row.a-thermo-pasiv .container.popis .col-3,
.row.a-thermo-9000 .col-8, .row.a-thermo-9000 .col-4  {
    width: 100%;
    display: block;
}

.row.zasklenie .text-inner {
    padding: 15px 25px 0px 25px;
}

.row.zasklenie .col-4 img,
.row.kovanie .col-4 img {
    width: 100%;
    max-width: 250px;
}
.row.zasklenie .col-4 {
    text-align: center;
}

.row.zasklenie {
    background: none #f4f4f4;
    margin-bottom: -200px;
}
.row.zasklenie h2 {
    font-size: 22px;
}

.row.a-thermo-pasiv .col-8 .inner,
.row.a-thermo-9000 .col-8 .inner {
    padding: 0 25px 0 25px;
}

.row.a-thermo-pasiv .container .col-4 img,
.row.a-thermo-9000 .col-4 img {
    width: 100%;
    max-width: 250px;
}

.row.a-thermo-pasiv h2, .row.a-thermo-9000 h2 {
    font-size: 32px;
}

.row.a-thermo-pasiv h3, .row.a-thermo-9000 h3 {
    font-size: 18px;
}

.row.a-thermo-pasiv .container.popis {
    margin-top: 60px;
    border: 1px solid #ddd;
    width: 90%;
    padding: 30px 0px 50px 0px;
}

.row.a-thermo-pasiv .container.popis .col-6 .inner {
    padding: 0px 25px 0px 25px;
}
}


/***HLINIKOVE RESPONSIVE***/

@media (max-width: 1000px) {
.row.hlinik-konstrukcie .content2 img {
    display: block;
}
.row.hlinik-konstrukcie .content2 {
    width: 100%;
    float: none;
}

.row.vyhody-ho .col-6, .row.system-mb-70 .col-4, .row.system-mb-86 .col-4, .row.system-mb-104 .col-4,
.row.system-mb-70 .col-8, .row.system-mb-86 .col-8, .row.system-mb-104 .col-8 {
    width: 100%;
    display: block;
}

.row.vyhody-ho h3,
.row.aluprof h2  {
    font-size: 22px;
    padding: 0 25px;
}

.col-6.vyhody ul,
.col-6.nevyhody ul,
.row.aluprof img,
.row.aluprof p {
    padding: 0 25px;
}

.row.aluprof p strong {
    font-size: 18px;
}

.row.system-mb-70 .col-4,
.row.system-mb-86 .col-4,
.row.system-mb-104 .col-4 {
    text-align: center;
}

.row.system-mb-70 .col-4 img,
.row.system-mb-86 .col-4 img,
.row.system-mb-104 .col-4 img {
    max-width: 200px;
}

.row.system-mb-70 .col-8 .inner, .row.system-mb-104 .col-8 .inner, .row.system-mb-86 .col-8 .inner {
    padding: 0 25px 0 25px;
}

.row.system-mb-70 h2, .row.system-mb-86 h2, .row.system-mb-104 h2 {
    font-size: 32px;
}

.container.bordered .inner {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}    
}


/***SLUZBY A SERVIS RESPONSIVE***/  


@media (max-width: 1600px) and (min-width: 1281px) {
.row.sluzby-servis .content-text {
    padding-left: 100px;
}}

@media (max-width: 1280px) and (min-width: 1025px) {
.row.sluzby-servis .content-text {
    padding-left: 40px;
}}

@media (max-width: 1024px) and (min-width: 1001px) {
.row.sluzby-servis .content-text {
    padding-left: 40px;
    padding-right: 30px;
}
.row.sluzby-servis .content1 h2 {
    font-size: 32px;
}

.row.sluzby-servis .col-7.text1 .text-left {
    padding-left: 25px;
    padding-right: 25px;
}}

@media (max-width: 1000px) {
.row.sluzby-servis .content-text {
    padding-left: 25px; 
}

.row.sluzby-servis .content2 img {
    display: block;
}
.row.sluzby-servis .content2 {
    width: 100%;
    float: none;
}
.row.sluzby-servis h2 {
    max-width: 540px;
}
.row.sluzby-servis .content1 h3 {
    max-width: 100%;
}
.row.sluzby-servis .content1 .content-text p {
    max-width: 100%;
}
.row.na-stiahnutie {
    background: #eee;
}

.row.na-stiahnutie .download {
    padding: 0 25px;
}

.row.video-nastavenie h2 {
    padding: 0 25px;
}
.row.na-stiahnutie h2, .row.video-nastavenie h2 {
    font-size: 22px;
}}




/***DVERE RESPONSIVE***/

@media (max-width: 1000px) {
.row.hlinik-konstrukcie .content1 .content-text p {
    max-width: 100%;
}

.row.hlinik-konstrukcie .content1 h3 {
    max-width: 100%;
}

.row.vchodove-dvere .col-4, .row.vchodove-dvere .col-8, .row.dvere-hst .col-4,
.row.pvk-dvere .col-8, .row.pvk-dvere .col-4, .row.dvere-hst .col-8 {
    width: 100%;
    display: block;
}

.row.vchodove-dvere .col-4 img, .row.dvere-hst .col-4 img {
    max-width: 250px;
}

.row.vchodove-dvere .col-8 .inner, .row.dvere-hst .col-8 .inner {
    padding: 0 25px 0 25px;
}

.row.pvk-dvere .col-8 .inner {
    padding: 0 25px 0 25px;
}
.row.vchodove-dvere h2, .row.dvere-hst h2, .row.pvk-dvere h2 {
    font-size: 28px;
    margin-top: 40px;
}
.row.pvk-dvere {
    padding-bottom: 0px;
    padding-top: 20px;
}

.row.pvk-dvere .col-4 img {
    display: none;
}}




/***REFERENCIE RESPONSIVE***/

@media (max-width: 1000px) {
.row.referencie-1 .col-6 {
    width: 100%;
    display: block;
}

.row.referencie-1 h3 {
    font-size: 22px;
    padding: 0 25px;
}

ul.referencie-zoznam li {
    font-size: 16px;
}

ul.referencie-zoznam {
   padding: 0 25px; 
}}






/***FARBY VZORKOVNIK RSPONSIVE***/

@media (max-width: 1000px) {
.row.title h1 {
    font-size: 32px;
    line-height: 1.5;
}

.row.farby h2, .row.farby h3, .row.color-swatche h3 {
    font-size: 22px;
    padding: 0 25px;
}

.row.farby img, .row.farby ul, .row.color-swatche .small-text, .row.farby p, h4 {
    padding: 0 25px;
}

.row.farby {
    padding: 30px 0;
}

.row.color-swatche .col-6 {
    width: 100%;
    display: block;
}

.row.color-swatche .swatch {
    padding: 0 25px;
    display: flex;
    margin-bottom: 35px;
}

.image-zoom {
    min-width: 90px;
    min-height: 60px;
}}





/***KONTAKT RESPONSIVE***/

@media (max-width: 1000px) {
.row.kontakt h2 {
    font-size: 22px;
    padding: 0 25px;
}

.row.kontakt img,
.row.kontakt h3, 
.row.kontakty .col-4 p {
    padding: 0 25px;
}

.row.kontakt .col-3, .row.kontakty .col-4 {
    width: 100%;
    display: block;
}

.row.kontakt ul {
  padding: 0 25px;  
}

.row.kontakt li.adresa, .row.kontakt li.tel, .row.kontakt li.mobil, .row.kontakt li.email, .row.kontakt li.fax {
    margin-bottom: 25px;
}

h3.info {
    font-size: 18px;
    padding: 0 25px; 
}}

.row.gdpr p,
.row.cookies p {
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 2;
    color: #777777;
}

.row.gdpr,
.row.cookies {
    padding-bottom: 30px;
}

.row.gdpr h3,
.row.cookies h3 {
    color: #392b93;
    font-family: "Montserrat", sans-serif;
font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    
}

.row.gdpr h2,
.row.cookies h2 {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
font-weight: 800;
}

@media (max-width: 1200px) {
    .row.gdpr .container,
   .row.cookies .container {
       padding-left: 15px !important;
       padding-right: 15px !important;
       max-width: 100%;
       width: auto;
   }
   }

   a.gdpr-link {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Roboto';
    text-decoration: underline;
}

img.rez {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 20% !important;
    height: auto !important;
}

div#aThermoKUBUS .col-4 img {
    width: auto;
}

div#aThermoKUBUS {
padding: 50px 0 80px;
background: #fff;
}