/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;
    --font-22: 22px;

    --container-padding: 40px;

    /** SPECIFIC **/
    /*--color-primary: blue;*/
    /*--color-secondary: red;*/
}

.mt-25 {
    margin-top: var(--space-25);
}

.mb-25 {
    margin-bottom: var(--space-25);
}

body {
    color: #000;
    font-family: 'Lato', sans-serif;
}


/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
    margin-bottom: 27px;
    font-family: 'Gelasio', serif;
    font-size: var(--font-40);
    color: #000;
}

h2 {
    font-family: 'Gelasio', serif;
}

h3 {
    font-family: 'Gelasio', serif;
}

h4 {
    font-family: 'Gelasio', serif;
}

h5 {
    font-family: 'Gelasio', serif;
}

a {
    color: #c2b187;
}

a:hover, a:focus {
    color: #c2b187;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1670px;
    width: 100%;
}


/**
 * TEXT
 */

.text {
    overflow: visible;
}

.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    left: -13px;
    margin-left: -10px;
    font-family: sans-serif;
    position: relative;
    background: #c2b187;
}


/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}


.text.txt, .article-text {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.text a:hover {
    text-decoration: underline;
}

a, button {
    transition: all 300ms ease-out;
}

body > svg {
    display: none;
}

a, button, input, select {
    outline: none !important;
}

.vcenter {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}


.clear:after {
    content: '';
    display: block;
    clear: both;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

#container-page {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}


/**
 * HEADER
 */
header {
    position: relative;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

.top {
    text-align: center;
}

.header-top {
    padding-top: 0;
    padding-bottom: 0;
}

.btn-visit {
    float: right;
    border-radius: 0;
    font-weight: 500;
    color: #000;
    font-size: 14px;
    line-height: 1;
    position: relative;
    height: 46px;
    z-index: 14;
    margin-top: 27px;
    border: 2px solid rgb(194, 177, 135);
    padding: 3px 15px 0 6px;
    background: #fff;
    font-weight: normal;
}

.btn-visit .btn-icon {
    width: 36px;
    height: 36px;
    display: inline-block;
    vertical-align: middle;
    transition: none;
}

.btn-visit .caption {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    transition: none;
}

a.btn-visit .btn-icon svg, a.btn-visit .btn-icon svg * {
    fill: #c2b187;
    transition: none;
}

a.btn.btn-visit:after {
    content: '';
    background: #e5e5e5;
    width: 1px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: -23px;
    top: 16px;
}

@media screen and (min-width: 1140px) {
    .btn-visit:hover {
        background: rgb(194, 177, 135);
        text-decoration: none
    }

    a.btn-visit:hover .btn-icon svg, a.btn-visit:hover .btn-icon svg * {
        fill: #000;
    }

    nav#top-menu ul li a:hover {
        color: #c2b187;
    }
}

#top-menu {
    padding-top: 20px;
    display: inline-block;
}

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

#top-menu ul li a {
    display: block;
    font-size: 15px;
    color: #000;
    padding: 20px;
    text-decoration: none;
}

@media screen and (min-width: 1140px) {
    #top-menu ul li.active a, #top-menu ul li a:hover {
        color: #98865a;
    }
}

.logo {
    float: left;
}

.logo a {
    display: block;
    padding: 10px 0;
}

.logo a img {
    display: block;
    max-width: 100%;
}

#main-menu {
    display: block;
    width: 100%;
    transition: all 300ms ease-out;
    background-color: #c2b187;
}

#main-menu ul {
    font-size: 0;
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1670px;
    display: table;
    width: 100%;
}

#main-menu li {
    position: relative;
    display: table-cell;
    font-size: 1rem;
    text-align: center;
    width: 25%;
}

#main-menu li a {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 14px 0 15px;
    text-decoration: none;
    text-transform: uppercase;
}

#main-menu li a:before {
    content: '';
    background: #e1d8c3;
    width: 1px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
}

#main-menu li:hover a:before, #main-menu li.active a:before {
    display: none;
}

#main-menu li:first-child a:before {
    display: none;
}

#main-menu li.active > a, #main-menu li a:hover {
    background: #363636;
}

#main-menu li.active a:after, #main-menu li a:hover:after {
    opacity: 0;
}

#main-menu li:hover > ul {
    display: none;
}

