/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-68: 68px;
    --font-55: 55px;
    --font-48: 48px;
    --font-45: 45px;
    --font-40: 40px;
    --font-36: 35px;
    --font-32: 32px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;

    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #ffe400;
}

body {
    color: #000;
    font-family: 'lato', sans-serif;
}

/**
 * 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: #ffe400;
}

a:hover, a:focus {
    color: #ffe400;
}

/**
 * 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: 36px;
    position: relative;
    padding-right: 36px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    left: -16px;
    margin-left: -6px;
    font-family: sans-serif;
    position: relative;
    background: #ffe400;
    top: -3px;
    border-radius: 50%;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 15px 30px;
    border-top: 1px solid #e5e5e5;
    line-height: 120%;
    border-bottom: 1px solid #e5e5e5;
}

.text table[border^="0"] td {
    border: 0 none;
}

.text .iframe-wrapper {
    font-size: 0;
    position: relative;
}

.text .iframe-wrapper::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 56.25%;
}

.text .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text.txt,
.article-text {
    margin-bottom: 30px;
    color: #000;
    font-size: 16px;
    line-height: 30px;
}

.text.txt h1, .article-text h1 {
    /*font-weight: bold;*/
    /*margin-bottom: 34px;*/
    /*font-size: var(--font-40);*/
}

.text.txt h2, .article-text h2 {
    /*line-height: 30px;*/
    /*color: #3a6eaf;*/
    /*text-align: left;*/
    /*padding: 0;*/
    /*margin-bottom: 47px;*/
    /*font-size: var(--font-36);*/
    /*font-weight: 900;*/
    /*overflow: visible;*/

}

.text.txt h3, .article-text h3 {
    /*font-weight: bold;*/
    /*margin-bottom: 34px;*/
    /*font-size: var(--font-20);*/
}

.text.txt h4, .article-text h4 {
    /*font-weight: bold;*/
    /*margin-bottom: 34px;*/
    /*font-size: var(--font-18);*/
}

@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;
}

#container-page {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    /* background: url(../images/page.jpg) no-repeat center 0; */
}

/**
 * HEADER
 */

header.stickable {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
}

.top {
    transition: all 300ms ease-out;
    justify-content: space-between;
    display: flex;
    padding-top: 9px;
    align-items: center;
    padding-bottom: 9px;
    background: #000000;
}

.logo {
    float: none;
    margin-right: 0;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    float: left;
    transition: all 300ms ease-out;
    height: 68px;
}

.top-registration-link {
    line-height: 30px;
    align-items: center;
    font-size: 14px;
    margin-left: 15px;
    position: relative;
    color: #ffe400;
    display: flex;
    padding-left: 27px;
    letter-spacing: 0.1em;
    padding-right: 12px;
    border: 1px solid #ffe400;
    height: 42px;
}

.top-registration-link .link-icon {
    width: 40px;
    height: 40px;
    margin-right: 0;
    transition: all 300ms ease-out;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 7px;
}

.top-registration-link .caption {
    margin-right: 6px;
}

.top-registration-link .link-icon svg *,
.top-registration-link .link-icon svg {
    fill: #ffe400;
    transition: all 300ms ease-out;
}

@media screen and (min-width: 1140px) {
    .top-registration-link:hover {
        color: #000;
        background: #ffe400
    }

    .top-registration-link:hover .link-icon svg *,
    .top-registration-link:hover .link-icon svg {
        fill: #000;
    }
}

#main-menu {
    display: none;
}

.top-left {
    display: flex;
}

.nav-toogle-box {
    margin: 0;
  }

.nav-toogle-box .caption {
    margin-top: 1px;
    color: #ffe400;
    font-size: 10px;
    text-align: center;
    display: block;
    text-transform: uppercase;
    width: 32px;
}

button.nav-toggle.active + .caption {
    display: none;
}

.main-menu-button {
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: #fff;
}

.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;
}

