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

    --font-320: 320px;
    --font-120: 120px;
    --font-50: 50px;
    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;
    --font-20: 20px;
    --font-18: 18px;
    --font-17: 17px;


    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #f5c931;

    --font-secondary: 'Playfair Display', serif;
}


body {
    color: #000000;
    font-family: 'lato', sans-serif;
    font-size: 16px;
}

/**
 * BASIC
**/

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

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #0e3083;
}

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

/**
 * 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%;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
}

/** Text list custom dots **/

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

.text ul > li, .text ol > li {
    left: 47px;
    position: relative;
    padding-right: 36px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    left: -16px;
    margin-left: -11px;
    font-family: sans-serif;
    position: relative;
    background: #004183;
    top: -1px;
    border-radius: 0;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 10px 0 60px;
    width: 100%;
}

.text table tr:nth-child(odd) {
    background: #fff;
}

.text table tr:nth-child(even) {
    background: #f6f6f6;
}

.text table td {
    padding: 9px 20px 10px;
    line-height: 30px;
    border: 1px solid #eceded;
    font-size: 14px;
}

.text table[border^="0"] td {
    border: 0 none;
}

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

}

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

body > svg {
    display: none;
}

.vcenter {
    display: block;
    top: 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;
}


.text.txt h1 {
    font-size: var(--font-30);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.text.txt h2 {
    font-size: var(--font-24);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.text.txt h3 {
    font-size: var(--font-20);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.text.txt h4 {
    font-size: var(--font-18);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.text.txt h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.text.txt h6 {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.btn .btn-icon {
    width: 46px;
    height: 46px;
}

.btn .btn-icon svg {
    width: 100%;
    height: 100%;
}

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: all 300ms ease-out;
}

header.sticky {
    background: #e7e7e7;
    box-shadow: 0 5px 5px 0 rgb(0 0 1 / 10%);
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 13px;
    padding-bottom: 10px;
    width: 100%;
    transition: all 300ms ease-out;
}

.logo {
    margin-right: 25px;
    margin-top: 5px;
}

.logo a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo a img {
    display: block;
    transition: all 300ms ease-out;
}

.top-right {
    display: flex;
}

.contact-link {
    display: flex;
    color: #000;
    font-size: 13px;
    align-items: center;
    justify-content: flex-start;
    line-height: 138%;
    margin-left: 28px;
}

.contact-link .btn-icon {
    width: 47px;
    height: 47px;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 5px;
    padding: 3px;
    background: #f5c931;
}

.contact-link .btn-icon svg {
    fill: #000;
}

.contact-link .caption strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
}

.btn.has-icon.btn-secondary:hover .btn-icon svg, .btn.has-icon.btn-secondary:hover .btn-icon svg * {
    fill: #f12513;
}

.top .btn.btn-lg.btn-secondary.has-icon {
    margin-left: 40px;
}


@media screen and (min-width: 1140px) {
    .contact-link:hover {
        color: #f12513;
    }
}

#main-menu {
    transition: all 300ms ease-out;
    margin-top: -3px;
}

#main-menu ul {
    display: flex;
}

#main-menu li {
    padding: 0 21px;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li a {
    display: block;
    color: #000;
    position: relative;
    padding: 24px 0;
    font-size: 16px;
}

#main-menu li a:hover {
    color: #f12513;
}

#main-menu li.active a {
    color: #f12513;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

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

