/*
Theme Name: myworks-base
Theme URI: http://myworks.pl/
Description: A theme used by MyWorks to create webpage.
Version: 3.3.1
Author: MyWorks
Author URI: http://myworks.pl/
Tags: myworks, theme
License: GNU General Public License v2.0 & Apache License 2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html http://www.apache.org/licenses/LICENSE-2.0
*/

/* HEADS UP: Everything that you will normally find here can be found in the library/less/wp.less */

/* COLORS */

:root {
    --coccine-light-color: #eee8da;
    --coccine-dark-color: #ac998c;
    --coccine-black-color: #2f2520;
    --coccine-bg-color: #f6f4ef;
}

/* GENERAL */

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
}

img {
    max-width: 100%;
}

.btn-outline-coccine {
    border-radius: 0;
    color: var(--coccine-light-color);
    border-color: var(--coccine-light-color);
    text-transform: lowercase;
}

.btn-outline-coccine-dark {
    border-radius: 0;
    color: var(--coccine-dark-color);
    border-color: var(--coccine-dark-color);
    text-transform: lowercase;
}
.color-light{
    color:var(--coccine-light-color) !important;
}
.color-dark{
    color:var(--coccine-dark-color) !important;
}
.fulllink{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:9;
}

.nopadding{
    padding:0;
}
/* HEADER */

.navbar {
    padding-top: 20px;
    padding-bottom: 30px;
    position: relative;
    z-index: 9;
}

.navbar .container {
    max-width: 100%;
}

.navbar-brand img {
    height: 40px;
}

.navbar-collapse {
    justify-content: space-between;
    padding-top: 10px;
}

.navbar-nav {
    margin-left: 30px;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 20px;
    text-transform: lowercase;
    color: #000;
    padding-right: 10px;
    padding-left: 10px;
}

.navbar .btn-outline-coccine {
    font-size: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 11px;
    padding-right: 11px;
    margin: 0 4px;
}

.language-chooser {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

.language-chooser li a {
    font-size: 16px;
    height: 36px;
    width: 36px;
    border: 1px solid var(--coccine-dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    color: var(--coccine-dark-color);
    margin: 0 5px;
}

.language-chooser li.active a {
    color: #fff;
    background: var(--coccine-dark-color);
}

.navbar-home .navbar-brand,
.navbar-home .navbar-nav {
    filter: invert(1);
}

.navbar-home .language-chooser li a {
    color: var(--coccine-light-color);
    border-color: var(--coccine-light-color);
}

.navbar-home .language-chooser li.active a {
    background: var(--coccine-light-color);
    color: var(--coccine-dark-color)
}

/* HOMEPAGE */

.section-hero {
    position: relative;
    z-index: 0;
    max-height: 1080px;
    margin-top: -106px;
}

.section-hero:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
}

.section-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.darken-bottom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}

.swiper-container-main {
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-pagination-bullet{
    background:#fff !important;
}
.swiper-pagination-bullet-active{
    background:var(--coccine-light-color) !important;
}
.hero-text{
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    color:var(--coccine-light-color);
    font-family:'Cormorant Garamond', sans-serif;
}
.hero-text .container{
    display: flex;
    max-width:1140px;
}
.hero-title{
        font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 45px;
}
.hero-desc{
    font-size:24px;
}

/* SECTION SLOGAN */
.section-slogan{
    padding:80px 0;
    background:#fff;
}
.title-section{
    margin-bottom:15px;
    font-size:40px;
    font-family:'Cormorant Garamond', sans-serif;
    line-height:1.3;
    font-weight:700;
    color:#000;
    text-align: center;
    position: relative;
    width:100%;
}
.title-section:after{
    content:"";
    position: absolute;
    bottom: -20px;
    left:50%;
    margin-left:-60px;
    width:120px;
    height:3px;
    background:var(--coccine-dark-color);
}
.subtitle-section{
    font-size:22px;
    line-height:1.2;
    font-weight:300;
    width:100%;
    margin-top:30px;
}

/* SECTION PORTRAIT LINKS */
.single-portrait-link {
	position: relative;
	overflow: hidden;
	
	height: 480px;
	background: #000;
	text-align: center;
	cursor: pointer;
}

.single-portrait-link img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.single-portrait-link .bg-img {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:0;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.single-portrait-link .caption {
	padding: 1em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.single-portrait-link .caption::before,
.single-portrait-link .caption::after {
	pointer-events: none;
}

.single-portrait-link .caption,
.single-portrait-link .caption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap:wrap;
}
.single-portrait-link .caption a, .single-portrait-link .caption div{
    width:100%;
}
.single-portrait-link .caption div{
    padding:0 15px;
}
.single-portrait-link .caption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.effect-ruby {
	background-color: #2f2520;
}


.effect-ruby .bg-img {
    opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}


.effect-ruby:hover .bg-img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.effect-ruby h2 {
	width:100%;
    -webkit-transform: translate3d(0,30px,0);
    transform: translate3d(0,30px,0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
    font-size:36px;
    font-family:'Cormorant Garamond', sans-serif;
    line-height:1.1;
    font-weight:700;
    color:var(--coccine-light-color);
}

.effect-ruby p {
	width:100%;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0) scale(1.1);
	transform: translate3d(0,20px,0) scale(1.1);
} 

.effect-ruby:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.effect-ruby:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0) scale(1);
	transform: translate3d(0,0,0) scale(1);
}

