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

    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #202a4e;
    --color-secondary: #0960ac;
    --color-default: #333;
}

body {
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: var(--color-secondary);
}
.text a{
    font-weight: bold;
    color: var(--color-primary);
}
footer .text a{
    color: #fff;
    font-weight: normal;
}
.text a:hover, .text a:focus {
    text-decoration: underline;
}

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

.mainpage #content {
    padding-top: 0;
}

#content {
    padding-top: 106px;
}

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

.container-xxs {
    max-width: 1030px
}

.container.container-bg {
    max-width: 1840px;
}

.container-small {
    max-width: 1350px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-loupe {
    -webkit-mask-image: url('../images/icons/loupe.svg');
    mask-image: url('../images/icons/loupe.svg');
}

.icon-user {
    -webkit-mask-image: url('../images/icons/user.svg');
    mask-image: url('../images/icons/user.svg');
}

.icon-register {
    -webkit-mask-image: url('../images/icons/register.svg');
    mask-image: url('../images/icons/register.svg');
}

.icon-logout {
    -webkit-mask-image: url('../images/icons/logout.svg');
    mask-image: url('../images/icons/logout.svg');
}

.icon-info {
    -webkit-mask-image: url('../images/icons/info.svg');
    mask-image: url('../images/icons/info.svg');
}

.icon-question {
    -webkit-mask-image: url('../images/icons/question.svg');
    mask-image: url('../images/icons/question.svg');
}

.icon-exp {
    -webkit-mask-image: url('../images/icons/wieloletnie_doswiadczenie.svg');
    mask-image: url('../images/icons/wieloletnie_doswiadczenie.svg');
}

.icon-arrow {
    -webkit-mask-image: url('../images/icons/arrow.svg');
    mask-image: url('../images/icons/arrow.svg');
}

.icon-apply {
    -webkit-mask-image: url('../images/icons/aplikuj.svg');
    mask-image: url('../images/icons/aplikuj.svg');
}

/**
 * THEMES
 */
.btn-row.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-other,
.btn-other:hover,
.btn-other:focus,
.btn-other:active,
.btn-other.active,
.btn-other.active:focus,
.btn-other:hover:focus,
.btn-other:hover:active,
.btn-other:focus:active {
    min-width: 268px;
    min-height: 46px;
    border: 3px solid;
    border-radius: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    padding: 0;
}

.btn.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

.btn.btn-blue {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #ffffff;
}

.btn-other.btn-blue:hover {
    background: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

.btn-other.btn-blue:hover .icon-container {
    background-color: var(--color-secondary);
}

.btn-other.btn-blue:hover .icon {
    background: #fff;
}

.btn-other.btn-white:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #ffffff;
}

.btn-other.btn-white:hover .icon-container {
    background-color: #fff;
}

.btn-other.btn-white:hover .icon {
    background: var(--color-primary);
}

.btn-other.btn-white .icon-container {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    margin-right: 15px;
    transition: background-color, 500ms;
}

.btn-other.btn-white .icon {
    height: 35px;
    width: 25px;
    transition: background, 500ms;
    background: #fff;
    display: block;
}

.btn-other.btn-blue .icon-container {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    margin-right: 15px;
    transition: background-color, 500ms;
}

.btn-other.btn-blue .icon {
    height: 35px;
    width: 25px;
    background: var(--color-secondary);
    display: block;
    transition: background, 500ms;
}

.btn-other .arrow-right {
    justify-self: flex-end;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto 0;
}

.btn.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
    background: transparent;
    border-radius: 30px;
    min-height: 46px;
    padding: 0 var(--space-25);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary.active {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.active:focus,
.btn-secondary:hover:focus,
.btn-secondary:hover:active,
.btn-secondary:focus:active {
    border-radius: 31px;
    padding: 0 var(--space-25);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #ffffff;
}

.btn-secondary.active {
    background-color: #fff;
    color: var(--color-secondary);
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.active:focus,
.btn-default:hover:focus,
.btn-default:hover:active,
.btn-default:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 46px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
}

.btn-default .icon-container {
    width: 30px;
    display: inline-block;
    margin-right: 15px;
    height: 40px;
}

.btn-default .icon {
    width: 100%;
    height: 100%;
    color: #fff;
    display: block;
    transition: color, 300ms;
}

.btn-default .icon-apply {
    margin: 0 -5px;
}

.btn-default.active {
    background-color: #fff;
    color: var(--color-default);
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-primary:not([disabled]):hover,
.btn-primary:not([disabled]).active:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.btn-secondary:not([disabled]):hover,
.btn-secondary:not([disabled]).active:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-default:not([disabled]):hover,
.btn-default:not([disabled]).active:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-default:not([disabled]):hover .icon,
.btn-default:not([disabled]).active:hover .icon {
    color: var(--color-primary);
}

/**
 * BUTTONS
 */

.btn {
    font-size: 15px;
    z-index: 10;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-md {
    min-width: 188px;
}

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

.panel {
    box-shadow: none;
}

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

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

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

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

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    transition: background-color, 500ms;
    left: 0;
    right: 0;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    float: left;
}

.header-center {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding-left: calc(var(--space-50) + var(--space-40));
    padding-right: calc(var(--space-50) + var(--space-40));
}

.header-center #main-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
}

#main-menu ul li:hover > a {
    text-shadow: 0px 0px 1px, 0px 0px 1px, 0px 0px 1px;
}

#main-menu ul li.active > a {
    text-shadow: 0px 0px 1px, 0px 0px 1px, 0px 0px 1px;
}