.slider, .main-slider, .slider .slide, .slider .slider-photo {
    position: relative;
    z-index: 2;
}

.slider {
}

.slider-text {
    width: 57.291%;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding-bottom: 64px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.title1 {
    line-height: 106%;
    font-weight: normal;
    margin-bottom: 0;
    font-size: var(--font-40);
    color: #000000;
    font-family: 'Gelasio', serif;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    padding-left: 0;
}

img.img1 {
    display: none;
}

img.img2 {
    display: none;
}

.title-icon {
    width: 18.656%;
    display: inline-block;
    vertical-align: middle;
	display:none;
}

.title-icon img {
    display: block;
    max-width: 100%;
}

.slide-text-header {
    font-size: 0;
    margin-bottom: 20px;
}

.description {
    color: #000;
    font-size: 16px;
    text-align: left;
    line-height: 30px;
    letter-spacing: 0.05em;
    margin: 0 0 41px;
}

.slider .slide {
    direction: rtl;
    unicode-bidi: embed;
    font-size: 0;
}

.slider .slide > * {
    direction: ltr;
    font-size: 1rem;
}

.slider-text-content {
    width: 920px;
    float: right;
    padding-right: 26%;
}

.slider a.btn.btn-more {
    height: 46px;
    border: 1px solid #cecece;
    border-radius: 0;
    display: inline-block;
    padding: 0 44px;
    font-size: 15px;
    color: #000000;
    line-height: 45px;
    float: left;
}


@media screen and (min-width: 1140px) {
    .slider a.btn.btn-more:hover {
        background: #fff;
        color: #000;
    }
}

.slider-photo {
    display: inline-block;
    width: 42.709%;
    vertical-align: middle;
}

.slide .container {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    z-index: 3;
}

.slider-photo img {
    display: block;
    max-width: 100%;
}

.main-slider .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1670px;
    width: 100%;
    bottom: 50px;
}

.main-slider .slick-dots li {
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 30px;
}

.main-slider .slick-dots li span {
    display: block;
    margin: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #e5e5e5;
    text-indent: -20000px;
}

.main-slider .slick-dots li.slick-active span {
    background: #c2b187;
    border-color: #c2b187;
}

@media screen and (min-width: 1140px) {
    .main-slider .slick-dots li span:hover {
        background: #c2b187;
        border-color: #c2b187;
    }
}

.mouse {
    display: block;
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 6%;
    background: transparent;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 34px;
    line-height: 58px;
    transform: rotate(90deg);
    margin-left: -185px;
    padding: 0;
}

button.mouse svg {
    fill: #c2b187;
}

@media screen and (min-width: 1140px) {
    button.mouse:hover svg {
        fill: #000
    }
}

.dermatology-box-container {
    position: relative;
    /* background: url(../images/bg1.jpg) repeat-y top center; */
}

.dermatology-box-container .container {
    position: relative;
}


img.img1 {
    position: absolute;
    left: 0;
    width: 42.55%;
    top: -18px;
}

img.img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
}

.dermatology-header {
    position: relative;
    padding-top: 45px;
    margin-bottom: 37px;
}

.dermatology-header h2 {
    opacity: 0;
    float: left;
}

a.btn.btn-more {
    height: 46px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    display: inline-block;
    padding: 0 44px;
    font-size: 15px;
    color: #000000;
    line-height: 45px;
}

a.btn.btn-more:hover, .slider a.btn.btn-more {
    color: #fff;
    background: #c2b187;
}

.dermatology-box-container a.btn.btn-more {
    float: right;
    padding: 0 53px;
}

.dermatology-box {
    font-size: 0;
    margin: 0 -58px 133px;
}

.dermatology-item {
    width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 0 58px;
	    margin-bottom: 20px;
}


.dermatology-item img {
    display: block;
    max-width: 100%;
}

.dermatology-name {
    background: #363636;
    display: block;
    font-size: var(--font-22);
    color: #fff;
    padding: 19px 29px;
    font-family: 'Gelasio', serif;
    letter-spacing: 0.03em;
    position: relative;
}

.dermatology-name:after {
    content: '';
    width: 50px;
    height: 50px;
    background: url(../images/icons/arrow1_white.svg) no-repeat right center / contain;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: 23px;
}