@media screen and (min-width: 1140px) {
    header.stickable.sticky {
        box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
    }
}

.graf-top-left {
    width: 40%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.graf-top-img {
    width: 40%;
    bottom: 0;
    position: absolute;
    left: 31%;
    height: 88%;
}

.graf-top-inner {
    position: relative;
    height: 100vh;
    padding-top: 107px;
}

.graf-top {
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: url(../images/slider_bg.png) no-repeat right top / cover;
}
.graf-top .slick-track,
.graf-top .slick-list {
    display: flex;
    width: 100%;
}

.graf-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.graf-title-big {
    font-weight: bold;
    font-size: var(--font-68);
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.graf-title-small {
    font-size: var(--font-30);
    color: #000;
    font-weight: 300;
    letter-spacing: 0.025em;
}

.graf-top-img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    bottom: 0;
}

.slogan {
    right: var(--container-padding);
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 13vw;
    line-height: 1;
    top: 80px;
    z-index: 1;
}

.slogan .line1 {
    color: #000000;
}

.slogan .line2 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #d4d4d4;
    letter-spacing: -0.01em;
    margin-top: -17px;
}

.graf-element {
    position: absolute;
    bottom: 0;
    width: calc(100% - 2 * var(--container-padding));
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.graf-top .container {
    position: relative;
    z-index: 2;
}

.graf-element img {
    display: block;
    position: absolute;
}

img#t1 {
    right: 28%;
    bottom: 18%;
    max-width: 8%;
}

img#t2 {
    right: 19%;
    bottom: 7%;
    max-width: 7%;
}

img#t3 {
    right: 17%;
    bottom: 18%;
    max-width: 8%;
}

img#t4 {
    right: 5%;
    bottom: 17%;
    max-width: 4%;
}

img#t5 {
    right: 13%;
    bottom: 27%;
    max-width: 6%;
}

img#slider-net {
    position: absolute;
    left: 50%;
    top: 90px;
    margin-left: -960px;
    pointer-events: none;
    z-index: 1;
}

.mouse {
    display: block;
    position: absolute;
    z-index: 6;
    bottom: 56px;
    width: 90px;
    height: 90px;
    right: 7px;
    background: transparent;
    border: 0 none;
    transform: rotate(90deg);
}

.mouse svg, .mouse svg * {
    fill: #000;
    display: block;
    width: 100%;
    height: 100%;
}

button.mouse img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 1140px) {

    .mouse:hover svg, .mouse:hover svg * {
        fill: #ffe400;
    }
}

.know-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 78px;
    position: relative;
    z-index: 1;
}

.know-left {
    width: 59%;
    padding-top: 113px;
}

.know-right {
    width: 33%;
}

.know-text {
    font-size: var(--font-32);
    font-weight: 300;
    font-style: italic;
    width: 87%;
    line-height: 135%;
    padding-left: 17%;
    padding-bottom: 0;
}

.know-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 17%;
}

.author {
    font-size: var(--font-20);
    font-weight: bold;
    font-style: italic;
    margin-top: 45px;
}

.know-bottom img {
    display: block;
    max-width: 67%;
}

.know-title {
    font-weight: bold;
    font-size: var(--font-45);
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.know-right .text.txt {
    margin-bottom: 42px;
}

.slogan-know {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #d4d4d4;
    letter-spacing: -0.01em;
    margin-top: -68px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 11.7vw;
    line-height: 1;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

.know-box-container {
    padding-bottom: 37px;
}

.know-graf {
    position: absolute;
    bottom: 0;
    width: calc(100% - 2 * var(--container-padding));
    left: 0;
    right: 0;
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
}

.know-box-container .container {
    position: relative;
}

img#w1 {
    left: 50%;
    max-width: 4%;
    top: 4%;
    margin-left: 2%;
}

img#w2 {
    left: 50%;
    max-width: 8%;
    top: 14%;
    margin-left: -5%;
}