header .social-list ul li {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    transition: border, 500ms;
    justify-content: center;
    align-items: center;
}

header.sticky .social-list ul li, .subpage header .social-list ul li {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1140px) {
    .social-list ul li:hover,
    .social-list ul li:focus {
        border-color: #fff;
    }

    header.sticky .social-list ul li:hover,
    header.sticky .social-list ul li:focus,
    .subpage header .social-list ul li:hover,
    .subpage header .social-list ul li:focus {
        border-color: var(--color-primary);
    }
}

#main-menu {
    width: 100%;
}

#main-menu a {
    color: #fff;
    transition: color, 500ms;
    font-size: 16px;
    font-weight: 300;
}

#rwd-mainmenu {
    border-top: 1px solid rgba(0, 0, 0, 0.1);;
}

.logo {
    position: relative;
}

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

.logo-white {
    transition: opacity, 500ms;
}

.logo-color {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    transition: opacity, 500ms;
    width: 100%;
}

.subpage .logo-white, header.sticky .logo-white {
    opacity: 0;
}

.subpage .logo-color, header.sticky .logo-color {
    opacity: 1;
}

.subpage header, header.sticky {
    background-color: #ffffff;
}

.subpage #main-menu a, header.sticky #main-menu a {
    color: var(--color-primary);
}

header.sticky .social-icon svg, .subpage .social-icon svg {
    fill: var(--color-primary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.mainpage .header-inner {
    padding: 18px 0 10px 0;
    transition: padding, 500ms;
}

#main-menu {
    pointer-events: auto;
}

#main-menu ul {
    font-size: 0;
}

.header-inner, .mainpage header.sticky .header-inner {
    padding: 10px 0;
    z-index: 1000;

}

.subpage .header-inner, .mainpage header.sticky .header-inner {
    background-color: #fff;
}

#main-menu li {
    position: relative;
    display: inline-block;
    pointer-events: auto;
    font-size: 1rem;
}

.header-center #main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 15px;
    width: 220px;
    padding-top: 36px;

}

.header-center #main-menu li:hover > ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;

}

.header-center #main-menu li > ul > li a {
    color: var(--color-primary);
    display: block;
    width: 100%;
    text-transform: uppercase;
    height: 100%;
    padding: var(--space-25);
}

.header-center #main-menu li > ul > li {
    background-color: #fff;
    box-shadow: 3px 4px 5px rgb(27 27 23 / 13%);
    transition: background-color, 500ms;
}

.header-center #main-menu li > ul > li:hover {
    background-color: var(--color-primary);
}

.header-center #main-menu li > ul > li:hover a {
    color: #fff;
}

#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: 18px 0;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

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

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
}

.header-top .user-nav-item {
    display: flex;
    align-items: stretch;
    position: relative;
}

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
}