@media screen and (min-width: 1140px) {
    .dermatology-item a:hover {
        text-decoration: none;
    }

    .dermatology-item a:hover .dermatology-name {
        background: #c2b187
    }
}

.news-box-container {
    padding-top: 52px;
    padding-bottom: 56px;
    background: #f9f9f9;
}

.news-box-container h2 {
    font-size: var(--font-40);
    font-family: 'Gelasio', serif;
    color: #000;
    margin-bottom: 30px;
}

.news {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    font-size: 1rem;
    padding: 0 56px;
}

.news-box {
    margin: 0 -56px;
    font-size: 0;
    padding-top: 5px;
    padding-bottom: 45px;
}

.news a {
    display: block;
    max-width: 100%;
    text-decoration: none
}

.news-photo {
}

@media screen and (min-width: 1140px) {
    .news a:hover .news-photo {
        padding: 10px;
        background: url(../images/news_top.png) no-repeat right top, url(../images/news_bottom.png) no-repeat left bottom;
    }
}

.news-photo {
    transition: all 300ms ease-out;
    display: block;
    background-position: right top, left bottom;
}

.news-photo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
}

.news-content h3 {
    font-size: 16px;
    line-height: 125%;
    color: #000000;
    font-weight: bold;
    margin-bottom: 17px;
    font-family: 'Gelasio', serif;
    letter-spacing: -0.05em;
}

.news-content {
    padding: 23px 0 0;
}

.news-date {
    display: inline-block;
    font-size: 12px;
    color: #000;
    padding-left: 29px;
    background: url(../images/icons/date.svg) no-repeat left center / 25px 25px;
    letter-spacing: 0;
    margin-left: -6px;
    margin-bottom: 26px;
}

.news .text.txt {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 22px;
    letter-spacing: 0.05em;
}

.news .btn.btn-more {
    width: 150px;
    height: 40px;
    line-height: 38px;
    font-size: 13px;
    background: #fff;
}

.more {
    font-weight: bold;
}

.news:nth-child(even) .news-content {
    padding-top: 55px;
}

@media screen and (min-width: 1140px) {
    .news a:hover .more {
        color: #c2b187;
    }
}

.newsletter-box {
    display: table;
    width: 100%;
}

.newsletter-box > * {
    display: table-cell;
    vertical-align: middle;
}

.newsletter-icon {
    width: 118px;
    height: 118px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: -36px;
}

.newsletter-icon img {
    display: block;
    max-width: 100%;
    margin-left: -34px;
}

.newsletter-title h3 {
    font-size: var(--font-40);
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
    padding-left: 80px;
}

.newsletter-title {
    width: 23%;
    position: relative;
}

.newsletter-text {
    padding: 0 30px;
    width: 50%;
}

.newsletter-text .text.txt {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 24px;
    color: #fff;
}

.newsletter-form-box {
    width: 27%;
}

#newsletter-form .form-element-container.form-element-email-container {
    width: 100%;
    border: 1px solid #fff;
    height: 46px;
    border-radius: 0;
}

form#newsletter-form {
    position: relative;
    padding: 0;
}

form#newsletter-form button.btn.btn-primary {
    width: 46px;
    height: 46px;
    background: transparent;
    position: absolute;
    right: 9px;
    text-align: center;
    border-radius: 0;
    content: '';
    background: url(../images/icons/arrow1_white.svg) no-repeat right center / contain;
    top: 50%;
    margin-top: -25px;
    border: 0 none;
    padding: 0;
    box-shadow: 0 0 0 transparent;
}

@media screen and (min-width: 1140px) {
    form#newsletter-form button.btn.btn-primary:hover {
        opacity: 0.6;
    }
}

#newsletter-form input.form-control.form-control-email {
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    padding-left: 16px;
    padding-right: 50px;
    height: 44px;
    border: 0 none;
}

#newsletter-form input.form-control.form-control-email::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}

#newsletter-form input.form-control.form-control-email::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}

#newsletter-form input.form-control.form-control-email:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}

#newsletter-form input.form-control.form-control-email:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}

.newsletter-box-container {
    padding-top: 48px;
    padding-bottom: 43px;
    background: #c2b187;
}

form#newsletter-form button.btn.btn-primary .fa {
    display: none;
}

/**
 * FOOTER
 */

footer {
}