.know-graf img {
    position: absolute;
}

img#w3 {
    left: 50%;
    max-width: 6%;
    bottom: 37%;
    margin-left: -58%;
}

img#w4 {
    left: 50%;
    max-width: 6%;
    bottom: 45%;
    margin-left: -53%;
}

img#w5 {
    left: 50%;
    max-width: 8%;
    bottom: 37%;
    margin-left: -35%;
}

img#w6 {
    left: 50%;
    max-width: 4%;
    bottom: 30%;
    margin-left: -25%;
}

img#w7 {
    left: 50%;
    max-width: 6%;
    bottom: 13%;
    margin-left: -60%;
    display: none;
}

img#w8 {
    left: 50%;
    max-width: 8%;
    bottom: 14%;
    margin-left: -58%;
}

img#w9 {
    left: 50%;
    max-width: 5%;
    bottom: 24%;
    margin-left: -52%;
}

img#w10 {
    left: 50%;
    max-width: 8%;
    bottom: 21%;
    margin-left: -40%;
}

.services-box-container {
    background: url(../images/service_bg.png) no-repeat top center;
}

.services-box {
    display: flex;
    flex-wrap: wrap;
}

.service-item {
    width: 33.33%;
    text-align: center;
    transition: all 300ms ease-out;
    position: relative;
}

.service-icon {
    max-width: 64%;
    margin: -100px auto -42px;
    transition: all 300ms ease-out;
}

.service-icon img {
    display: block;
    max-width: 100%;
}

a.service-link {
    display: flex;
    height: 700px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18%;
}

.service-title {
    font-weight: normal;
    font-size: var(--font-36);
    color: #000000;
    margin-bottom: 20px;
    transition: all 300ms ease-out;
}

.service-hover {
    opacity: 0;
    position: absolute;
    bottom: -1000px;
    transition: all 300ms ease-out;
}

.service-hover .text.txt {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    line-height: 24px;
    margin-bottom: 42px;
    transition: all 300ms ease-out;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (min-width: 1140px) {
    a.service-link:hover .service-hover {
        position: relative;
        bottom: auto;
        opacity: 1
    }

    .service-item:hover {
        background: #fff;
    }

    .service-item:hover:after, .service-item:hover:before {
        content: '';
        width: 1px;
        height: 122px;
        position: absolute;
        background: #ffe400;
    }
}

.service-item:before {
    left: 0;
    bottom: 0;
}

.service-item:after {
    right: 0;
    top: 0;
}

.technologies-box-container {
    padding-top: 63px;
    position: relative;
}

.technologies-box-container .container {
    position: relative;
}


.technologies-box {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 40px;
}

.technologies-left {
    width: 32%;
    padding-top: 10px;
}

.technologies-right {
    width: 63%;
    margin-right: -4%;
}

.technologies-title {
    font-weight: bold;
    font-size: var(--font-45);
    color: #000000;
    letter-spacing: 0.02em;
    margin-bottom: 31px;
}

.text.txt h3 {
    font-size: 16px;
    font-weight: bold;
}

.text.txt h3:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffe400;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
}

.technologies-right img {
    display: block;
    max-width: 100%;
}

/**
 * FOOTER
 */
footer {
    background: url(../images/footer_bg.jpg) no-repeat top center fixed;
    background-size: cover;
}

.footer-box-container {
    padding-top: 80px;
    padding-bottom: 50px;
}
.footer-box-container .container {
    max-width: 1418px;
}

.footer-boxes {
    display: flex;
}

.footer-boxes > * {
    width: 33.33%;
    text-align: center;
}

.footer-middle img {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

.footer-col-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 34px;
}

.footer-boxes .text.txt {
    font-size: var(--font-20);
    font-weight: 300;
    color: #fff;
    line-height: 186%;
    margin-bottom: 44px;
}

.footer-left {
    padding-top: 89px;
}