.header-top .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
}

.header-top .user-nav-item + .user-nav-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -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);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-top .user-nav-item .icon {
    width: 26px;
    height: 26px;
}

/* general */
.white {
    color: #fff;
}

.left-half {
    width: 50%;
}

.right-half {
    width: 50%;
}

.section-title {
    font-size: calc(var(--font-48) + 7px);
    text-align: center;
    font-weight: 800;
}

.section-desc {
    text-align: center;

}

.main-section-top .section-decoration {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

.main-section-top .section-title {
    background-color: #ffffff;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: url("../images/fortus.png") center center;
    background-repeat: no-repeat;
}

.section-top {
    position: relative;
    padding-top: calc(var(--space-60) + 15px);
    padding-bottom: calc(var(--space-60) + 15px);
}

.section-desc {
    padding-bottom: var(--space-50);
}

.section-top .btn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.title {
    font-weight: 700;
}

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

/* main section */
.main-section .slide {
    background: center center /cover;
    color: #ffffff;
    text-align: center;
    min-height: 920px;
}

@media screen and (max-width: 1920px) {
    .main-section .slide {
        min-height: 100vh;
    }
}

.main-section {
    position: relative;
}

.main-section .slide-decoration {
    position: absolute;
    right: -5%;
    width: 40%;
    top: 10%;
    opacity: 0.4;
    bottom: 0;
    min-width: 500px;
}

.main-section .slide-decoration img {
    width: 100%;
    height: 100%;
    display: block;
}

.slide-content {

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: calc(var(--space-50) * 6) var(--space-50);
}

.main-section {
    position: relative;
}

.slick-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--space-50) + var(--space-25) + 5px);
    z-index: 5;
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1670px;
    width: 100%;
}

.slick-nav .slick-dots {
    display: flex;
    column-gap: 20px;
}

.slick-nav .slick-dots li button {
    background: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition-property: border-color, background-color;
    transition: 500ms;
}

.slick-nav .slick-dots .slick-active button, .slick-nav .slick-dots button:hover {
    background-color: #114076;
    border-color: #114076;
}

.main-title {
    font-size: calc(var(--font-30) * 2);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.17;
}

.main-section .slide .text {
    padding-top: var(--space-25);
    width: 50%;
}

.main-section .slide .btn {
    margin-top: var(--space-25);
}

/* about us page */
.about-us-list {
    display: flex;
    flex-direction: column;
}

.about-us-item {
    display: flex;
}

.about-us-item:first-child .left-half {
    position: relative;
}

.about-us-item .left-half img {
    width: 100%;
}

.about-us-item:first-child .left-half .img-wrapper {
    width: 100%;
}

.about-us-item:first-child .left-half::after {
    content: "";
    border-radius: 50%;
    background: url("../images/logo_circle.jpg") center center /cover;
    position: absolute;
    width: 92px;
    height: 92px;
    right: -46px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.about-us-item .right-half {
    display: flex;
    align-items: center;
}

.about-us-item .title {
    font-size: 19px;
    padding-bottom: var(--space-40);
}

.about-us-item:nth-child(even) {
    flex-direction: row-reverse;
}

.about-us-item:nth-child(odd) .right-half {
    padding-left: calc(var(--space-50) * 2);;
}

.about-us-item:nth-child(even) .right-half {
    padding-right: calc(var(--space-50) * 2);
}

/* about us */
.big-title {
    font-size: 120px;
    font-weight: 800;
}

.about-us-inner {
    display: flex;
}

.about-us-left {
    width: 58%;
}

.about-us-right {
    padding-top: var(--space-40);
    display: flex;
    width: 42%;
    padding-left: calc(var(--space-50) * 2);
    padding-right: var(--space-25);
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.about-us-right .section-decoration {
    left: calc(var(--space-50) * 2);
}

.section-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 37px;
    background: url("../images/logos-line.png") center center;
    background-repeat: repeat-x;
}

.about-us-right .title {
    padding-bottom: var(--space-25);
    font-size: calc(var(--font-24) + 2px);
}

.about-us .btn {
    margin-top: var(--space-40);
}

.about-us .big-title {
    text-align: center;
}

/* main-boxes */
.main-boxes-inner {
    display: flex;
    column-gap: var(--space-25);
}

.main-box {
    background-size: auto 100%;
    flex-grow: 1;
}

.box-title {
    font-size: calc(var(--font-48) + 7px);
    font-weight: 800;
    padding-bottom: 15px;
}

.main-box .text {
    width: 60%;
}

.main-box .buttons-row {
    padding-top: var(--space-40);
    display: flex;
    column-gap: 20px;
}

.main-box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--space-60) * 2) 0;
}