.main-menu-button {
    float: right;
    width: 40px;
    margin: 10px 0 10px var(--container-padding);
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: #000;
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block,
.mainsearch .form-control-feedback {
    display: none;
}


.slider, .main-slider, .slider .slide {
    position: relative;
    height: 100%;
}

.slider {
    margin-bottom: 0;
    height: 100vh;
    max-height: 950px;
    min-height: 750px;
    padding-top: 109px;
    background: url(../images/slider_bg0.jpg) no-repeat top center;
}

.main-slider .slide.slick-slide {
    height: 100%;
}

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

.main-slider .slick-track {
    height: 100%;
}

.main-slider .slick-list.draggable {
    height: 100%;
}

.slider-box {
    display: flex;
    align-items: flex-start;
    height: 100%;
    justify-content: space-between;
}

.watermark-slider {
    position: absolute;
    top: 0;
    display: block;
    max-width: 100%;
}

img.leave-left {
    position: absolute;
    left: 50%;
    max-width: 16%;
    top: 117px;
    margin-left: -962px;
    z-index: 1;
    pointer-events: none;
}

img.leave-right {
    position: absolute;
    right: 50%;
    max-width: 16%;
    bottom: 194px;
    margin-right: -962px;
    z-index: 1;
    pointer-events: none;
}

.slider-text {
    width: 40%;
    align-content: flex-start;
    padding-top: 128px;
    padding-right: 15px;
}

.slider-text-inner {
    max-width: 600px;
}

.title1 {
    font-family: var(--font-secondary);
    line-height: 119%;
    margin-bottom: 32px;
    font-size: var(--font-50);
    color: #000;
    text-align: left;
}

.description {
    margin: 0;
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.slider .slider-photo {
    width: 51%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    margin-right: 7%;
}

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

.right-circle {
    position: absolute;
    background: url(../images/slider_bg2.png) no-repeat right bottom/ 49%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.buildings-bottom {
    position: absolute;
    background: url(../images/slider_bg.png) no-repeat right bottom / 100% auto;
    width: 100%;
    height: 100%;
    z-index: 1;
}

ul.slick-dots {
    width: 100%;
    max-width: 1670px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 218px;
    text-align: left;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.slider-dot {
    display: block;
    width: 9px;
    height: 9px;
    border: 1px solid #a9a9a9;
    border-radius: 1px;
}

ul.slick-dots li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

ul.slick-dots li.slick-active .slider-dot {
    background: #f12513;
    border-color: #F12514;
}


ul.slick-dots li:hover .slider-dot {
    background: #f12513;
    border-color: #F12514;
}


button.mouse {
    width: 91px;
    background: transparent;
    border: 0 none;
    transition: all 300ms ease-out;
    position: absolute;
    display: block;
    padding: 0;
    bottom: 46px;
    right: 50%;
    margin: 0 -828px 0 auto;
}


button.mouse .caption {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    display: block;
    white-space: nowrap;
    font-family: var(--font-secondary);
}

button.mouse svg {
    margin-top: 73px;
}

button.mouse svg, button.mouse svg * {
    fill: #000;
}

@media screen and (min-width: 1140px) {
    button.mouse:hover {
        bottom: 58px;
    }
}

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    background-color: #000000;
}

.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;
    text-transform: uppercase;
}

.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;
}

.footer-bar-links a:hover {
    text-decoration: underline;
}

.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: normal;
    font-size: 16px;
    color: #1a2c57;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form .form-required-mark {
    color: #E2001A;
    font-weight: bold;
    font-size: 16px;
}

/* INPUTY */
.form .form-control {

    color: #5c5c5c;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    letter-spacing: 0;
    border-color: #f3f4f6;
    font-weight: normal;
    background: #fff;
    font-family: 'lato', sans-serif;
    border-radius: 6px;
    box-shadow: 0 5px 5px 0 rgba(31, 30, 27, 0.15);
}


.form-box-container .form .form-control {
    border-color: #fff;
    background: #fff;
}

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

.form .alert-block .error {
    display: block;
    clear: both;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 18px 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    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: 160px;
}

.service-box-form .form textarea.form-control:not([rows]) {
    height: 90px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label > *,
.form .consent-all {
    font-size: 12px;
    line-height: 24px;
    color: #777777;
    font-family: 'lato', sans-serif;
    font-weight: 300;
}

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

/* ZAOKRAGLENIA INPUTOW*/
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 6px;
    height: 46px;
    padding-right: 50px;
    background: #fff;
}

.form button.captcha-refresh.btn.btn-default {
    right: 5px;
    border: 1px solid #fff;
    border-left: 1px solid #e7e7e7;
    background: transparent;
    width: 50px;
    border-radius: 0 6px 6px 0;
    height: 46px;
}

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

@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: #242424;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 30px;
    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: 11px;
}

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

