/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-60: 60px;
    --font-48: 48px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;

    /** SPECIFIC **/
    --color-dark: #171717;
}

body {
    color: #000;
    font-family: 'Lato', sans-serif;
}


/**
 * BASIC
 */

em {
    padding-right: 2px;
}
h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}

a {
    color: #000;
}
a:hover,
a:focus {
    color: #000;
    text-decoration: none;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
}

/* 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: 40px;
    padding-right: 40px;
    max-width: 1670px;
    width: 100%;
}

.container-small {
    max-width: 1060px;
}

.container-medium {
    max-width: 1330px;
}

.container--full {
    max-width: 100%;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 30px;
}

.text a {
    text-decoration: underline;
    color: inherit;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
}
/*.mainpage #content{
    overflow: hidden;

}
.mainpage-scrollable{
    position: relative;
}*/
@media screen and (min-width: 1140px) {
    .text a:hover {
        color: #79747a;
    }
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}
.text ul > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}
.text ul > li::before {
    content: "•";
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    font-family: sans-serif;
    position: relative;
    font-weight: 900;
    font-size: 18px;
}

/** 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;
    max-width: 2560px;
    width: 100%;
}

body {
    max-width: 2560px;
}

.fancybox-active header {
    z-index: 100000;
    background-color: transparent !important;
    pointer-events: none;
}

.fancybox-active #main-menu {
    opacity: 0;
    pointer-events: none;
}

.fancybox-active .logo a svg {
    fill: #fff !important;
    opacity: 0.25 !important;
}

.logo {
    float: left;
    position: absolute;
}
.logo a {
    display: block;
    font-size: 0;
    position: relative;
}
.logo a svg {
    max-width: initial;
    max-height: initial;
}
.logo a svg:first-child {
    position: absolute;
    top: 50px;
    left: 10px;
    opacity: 1;
}
.logo a,
.logo a svg:first-child {
    width: 96px;
    height: 123px;
}
.logo a svg:nth-child(2) {
    width: 150px;
    height: 50px;
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: absolute;
    top: 0;
    opacity: 0;
}

.theme--light .logo a svg {
    fill: #fff;
}

.theme--dark .logo a svg {
    fill: #000;
}

#main-menu {
    float: right;
    opacity: 1;
}

#main-menu ul {
    font-size: 0;
    margin: 0 -25px;
}
#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    padding: 45px 25px;
}

#main-menu li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 30px;
    /*color: #000;*/
    display: block;
    transition: all 0.4s;
    position: relative;
    color: transparent !important;
}

#main-menu li a:after {
    content: attr(title);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
}

#main-menu li.active a:after {
    font-weight: 700;
}

.theme--light #main-menu li a:after {
    color: #fff;
}

.theme--dark #main-menu li a:after {
    color: #000;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}
#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

header,
.logo,
.logo a,
#main-menu,
#main-menu ul,
#main-menu li,
.logo a svg,
#main-menu li a {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

@media screen and (min-width: 1140px) {
    #main-menu li a:hover {
        text-decoration: underline;
    }

    #main-menu li a:hover:after {
        font-weight: 700;
    }
}

header.sticky .logo a {
    width: 150px;
    height: 50px;
}

header.sticky .logo a svg:first-child  {
    left: -100px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}

header.sticky .logo a svg:nth-child(2) {
    opacity: 1;
    top: 3px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

header.sticky .logo a svg:first-child {
    width: 150px;
}

header.sticky #main-menu ul {
    margin: 0 -15px;
}

header.sticky #main-menu li {
    padding: 13px 15px;
}

header.theme--dark.sticky {
    background: #fff;
}

/**
 * FOOTER
 */
footer {
}

.footer-bar {
    min-height: 50px;
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-size: 14px;
    color: #4f4f4f;
    background-color: #000;
    font-weight: 600;
}

.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 {
    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;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        color: #fff;
    }

    .copyright-undicom a:hover {
        color: #fff;
    }
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}
/* INPUTY */
.form .form-control {
    /* font-size: 14px; */
}
/* TEXTAREA */
.form textarea.form-control {
    /* height: 130px; */
}
/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}
/* ZAOKRĄGLENIA INPUTÓW */
.form .form-control {
    /* border-radius: 0; */
}
.form button.captcha-refresh {
    /* border-top-right-radius: 0; */
    /* border-bottom-right-radius: 0; */
}