.footer-boxes .text.txt a {
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .footer-boxes .text.txt a:hover {
        text-decoration: none;
        color: #ffe400;
    }
}

.social-icon svg {
    fill: #000;
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #ffffff;
    background-color: #050505;
}

.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:hover {
    color: #ffe400;
}

.footer-bar-links > li.active a{color: #ffe400;}

.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: 900;
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    font-family: 'lato', sans-serif;
}

.form .form-required-mark {
    color: #E2001A;
    font-weight: bold;
    font-size: 16px;
}

/* INPUTY */
.form .form-control {
    box-shadow: 0 0 0 transparent;
    color: var(--color-primary);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    letter-spacing: 0;
    border-color: #e3e3e4;
    border-radius: 0;
    font-weight: 300;
    background: #fff;
    font-family: 'lato', sans-serif;
}

.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: 134px;
}

.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: 13px;
    line-height: 24px;
    color: #000;
    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: 0;
    height: 46px;
    padding-right: 50px;
    background: #fff;
}

.form button.captcha-refresh.btn.btn-default {
    right: 5px;
    border-radius: 0;
    border: 1px solid #e7e7e7;
    background: transparent;
    width: 50px;
}

.form i.fa.fa-refresh {
    font-size: 19px;
    color: #000;
}

@media screen and (min-width: 1140px) {
    button.captcha-refresh.btn.btn-default:hover i.fa.fa-refresh {
        color: #ffe400;
    }
}

/**************** 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: #000;
    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: 14px;
}

button.btn.btn-primary .fa {
    float: right;
    line-height: 46px;
}

form.form button.btn.btn-primary {
    text-align: center;
    margin: 0 auto;
    display: block;
    float: none;
    width: auto;
    padding: 0 20px;
    color: #fff;
    background: #000;
    border-color: #000;
    text-transform: uppercase;
    font-family: 'lato', sans-serif;
}

.form .before-consent-row {
    margin-bottom: 0;
    padding-top: 7px;
}

.checkbox {
    margin-bottom: 0;
    margin-top: 18px;
}

.row.consent-all-row {
    color: #a1a1a1;
}

.form-box {
}

.row.after-consent-row {
    margin-bottom: 10px;
    margin-top: 20px;
}

.row a {
    color: #ffe400;
    font-weight: bold;
}

.row a:hover {
    color: #000;
}



@media screen and (min-width: 1140px) {
    .row a:hover {
        text-decoration: underline;
    }

    form.form button.btn.btn-primary:hover {
        background: var(--color-secondary);
        color: #000;
        border-color: var(--color-secondary);
    }

}

/**
 * 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: #fff;
    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: 50px;
    height: 50px;
    border: 1px solid #ffe400;
    background: #ffe400;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon svg {
    fill: #000;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}

@media screen and (min-width: 1140px) {
    a:hover .social-icon {
        background: #000;
        border-color: #000;
    }

    a:hover .social-icon svg {
        fill: #ffe400;
    }
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: none;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    width: 95px;
    float: right;
}

.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;
}

.lang-button .arrow {color: rgba(255,255,255,0.2);margin-left: 3px;}

span.langs-menu-short {display: none;}

.langs-menu ul {background: #000;}

ul span.langs-menu-short {display: inline-block;color: #fff;}

.langs-menu a:hover {background: #000;color: #ffe400;}

ul a:hover span.langs-menu-short {color: #ffe400;}

.lang-button {

    background-color: transparent;
}

/**
 * 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;
}

/**
 * PAGINATION
 */

.pagination-wrapper {
    padding: var(--space-50) 0 0;
}

/*.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: -3px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 3px;
}

.gallery-picture {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    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.5);
    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%);
    background: url(../images/zoom.png) no-repeat center center;
    width: 33px;
    height: 33px;
    margin: 0 auto;
    text-indent: -20000px;
    font-size: 0;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

/**
 * BUTTONS
 */

