.team-squares {
    display: flex;
    gap: 20px;
}

.team-squares .squares {
    display: flex;
    gap: 15px;
}

.team-squares .square {
    width: 40px;
    height: 40px;
}

.team-section {
    margin-bottom: calc(2 * var(--space-60));
}

.team-section.no-margin-bottom {
    margin-bottom: 0;
}

.team-title-1 {
    font-size: calc(var(--font-36) + 4px);
    line-height: 1.4em;
    font-weight: 800;
    margin-bottom: calc(var(--space-25) + 11px);
}

.team-title-2 {
    font-size: calc(var(--font-36) + 4px);
    line-height: 1.2em;
    max-width: 520px;
    font-weight: 800;
    padding-top: calc(2 * var(--space-60) + 18px);
    margin-bottom: calc(var(--space-40) + 2px);
}

.person-box-wrapper {
    margin-bottom: var(--space-25);
}

.person-box-wrapper:last-child {
    margin-bottom: 0;
}

.person-box {
    display: flex;
    flex-wrap: wrap;
    margin: -25px -17px;
}

.person-item {
    padding: 25px 17px;
    width: 20%;
}

.person-photo {
    margin-bottom: calc(var(--space-25) + 5px);
    aspect-ratio: 300 / 300;
    background-color: rgba(0, 0, 0, .2);
}

.person-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-name {
    display: flex;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    align-items: flex-start;
}

.person-name-square {
    width: 17px;
    height: 17px;
    display:block;
    flex-shrink: 0;
    margin-top: 1px;
}

.person-name-square.border {
    border: 1px solid #000;
}

.person-functions {
    font-size: 15px;
    margin-left: 27px;
    max-width: 190px;
    line-height: 20px;
}

.person-content {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.team-bottom {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: calc(var(--space-40) + 5px);
    padding: calc(2 * var(--space-50)) 0;
}

.team-bottom-top {
    display: flex;
    gap: calc(var(--space-25) + 5px);
}

.team-bottom-item {
    display: flex;
    align-items: flex-end;
}

.team-bottom-item-name {
    font-size: calc(var(--font-48) + 2px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    padding-left: 20px;
}

.team-bottom-item-square {
    width: 42px;
    height: 42px
}

.team-bottom-bottom {
    display: flex;
    gap: calc(var(--space-50) + 5px);
    align-items: center;
}

.team-bottom-bottom-title {
    font-size: var(--font-36);
    font-weight: 300;
    line-height: 1.5555em;
}

.btn-n {
    min-height: 46px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    gap: 22px;
    padding: 0 20px;
}

/* || Publikacje || */
.publications-wrapper {
    margin-top: calc(1px + var(--space-40));
    margin-bottom: calc(var(--space-60));
}

.publications-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * (var(--space-25) + 5px)) calc(-1 * (var(--space-25) - 5px));
}

.publications-item-wrapper {
    padding: calc(var(--space-25) + 5px) calc(var(--space-25) - 5px);
    width: 20%;
}

.publications-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
    cursor: pointer;
}

.publications-item-image {
    border: 1px solid rgba(0, 0, 0, .2);
    padding: calc(var(--space-25) - 6px);
}

.publications-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publications-item-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4444em;
}

.publications-item-text {
    font-size: 15px;
    max-width: 270px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1.3s ease, opacity 0.5s ease, padding-top 0.5s ease;
}

.publications-item:hover .publications-item-text {
    padding-top: 13px;
    max-height: 500px;
    opacity: 1;
}

.technology-title {
    margin-bottom: calc(var(--space-25) + 11px);
}

.technology-title {
    text-align: center;
}

.technology-slider-container {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--space-40));
}

.technology-nav {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.technology-nav-item {
    flex: 1 1 0px;
    padding: 0 calc(var(--space-25) - 5px);
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    color: #ccc;
    transition: .3s all;
    position: relative;
    cursor: pointer;
}

@media screen and (min-width: 1140px) {
    .technology-nav-item:hover {
        color: #000;
    }
}

.technology-nav-item:after {
    position: absolute;
    background-color: #2194D3;
    width: 100%;
    height: 3px;
    content: "";
    opacity: 0;
    bottom: -2px;
    transition: .3s all;
}

.technology-nav-item.active {
    color: #000;
}

.technology-nav-item.active:after {
    opacity: 1;
}

.technology-slider-inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-50);
    align-items: center;
}

.technology-slider-btn {
    flex-shrink: 0;
}

.technology-swiper {
    width: calc(100% - calc(2 * var(--space-50)) - 34px);
    max-width: 1360px;
}