.main-boxes {
    position: relative;
    overflow-y: hidden;

    margin-top: calc(var(--space-60) + var(--space-25) - 5px);
}

.left-box {
    width: 50%;
    background-position-x: 100%;

}

.left-box {
    margin-left: calc((1840px - 1920px) / 2);
}

.right-box {
    margin-right: calc((1840px - 1920px) / 2);
}

@media screen and (max-width: 1920px) {
    .left-box {
        margin-left: calc((1840px - var(--container-padding) - 100vw) / 2);
    }

    .right-box {
        margin-right: calc((1840px - var(--container-padding) - 100vw) / 2);
    }
}

@media screen and (max-width: 1840px) {
    .left-box {
        margin-left: calc(var(--container-padding) * -1);
    }

    .right-box {
        margin-right: calc(var(--container-padding) * -1);
    }
}

.left-box .main-box-content {
    padding-left: calc(var(--space-50) * 3);
}

.left-box{
    position: relative;
}
.right-box{
    position: relative;
}
.main-box{
    overflow: hidden;
}
.right-box:after{
    content: "";
    bottom: -43px;
    right:  -106px;
    -webkit-transform: rotate(21deg);
    -moz-transform: rotate(21deg);
    -ms-transform: rotate(21deg);
    -o-transform: rotate(21deg);
    transform: rotate(21deg);
    width: 154px;
    height: 247px;
    display: block;
    position: absolute;
    background-color: #fff;
}
.left-box::before{
    content: "";
    top: -43px;
    left: -106px;
    -webkit-transform: rotate(21deg);
    -moz-transform: rotate(21deg);
    -ms-transform: rotate(21deg);
    -o-transform: rotate(21deg);
    transform: rotate(21deg);
    width: 154px;
    height: 247px;
    display: block;
    position: absolute;
    background-color: #fff;
}
.right-box {
    width: 50%;
    background-position-x: 0;
}

.main-box .arrow-right {
    font-size: 16px;
}

.right-box .main-box-content {
    padding-left: calc(var(--space-50) * 2);
}

/* trust list */
.trust-list {
    display: flex;
    column-gap: var(--space-25);
}

.trust-item {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.trust-item .icon-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -8%;
}

.trust-item .icon {
    width: 150px;
    height: 150px;
    display: block;
    background-color: var(--color-primary);
}

.trust-title {
    font-size: 17px;
    font-weight: 700;
}

.trust {
    padding-top: var(--space-60);
}

.trust-bottom {
    text-align: center;
    padding-top: var(--space-40);
    padding-bottom: var(--space-60);
}

.trust .section-title::before {
    background-size: contain;
}

/* news box */
.news-boxes {
    display: flex;
    flex-wrap: wrap;
}

.news-thumbnail {
    width: 100%;
    margin-bottom: var(--space-40);
}

.news-box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 1;
    color: var(--color-primary);
    justify-items: start;
}

.news-box .title {
    padding-bottom: 20px;
    font-size: 18px;
}

.news-box .text {
    padding-bottom: var(--space-40);
    flex-grow: 1;
}

.news-box {
    width: 33.3333%;
}

.news-box-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 var(--space-40);
}

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

.news-boxes {
    margin: 0 calc(var(--space-40) * -1);
}

.news-page .news-box {
    padding-bottom: var(--space-60);
    display: flex;
    flex-direction: column;
}

.news-page .section-top {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
    margin-top: var(--space-25);
}