.btn.btn-lg {
    border-radius: 0;
    line-height: 40px;
    color: #000;
    font-size: 14px;
    border: 1px solid #000;
    height: 42px;
    letter-spacing: 0.1em;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    padding: 0 26px 0 26px;
    font-weight: normal;
    position: relative;
    transition: all 300ms ease-out;
}

.btn.btn-lg.has-arrow {
    padding-right: 60px;
}

.btn.btn-sm {
    border-radius: 0;
    line-height: 34px;
    color: #000;
    font-size: 13px;
    border: 1px solid #000;
    height: 36px;
    letter-spacing: 0.1em;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    padding: 0 47px 0 20px;
    font-weight: normal;
    position: relative;
    transition: all 300ms ease-out;
}

.btn.has-arrow:after {
    background: url(../images/icons/arrow.svg) no-repeat center center /60%;
    content: '';
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 14px;
    transform: rotate(90deg);
    top: 0;
}

@media screen and (min-width: 1140px) {
    .btn.has-arrow:hover:after {
        background: url(../images/icons/arrow_yellow.svg) no-repeat center center /60%;
    }
}

.btn.btn-primary {
    background: #fff;
    color: #000;
    border-color: #000;
}

@media screen and (min-width: 1140px) {
    .btn.btn-primary:hover {
        background: #000;
        color: #ffe400;
        border-color: #000;
    }
}

.btn.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

@media screen and (min-width: 1140px) {
    .btn.btn-secondary:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }
}

.subpage #content {
    padding-top: 86px;
}

.about-box-container {
    background: #fcfcfc;
}

.about-box-container .container {
    max-width: 1350px;
}

.about-box {
    display: flex;
}

.page-heading-title {
    font-weight: bold;
    font-size: var(--font-45);
    color: #000;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.about-left .page-heading-title {
    margin-bottom: 80px;
}

.name-title {
    font-weight: bold;
    font-size: var(--font-55);
    color: #000;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.position-title {
    font-weight: 300;
    font-size: var(--font-30);
    color: #000;
    margin-bottom: 44px;
    letter-spacing: 0.03em;
    display: block;
    text-transform: initial;
    margin-top: 10px;
}

.about-left {
    width: 45%;
    display: flex;
    justify-content: flex-end;
}

.about-right {
    width: 55%;
    position: relative;
}

.about-right-photo img {
    max-height: 792px;
}

.about-right .slogan {
    top: -67px;
    font-size: 11.5vw;
    right: 14px;
}

.about-left-inner {
    max-width: 540px;
}

.about-right-photo {
    width: 48%;
    padding-top: 42px;
    z-index: 2;
    position: relative;
}

.about-right-photo img {
    max-width: 100%;
    display: block;
}

.about-right .graf-element {
    width: 165%;
    right: -5%;
    bottom: 3%;
    left: auto;
}

.know-box-sub-container .container {
    max-width: 1350px;
}

.know-box-sub-container .know-left {
    padding-top: 0;
    width: 50%;
}

.know-box-sub-container .know-text {
    font-size: var(--font-26);
    width: 84%;
    line-height: 140%;
    padding-left: 0;
    padding-bottom: 33px;
}

.know-box-sub-container .know-box {
    padding-top: 67px;
}

.know-box-sub-container .know-bottom {
    padding-left: 0;
}

.know-box-sub-container .author {
    margin-top: 0;
}

.know-box-sub-container .know-bottom img {
    display: block;
    max-width: 67%;
}

.know-box-sub-container .know-right {
    width: 40%;
    padding-top: 79px;
}

.know-box-sub-container {
    position: relative;
    padding-bottom: 40px;
}

.know-box-sub-container .know-graf {
    width: 80%;
    top: 2%;
}

.know-box-sub-container img#w2 {
    top: 18%;
}

.know-box-sub-container img#w4 {
    bottom: 54%;
    margin-left: -54%;
}