.technology-slide {
    display: flex;
    justify-content: space-between;
    gap: var(--space-60);
    background-color: #fff;
}

.technology-slide-content {
    max-width: 660px;
    margin-top: -12px;
}

.technology-slide-title {
    font-size: calc(var(--font-24) + 6px);
    font-weight: 800;
    line-height: 1.5999em;
    margin-bottom: 24px;
}

.technology-slide-text {
    font-size: 20px;
}

.technology-wrapper {
    margin-bottom: calc(var(--space-60));
}

.technology-slide-img {
    max-width: 50%;
    flex-shrink: 0;
    background-color: #fff;
}

.technology-slide-img img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.prize-wrapper {
    margin-top: calc(var(--space-40) + 1px);
    margin-bottom: calc(2 * var(--space-50) + 7px);
}

.prize-inner {
    display: flex;
}

.prize-image-container {
    width: 49.5%;
}

.prize-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prize-nav-item {
    color: #ccc;
    cursor: pointer;
}

.prize-nav-item.active {
    color: #000;
}

.prize-nav {
    width: 50.5%;
    padding-right: calc(3 * var(--space-50) + 6px);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 6px);
}

.prize-nav-title {
    font-size: calc(var(--font-24) + 6px);
    font-weight: bold;
    line-height: 1.4em;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .20);
    transition: .3s all;
}

.prize-nav-teaser {
    padding-top: 12px;
    font-size: 18px;
    line-height: 1.333em;
    transition: .3s all;
}

.prize-image-container {
    position: relative;
}

.prize-image-container::before{
    content: '';
    width: 100%;
    display: block;
    padding-top: 100%;
}

.prize-image-container-inner::before{
    content: '';
    width: 100%;
    display: block;
    padding-top: 100%;
}


.prize-image {
    height: 100%;
    width: 100%;
    top: 0;
    max-height: 811px;
    position: absolute;
    transition: .7s all;
    opacity: 0;
}

.prize-image.active {
    opacity: 1;
}

.contact-wrapper {
    margin-top: calc(var(--space-40) + 1px);
    margin-bottom: calc(var(--space-60));
}

.contact-inner {
    display: flex;
}

.contact-image {
    width: 50.5%;
}

.contact-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-left {
    width: 49.5%;
    padding-right: calc(2 * var(--space-60) + 18px);
    display: flex;
    flex-direction: column;
}

.contact-company-name {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5334em;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0 ,0, .2);
}

.contact-company-name .square {
    width: 21px;
    height: 21px;
    background-color: #000;
    margin-top: 5px;
}

.contact-collection-list {
    margin-top: 5px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 0;
}

.contact-collection-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    line-height: 46px;
    letter-spacing: 0.85px;
    flex-grow: 1;
}

.contact-collection-item .square {
    width: 12px;
    height: 12px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-bottom: 30px;
}

.contact-section-element {
    display: flex;
    gap: 23px;
    font-size: 18px;
    line-height: 1.472em;
    align-items: center;
}

.contact-section-element .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 1);
    flex-shrink: 0;
}

.contact-section-element a:hover {
    text-decoration: underline;
}

.timeline-top {
    margin-top: calc(var(--space-40) + 1px);
    margin-bottom: 30px;
}

.timeline-top-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-40) + 3px);
}

.timeline-top-left {
    display: flex;
    gap: 20px;
    padding-right: calc(4 * var(--space-60));
}

.timeline-top-left .square {
    background-color: #F29F05;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

.timeline-top-left .content {
    display: flex;
    flex-direction: column;
}

.timeline-top-left .content .line1 {
    font-size: var(--font-30);
    font-weight: 800;
    line-height: 20px;
    margin-bottom: 10px;
}

.timeline-top-left .content .line2 {
    font-size: 18px;
    line-height: 1.4445em;
}

.timeline-top-right {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: calc(4 * var(--space-60));
    gap: calc(var(--space-25) - 2px);
}

.timeline-top-right-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-30);
    font-weight: 600;
    color: #fff;
    background-color: #000;
    padding: 10px 31px;
}

.timeline-top-right-text {
    text-align: right;
    font-size: 18px;
    line-height: 1.445em;
    max-width: 530px;
}

.timeline-list-item {
    display: flex;
}

.timeline-wrapper {
    margin-bottom: calc(var(--space-60) + 3px);
    position: relative;
}

.timeline-bottom {
    margin-bottom: calc(2 * var(--space-50));
}

.timeline-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--space-40) + 10px);
}