.news-page .news-boxes {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* mainpage news box */
.mainpage .news-box {
    width: 25%;
    display: flex;
    align-items: stretch;
}

.mainpage .news-boxes {
    margin: 0 -15px;
}

.mainpage .news-box-inner {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.main-news {
    background-color: #f8f8f8;
    padding-bottom: calc(var(--space-40) * 2);
}

/* reference */

.reference-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc((var(--space-40) - 4px) * -1);;
}

.reference-item {
    width: 33.3333%;
    display: flex;
    align-items: stretch;
    padding: calc(var(--space-40) - 4px);
}

.reference-item-content {
    flex-grow: 1;
    border: 1px solid rgba(27, 27, 23, 0.1);
    padding: var(--space-60);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: box-shadow, 500ms;
    pointer-events: none;
}

.reference-thumbnail {
    margin-bottom: var(--space-50);
}

.reference .icon-container {
    height: 46px;
    width: 56px;
    margin: -10px;
    margin-right: 0;
}

.reference-item-content .btn {
    pointer-events: auto;
}

.reference-item-content:hover {
    box-shadow: 4px 6px 16px rgba(28, 28, 24, 0.27);
}

.reference-title {
    font-size: 19px;
    font-weight: 700;
    flex-grow: 1;
    text-align: center;
    margin-bottom: var(--space-50);
}

.reference-content {
    padding-bottom: calc(var(--space-60) + 8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* TOGGLE ITEMS */
.toggle-item .content {
    display: none;
}
.toggle-item a{
    color: var(--color-primary);
}

.toggle-inner {
    border: 1px solid rgba(27, 27, 23, 0.1);
    border-radius: 10px;
}

.toggle-item:not(:last-child) {
    padding-bottom: var(--space-25);
}

.toggle-top.active {
    background-color: var(--color-primary);
    color: #ffffff;
}

.toggle-top:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.toggle-item .content {
    padding: var(--space-40) calc(var(--space-40) - 5px);
}

.toggle-top .title {
    padding-right: 5px;
}

.toggle-top {

    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color, 500ms;
    padding: 6px calc(var(--space-40) - 5px);
}

.toggle-top .icon {
    color: var(--color-primary);
    width: 20px;
    height: 35px;
    transition-duration: 500ms;
    transition-property: transform, color;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.toggle-top:hover .icon {
    color: #fff;
}

.toggle-top.active .icon {
    color: #fff;

    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.faq {
    padding-bottom: var(--space-60);
}

.toggle-item .row {
    display: flex;
    padding: var(--space-50);
    margin: 0;
}

.toggle-item .row .title {
    font-size: 19px;
    padding-bottom: var(--space-25);
}

.toggle-item .column {
    width: 33.3333%;
}

.toggle-item .title .icon-container {
    width: 20px;
    height: 15px;
    margin-right: 20px;
    display: inline-block;
}

.toggle-item .row:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.toggle-item .row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.toggle-item .column.map-column {
    width: 66.6666%;
    display: flex;
}

.toggle-item .row {
    line-height: 36px;
    font-size: 16px;
}

.contact-map {
    flex-grow: 1;
}

.contact-page-wrapper {
    position: relative;
}

.contact {
    padding-bottom: var(--space-60);
}

.contact-form .title.center, .offer-form .title.center {
    text-align: center;
    font-size: var(--font-40);
    padding-bottom: var(--space-50);
}

.contact-form .btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-image {
    width: 33vw;
    height: 33vw;
    z-index: -2;
    position: absolute;
    left: -5vw;
    bottom: -5vw;
}

.floating-image .img-wrapper {
    width: 100%;
}

.floating-image img {
    width: 100%;
}

.map-column iframe {
    width: 100%;
    height: 100%;
    min-height: 366px;
}

.contact .toggle-item .content {
    padding: 0;
}

.toggle-item .row:nth-child(even) {
    background-color: #f9f9f9;
}

.toggle-item .row .column {
    display: flex;
    flex-direction: column;
}

.toggle-item .column .text {
    flex-grow: 1;
    display: flex;
    text-align: justify;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    vertical-align: bottom;
}

.toggle-item .column .text a {
    display: inline-block;
}

/* offer */
.offer-page-wrapper {
    position: relative;
}

.offer-page-wrapper .floating-image {
    right: -5vw;
    left: unset;
    bottom: 5vw;
}

/* downloads */
.downloads-list {
    margin: -14px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: var(--space-60);
}

.downloads-item {
    padding: 14px;
    width: 50%;
}

.downloads-item-content {
    padding: var(--space-25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: box-shadow, 500ms;
    pointer-events: none;
}

.downloads-title {
    flex-grow: 1;
    font-size: 15px;
    padding-right: 5px;
}

.downloads-button {
    padding-left: var(--space-25);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.downloads-button a {
    font-weight: 500;
}

.downloads-item .icon-container {
    width: 55px;
    height: 52px;
    margin: -20px 0 -20px -20px;
}

.downloads-item .btn {
    pointer-events: auto;
}

.downloads-item-content:hover {
    box-shadow: 4px 6px 16px rgba(28, 28, 24, 0.27);
}

/* application form */
.fancybox-bg {
    background-color: var(--color-primary);
}

#form-wrapper .fancybox-close-small::after {
    background-color: #eb2117;
    border-radius: 50%;
    width: 60px;
    position: static;
    height: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    vertical-align: middle;
    font-weight: 700;
}

#form-wrapper .fancybox-close-small {
    top: -30px;
    position: absolute;
    right: -5px;
}

#form-wrapper .fancybox-close-small:hover::after {
    background-color: #fff;
    color: #eb2117;
}

.fancybox-stage #form-wrapper {
    max-width: 1270px;
    width: 100%;
    overflow: visible;
    padding-top: var(--space-60);
}
.contact-form .form-element-info{
    font-size: 14px;
    display: block;
    margin-top: 20px;
}
.contact-form .form-element-info .info{
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 15px;
    height: 15px;
    display: inline-flex;
    margin-right: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.contact-form input, .contact-form textarea, .contact-form .captcha-image-wrapper, .contact-form .select2-container .select2-selection {
    border-color: rgba(0, 0, 0, 0.1);
}

#form-wrapper .contact-form-container {
    padding: 0 calc(var(--space-60) * 2 + var(--container-padding));
    padding-top: var(--space-60);
    overflow: hidden;
}

#form-wrapper .btn-row {
    padding-bottom: var(--space-60);
    position: relative;
}

#form-wrapper .btn-file {
    background: #fff;
    border-color: rgba(0, 0, 0, .1);
    cursor: pointer;
    width: 216px;
    border-radius: 5px;
    justify-content: flex-start;
    padding-left: 20px;
}

#form-wrapper .btn-file .fa {
    margin-right: 10px;
}