form.form button.btn.btn-secondary {
    margin: 0 auto;
    display: block;
    float: right;
    width: auto;
    padding: 0 17px;
    border-color: #f5c931;
    color: #000;
    font-weight: bold;
    font-family: var(--font-secondary);
    font-size: 15px;
    background: #f5c931;
}

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

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

.checkbox {
    margin-bottom: 0;
    margin-top: 2px;
}

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

.form-box {
}

.row.after-consent-row {
    margin-bottom: 10px;
    margin-top: 0;
}

.row a {
    text-transform: uppercase;
    color: #242424;
    font-weight: bold;
}
@media screen and (min-width: 1140px) {
    .row a:hover {
        text-decoration: underline;
    }

}

.form-element-option-text a {
    font-weight: bold;
}

/**
 * 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;
    -ms-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;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

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

/**
 * ANIMATABLE ICON
 */

.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * 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%;
    -ms-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-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


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

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

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

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

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

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

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

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * 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%;
}

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

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


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

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


/**
 * GALLERY
 */

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

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

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.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.6);
    transition: opacity 0.3s;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

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


/**
 * BUTTONS
 */

.btn.btn-lg {
    line-height: 42px;
    border: 1px solid #000;
    height: 46px;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    padding: 0 40px;
    position: relative;
    transition: all 300ms ease-out;
    font-weight: bold;
    border-radius: 5px;
    font-size: 15px;
}

.btn.btn-sm {
    border-radius: 20px;
    line-height: 38px;
    border: 1px solid;
    height: 40px;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    position: relative;
    transition: all 300ms ease-out;
    font-style: italic;
    font-weight: bold;
    font-size: 15px;
    padding: 0 30px;
}

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

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

.btn.btn-secondary {
    background: #f12513;
    color: #fff;
    border-color: #f12513;
}

@media screen and (min-width: 1140px) {
    .btn.btn-secondary:hover {
        background: #fff;
        color: #f12513;
    }
}


.btn.btn-default {
    background: #fff;
    color: #13235b;
    border-color: #e5e5e5;
}

@media screen and (min-width: 1140px) {
    .btn.btn-default:hover {
        background: #13235b;
        color: #fff;
        border-color: #13235b;
    }
}

.btn.has-icon {
    display: flex;
    font-family: var(--font-secondary);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    align-items: center;
    padding-left: 3px;
    padding-right: 16px;
}

.btn.has-icon .btn-icon svg, .btn.has-icon .btn-icon svg * {
    fill: #fff;
    transition: all 300ms ease-out;
}

.offer-box-title {
    font-size: var(--font-45);
    font-weight: normal;
    font-family: var(--font-secondary);
    line-height: 115%;
}

.offer-box-title strong {
    display: block;
}

.offer-box-container {
    padding-top: 96px;
}

.offer-line1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 44px;
}

.offer-items-wrapper {
    width: 80.5%;
}

.offer-line1 .offer-items-wrapper {
    width: 53%;
}

.offer-items {
    margin: -20px -16px;
    display: flex;
    /* align-items: center; */
}

.offer-item {
    width: 50%;
    padding: 16px;
}

.offer-title {
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 19px;
}

.offer-title strong {
    display: block;
    font-size: var(--font-20);
    font-family: var(--font-secondary);
    line-height: 115%;
}

.offer-item-content {
    text-align: center;
    border-radius: 13px;
    box-shadow: 0 5px 5px 0 rgba(31, 30, 27, 0.15);
    padding: 30px 12% 25px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}


.offer-price {
    font-size: var(--font-24);
    font-weight: 900;
}

.offer-line2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 44px;
}

.offer-line3 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 44px;
}

.offer-item-save .offer-title strong {
    font-size: var(--font-18);
    color: #fff;
    font-weight: normal;
}

.offer-item-content a {
    font-size: var(--font-30);
    font-weight: 900;
    color: #fff;
}