.footer-boxes-container {
    padding-top: 56px;
    padding-bottom: 50px;
    background: #363636 url(../images/footer_bg.png) no-repeat top center / 100% auto;
}

.footer-box {
    float: left;
    width: 21%;
    padding-right: 30px;
    position: relative;
}

.footer-box .txt {
    margin-bottom: 0;
    color: #fff;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 216%;
    margin-top: -1px;
}

.footer-box .txt a {
    color: #fff
}

.footer-box h4 {
    margin-bottom: 34px;
    font-size: 25px;
    color: #ffff;
}

.footer-box:nth-child(2) h4 {
    opacity: 0;
}

.footer-box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


.footer-box ul li {
    margin-bottom: 3px;
}

.footer-box ul li a {
    display: inline-block;
    line-height: normal;
    font-size: 14px;
    color: #fff;
    position: relative;
    padding: 5px 0;
    font-weight: 300;
    text-decoration: none;
}

@media screen and (min-width: 1140px) {
    .footer-box ul li a:hover {
        color: #c2b187;
    }
}

.footer-box:last-child {
    float: right;
    width: 37%;
    padding: 64px 0 0 90px;
}


img.logo-min {
    float: left;
    max-width: 100%;
    margin-bottom: 25px;
}


/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid #4a4a4a;
    background: #363636;
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}

.footer-bar-links a {
    color: inherit;
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}


/**
 * FORM
 */

form.form {
    padding: 0;
}

/* labele */
.form .form-element-name {
    font-weight: bold;
    font-size: 16px;
    color: #c2b187;
    font-family: lato, sans-serif;
    margin-bottom: 7px;
}

.form .form-required-mark {
    color: #E2001A;
}

/* INPUTY */
.form .form-control {
    font-family: 'lato', sans-serif;
    box-shadow: 0 0 0 transparent;
    color: #000000;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: normal;
    border-color: transparent;
    border-radius: 0;
}

.form-control-feedback {
    display: none !important;
}

.form .alert-block .error {
    display: block;
    clear: both;
    margin-top: -5px;
    margin-bottom: 0;
    padding: 10px 18px 4px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: #E2001A !important;
    color: #fff !important;
    font-weight: normal !important;
    font-size: 13px;
}

.form .form-element-radio .alert-block .error,
.form .form-element-checkbox .alert-block .error {
    display: block;
    clear: both;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent !important;
    color: #E2001A !important;
    font-weight: bold !important;
    font-size: 13px;
}