#form-wrapper .btn-file:hover {
    cursor: pointer;
}

#form-wrapper .btn-file * {
    color: var(--color-primary);
    font-weight: 400;
}

#form-wrapper .title {
    text-align: center;
    font-weight: 800;
    font-size: var(--font-40);
}

#form-wrapper .section-decoration {
    position: absolute;
    left: -170px;
    right: 0;
    top: 5px;
    bottom: unset;
    width: 1270px;
    margin: auto;
}

.checkboxradio-container .glyphicon {
    display: none;
}

/* pagination */

.pagination-wrapper ul li.prev, .pagination-wrapper ul li.next {
    float: unset;
    width: 50px;
    height: 50px;
}

.pagination-wrapper ul li.prev .icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination-wrapper ul li a.btn.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 50px;
    height: 50px;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li {
    font-size: 16px;
    color: #cecece;
}

.pagination-wrapper ul li a:hover, .pagination-wrapper ul li.active a {
    color: var(--color-primary);
}

.pagination-wrapper ul li a.btn .icon {
    width: 34px;
    height: 34px;
}

/**
 * FOOTER
 */
.mobile-arrow {
    display: none;
}

footer {
    background: url("../images/bg-footer.jpg") center center /cover no-repeat;
}

.footer-columns {
    display: flex;
    padding: var(--space-60) 0;
}

.footer-columns-left {
    width: 75%;
    display: flex;
}

.footer-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.footer-col * {
    color: #fff;
}

.footer-col.col-4 {
    width: 25%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
}