.about-box-container {
    padding-top: 196px;
    position: relative;
    background: url(../images/about_bg.png) no-repeat center bottom / 100% auto;
}
.watermark-title {
    position: absolute;
    font-size: var(--font-320);
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: bold;
    color: rgba(0,0,0,0.1);
    line-height: 1;
    top: -80px;
    left: 3%;
    z-index: 1;
}

.about-text-title {
    font-size: var(--font-45);
    font-weight: normal;
    font-family: var(--font-secondary);
    line-height: 115%;
    margin-bottom: 38px;
}

.about-text-title strong {
    display: block;
}

.about-box {
    display: flex;
    justify-content: space-between;
}

.about-text {
    width: 38%;
    padding-top: 121px;
}

.about-right {
    width: 50%;
    position: relative;
}

.about-right-title {
    font-weight: bold;
    font-family: var(--font-secondary);
    line-height: 100%;
    font-size: var(--font-120);
    font-style: italic;
    display: block;
    position: absolute;
    z-index: 2;
    right: 0;
    white-space: nowrap;
    top: 12%;
}

.large-circle {
    border-radius: 50%;
    width: 125%;
    margin-left: 9%;
}

.yellow-circle {
    width: 55%;
    display: block;
    background-color: #f5c931;
    padding-bottom: 55%;
    border-radius: 50%;
    position: absolute;
    top: -4%;
    left: 8%;
}

.medium-circle {
    position: absolute;
    border-radius: 50%;
    width: 44%;
    margin-left: -1%;
    top: 41%;
}

.small-circle {
    position: absolute;
    border-radius: 50%;
    width: 36%;
    margin-left: -22%;
    top: 73%;
}


.info-box-container {
    padding-top: 95px;
    padding-bottom: 106px;
    position: relative;
    background: url(../images/info_bg.png) no-repeat bottom center #f2f2f2;
}

.info-box {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
    position: relative;
}

.info-item {
    padding: 6px;
    width: 25%;
    display: flex;
    position: relative;
    text-align: center;
    margin-bottom: 6px;
}

.info-item .info-inner {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    padding: 0 50px;
}

.info-icon {
    position: relative;
    width: 170px;
    margin: 0 auto -19px;
}

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


.info-item.long {
    width: 50%;
}

.info-text {
    font-weight: bold;
    line-height: 30px;
    font-size: var(--font-18);
}

.info-title {
    font-size: var(--font-45);
    font-weight: normal;
    font-family: var(--font-secondary);
    line-height: 165%;
}

.info-title strong {
    font-weight: bold;
    font-family: var(--font-secondary);
    line-height: 100%;
    font-size: var(--font-120);
    font-style: italic;
    display: block;
}

.info-box-title {
    text-align: left;
    margin-top: -16px;
}

.info-item.long .info-inner {
    padding-left: 0;
}

.contact-box-container {
    padding-top: 65px;
    padding-bottom: 77px;
    background: #e8e8e8 url(../images/contact_bg.png) no-repeat 3% 37%;
    position: relative;
}

.contact-box {
    display: flex;
}

.contact-left {
    width: 35%;
    padding-top: 210px;
}

.contact-right {
    width: 65%;
}

.logo-min {
    padding-top: 49px;
}

.contact-title {
    font-size: var(--font-120);
    font-style: italic;
    display: block;
    font-family: var(--font-secondary);
    line-height: 127%;
    font-weight: 900;
}

.contact-box-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-bottom: 48px;
    align-items: center;
}

.form-title {
    font-size: var(--font-24);
    font-weight: normal;
    font-family: var(--font-secondary);
    line-height: 120%;
    margin-bottom: 24px;
}

.contact-links .contact-link {
    margin-left: 0;
    margin-bottom: 40px;
}

.maps-box-container iframe {
    width: 100%;
    height: 590px;
    display: block;
}

.info-circle {
    border-radius: 50%;
    background-color: rgb(245, 201, 49);
    width: 22%;
    padding-bottom: 22%;
    position: absolute;
    left: -6%;
    top: -8%;
}

.contact-circle {
    border-radius: 50%;
    background-color: rgb(245, 201, 49);
    width: 22%;
    padding-bottom: 22%;
    position: absolute;
    right: -4%;
    top: -7%;
}

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