.know-box-sub-container img#w3 {
    margin-left: -60%;
    bottom: 41%;
}

.know-box-sub-container img#w10 {
    bottom: 9%;
    margin-left: -41%;
}

.know-box-sub-container img#w9 {
    margin-left: -53%;
}

.know-box-sub-container img#w6 {
    bottom: 9%;
    max-width: 2%;
    margin-left: -29%;
}

.know-box-sub-container img#w7 {
    display: none;
}

.know-box-sub-container img#w5 {
    bottom: 28%;
    margin-left: -37%;
}

.know-box-sub-container img#w8 {
    display: none;
}

.experience-box-title {
    font-size: var(--font-48);
    color: #000;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 900;
}

.experience-box-container {
    padding-top: 45px;
    padding-bottom: 50px;
    position: relative;
    background: url(../images/net3.png) no-repeat right -16px, url(../images/ex_bg.png) no-repeat right top / cover;
}

.experience-year {
    font-size: var(--font-45);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.3);
}

.experience-title {
    font-size: var(--font-30);
    color: #000;
    font-weight: 900;
    margin-bottom: 13px;
}

.experience-item {
    padding-bottom: 38px;
    display: flex;
}

.experience-year {
    width: 50%;
    padding: 0 52px;
}

.experience-desc-box {
    width: 50%;
    padding: 8px 50px 0;
}

.experience-item:nth-child(odd) .experience-year {
    text-align: right;
    background: url(../images/t_l.png) no-repeat right 20px;
}

.experience-item:nth-child(even) .experience-year {
    text-align: left;
    background: url(../images/t_r.png) no-repeat left 20px;
}

.experience-item:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-box {
    position: relative;
}

.experience-box:after {
    content: '';
    height: 100%;
    width: 2px;
    background: #d4d4d5;
    position: absolute;
    left: 50%;
    top: 0;
}

.experience-box-inner:before {
    content: '';
    width: 13px;
    height: 13px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #ffe400;
    border-radius: 50%;
    margin-left: -6px;
    z-index: 2;
}

.experience-box-inner:after {
    content: '';
    width: 13px;
    height: 13px;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #ffe400;
    border-radius: 50%;
    margin-left: -6px;
    z-index: 2;
}

.experience-box-inner {
    position: relative;
    padding-top: 85px;
}

.experience-item:nth-child(even) .experience-desc-box {
    text-align: right;
}

.experience-desc-item {
    margin-bottom: 40px;
}

.valign-title-wrapper {
    width: 1.2em;
    height: 1.2em;
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    z-index: 2;
    pointer-events: none;
    text-align: left;
    left: -87px;
    margin: 0;
    top: 30px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #dadada;
    letter-spacing: -0.02em;
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    line-height: 1;
}

.valign-title {
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
    font-size: 8.1vw;
}

.experience-box-container .container {
    position: relative;
}

.technologies-box-sub-container {
}

.technologies-box-sub-container .page-heading-title {
    max-width: 1280px;
    margin: 0 auto 33px;
}

.technologies-box-sub-container .technologies-left-content {
    width: 524px;
}

.technologies-box-sub-container .technologies-left {
    display: flex;
    justify-content: flex-end;
    width: 43%;
    position: relative;
}

.technologies-box-sub-container .technologies-right {
    width: 52%;
}

.technologies-photo {
    margin-bottom: 21px;
}

.technologies-photo img {
    display: block;
    max-width: 100%;
}

.watermark-technologies {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #dddddd;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 9.4vw;
    line-height: 1;
    text-align: center;
    position: absolute;
    bottom: -16px;
    right: -26%;
    pointer-events: none;
}

.gallery-box {
    max-width: 1270px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 60px;
}

.gallery-title {
    font-size: var(--font-30);
    font-weight: 900;
    color: #000;
    margin-bottom: 45px;
}

.services-box-sub-container {
}

.services-box-sub-container .container {
    max-width: 1350px;
}