/* BANER */
.section-baner{
    position: relative;
}
.section-baner .container-holder{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index:1;
    display: flex;
    align-items: center;
}
.section-baner img{
    width:100%;
    position: relative;
    z-index:0;
}
.baner-title{
    font-weight:700;
    font-size:60px;
    line-height:1.3;
    font-family:'Cormorant Garamond', sans-serif;
}
.section-baner .row-button{
    margin-top: 60px;
}
.section-baner .row-button a{
    display: inline-block;
    width: 50%;
    font-size:20px;
}
.section-poradyslider{
    padding-bottom:80px;
}
.section-poradyslider .swiper-slide{
    background:none;
    flex-wrap:wrap;
}
.section-poradyslider .img, .single-porada .img{
    width:100%;
    margin-bottom:15px;
}
.section-poradyslider .cat-desc, .single-porada .cat-desc{
    margin-bottom:10px;
    width:100%;
    font-size:18px;
}
.section-poradyslider .title, .single-porada .title{
    width:100%;
    font-size:26px;
    font-weight:700;
    line-height:1.2;
    font-family:'Cormorant Garamond', sans-serif;
}
.section-poradyslider .swiper-button-next{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f4ef+100&0+0,1+100 */
background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(246,244,239,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(246,244,239,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(246,244,239,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f6f4ef',GradientType=1 ); /* IE6-9 */
    height: 100%;
    top: 20px;
    right: 0;
    /* bottom: 0; */
    display: flex;
    align-items: center;
    color: var(--coccine-black-color);
    justify-content: flex-end;
    padding-right:20px;
    width: 100px;
    font-size: 32px;
}
.section-poradyslider .swiper-button-prev{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f4ef+100&0+0,1+100 */
background: -moz-linear-gradient(right,  rgba(255,255,255,0) 0%, rgba(246,244,239,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(right,  rgba(255,255,255,0) 0%,rgba(246,244,239,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to left,  rgba(255,255,255,0) 0%,rgba(246,244,239,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f6f4ef',GradientType=1 ); /* IE6-9 */
    height: 100%;
    top: 20px;
    left: 0;
    /* bottom: 0; */
    display: flex;
    align-items: center;
    color: var(--coccine-black-color);
    justify-content: flex-start;
    padding-left:20px;
    width: 100px;
    font-size: 32px;
}
.section-news{
    margin-bottom:45px;
}
.section-news .date{
    font-size:18px;
    font-weight:300;
    margin: 20px 0;
    margin-bottom:10px;
}
.news-small .date{
    margin-top:0;
}
.section-news .title-section:after{
    display: none;
}
.news-small .title-section{
    font-size:36px;
}
.section-news .subtitle-section{
    font-size:22px;
    margin-top:10px; 
}
.single-news{
    position: relative;
    margin-bottom:30px;
}

/* FOOTER */
footer{
    min-height:50px;
    background:var(--coccine-dark-color);
    color:var(--coccine-light-color);
    padding:30px 0;
}
footer .navbar-nav{
       margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
}
footer a{
    color: var(--coccine-light-color) !important;
}
footer .navbar-nav .nav-link{
        color: var(--coccine-light-color);
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    text-transform: lowercase;
    font-size:20px;
}

footer .navbar-nav .nav-link:after{
        content:"";
    position: absolute;
    top:3px;
    bottom:3px;
    right: 0;
    width:2px;
    background:var(--coccine-light-color);
}
footer .navbar-nav li:last-child .nav-link:after{
        display: none;
}

footer .social-links{
        display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
    margin-top:3px;
}
footer .social-links a{
font-size: 16px;
    height: 36px;
    width: 36px;
    border: 1px solid var(--coccine-light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    color: var(--coccine-light-color);
    margin: 0 5px;
}
.footer-logo img{
    height:40px;
}
.row-info{
    margin-top:30px;
}
.row-copy{
    font-size:14px;
    font-weight:300;
}

/* SINGLE PORADA */
.row-singleheader{
    margin-top:30px;
    margin-bottom:45px;
}
.row-singleheader .date{
    font-size:22px;
    width:100%;
    font-weight:300;
}
.row-singleheader .title{
    font-family:'Cormorant Garamond', sans-serif;
    font-weight:700;
    font-size:64px;
    line-height:1.2;
    margin: 10px 0;
    width:100%;
}
.row-singleheader .category{
    font-size:22px;
    color:var(--coccine-dark-color);
    width:100%;
    font-weight:300;
}
.row-singlecontent{
    font-size:20px;
    line-height:1.3;
    margin-bottom:45px;
}
.lead{
    font-size:22px;
    font-weight:600;
    position: relative;
    margin-bottom:50px;
}
.lead:after{
    content:"";
    position: absolute;
    bottom: -30px;
    left:50%;
    margin-left:-60px;
    width:120px;
    height:3px;
    background:var(--coccine-dark-color);
}
.newsheader-img img{
    width:100%;
    margin-bottom:30px;
}
.news-cat-holder{
    position: relative;
}
.news-cat-holder:before{
    content: "";
    position: absolute;
    top: 60px;
    left: -999px;
    right: 15px;
    /* margin-left: -60px; */
    /* width: 120px; */
    height: 3px;
    background: var(--coccine-dark-color);
}

/* PRODUCT CATEGORY PAGE */
.headline-img{
    width:100%;
}
.row-headline .title, .row-headline .title-category{
     font-family:'Cormorant Garamond', sans-serif;
    font-weight:700;
    font-size:64px;
    line-height:1.2;
    margin: 10px 0;
    width:100%;
}
.row-headline .title-category{
    margin-bottom:60px;
    position: relative;
    color:var(--coccine-dark-color);
}
.row-headline .title-category:before{
    content: "";
    position: absolute;
    bottom: -30px;
    left: -999px;
    right: 30%;
    /* margin-left: -60px; */
    /* width: 120px; */
    height: 3px;
    background: var(--coccine-dark-color);
}
.row-headline .lead-desc{
        font-weight: 600;
    font-size: 22px;
    width: 70%;
    line-height: 1.6;
    margin-top: 80px;
}
.row-headline{
    margin-bottom:60px;
}
.single-line{
    width:100%;
    display: flex;
    position: relative;
}
.row-even-list .single-line:nth-child(2n-1) .col-4{
    text-align: right;
}
.row-even-list .text{
      font-family:'Source Sans Pro', sans-serif;
    font-weight:200;
    font-size:18px;
    line-height:1.2;
    margin: 30px 0;
    width:100%;
    
}
.row-even-list a.btn{
    font-size:20px;
    padding-left:45px;
    padding-right:45px;
}
.product-pic{
       position: absolute;
    bottom: -250px;
    right: 50%;
    margin-right: -100px;
    
}
.product-pic img{
    max-height:500px;
}
.with-productpic{
    margin-bottom:200px;
}
.single-porada{
    position: relative;
    margin-bottom:20px;
}
.porady-lista{
    margin-bottom: 45px;
}
.navbar-light .navbar-toggler-icon{
    background:none !important;
    height: auto !important;
    width: auto !important;
}
.navbar-toggler{
        line-height: 1;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px #000 solid;
    padding: 5px 15px;
}
.navbar-home .navbar-toggler{
    color:#fff;
    border-color:#fff;
}
/* RESPONSIVENESS */

@media(min-width:1400px) {
    .container {
        max-width: 1370px;
    }
}
@media(max-width:1400px){
    .effect-ruby h2{
        font-size:30px;
    }
    .single-portrait-link{
        height:440px;
    }
    .baner-title{
        font-size:52px;
    }
    .section-poradyslider .title, .single-porada .title{
        font-size:22px;
    }
    .section-poradyslider .cat-desc, .single-porada .cat-desc{
        font-size:16px;
    }
    .section-news .title-section{
        font-size:30px;
    }
    .news-small .title-section{
        margin-bottom:0;
        font-size:26px;
    }
    .section-news .date{
        margin-bottom:10px;
        line-height:1;
    }
    .section-news .subtitle-section{
        font-size:18px;
    }
    .single-porada .row-singleheader .title, .row-singleheader .title{
        font-size:56px;
    }
    .row-headline .title, .row-headline .title-category{
        font-size:56px;
    }
    .row-headline .lead-desc {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 40px;
}
    .row-even-list .text{
        font-size:18px;
    }
    .product-pic img {
    max-height: 410px;
}
}
@media(max-width:1200px){
    .navbar-brand img {
    height: 35px;
}
    .navbar-light .navbar-nav .nav-link {
    font-size: 18px;
        padding-left:10px;
        padding-right:10px;
    }
    .navbar .btn-outline-coccine {
    font-size: 18px;
    }
    .language-chooser li a{
        width:32px;
        height:32px;
    }
    .navbar-nav{
        margin-left:15px;
    }
    .hero-title {
    font-size: 50px;
    margin-bottom: 30px;
}
    .hero-desc {
    font-size: 22px;
}
    .title-section{
        font-size:36px;
    }
      .effect-ruby h2{
        font-size:24px;
    }
    .single-portrait-link{
        height:350px;
    }
    .baner-title{
        font-size:44px;
    }
    .subtitle-section{
        font-size:20px;
    }
    .section-baner .row-button a{
        font-size:18px;
    }
    .section-news .date{
        font-size:16px;
        }
    .section-news .title-section {
    font-size: 28px;
}
    .news-small .title-section {
    font-size: 22px;
}
    .section-news .btn{
        width: 30px;
    height: 30px;
    padding: 0;
    padding-top: 2px;
    }
    .section-news .news-small .date {
    margin-bottom: 0px;
    line-height: 1;
}
    .section-news .row > .col-6{
            flex: 0 0 100%;
    max-width: 100%;
    }
    .section-news .title-section {
    font-size: 24px;
}
    .section-news .subtitle-section {
    font-size: 16px;
}
    .news-small .title-section {
    font-size: 20px;
}
    footer .navbar-nav .nav-link{
        font-size:18px;
    }
    .footer-logo img {
    height: 30px;
    margin-top: 5px;
}
    .single-porada .row-singleheader .title, .row-singleheader .title{
        font-size:44px;
    }
    .row-singleheader .date, .row-singleheader .category{
        font-size:20px;
    }
    .lead{
        font-size:20px;
    }
    .row-singlecontent{
        font-size:18px;
    }
    .page-template-page-newslista .news-small .title-section {
    font-size: 36px;
}
    .page-template-page-newslista .section-news .date {
    font-size: 20px;
}
      .row-headline .title, .row-headline .title-category{
        font-size:44px;
    }
     .row-even-list .text{
        font-size:18px;
    }
    .product-pic img {
    max-height: 300px;
}
    
}
@media(max-width:991px){
    .navbar{
        height:95px;
    }
    .navbar-collapse{
            text-align: center;
    background: rgba(255,255,255,1);
            margin-top: 10px;
    /* border: 1px #000 solid; */
    border-radius: 5px;
    padding-bottom: 10px;
        position: absolute;
left: 0px;
right: 0px;
top: 80px;
    }
       .navbar-home .navbar-collapse{
    background: rgba(0,0,0,1);
    }
     .hero-title {
    font-size: 40px;
    margin-bottom: 10px;
}
    .hero-desc {
    font-size: 18px;
}
    .section-hero:before{
        padding-top:63.25%;
    }
    .title-section{
        font-size:28px;
    }
    .section-slogan{
        padding:60px 0;
    }
    .single-portrait-link {
/*    height: 350px;*/
     width: 100%; 
    flex-basis: auto;
    }
    .baner-title{
        font-size:36px;
    }
    .subtitle-section{
        font-size:18px;
    }
    footer .container > .row .col-2, footer .container > .row .col-8{
        flex:0 0 100%;
        max-width:100%;
        text-align: center;
        margin-bottom:15px;
    }
    footer .social-links{
        margin:0;
    }
    .row-info .col-4{
        text-align: center;
         flex:0 0 100%;
        max-width:100%;
        margin-bottom:15px;
    }
    .row-copy{
        text-align: center;
    }
    .row-singleheader .col-7, .row-singleheader .col-5, .row-singlecontent .col-9{
        flex:0 0 100%;
        max-width:100%;
    }
    .row-singleheader .col-5{
        margin-top: 20px;
    }
        .page-template-page-newslista .news-small .title-section {
    font-size: 28px;
}
    .page-template-page-newslista .section-news .date {
    font-size: 18px;
}
    .single-porada.col-4{
        flex:0 0 50%;
        max-width:50%;
    }
     .row-headline .title, .row-headline .title-category{
        font-size:32px;
    }
    .row-headline .lead-desc{
        width:100%;
        margin-top:20px;
        font-size:18px;
    }
    .single-line {
    flex-wrap: wrap;
}
    .row-even-list .single-line .col-4, .row-even-list .single-line .col-6{
        margin-left: 0;
        flex:0 0 50%;
        max-width: 50%;
    }
    
    .product-pic img {
    max-height: none;
}
    .product-pic {
 display: none;
}
    .row-even-list .text {
    font-size: 22px;
}
    .row-even-list a.btn {
    font-size: 18px;
    }
    .with-productpic {
    margin-bottom: 20px;
}
}
@media(max-width:768px){
    .swiper-container-main .container{
        text-align: center !important;
        justify-content: center !important;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    }
       .hero-title {
    font-size: 30px;
    margin-bottom: 0px;
}
    .hero-desc {
    font-size: 18px;
}
    .hero-text {
    align-items: flex-end;
    padding-bottom: 45px;
    }
    .title-section{
        font-size:24px;
    }
    .section-slogan{
        padding:45px 0;
    }
    .single-portrait-link {
    height: 300px;
    }
    .baner-title{
        font-size:24px;
    }
    .subtitle-section{
        font-size:16px;
    }
    .section-baner .row-button a{
        font-size:16px;
        width:100%;
    }
    footer .navbar-nav .nav-link:after{
        display: none;
    }
    footer .navbar-nav li{
        width:100%;
    }
     .single-porada .row-singleheader .title,  .row-singleheader .title{
        font-size:30px;
    }
    .row-singleheader .date, .row-singleheader .category{
        font-size:18px;
    }
    .lead{
        font-size:18px;
    }
    .row-singlecontent{
        font-size:16px;
    }
    .row-singleheader{
        margin-bottom:30px;
        margin-top:15px;
    }
    .row-singlecontent{
        margin-bottom:30px;
    }
          .page-template-page-newslista .news-small .title-section {
    font-size: 22px;
}
    .page-template-page-newslista .section-news .date {
    font-size: 16px;
}
    .row-headline .col-6{
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .row-headline{
        margin-bottom: 30px;
    }
    .row-headline .title, .row-headline .title-category {
    font-size: 26px;
}
    .row-even-list .single-line .col-4, .row-even-list .single-line .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
        text-align: center !important;
}
    .row-even-list .single-line{
        flex-wrap:wrap-reverse;
}
    .row-even-list a.btn {
    margin-bottom:15px;
}
}
@media(max-width:550px){
    .navbar-brand img {
    height: 30px;
}
    .language-chooser{
        display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    }
     .section-hero:before{
        padding-top:73.25%;
    }
    
    .hero-desc {
   display: none;
}
    .hero-text {
    align-items: flex-end;
    padding-bottom: 45px;
    }
    .single-portrait-link {
    height: 250px;
    }
    .baner-title{
        font-size:20px;
    }
    .swiper-slide{
        padding:0 15px;
    }
    .section-poradyslider .swiper-button-prev, .section-poradyslider .swiper-button-next{
        height: 45px;
    top: 50%;
    width: 45px;
    background: #fff;
    }
      .single-porada .row-singleheader .title, .row-singleheader .title{
        font-size:24px;
    }
    .row-singleheader .date, .row-singleheader .category{
        font-size:16px;
    }
    .lead{
        font-size:16px;
    }
    .row-singlecontent{
        font-size:14px;
    }
    .row-singleheader{
        margin-bottom:15px;
        margin-top:5px;
    }
    .row-singlecontent{
        margin-bottom:15px;
    }
    .news-cat-holder:before{
        display: none;
    }
    .row-newsheader .col-4, .row-newsheader .col-8{
        flex:0 0 100%;
        max-width: 100%;
        text-align: left !important;
    }
    .newsheader-img img{
        margin-bottom:15px;
    }
             .page-template-page-newslista .news-small .title-section {
    font-size: 20px;
}
    .page-template-page-newslista .section-news .date {
    font-size: 14px;
}
    .section-slogan {
    padding-top: 30px;
}
    .single-porada.col-4{
        flex:0 0 100%;
        max-width:100%;
    }
    .row-headline .title, .row-headline .title-category{
        font-size:24px;
    }
    .row-headline .lead-desc {
    font-size: 16px;
}
    .section-news .date {
    font-size: 14px;
}
    .news-small .title-section {
    font-size: 18px;
}
    .single-news .button{
        display: none;
    }
    .row-even-list .text {
    font-size: 18px;
}
    .row-even-list a.btn {
    font-size: 16px;
}
    .row-headline {
    margin-bottom: 15px;
}
    .section-baner .row-button {
    margin-top: 15px;
}
    .section-poradyslider {
    padding-bottom: 40px;
}
    .headline-img{
        margin-bottom:0 !important;
    }
    .row-even-list .text{
        margin-top: 16px;
    }
}