.footer-col.col-2 ul, .footer-col.col-3 ul {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

footer li, footer li a {
    color: #ffffff;
    font-weight: 300;
    line-height: var(--space-40);
}

.footer-title {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    padding-bottom: var(--space-40);
}

footer .text {
    line-height: var(--space-40);
}

@media screen and (min-width: 1140px) {
    footer li a:hover, footer li a:focus {
        text-decoration: underline;
        color: #ffffff;
    }

    footer .text a:hover, footer .text a:focus {
        text-decoration: underline;
        color: #ffffff;
    }
}

/* FOOTER BAR */

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0;
    font-weight: 300;
    font-size: 14px;
    color: #d8d8d8;
}

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

.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: 15px 0; */
}

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

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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
}

.btn-file {
    border-radius: 5px;
}

.form-control::placeholder {
    color: var(--color-primary);
}

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

.form .form-element-name {
    font-size: 16px;
    font-weight: 700;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
    cursor: pointer;
}

.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 6px;
    box-shadow: none;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.select2-container .select2-selection--single {
    padding: 0;
}

.form button.captcha-refresh {
    right: 5px;
    border-color: rgba(0, 0, 0, .1);
    color: var(--color-primary);
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '';
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
    -webkit-mask-image: url('../images/icons/arrow.svg');
    mask-image: url('../images/icons/arrow.svg');
    color: var(--color-primary);
    height: 29px;
    width: 17px;
    display: block;
    vertical-align: middle;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}
.select2-dropdown{
    border-color: rgba(0,0,0,0.1);
}
.select2-dropdown--below{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.select2-dropdown-above{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background-color: var(--color-primary);
    color: #fff;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -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);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-primary);
}

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

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

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * 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);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-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%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-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%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-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%;
    -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 > 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-radius: 50%;
    border: 2px solid transparent;
    transition: border-color, 500ms;
}

.social-icon svg {
    fill: #fff;
    transition: fill, 500ms;
}

.social-icon img {
    display: block;
}

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

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0;
    flex-grow: 1;
    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.langs-menu--list li:last-child {
    margin-right: 0;
}

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

.subpage header, header.sticky {
    box-shadow: 3px 4px 5px rgba(27, 27, 23, 0.13);
}

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

    header.sticky .langs-menu--list a.lang:hover,
    header.sticky .langs-menu--list a.lang:focus,
    .subpage .langs-menu--list a.lang:hover,
    .subpage .langs-menu--list a.lang:focus,
    .subpage .langs-menu.langs-menu--list .social-item a:hover {
        border-color: var(--color-primary);
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-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);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }

    .langs-menu.langs-menu--list .social-item a:hover {
        border-color: #fff;
    }
}

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

.langs-menu.langs-menu--list a {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color, 500ms;
}

.langs-menu--list li {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    transition: border, 500ms;
    justify-content: center;
    align-items: center;
}

header.sticky .langs-menu--list li, .subpage .langs-menu--list li {
    border: 2px solid rgba(0, 0, 0, 0.1);
}

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

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

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

.article-gallery {
    padding-top: calc(var(--space-25) + 5px);
}

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

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

.article-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

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

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

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

.article-subtitle {
    font-size: 26px;
}


#form-wrapper .btn-file:hover{
    background-color: var(--color-primary);
}
#form-wrapper .btn-file:hover .text span{
    color: #fff;
}
#form-wrapper input[type=file],
#form-wrapper input[type=file]::-webkit-file-upload-button {
    cursor: pointer;
}
.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    height: 34.5px;
    width: 42px;
    min-height: unset;
}


/**
 * GALLERY
 */

.gallery-list {
    margin: -5px;
    font-size: 0;
    padding-bottom: calc(var(--space-40) * 2);
}

.article-gallery .gallery-list {
    padding-bottom: calc(var(--space-25) * 2);
}

.btn-row {
    padding-bottom: calc(var(--space-25) * 2);
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.3333%;
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.gallery-picture-hover .icon-container .icon{
    color: #fff;
    width: 117px;
    height: 100px;
    margin: -110px;
}
.gallery-picture-hover .icon-container {
    background-color: var(--color-primary);
    border-radius: 50%;
    width: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

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

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

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

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

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}