.services-box-sub-container .services-box {
    background: url(../images/service_bg.png) no-repeat top center;
}

.services-details-container .container {
    max-width: 1350px;
}

.services-details-container {
    position: relative;
    background: url(../images/uslugi_bg.png) no-repeat top center;
}

.watermark-details-top {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #dddddd;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 12vw;
    line-height: 1;
    margin-top: -40px;
    margin-left: -167px;
    margin-bottom: -52px;
    position: relative;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.details-left img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 95px;
}

.details-left {
    width: 50%;
}

.details-right {
    width: 43%;
}

.watermark-details-bottom {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #dddddd;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 12vw;
    line-height: 1;
    margin-top: -56px;
    position: relative;
    z-index: 1;
    text-align: right;
    pointer-events: none;
    user-select: none;
}

.service-details-element {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 300px;
}

.service-details-element img#t1 {
    bottom: auto;
    top: 16%;
    right: 14%;
}

.service-details-element img {
    display: block;
    position: absolute;
}

.service-details-element img#t2 {
    bottom: 0;
    right: 6%;
}

.service-details-element img#t3 {
    bottom: 32%;
    right: 4%;
}

.service-details-element img#t4 {
    right: 26%;
    bottom: 40%;
}

.service-details-element img#t5 {
    right: 1%;
    bottom: 63%;
}

.steps-box-treatment .container {
    max-width: 1350px;
}

.steps-box-treatment {
    padding-top: 54px;
    padding-bottom: 60px;
    background: url(../images/net2.png) no-repeat right top, url(../images/ex_bg.png) no-repeat right top / cover;
}

.steps-title {
    font-size: var(--font-30);
    font-weight: 900;
    color: #000;
    margin-bottom: 35px;
}

.steps-box {
    border-top: 1px solid #e5e5e5;
}

.step-nb {
    font-size: var(--font-22);
    font-weight: 900;
    text-align: center;
    width: 54px;
    height: 54px;
    line-height: 54px;
    background: #ffe400;
    border-radius: 50%;
}

.step {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 16px;
    padding-top: 46px;
}

.step-nb {
    flex-shrink: 0;
}

.step-desc {
    padding-left: 4%;
}

.step-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 3px;
}

.indications-box-container {
    padding-top: 52px;
}

.indications-box-container .container {
    max-width: 1350px;
}

.indications-title {
    font-size: var(--font-30);
    font-weight: 900;
    color: #000;
    margin-bottom: 35px;
}

.pricelist-details-container {
    background: url(../images/cennik_bg.png) no-repeat top center;
}

.pricelist-details-container .container {
    max-width: 1350px;
}