/**
 * MAP POINTS
 */
.map-point .custom-map-wrapper {
    position: relative;
}
.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}
.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}
.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}


/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}
.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}
.logotypes-slider-container {
    height: 100px;
}
.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}
.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}
.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 0;
    border: 1px solid #f0f;
}
.social-icon > * {
    vertical-align: middle;
}
.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 25px 0 25px 20px;
    border-radius: 6px 6px 0 0;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}
.langs-menu ul {
    opacity: 0;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    border-radius: 0 0 6px 6px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
}
.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}
.langs-menu a {
    display: block;
    transition: background-color 0.4s;
}
.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 {
    padding: 5px 15px;
    font-size: 0;
}
.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    text-transform: uppercase;
}
.lang .langs-menu-long {
    display: none;
}
.lang-button {
    position: relative;
    cursor: pointer;
}
.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    transition: all 0.4s;
    font-size: 20px;
    line-height: 12px;
}
.langs-menu.active .lang-button .arrow {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.langs-menu-icon img {
    max-width: 100%;
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}
.article-content::after {
    content: "";
    display: table;
    clear: both;.
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}
.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}
.article-date {
    font-weight: bold;
}
.article-text {
    margin-bottom: 30px;
}


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery {
    max-width: 1920px;
    margin: 0 auto;
}

.gallery-list {
    margin: 0;
    font-size: 0;
}
.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0;
}
.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}
.gallery-picture > img {
    display: block;
    max-width: 100%;
}
.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}
.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.section-realization-wrapper {
    position: relative;
}

.section-realization {
    display: block;
    width: 100%;
    /*padding-bottom: 50%;*/
    height: 100vh;
    z-index: 0;
    background-position: center center;
    background-size: cover !important;
    background-repeat: no-repeat;
    position: relative;
}

.section-realization:before {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
}

.section-realization:after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 25%;
    width: 1px;
    background-color: #fff;
    z-index: 3;
    pointer-events: none;
}

.section-realization-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 6;
    -webkit-transition: filter 0.6s;
    -moz-transition: filter 0.6s;
    -ms-transition: filter 0.6s;
    -o-transition: filter 0.6s;
    transition: filter 0.6s;
}