.has-error .form-control {
    border-color: #E2001A;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.form-group-lg .form-element-radio,
.form-group-lg .form-element-checkbox {
    letter-spacing: 0.05em;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
    background: #4a44a9
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    height: 134px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label > *,
.form .consent-all {
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.form .consent-all {
    margin-bottom: 20px;
    display: block;
}

/* ZAOKRAGLENIA INPUTOW*/
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 0;
    height: 46px;
}

.form button.captcha-refresh.btn.btn-default {
    right: 5px;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    background: transparent;
    color: #976cac;
}

.form i.fa.fa-refresh {
    font-size: 19px;
    color: #c2b187;
}

@media screen and (min-width: 1140px) {
    button.captcha-refresh.btn.btn-default:hover i.fa.fa-refresh {
        color: #000;
    }
}

/**************** checkbox *******************/

.form .checkboxradio-container {
    margin-top: 0;
    text-align: left;
}

.form .form-element-radio-container .row > *:not(:only-child),
.form .form-element-checkbox-container .row > *:not(:only-child) {
    margin-bottom: 10px;
}

.form .form-group-lg.form-group-lg .icheckbox_minimal-custom,
.form .form-group-lg.form-group-lg .iradio_minimal-custom {
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: 0;
}

.form-group-lg .icheckbox_minimal-custom,
.form-group-lg .iradio_minimal-custom {
    zoom: 1.55;
}

.form-group-lg .form-element-switcher .icheckbox_minimal-custom,
.form-group-lg .form-element-switcher .iradio_minimal-custom {
    zoom: normal;
}

.form .form-group-lg .checkboxradio-container label {
    padding-top: 3px;
    padding-left: 50px;
    padding-bottom: 6px;
    line-height: 1.2;
}

.form .form-group-lg .form-element-radio .alert-block .error,
.form .form-group-lg .form-element-checkbox .alert-block .error {
    padding-left: 50px;
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/icheck.png);
}

.form-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.form-box .col-lg-1,
.form-box .col-lg-10,
.form-box .col-lg-11,
.form-box .col-lg-12,
.form-box .col-lg-2,
.form-box .col-lg-3,
.form-box .col-lg-4,
.form-box .col-lg-5,
.form-box .col-lg-6,
.form-box .col-lg-7,
.form-box .col-lg-8,
.form-box .col-lg-9,
.form-box .col-md-1,
.form-box .col-md-10,
.form-box .col-md-11,
.form-box .col-md-12,
.form-box .col-md-2,
.form-box .col-md-3,
.form-box .col-md-4,
.form-box .col-md-5,
.form-box .col-md-6,
.form-box .col-md-7,
.form-box .col-md-8,
.form-box .col-md-9,
.form-box .col-sm-1,
.form-box .col-sm-10,
.form-box .col-sm-11,
.form-box .col-sm-12,
.form-box .col-sm-2,
.form-box .col-sm-3,
.form-box .col-sm-4,
.form-box .col-sm-5,
.form-box .col-sm-6,
.form-box .col-sm-7, .form-box .col-sm-8,
.form-box .col-sm-9,
.form-box .col-xs-1,
.form-box .col-xs-10,
.form-box .col-xs-11,
.form-box .col-xs-12,
.form-box .col-xs-2, .form-box .col-xs-3,
.form-box .col-xs-4,
.form-box .col-xs-5,
.form-box .col-xs-6,
.form-box .col-xs-7,
.form-box .col-xs-8,
.form-box .col-xs-9 {
    padding-left: 5px;
    padding-right: 5px;
}

.form .checkboxradio-container .error {
    margin-top: 0;
    font-size: 13px;
}

.form .checkboxradio-container label {
    line-height: 24px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 27px;
    font-family: 'lato', sans-serif;
    font-weight: 300;
}

.form .checkboxradio-container [class^="icheckbox"], .form .radio [class^="icheckbox"] {
    position: absolute;
    margin-left: -26px;
    margin-top: 3px;
}

.form-group {
    margin-bottom: 14px;
}

button.btn.btn-primary .fa {
    float: right;
    line-height: 46px;
}

form.form button.btn.btn-primary {
    color: #fff;
    line-height: 46px;
    border-color: transparent;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    display: block;
    float: none;
    background-color: #c2b187;
    width: 173px;
    height: 46px;
    border-radius: 0;
    font-weight: bold;
    font-size: 16px;
}


@media screen and (min-width: 1140px) {
    form.form button.btn.btn-primary:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }
}

.form .before-consent-row {
    padding-top: 6px;
    margin-bottom: 8px;
}

.checkbox {
    margin-bottom: 5px;
}

.row.consent-all-row {
    color: #fff;
}

/**
 * MAP POINTS
 */
.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}


/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-item a {
    display: block;

}
.social-item a span.social-title{  display: inline-block; vertical-align:middle; margin-left:10px
 }
.social-item a span.social-icon{    background: #c2b187;
    border-color: #c2b187;
    line-height: 38px!important;
    padding: 0!important;}

.social-item a:hover  span.social-icon{color: #c2b187; background:#fff; }

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 0;
    border: 1px solid #c2b187;
    vertical-align:middle;
}


.social-icon > * {
    vertical-align: middle;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    border-radius: 0;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    margin: 34px 0 0 36px;
}

.langs-menu ul {
    opacity: 0;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    border-radius: 0;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
}

.langs-menu li {
    border: 1px solid #e5e5e5;
}

.langs-menu li:last-child {
    border-top: 0 none
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    display: block;
    transition: background-color 0.4s;
    padding: 2px;
    background: #fff;
    text-align: left;
}

.lang .langs-menu-icon {
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.lang {
    font-size: 0;
    padding: 0;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    text-transform: uppercase;
    color: #98865a;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 0;
    background-color: transparent;
    padding: 2px;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .langs-menu a:hover {
        color: #000;
        background: #98865a;
    }

    .lang:hover span {

        color: #000;
    }
}


.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    margin-left: 16px;
    transition: all 0.4s;
    font-size: 12px;
    line-height: 12px;
}