.timeline-bottom-left {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.timeline-bottom-left .square {
    width: 21px;
    height: 21px;
    background-color: #F29F05;
    flex-shrink: 0;
}

.timeline-bottom-left .content {
    display: flex;
    flex-direction: column;
}

.timeline-bottom-left .content .line1 {
    font-size: 18px;
    margin-bottom: 17px;
}

.timeline-bottom-left .content .line2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 26px;
}

.timeline-bottom-right {
    max-width: 820px;
    width: 100%;
    padding-left: calc(3 * var(--space-50));
    display: flex;
    flex-direction: column;
    margin-left: auto;
    gap: calc(var(--space-25) + 4px);
}

.timeline-bottom-right-link {
    display: flex;
    gap: 22px;
    align-items: center;
    font-size: calc(var(--font-24) + 5px);
    font-weight: bold;
}

.timeline-bottom-right-link .icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.timeline-bottom-right-link .icon svg {
    display: block;
}

.timeline-list-item {
    display: flex;
}

.timeline-item-content-wrapper {
    display: flex;
    gap: calc(var(--space-25) - 5px);
}

.timeline-item-content-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.timeline-item-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.923em;
    margin-bottom: calc(var(--space-25) + 11px);
}

.timeline-item-list-element {
    position: relative;
    padding-left: 27px;
    font-size: 18px;
    line-height: 1.9445em;
}

/*.timeline-item-list-element.has-image > span {*/
/*    text-decoration: underline;*/
/*    text-decoration-color: #46B34A;*/
/*    cursor: pointer;*/
/*}*/

.timeline-item-list-element:after {
    position: absolute;
    width: 7px;
    height: 7px;
    left: 0;
    content: "";
    background-color: #000;
    top: 0;
    margin-top: 15px;
}

.timeline-item-list-element ul li {
    position: relative;
    padding-left: 27px;
}

.timeline-item-list-element ul li:after {
    position: absolute;
    width: 7px;
    height: 7px;
    left: 0;
    content: "";
    background-color: #46B34A;
    top: 0;
    margin-top: 15px;
}

.timeline-item-desc {
    margin-top: var(--space-40);
}

.timeline-list-item-right {
    width: calc(50% - calc(3 * var(--space-50)));
    margin-left: calc(3 * var(--space-50));
    position: relative;
}

.timeline-item-content-wrapper {
    padding-right: calc(3 * var(--space-60) + 20px);
    width: 50%;
}

.timeline-item-desc .text {
    font-size: 18px;
    line-height: 1.9302em;
}

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

.timeline-item {
    display: flex;
    align-items: stretch;
    padding-top: calc(3 * var(--space-60));
    padding-bottom: calc(3 * var(--space-60));
}

.timeline-item.row-reverse .timeline-item-content-wrapper {
    padding-right: 0;
    padding-left: calc(3 * var(--space-60) + 20px);
}

.timeline-item.row-reverse .timeline-list-item-right {
    margin-right: calc(3 * var(--space-50));
    margin-left: 0;
}

.timeline-item-list-element-image img {
    display: block;
    max-width: 100%;
}

.timeline-item-list-element-image {
    position: absolute;
    inset: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1140px) {
    .timeline-item-list-element-image {
        transition: .6s all;
    }
}

.timeline-item-list-element-image.active {
    opacity: 1;
}

.timeline-scroll {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.timeline-top-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 50.5%;
    background-color: #EBEBEB;
    height: 17px;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.timeline-side-bar {
    position: absolute;
    top: 14px;
    right: calc(50.5% - 17px);
    width: 17px;
    height: 100%;
    background-color: #EBEBEB;
}

.timeline-side-line {
    width: 100%;
    height: 0;
    background-color: #46B34A;
    position: relative;
}

.timeline-side-line.active::before{
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    bottom: 0;
    left: 0;
    background-color: #000;
    right: 0;
}

.timeline-top-line {
    width: 0;
    height: 100%;
    background-color: #46B34A;
    position: relative;
}

.timeline-top-line.active::before{
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
}


.timeline-scroll svg {
    display: block;
}

#main-menu li {
    position: unset;
}

.container-menu-wrapper {
    position: fixed;
    background-color: #fff;
    width: 100%;
    left: 0;
    top: 88px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: var(--space-50) 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
    z-index: 100;
}

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

#main-menu .main-menu-first-level > li > div.container-menu-wrapper.active {
    opacity: 1;
    pointer-events: initial;
}

.container-menu-wrapper .container-menu-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    align-items: flex-start !important;
}