.section-realization-content-innerWrapper {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.section-realization-content-topLine {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
}

.section-realization.waypoint-start .section-realization-content-topLine {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.section-realization-content-middleLine {
    font-size: var(--font-60);
    font-weight: 700;
    text-transform: uppercase;
}

.section-realization.waypoint-start .section-realization-content-middleLine {
    font-size: 85px;
    font-weight: 300;
}

.section-realization-content-bottomLine {
    max-width: 580px;
    margin: 5px auto 0;
}

.bold {
    font-weight: 700;
}

.section-realization-content-bottomLine .text {
    line-height: 36px;
    font-size: 14px;
}

.section-realization.waypoint-start .section-realization-content-bottomLine {
    margin-top: 35px;
}

.section-realization.waypoint-start .section-realization-content-bottomLine .text {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 52px;
    line-height: initial;
    letter-spacing: 0;
}

.section-realization-content-scroll {
    margin-top: var(--space-40);
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.4s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    cursor: pointer;
}

.section-realization-content-bottomLine .text {
    line-height: 36px;
    letter-spacing: 0.05em;
}

.section-realization:first-child .section-realization-content-topLine {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.section-realization:first-child .section-realization-content-middleLine {
    font-size: 85px;
    font-weight: 300;
    text-transform: uppercase;
}

.section-realization:first-child .section-realization-content-bottomLine {
    padding-top: 10px;
}

.section-realization:first-child .section-realization-content-bottomLine .text {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 52px;
    margin-top: var(--space-25);
}

@media screen and (min-width: 1140px) {
    .section-realization-content-scroll:hover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .mainpage .section-realization-content {
        filter: blur(200px);
    }

    .mainpage .section-realization-content.unblurred {
        filter: blur(0);
    }
}

/*----*/

.contact-section {
    height: calc(100vh - 50px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
}

.contact-section-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 6;
}

.contact-section-content-innerWrapper {
    max-width: 640px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: var(--font-60);
    font-weight: 700;
    text-transform: uppercase;
}

.section-graffiti-caption {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 26px;
}

.section-description {
    margin-top: var(--space-40);
}

.under-video,
.section-apla {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.under-video {
    z-index: 0;
}

.section-apla {
    z-index: 1;
}

.section-image-wrapper {
    position: relative;
}

.section-image-wrapper .section-realization-content-bottomLine {
    margin-top: 60px;
}

.section-description .text {
    overflow: visible;
    font-size: var(--font-24);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.page-heading {
    padding-top: 182px;
    margin: 0 auto 30px;
    min-height: 230px;
}

.page-text {
    min-height: auto;
}

.page-heading-innerWrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.page-heading-title {
    font-size: 85px;
    font-weight: 300;
    text-transform: uppercase;
}

.page-heading-subtitle {
    margin-top: 5px;
}

.page-text .page-heading-subtitle {
    margin-top: 10px;
}

.page-heading-subtitle .text {
    font-weight: 400;
    letter-spacing: 0.05em;
}

.page-heading-subtitle + .text {
    margin-top: 8px;
}

.page-text .page-heading-title {
    font-size: 46px;
}

.page-text .page-heading-subtitle .text {
    text-transform: uppercase;
}

.creators {
    font-size: 0;
    margin: -14px;
}

.creators > * {
    font-size: 1rem;
}

.creator {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 14px;
}

.creator-image {
    font-size: 0;
}

.creator-image > img {
    max-width: 100%;
    display: block;
}

.creator-content {
    max-width: 310px;
    margin: 0 auto 0;
    color: var(--color-dark);
}

.creator-name {
    font-size: var(--font-30);
    line-height: 1;
    font-weight: 900;
    text-align: center;
    margin: var(--space-40) auto 0;
    padding-top: 5px;
    max-width: 250px;
    text-transform: uppercase;
}

.creator-role {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.creator-description {
    margin-top: var(--space-25);
    padding-top: 5px;
}

.creator-description .text {
    text-align: justify;
    font-weight: 300;
}

.section-creators {
    margin-top: 40px;
    margin-bottom: 90px;
    text-align: center;
}

.page-heading + .section-creators {
    margin-top: 80px;
}

.section-text {
    margin: 90px 0;
}

.page-heading + .section-text {
    margin-top: 30px;
    margin-bottom: 40px;
}

.section-text .text {
    font-weight: 300;
    color: var(--color-dark);
    text-align: justify;
}

.page-heading + .section-projects {
    margin-top: 80px;
}

.projects {
    font-size: 0;
}

.projects > * {
    font-size: 1rem;
}

.project {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    position: relative;
}

.project-hover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 50%;
    width: 50%;
    pointer-events: none;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    opacity: 0;
    z-index: 0;
}

.project.active .project-hover {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.project-innerWrapper {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 58%;
    position: relative;
}

.project-contentWrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.project-content {
    color: #fff;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.project-content-topLine {
    font-size: var(--font-24);
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 8px;
}

.project-content-middleLine {
    font-weight: 700;
    font-size: var(--font-48);
    line-height: 1.3;
    text-transform: uppercase;
}

.project-content-bottomLine {
    margin-top: 40px;
}

.section-realization-content-bottomLine + .section-realization-content-bottomLine,
.project-content-bottomLine + .project-content-bottomLine {
    margin-top: 10px;
}

@media screen and (min-width: 1140px) {
    .project.active:hover .project-hover {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        opacity: 1;
    }
}

.fancybox-caption-wrap {
    padding-bottom: 60px;
}

.fancybox-caption {
    font-size: 16px;
    line-height: 22px;
}

.fancybox-slide > video {
    padding: 0;
    margin: 0;
    width: 100%;
}

.fancybox-slide--video video {
    height: 100%;
    background-color: #000;
}

.fancybox-stage.noVideo + .fancybox-caption-wrap {
    padding-bottom: 0;
}