.langs-menu.active .lang-button .arrow {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.langs-menu-icon img {
    max-width: 100%;
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

button.lang.lang-button .langs-menu-icon {
    display: none;
}

button.lang.lang-button .langs-menu-short {
    color: #000;
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
.
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
    border: 1px solid #e5e5e5;
}

h1.article-subtitle {
    padding-bottom: 0;
    font-size: var(--font-40);
    text-align: left;
    margin-bottom: 29px;
    line-height: 115%;
}

.article-text {
    margin-bottom: 43px;
}

/**
 * PAGINATION
 */


.pagination-wrapper {
    max-width: 1350px;
    border-top: 0 none;
    padding-top: 0;
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    line-height: 48px;
    background: #fff;
}

.pagination-wrapper ul li.prev a {
    background: #fff;
}

.pagination-wrapper ul li.next a {
    background: #fff;
}

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    display: inline-block;
    float: none;
    vertical-align: middle;
    margin: 0 50px;
}

.pagination-wrapper ul li {
    vertical-align: middle;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000000;
}

.pagination-wrapper ul li.active a {
    color: #000;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: #363636;
    }

    .pagination-wrapper ul li.next a:hover,
    .pagination-wrapper ul li.prev a:hover {
        border-color: #363636;
        color: #fff;
    }

    .pagination-wrapper ul li.prev a:hover {
        background: #363636;
    }

    .pagination-wrapper ul li.next a:hover {
        background: #363636;
    }
}

/**
 * GALLERY
 */