.container-menu-inner {
    max-width: 514px;
    margin-left: auto;
}

.container-menu-nav li.active a {
    color: #F29F05 !important;
}

.container-menu-wrapper .container-menu-nav > ul > li > a {
    font-size: 46px !important;
    line-height: 1.35;
    font-weight: 800 !important;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .container-menu-wrapper .container-menu-nav > ul > li > a:hover {
        color: #F29F05 !important;
        text-decoration: none !important;
    }
}

.container-menu-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-60);
    align-items: center;
}

.category-name {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 800;
    line-height: 77px;
}

.category-close {
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-close svg {
    display: block;
}

.category-close svg path {
    transition: .2s all;
}

.category-close:hover svg path {
    fill: #F29F05;
}

.container-menu-overlay {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
}

#main-menu .main-menu-first-level > li > .container-menu-overlay.active {
    pointer-events: initial;
    opacity: 1;
}

.submenu-icon {
    display: flex;
    align-items: center;
}

.submenu-icon svg {
    display: block;
}

#main-menu > ul > li > a {
    display: flex;
    gap: 15px;
}

.mission-wrapper {
    margin-top: calc(var(--space-40) + 1px);
    margin-bottom: calc(2 * var(--space-60));
    position: relative;
}

.mission-wrapper .big-cube{
    display: block;
    transform: none;
    top: 0;
    right: 0;
    left: initial;
}

.mission-wrapper .big-cube text{
    font-size: 40px;
}

.mission-top-line-wrapper{
    margin-left: min(calc((1640px - 100dvw) / 2), calc(-1 * var(--container-padding)));
    width: 75%;
    position: relative;
}

.mission-top-line-horizontal {
    height: 18px;
    background-color: #46B34A;
    width: 0%;
    animation: drawLineHorizontal 1.2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes drawLineHorizontal {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.mission-top-line-vertical{
    position: absolute;
    right: 0;
    top: 0;
    width: 17px;
    height: 0;
    background-color: #46B34A;
    animation: drawLineVertical 0.6s ease-in-out forwards;
    animation-delay: 1.62s;
}

@keyframes drawLineVertical {
    0% {
        height: 0px;
    }
    100% {
        height: 178px;
    }
}

.mission-bottom-line-wrapper{
    margin-right: min(calc((1640px - 100dvw) / 2), calc(-1* var(--container-padding)));
    margin-left: auto;
    width: 76%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.mission-bottom-line-horizontal {
    height: 18px;
    background-color: #388BCD;
    width: 0%;
    animation: drawLineHorizontal 1.2s ease-in-out forwards;
    animation-delay: 0.5s;
}


.mission-bottom-line-vertical{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 17px;
    height: 0px;
    background-color: #388BCD;
    animation: drawLineVertical2 0.6s ease-in-out forwards;
    animation-delay: 1.62s;
}

@keyframes drawLineVertical2 {
    0% {
        height: 0px;
    }
    100% {
        height: 275px;
    }
}

.mission-inner {
    display: flex;
    justify-content: space-between;
    gap: calc(3 * var(--space-60));
}

.mission-left,
.mission-right,
.mission-top .mission-left-title,
.mission-bottom .mission-right-title {
    max-width: 392px;
}

.mission-left {
    display: flex;
    flex-direction: column;
    gap: 57px;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

.mission-right-title {
    background-color: rgba(56, 139, 205, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 600;
}

.mission-left-title {
    background-color: rgba(70, 179, 74, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 600;
}

.mission-inner .mission-left-title,
.mission-inner .mission-right-title {
    display: none;
}

.mission-top {
    margin-bottom: 57px;
}

.mission-bottom {
    margin-top: 47px;
}

.mission-bottom .mission-right-title {
    margin-left: auto;
}

.footer-col-heading {
    display: flex;
    justify-content: space-between;
}

.footer-toggle-icon {
    display: none;
    align-items: center;
    justify-content: center;
}


.team-squares-left svg {
    max-width: 212px;
}

.menu-group-first a{
    font-weight: 700 !important;
}

.shop-product-list div.alert-info {
    width: 100%;
}

.project-sections > *:last-child {
    padding-bottom: 0 !important;
}

.team-bottom-bottom .btn.btn-n {
    min-width: 181px;
    padding-left: 21px;
    font-weight: 700;
    justify-content: flex-start;
}

.timeline-item-desc .text strong {
    font-weight: 800 !important;
}
@media screen and (min-width: 1140px){
    .menu-rwd{
        display: none !important;
    }
}