.accordion.accordion {
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-header-content {
    display: block;
    clear: both;
    margin: 0 auto;
    width: auto;
    padding: 15px 64px 15px 28px;
    position: relative;
}

.accordion-content .text table {
    width: 100%;
    margin: 0;
}

.accordion-content .text table {
    font-size: 16px;
    text-align: left;
}

.accordion-content .text table tr:nth-child(odd) {
    background: transparent;
}

.accordion-content .text table td:last-child {
    text-align: right;
    font-weight: bold;
}

.accordion-box {
    padding-bottom: 40px;
}

.accordion-name {
    display: block;
    line-height: 119%;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: hidden;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.accordion-arrow {
    display: block;
    text-align: center;
    transition: all 300ms ease-out;
    width: 71px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: 0;
    padding: 10px;
}

.accordion-content {
    padding: 0;
}

.accordion-content .text.txt {
    margin-bottom: 0;
}

.accordion-header {
    cursor: pointer;
    background: #ffe400;
    padding: 0;
}

.accordion-header .accordion-arrow img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    transition: transform 0.4s;
}

.accordion-header-content[aria-expanded="true"] .accordion-arrow img {
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

.accordion-arrow:before {
    content: '';
    width: 1px;
    height: 13px;
    background: #000;
    position: absolute;
    left: 9px;
    top: 18px;
}

.btn.btn.btn-back:after {
    right: auto;
    left: 14px;
    transform: rotate(180deg);
}

.btn.btn.btn-back {
    padding-left: 60px;
    padding-right: 26px;
}

.buttons-center {
    text-align: center;
    margin-bottom: 60px;
}

.contact-box-container {
    padding-bottom: 25px;
    background: url(../images/contact_bg.jpg) no-repeat top center;
}

.contact-box {
    display: flex;
    justify-content: space-between;
}

.contact-left {
    width: 38%;
}

.contact-right {
    width: 63%;
}

.contact-right iframe {
    display: block;
    width: 100%;
    height: 460px;
}

.form-box-container {
    padding-top: 50px;
    padding-bottom: 60px;
    background: url(../images/form_bg.jpg) no-repeat top center;
    margin-bottom: 0;
}

.form-box-title {
    margin-bottom: 52px;
    font-weight: 900;
    font-size: var(--font-30);
}

.form-box-container .container {
    max-width: 1350px;
}

.contact-box-container .container {
    max-width: 1350px;
}

.contact-data .text.txt strong {
    font-weight: 900;
}

.contact-data .text.txt a {
    color: #000;
}

@media screen and (min-width: 1140px) {
    .contact-data .text.txt a:hover {
        color: #ffe400;
    }
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.news {
    width: 50%;
    display: flex;
    padding: 5px;
}


.news-link {
    position: relative;
    border: 1px solid #e5e5e5;
    display: flex;
    width: 100%;  background: #fff;
}

.section-top {
    padding-top: 50px;
}

.section-top.news-box-container {
    padding-top: 50px;
    background: url(../images/blog_top.jpg) no-repeat top center, url(../images/blog_bottom.jpg) no-repeat bottom center;
}

.news-box-container .container {
    max-width: 1350px;
}

.news-photo {
    width: 50%;
    position: relative;
}

.news-content {
    width: 50%;
    padding: 52px 35px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    line-height: 170%;
    margin-bottom: 30px;
}

.news-text .text.txt {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 23px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.btn.btn-sm.btn-primary.has-arrow {
    background: transparent;
}

.btn.btn-sm.btn.has-arrow:after {
    transform: rotate(0deg);
    width: 36px;
    height: 36px;
    right: 11px;
}

@media screen and (min-width: 1140px) {
    .btn.btn-sm.btn-primary.has-arrow:hover {
        background: #ffe400;
        color: #000;
        border-color: #ffe400;
    }

    .btn.btn-sm.btn-primary.has-arrow:hover:after {
        background: url(../images/icons/arrow.svg) no-repeat center center /60%;
    }
}

.text-box-container .container {
    max-width: 1350px
}

.contact-data .text.txt ul li:before {
    display: none;
}

.contact-data .text.txt ul li {left: 0;padding-right: 0;}

.service-item .btn.has-arrow:after {
    transform: rotate(0deg);
}

.transform-smooth {
    transition: all 2s;
}

.footer-left iframe {
    height: 250px!important;
}

.personnel-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-60) + 10px);
}

.personnel-link{
    display: flex;
}

.personnel-photo{
    width: 45%;
}

.personnel-photo img{
    display: block;
    max-width: 100%;
}

.personnel-content{
    width: 55%;
    padding-left: calc(2 * var(--space-60));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-40);
}

.personnel-list .personnel-item:nth-of-type(even) .personnel-link{
    flex-direction: row-reverse;
}

.personnel-list .personnel-item:nth-of-type(even) .personnel-link .personnel-content{
    padding-left: 0;
    padding-right: calc(2 * var(--space-60));
}

.personnel-title{
    font-size: 35px;
    font-weight: 700;
    color: #000;
}

.personnel-text .btn.has-arrow:after{
    transform: unset;
}

.personnel-job{
    font-size: 26px;
    font-weight: 300;
}