.gallery-list {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    border: 1px solid #e6e7e8;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.702);
    transition: opacity 0.3s;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: url(../images/icons/lupa.svg) no-repeat center center /44px 44px;
    width: 50px;
    height: 44px;
    margin: 0 auto;
    border-radius: 50%;
    text-indent: -20000px;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.text-box-container {
    position: relative;
    padding-top: 45px;
    /* background: url(../images/text_bg.png) no-repeat top right; */
    /* background: url(../images/icons/napis_calosc.svg) no-repeat top right /41%; */
}

.text-box-container .container {
    max-width: 1350px;
    position: relative;
}

.article-content {
    padding-top: 8px;
}

.text-box-container .news-date {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 13px;
}

h2.article-title.page-title.title {
    font-size: var(--font-40);
    color: #000;
    margin-bottom: 28px;
}

.gallery-box {
    margin: 0 0 50px;
}

a.btn.btn-more.btn-back {
    margin: 0 auto;
    padding: 0 26px;
}

@media screen and (min-width: 1140px) {
    a.btn.btn-more.btn-back:hover {
        color: #fff;
        background: #c2b187;
    }
}

.faq-box-container {
    padding-top: 45px;
}

.faq-box-container .container {
    max-width: 1350px;
}

.accordion-content .article-content {
    padding: 0;
}

.accordion-content .article-image {
    max-width: 40.5%;
    margin-top: 7px;
}


.accordion-arrow svg {
    fill: #000;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.accordions-box {
    text-align: left;
    padding-bottom: 30px;
    padding-top: 11px;
}

.accordion {
    margin-bottom: 20px;
}


.accordion-header{
    background: #fff;
}

.accordion-header-content {
    clear: both;
    margin: 0 auto;
    width: auto;
    padding: 15px 60px 13px 30px;
    position: relative;

}

.accordion-name {
    display: block;
    line-height: 20px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: hidden;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    font-family: 'Gelasio', serif;
}

.accordion-arrow {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    transition: all 300ms ease-out;
    width: 36px;
    height: 36px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -18px;
}

.accordion-content {
    display: none;
    position: relative;
    z-index: 1;
    padding: 43px 54px 0;
    border-left: 2px solid #363636;
    border-right: 2px solid #363636;
    border-bottom: 2px solid #363636;
    background: #fff;
    /* background: url(../examples/person_bg.jpg) no-repeat top center; */
}

.accordion-header {
    cursor: pointer;
    position: relative;
    z-index: 2;
    border: 1px solid #e5e5e5;
}

.accordion-header .accordion-arrow svg {
    transition: all 300ms ease-out;
}

.accordion-header.active .accordion-arrow svg {
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    fill: #fff;
}


.accordion-header.active {
    background: #363636;
    border: 1px solid #363636;
}

.accordion-header.active .accordion-name {
    color: #fff;
}

.person-box {
    margin: -43px -54px 0;
}

.person-photo {
    float: left;
    width: 21%;
}

.person-photo img {
    display: block;
    max-width: 100%;
}

.person-content {
    overflow: hidden;
    padding-left: 46px;
}

.person-content-header {
    display: table;
    width: 100%;
    padding-top: 3px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 21px;
    margin-bottom: 23px;
}

.person-content-header > * {
    display: table-cell;
}

.person-name {
    font-size: var(--font-22);
    font-family: 'Gelasio', serif;
    font-weight: 500;
    width: 47%;
}

.person-content-header a {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.person {
    padding: 50px;
    overflow: hidden;
}

.person:nth-child(odd) {
    background: #f8f8f8;
}

.person:nth-child(even) {
    background: #fff;
}

.news-box-header .container {
    max-width: 1350px;
}

.news-box-sub-container {
    padding-top: 45px;
}

.submenu {
    padding-top: 9px;
    padding-bottom: 45px;
}

.submenu ul {
    text-align: center;
    margin: 0 -15px;
    font-size: 0;
}

.submenu ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 15px;
    font-size: 1rem;
}
.submenu ul li a {
    display: block;
    border: 2px solid #c2b187;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    padding: 13px 50px 14px;
    text-decoration: none;
}

@media screen and (min-width: 1140px) {
    .submenu ul li.active a, .submenu ul li a:hover {
        color: #fff;
        background: #363636;
        border-color: #363636;
    }
}

.contact-box-container {
    padding-bottom: 50px;
    padding-top: 45px;
    background: #fff url(../images/kontakt_bg.png) no-repeat right center / auto 100%;
}

.contact-box-container .container {
    max-width: 1350px;
    position: relative;
}

.contact-left {
    float: left;
    width: 31.5%;
    padding-right: 30px;
}

.contact-left .text.txt {
    line-height: 225%;
    letter-spacing: 0.02em;
}

.contact-left .text.txt a {
    color: #000;
}

.form .before-consent-row {
    padding-top: 8px;
}

.map-box {
    width: 68.5%;
    float: right;
    padding-top: 7px;
}

.map-box iframe {
    height: 430px;
    width: 100%;
    display: block;
    margin-bottom: 50px;
}

.map-image img {
    display: block;
    max-width: 100%;
}

.form-box-container {
    padding-top: 47px;
    padding-bottom: 50px;
    background: #363636;
}

.form-box-container .container {
    max-width: 1350px;
}

.form-box-container h2 {
    color: #fff;
    text-align: center;
    font-size: var(--font-30);
    margin-bottom: 38px;
}

.back-box {
    text-align: center;
    margin-bottom: 50px;
}

.news-box-container .news-box {
    padding-bottom: 0;
}

.modal input.form-control.form-control-email {
    color: #000;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
}

.modal  .has-success input.form-control.form-control-email{    border-color: #3c763d;}

.modal .form .before-consent-row,.modal  .form .after-consent-row,.modal  .form .consent-row label > *,.modal  .form .consent-all{ color:#000}


.modal button.btn {
    color: #fff;
    line-height: 46px;
    border-color: transparent;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    display: block;
    float: none;
    background-color: #c2b187;
    width: 173px;
    height: 46px;
    border-radius: 0;
    font-weight: bold;
    font-size: 16px;
}


@media screen and (min-width: 1140px) {
    .modal button.btn:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }
}

nav.social-list {
    float: none;
    position: absolute;
    bottom: 0;
    text-align: right;
    width: 100%;
    padding-right: 90px;
}

nav.social-list li.social-item {
    display: inline-block;
}

.footer-box.footer-box-image {
    position: relative;
}

.footer-floating-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-floating-image img {
    display: block;
    max-width: 240px;
    margin: 0 auto;
}

.btn.btn-lg {
    display: inline-block;
    border: 2px solid transparent;
    font-weight: bold;
    font-size: 16px;
    padding: 13px 50px 14px;
    text-decoration: none;
}

.btn.btn-primary {
    color: #000;
    border-color: #c2b187;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .btn.btn-primary.active a,
    .btn.btn-primary:hover {
        color: #fff;
        background: #363636;
        border-color: #363636;
    }
}
