/*
Theme Name: Temp theme
Theme URI: https://www.aurelistechnology.com/
Author: Your Name or Company Name
Author URI: https://www.yourwebsite.com/
Description: A modern and responsive WordPress theme for technology companies, designed for showcasing services, team, and client testimonials.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-background, responsive, custom-logo, custom-menu
Text Domain: technology
*/

/* Theme styles start here */

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto/Roboto-Light.ttf') format('truetype');
    font-weight: 300; /* Light jest o wadze 300 */
    font-style: normal;
}

html {
    font-size: 16px;
}
/* Ogólne style strony */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #FFF;
    background-color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow-x: hidden;
}

/* Stylizacja nagłówka */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100vw;
    background-color: #000; 
    z-index: 1000; 
    transition: transform 0.3s ease;
}

.site-header.hidden {
    transform: translateY(-100%); 
}

.site-header.sticky {
    transform: translateY(-100%);
}

.menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin: 0 58px;
}

@media screen and (max-width: 800px) {
    .menu-bar {
        margin: 0 38px;
    }
}

.menu-bar__logo {
    margin-top: 8px;
}

.menu-bar__logo a, .menu-bar__logo-img {
    height: 54px;
}

.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.primary-menu li {
    margin-left: 73px;
}

.primary-menu a {
    color: #9DBCD1;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.primary-menu a:hover, .primary-menu a:active {
    color: #FFF;
}

/* Book a demo btn */
.primary-menu li:last-child a {
    color: #000;
}
.primary-menu li:last-child {
    border-radius: 15px;
    background: #FFD621;
    padding: 10px 57px;
}

.primary-menu li:last-child.button--primary {
    background-color: #FFD621;
}

.primary-menu li:last-child.button--primary:hover {
    background: radial-gradient(169.93% 34.79% at 20.06% 42.31%, #FFF 25.53%, #FFD621 100%);
    background-size: 300% 300%;
    animation: gradientAnimation 1.5s infinite;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: fadeInDown 0.5s;
    z-index: 1000000;
}

@keyframes fadeInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.menu-bar__navigation {
    display: none;
}

.menu-bar__toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 7px;
    align-items: center;
    justify-items: center;
    /* hamburger mobile menu
    display: flex;
    flex-direction: column;
    justify-content: space-around;*/
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-bar__toggle span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.menu-bar__toggle.open {
    gap: 13px;
}

.menu-bar__toggle.open span {
    width: 4px;
    height: 4px;
}

.menu-bar__toggle.open span:nth-child(2) {
    transform: translate(-9px, 9px);
}

.menu-bar__toggle.open span:nth-child(3) {
    transform: translate(-9px, 9px);
}

.menu-bar__toggle.open span:nth-child(4) {
    transform: translate(9px, 9px);
}

.menu-bar__toggle.open span:nth-child(6) {
    transform: translate(0px, -18px);
}

.menu-bar__toggle.open span:nth-child(8) {
    transform: translate(9px, -9px);
}

/* hamburger mobile menu
.menu-bar__toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-bar__toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
}

.menu-bar__toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-bar__toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 0;
}*/

.mobile-menu {
    position: absolute;
    transform: translateX(100vw);
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    height: 100vh;
    transition: transform 0.6s ease;

    .primary-menu {
        flex-direction: column;
        height: 400px;
        justify-content: space-evenly;
        li {
            margin-left: 0;

        }
    }
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__list li {
    padding: 0.5rem 0;
}

@media (min-width: 1300px) {
    .menu-bar__navigation {
        display: block;
    }

    .menu-bar__toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}

.mobile-menu.open {
    display: block;
    transform: translateX(0);

}





.page-content {
    /*padding-bottom: 80px;*/
    background-image:  url('./assets/home images/background-image2.jpg');
    background-repeat: no-repeat;
    background-position: top center;
   /* background-size: cover;*/
    height: 5178px;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width: 2200px) {
    .page-content {
        height: 100%;
        background-size: cover;
        width: 100vw;
    } 
}

@media screen and (max-width: 1920px) {
    .page-content {
        height: 100%;
        background-size: cover;
        width: 100vw;
    } 
}

@media screen and (max-width: 1620px) {
    .page-content {
       /* height: 3600px;*/
    } 
}

.hero-wrapper {
    width: 100vw;
    height: 1080px;
}
@media screen and (max-width: 2200px) {
    .hero-wrapper {
        height: 1080px;
    } 
}
@media screen and (max-width: 2100px) {
    .hero-wrapper {
        height: 1040px;
    } 
}
@media screen and (max-width: 2000px) {
    .hero-wrapper {
        height: 1000px;
    } 
}
@media screen and (max-width: 1920px) {
    .hero-wrapper {
        height: 980px;
    } 
}
@media screen and (max-width: 1700px) {
}
@media screen and (max-width: 1300px) {
    .hero-wrapper {
        height: 800px;
    }
}

@media screen and (max-width: 1000px) {
    .hero-wrapper {
        height: 700px;
    }
}
@media screen and (max-width: 830px) {
    .hero-wrapper {
        height: 720px;
    }
}


.hero {
    max-width: 2200px;
    margin: 0 auto;
}
@media screen and (max-width: 1720px) {
    .hero {
        max-width: none;
    }

}

.hero::before {
    content: '';
    background-image: url('./assets/home images/au-tech-hero3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100vw;
    max-width: 2200px;
    margin: 0 auto;
    height: 1088px;
    position: absolute;
}

@media screen and (max-width: 1920px) {
    .hero::before {
        height: 980px;
        background-size: cover;
    } 
}

@media screen and (max-width: 1300px) {
    .hero::before {
        height: 780px;
    } 
}

@media screen and (max-width: 1000px) {
    .hero::before {
        height: 700px;
    }
}

@media screen and (max-width: 900px) {
    .hero::before {
        background-position: 50% 0;
    }
}

section .hero__logo {
    position: absolute;
    margin-top: 200px;
    margin-left: 200px;
}

section .hero__content {
    position: absolute;
    margin-top: 520px;
    margin-left: 200px;

    .slogan {
        color: #FFD621;
        font-size: 3rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        font-weight: 500;
        width: fit-content;
        
        .slogan__part {
            opacity: 0;

        }
        .slogan__part--02 {
            position: relative;
            left: 6rem;
        }
    }

    .hero__description {
        max-width: 600px;
        position: relative;
        left: 10px;
        opacity: 0;
        
        p {
            color: #FFD621;
            font-size: 1.5rem;
            font-style: normal;
            line-height: normal;
            font-weight: 300;
        }
    }

    .hero__description.fade-in {
        opacity: 1;
    }
}

@media screen and (max-width: 1720px) {
    section .hero__logo {
        margin-left: 4.25rem;
    }
    section .hero__content {
        margin-top: 500px;
        margin-left: 4rem;

        .slogan .slogan__part--02 { 
            left: 4rem;
        }
        .hero__description {
            max-width: 560px;
        }
    }
}



@media screen and (max-width: 1400px) {
    section .hero__content {
        .slogan .slogan__part--02 {
            left: 4.5rem;
        }

        .hero__description {
            margin-top: 0px;
            /*max-width: 90vw;*/
        }
    }
}

@media screen and (max-width: 1300px) {
    section .hero__content {
        margin-top: 400px;
    }
}

@media screen and (max-width: 1200px) {
    section .hero__content {
        .hero__description {
            max-width: 480px;
        }
    }
}

@media screen and (max-width: 1000px) {
    section .hero__logo {
        width: 300px;
        margin-left: 3rem;
    }
    section .hero__content {
        margin-left: 3rem;
        .hero__description {
            
        }
    }
}
@media screen and (max-width: 830px) {
    section .hero__logo {
        width: 260px;
        margin-top: 340px;
        /* margin-left: 3.5rem; */
    }
    section .hero__content {
        margin-top: 480px;
        .slogan {
            font-size: 2.5rem;
        }
        .hero__description {
            margin-top: 0;
            padding-right: 3rem;
            max-width: 90%;
            p {
                font-size: 1.25rem;
            }
        }
    }
}

@media screen and (max-width: 630px) {
    section .hero__logo {
        width: 200px;
        margin-top: 300px;
        margin-left: 2rem;
    }
    section .hero__content {
        margin: 450px 2rem 0 2rem;
        .slogan {
            font-size: 2rem;
        }
        .hero__description {
            margin-top: 0;
            margin: 0 auto;
            max-width: 360px;
        }
    }
}

@media screen and (max-width: 560px) {
    
    section .hero__logo {
        width: 150px;
        margin-top: 320px;
    }
    section .hero__content {
        margin: 400px 1.5rem 0 1.5rem;
        .slogan {
            font-size: 1.75rem;

            .slogan__part--02 {
                left: 3.5rem;
            }
        }
        
        .hero__description {
            max-width: 240px;
            p {
                font-size: 0.875rem;
            }
        } 
    }
}

@media screen and (max-width: 450px) {
    section .hero__logo {
        margin-left: 1.5rem;
    }
    section .hero__content {
        .slogan {
            font-size: 1.5rem;
        }
        .slogan .slogan__part--02 {
            left: 2rem;
        }
        .hero__description{
            max-width: 180px;

            p {
                font-size: 0.875rem;
            }
        }       
    }
}

@media screen and (max-width: 300px) {
    section .hero__logo {
        margin-top: 160px;
    }
    section .hero__content {
        margin: 240px 1.5rem 0 1.5rem;
    }
}

h1 {
    color: #FFD621;
    font-family: 'Roboto';
    /* font-size: 2.25rem; */
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.section.section--left {
    .section__image {
        left: 40px;
    }
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1720px;
    margin: 0 auto;
    
    .section__image {
        position: relative;
        width: calc(100% - 560px - 6.25rem);
    }

    .section__info {
        width: 400px;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 40px 80px 180px 80px;
        margin-right: 6.25rem;
        margin-left: 0;
        border-radius: 25px;

        h1.section__title {
            margin-bottom: 15px;
            color: #fff !important;
        }

        .section__description {
            margin-bottom: 41px;
            font-size: 18px;
            a {
                color: #FFD621;
            }
        }

        .section__button {
            align-self: center;
            width: 155px;
        }
    }
}

.section {
    height: 1020px;
}

.section--team {
    .section__image {
        img {
            height: 1000px;
            position: relative;
            top: 40px;
        }
    }
    .section__info {
        background: linear-gradient(180deg, #F02E2C 0%, rgba(242, 55, 58, 0.00) 100%);
    }
}

.section--tech {
    position: relative;
   /* top: 60px;*/

    .section__image {
        img {
            height: 1000px;
            position: relative;
            left: 80px;
        }
    }
    .section__info {
        background: linear-gradient(180deg, #FA900C 0%, rgba(245, 132, 30, 0.00) 100%);
    }
}

.section--output {
    position: relative;
   /* top: 20px;*/

    .section__image {
        img {
            height: 1000px;
            position: relative;
        }
    }
    .section__info {
        background: linear-gradient(180deg, #FFD621 0%, rgba(249, 205, 42, 0.00) 100%);
    }
}

.section--clients {
    position: relative;

    .section__image {
        img, video {
            height: 1000px;
            position: relative;
            @media screen and (min-width: 1601px) and (max-width: 1800px) {
                height: 900px;
            }
            @media screen and (min-width: 1501px) and (max-width: 1600px) {
                height: 900px;
                left: -60px;
            }
        }
    }
    .section__info {
        background: linear-gradient(180deg, #61E602 0%, rgba(25, 232, 22, 0.00) 100%);
    }
}

.section--programming {
    position: relative;


    .section__image {
        img {
            height: 900px;
            position: relative;
        }
    }
    .section__info {
        background: linear-gradient(180deg, #379600 0%, rgba(25, 232, 22, 0.00) 100%);
    }
}

@media screen and (max-width: 1800px) {
    .section--team {
        position: relative;

        .section__image {
            img {
                height: 900px;
                position: relative;
                top: 40px;
            }
        }
    }
    
    .section--tech {
        position: relative;
    
        .section__image {
            img {
                height: 850px;
                position: relative;
                left: 80px;
            }
        }
    }
    
    .section--output {
        position: relative;
    
        .section__image {
            img {
                height: 900px;
                position: relative;
            }
        }
    }
    
    .section--clients {
        position: relative;
    
        .section__image {
            img {
                height: 800px;
                position: relative;
                left: 80px;
            }
        }
    }
    
    .section--programming {
        position: relative;
    
        .section__image {
            img {
                height: 700px;
                position: relative;
                left: 80px;
            }
        }
    }

}

@media screen and (max-width: 1600px) {
    .section--team {

        .section__image {
            img {
                height: 700px;
                top: 40px;
                left: 80px;
            }
        }
    }
    
    .section--tech {
    
        .section__image {
            img {
                height: 700px;
                left: 40px;
            }
        }
    }
    
    .section--output {
    
        .section__image {
            img {
                height: 800px;
                left: 40px;
            }
        }
    }
    
    .section--clients {
        .section__image {
            img {
                height: 600px;
                left: 100px;
            }
        }
    }
    
    .section--programming {
    
        .section__image {
            img {
                height: 600px;
                left: 100px;
            }
        }
    }

}

@media screen and (max-width: 1300px) {
    .section .section__image {
        width: 100vw;
        display: flex;
        justify-content: center;
    }
    .section .section__image img, .section .section__image video {
        width: auto;
    }
    .section--team {

        .section__image {
            img {
                left: 60px;
                height: 600px;
            }
        }
    }
    
    .section--tech {
    
        .section__image {
            img {
                left: 0;
                height: 600px;
            }
        }
    }
    
    .section--output {
    
        .section__image {
            img, video {
                left: 0;
                height: 600px;
            }
        }
    }
    
    .section--clients {
        .section__image {
            img {
                left: 0;
                height: 500px;
            }
        }
    }
    
    .section--programming {
    
        .section__image {
            img {
                left: 40px;
                height: 500px;
            }
        }
    }

}

@media screen and (max-width: 1720px) {
    .section--tech {
       /* margin-top: 300px;*/
    }
    
    .section--output {
        /*margin-top: 300px;*/

    }
    .section--clients {
        /*margin-top: 200px;*/
    }
    .section--left {
        .section__image {
            
                /*left: 40px;*/
            
        }
    }
}
/*
@media screen and (min-width: 1301px) and (max-width: 1650px) {
    .section {
        overflow: hidden;
    }
    .section--tech {
        position: absolute;
        top: 1800px;
        margin-top: 300px;
       img {
        bottom: 200px;
        position: relative;
    }
    }
    
    .section--output {
        position: absolute;
        top: 2900px;
        margin-top: 150px;

    }
    .section--clients {
        position: absolute;
        top: 3900px;
        margin-top: 100px;
        .section__image {
            left: 50px;
            img {
                bottom: 100px;
                position: relative;
            }
        }
    }
    .section--left {
        .section__image {
            margin-top: 200px;
                left: 40px;
            
        }
    }
    .section {
        .section__image {
                left: 40px;


            img{
                width: 60vw;
                
            }
            
        }
    }
}*/

@media screen and (min-width: 1301px) {
    .section--left .section__info {
        margin-left: 6.25rem;
        margin-right: 0;

        .section__button {
            align-self: center;
        }
    }
}


@media screen and (max-width: 1720px) {
    .section {
        max-width: 100%;
        .section__image img {
            /*width: 60vw;*/
        }
    }
    .section--output {
        .section__image {
            left: 0;
        }
    }
}

@media screen and (max-width: 1500px) {
    .section {
        /*justify-content: space-around;
        .section__info {
            width: 460px;
        }*/
        .section__image img, .section__image video{
          /*  width: unset;*/
            left: -20px;
            height: 600px;
        }
    }
}

@media screen and (max-width: 1300px) {
    .section {
        flex-direction: column;
        justify-content: center;
        margin: 0;

        .section__info {
            width: 80vw;
            padding: 20px 60px 100px 60px;
            margin: 0 auto;

            .section__title {
                text-align: center;
                margin-top: 0;
            }
        }

            .section__image img {
               /* width: 60vw !important;*/
            }

    }
    .page-content {
        height: auto;
    }
}
@media screen and (max-width: 830px) {
    .section {
        .section__image img, .section__image video {
            height: 400px;
        }
        .section__info .section__button {
            align-self: center;
        }
    }
}

@media screen and (max-width: 800px) {
    .section .section__info {
        padding: 20px 20px 100px;
    }
}

.section--tech {
    .section__image {
        img {
        }
    }
    @media screen and (max-width: 1300px) {
        .section__image {
            order: 1;
        }
        .section__info {
            order: 2;
        }
    }
}

.section--clients {
    @media screen and (max-width: 1300px) {
        .section__image {
            order: 1;
        }
        .section__info {
            order: 2;
        }
    }
}

.button {
    /* border-radius: 16px;
    border: 4px solid #FFD621;
    padding: 17px 36px; */
    width: 260px;
    border-radius: 15px;
    background: #FFD621;
    padding: 10px 57px;
    border: 4px solid #FFD621;

    @media screen and (max-width: 450px) {
        width: 200px;
    }
    @media screen and (max-width: 300px) {
        width: 120px;
    }

    .button__text {
        text-align: center;
        /* color: #FFD621; */
        color: #000;
        font-size: 1.2rem;
    }
}
.button__link {
    text-decoration: none;
    color: #000;
}
.button--primary {
    background-color: #FFD621;
    .button__text {
        color: #000;
    }
}
.button--form {
    background-color: #FFD621;
border: #000;
}

.button--cta {
    position: relative;
    /* transition: color 0.6s ease; */
    /* background-color: #255F9C; */
    /* transition: all 0.6s ease; */
}

.button--cta:hover {
    background: radial-gradient(169.93% 34.79% at 20.06% 42.31%, #FFF 25.53%, rgba(255, 255, 255, 0.00) 100%);
    background-size: 300% 300%;
    animation: fadeIn 0.6s ease-in forwards, gradientAnimation 1.5s infinite;
.button__text {
    
    color: #FFD621;
}
}

.button--primary {
    background-color: #FFD621;
    /* transition: all 0.6s ease; */

}

.button--primary:hover {
    background: radial-gradient(169.93% 34.79% at 20.06% 42.31%, #FFF 25.53%, #FFD621 100%);
    background-size: 300% 300%;
    animation: gradientAnimation 1.5s infinite;
}

.button--primary .button__text {
    color: #000;
}




.footer-wrapper {
    background: #000;
    overflow: hidden;

    .footer {
        display: flex;
        margin: 0 auto;
        max-width: 2200px;
        overflow: hidden;

        .footer__section--logo {
            width: 40%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
    
            .footer__content {
                margin-top: 50px;

                .footer__text {
                    color: #FFF;
                    font-size: 1.1rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }
                
            }

            .footer__links {
                position: relative;
                bottom: 28px;
                display: flex;
                justify-content: space-around;
                width: 400px;
    
                .footer__link {
                    color: #FFF;
                    font-size: 1rem;
                    font-style: normal;
                    line-height: normal;
                    text-decoration: none;
                }
            }

            .footer__copyright {
                bottom: -0.5rem;
                position: absolute;
            }
        }
    
        .footer__section--contact {
            width: 60%;
            position: relative;

            .footer__office-img {
                width: 100%;
                height: 500px;
            }
            .footer__office-img::before {
                content: '';
                background-image: url('./assets/footer/AU_TECH_BKG_01.jpg');
                background-size: cover;
                background-repeat: no-repeat;
                background-position: 0 -180px;
                height: 500px;
                width: 100%;
                position: absolute;
            }

            @media screen and (max-width: 1920px) {
                .footer__office-img::before {
                }
            }

            @media screen and (max-width: 1800px) {
                .footer__office-img::before {
                    background-position: 0 -160px;
                }
            }

            @media screen and (max-width: 1660px) {
                .footer__office-img::before {
                    background-position: 0 -100px;
                }
            }

            @media screen and (max-width: 1520px) {
                .footer__office-img::before {
                    background-position: 0 -20px;
                }
            }

            @media screen and (max-width: 1300px) {
                .footer__office-img::before {
                    background-image: url('./assets/footer/AU_TECH_BKG_02.jpg');
                    background-position: center;
                    width: 100%;
                }
            }
            @media screen and (max-width: 800px) {
                .footer__office-img {
                    height: 300px;
                }
                .footer__office-img::before {
                    height: 300px;
                    width: 100%;
                }
            }

            @media screen and (max-width: 480px) {
                .footer__office-img {
                    height: 240px;
                }
                .footer__office-img::before {
                    background-position: center right;
                    height: 240px;
                }
            }
        }


        .footer__contact-data {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;

            .footer__contact-headline {
                color: #fff;
                font-size: 2.2rem;
                margin-bottom: 50px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                text-align: right;
                margin-top: 30px;
            }

            .footer__contact-table2 {
                display: flex;
                justify-content: space-between;
                width: 320px;
                color: #FFF;
                font-size: 1.1rem;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin-bottom: 0.7rem
            }

            .footer__button {
                margin-top: 40px;
                border-radius: 15px;
                /* background: #FFD621; */
                padding: 8px 57px;
                width: 114px !important;

                .button__text {
                    font-size: 1.2rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    text-decoration: none;
                }
            }

            .footer__contact-table {
                margin-bottom: 48px;

                .footer__contact-row:last-child td{
                    padding-top: 26px;
                }

                td:last-child{
                    padding-left: 37px;
                }

                .footer__contact-label {
                    vertical-align: top;
                }

                .footer__contact-value {
                    max-width: 324px;
                }
            }
        }
        @media screen and (max-width: 1400px) {
            .footer__contact-headline {
                margin-top: 40px;
            }
        }
    }
    @media screen and (max-width: 1300px) {
        .footer {
            flex-direction: column-reverse;
            .footer__section {
                width: 100vw;
                .footer__contact-headline {
                    margin-top: 0px;
                    font-size: 1.5rem !important;
                }
                .footer__contact-data {
                }
            }
            .footer__section--logo .footer__content {
                margin: 80px 100px 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                .footer__logo {
                    padding-right: 80px;
                }
                .footer__text {
                }
            }
        }
    }


    @media screen and (max-width: 560px) {
        .footer {
            .footer__section--contact {
                justify-content: center;

                .footer__contact-data {
                    margin: 0px auto 40px;
                    align-items: center;

                    .footer__contact-table {
                        font-size: 1.25rem;
                    }
                }
            }
            .footer__section--logo {
                .footer__content {
                    align-items: flex-start;
                    flex-direction: column;
                    margin: 50px auto 70px;
                    .footer__logo {
                        margin-bottom: 10px;
                    }
                }
            }
        }
    }
}

.page-content--specific {
    overflow: hidden;
    background-size: inherit;
    
    .section--description {
        margin-top: 0px !important;
        
        .section__info {
            width: calc(100% - 560px);
            .button--cta {
                align-self: flex-start;
            }
        }
    }
    @media screen and (max-width: 1800px) {
        .section--description {
            padding-left: 6.25rem;
        }
    }

    @media screen and (max-width: 1300px) {
        .section--description {
            
            padding: 0;

            .section__info {
                width: 90vw;
                padding: 0;
                margin: 0 auto;
            }
        }
    }
}

.page-content--specific {
    height: fit-content;
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    align-items: start;
    .section {
        height: fit-content;
        align-items: flex-start;
        width: 100%;

        .section__info {
            margin-top: 60px;
        }
    }
}

.page-content--specific.page-content--team {
    background-position: top center;

    
        
          
          .line {
            position: absolute;
            top: 50%;
            width: 300px;
            left: 50%;
            margin-left: -150px;
            height: 3px;
            background: rgba(255,255,255,.1);
            
            &:before {
              animation: progress1 4s infinite;
              transform-origin: 0 0;
              content: "";
              display: block;
              width: 300px;
              height: 100%;
              background: linear-gradient(to right, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.4) 80%, rgba(255,255,255,1));
            }
            
            &:after {
              content: "";
              position: absolute;
              animation: progress2 4s infinite;
              transform-origin: 90% 50%;
              margin-left: -24px;
              top: -9px;
              width: 30px;
              height: 21px;
              border-radius: 2px;
              background: rgba(210,189,255,.55);
              filter: blur(8px);
              box-shadow: 0 0 10px 6px rgba(210,189,255,.4),
                          -20px 0 15px 4px rgba(210,189,255,.3),
                          -40px 0 15px 2px rgba(210,189,255,.2),
                          -60px 0 10px 1px rgba(210,189,255,.1),
                          -80px 0 10px 1px rgba(210,189,255,.05);
            }
          }
    
}
@keyframes progress1 {
    0% {
      transform: scalex(0);
      opacity: .5;
    }
    90% {
      transform: scalex(1);
      opacity: 1;
    }
    92% {
      transform: scalex(1);
      opacity: 1;
    }
    100% {
      transform: scalex(1);
      opacity: 0;
    }
  }
  
  @keyframes progress2 {
    0% {
      transform: scale(.3,.8) translatez(0);
      opacity: 0;
    }
    90% {
      transform: scale(1,1) translatex(300px) translatez(0);
      opacity: 1;
    }
    100% {
      transform: scale(1,1) translatex(300px) translatez(0);
      opacity: 0;
    }
  }

.page-content--specific.page-content--tech {
    background-position: center -1000px;
}

.page-content--specific.page-content--output {
    background-position: center -2100px;
}

.page-content--specific.page-content--clients {
    background-position: center -2800px;

    .section--clients {
        align-items: center;
        display: flex;
    }
}

.page-content--specific.page-content--programming {
    background-position: bottom center;

    .section__image img {
        height: 1000px;
    }
}

.page-content.page-content--info {
    background-image: none;
    background-color: #000;
    padding-top: 100px;

    .links {
        display: flex;
        margin-left: 100px;
        margin-bottom: 50px;
        @media screen and (max-width: 1300px) {
            justify-content: center;
            margin-left: 0;
            width: 100%;
        }
        @media screen and (max-width: 540px) {
            flex-direction: column;
            margin-bottom: 0;
            align-items: center;
        }
        .links__element {
            margin-inline: 15px;
            @media screen and (max-width: 540px) {
                margin-inline: 0;
                margin-bottom: 15px;
                display: flex;
            }
        }
        .links__link {
            color: #FFF;
            font-style: normal;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 15px;
            border-width: 4px;
            border-color: #255F9C;
            background-color: transparent;
            border-style: solid;
            cursor: pointer;
            transition: background 0.6s ease;
            @media screen and (max-width: 540px) {
                width: 60vw;
                text-align: center;
            }
        }
        .links__link:hover {
            background: radial-gradient(169.93% 34.79% at 20.06% 42.31%, #FFF 25.53%, rgba(255, 255, 255, 0.00) 100%);
            background-size: 300% 300%;
            animation: gradientAnimation 1.5s infinite;
            z-index: -1;
        }

        .links__link.active {
            background-color: #255F9C;
        }


    }

    .info__title {
        margin-left: 80px;
    }
    .info__content {
        margin: 0 80px 100px 80px;
    }

    @media screen and (max-width: 1300px) {
        .info__title {
            margin-left: 40px;
        }
        .info__content {
            margin: 0 40px 100px 40px;
        } 
    }

    @media screen and (max-width: 540px) {
        .info__title {
            margin-left: 20px;
        }
        .info__content {
            margin: 0 20px 80px 20px;
        } 
    }
}

.page-content--form {
    padding-top: 100px;
    padding-bottom: 160px;
    height: fit-content;

    .section--form {
        justify-content: center;
        height: fit-content;
        
    }
    .form:has(form.invalid) {
        margin-top: 80px;
    }
    .form {
        background-color: #FFD621;
        width: 700px;
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        margin-top: 80px;


        .form__title {
            color: #000;
            margin-bottom: 0px;
            margin-top: 5px;
            text-align: center;
        }

        .form__subtitle {
            color: #000;
            text-align: center;
            margin-top: 0;
        }

        form {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: center;
            row-gap: 0.7rem;
        }
        p {
            margin: 0;
        }
        input, textarea {
            border-radius: 16px;
            border: 1px solid #FFF;
            background: #FFF;
            width: 300px;
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            color: #000;
            font-size: 1.1rem;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        label {
            color: #000;
            font-size: 1rem;
        }

        input {
            height: 40px;
            padding-left: 5px;
        }

        #no-private-email {
            width: 300px;
            .wpcf7-list-item {
                display: flex;
                align-items: center;
            }

            input {
                width: 25px;
                border-radius: 8px;
                border-color: #000;
                margin-left: 0;
            }
            .wpcf7-list-item {
                margin-left: 0;
                font-size: 1.1rem;
            }
            .wpcf7-list-item-label {
                color: #000;
                margin-left: 15px;
                width: 260px;
            }
        }

        textarea {
            height: 120px;
            width: 630px;
            padding: 5px;
        }

        input[type="submit"] {
            background-color: #000;
            color: #FFD621;
            padding: 17px 36px;
            width: 260px;
            height: auto;
            margin-bottom: 15px;
            transition: all 0.6s ease;
        }

        input[type="submit"]:hover {
            color: #000;
            border: 2px solid #000;
            background: radial-gradient(169.93% 34.79% at 20.06% 42.31%, #FFF 25.53%, transparent 100%);
            background-size: 300% 300%;
            animation: gradientAnimation 1.5s infinite;
        }
        .wpcf7-not-valid-tip {
            font-size: 1rem;
        }
        .wpcf7-spinner {
            position: absolute;
        }

        .required-fields {
            color: #000;
            width: 600px;
            text-align: end;
            margin: 0;
            font-size: 1rem;
        }

        .wpcf7-response-output {
            position: absolute;
            top: 60px;
        }
    }
    .form:has(form.invalid) {
        margin-top: 60px;
    }
    @media screen and (max-width: 1100px) {

        .form:has(form.invalid) {
            margin-top: 120px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        .form {
            width: 500px;
            justify-content: flex-start;

            p {
                width: 80%;
            }
            input, textarea {
                width: 100%;
                
            }

            .required-fields {
                width: 100%;
                padding-right: 30px;
            }
        }
        .wpcf7-response-output {
            width: 80vw;
        }
    } 

    @media screen and (max-width: 580px) {
        .form {
            width: auto;
            margin-inline: 10px;


            p:has(input[type="submit"]){
                            display: flex;
    justify-content: center;
            }

        }
    }

}

video[poster]{
    height:100%;
    width:100%;
    }


/* Animations */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

section .hero__content .slogan__part.typing {
    opacity: 1;
}

.slogan__part--01.typing {
    white-space: nowrap;
    overflow: hidden;
    width: 0; /* Hidden by default */
    animation: typing 1.5s steps(40, end) forwards; /* Animation */
}
.slogan__part--02.typing {
    white-space: nowrap;
    overflow: hidden;
    width: 0; /* Hidden by default */
    animation: typing 1.5s steps(40, end) forwards 0.3s; /* Animation */
}

.fade-in {
    opacity: 0; /* Domyślnie ukryte */
    animation: fadeIn 0.6s ease-in forwards; /* Łagodna zmiana przez 2 sekundy */
}
.hidden {
    opacity: 0;
}



.boxes-section {
    background-color: #000;
    margin: 110px 100px 118px;
    @media screen and (max-width: 1300px) {

    margin: 110px auto 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    @media screen and (max-width: 800px) {

    }

    .boxes-section__title {
        color: #FFF;
        font-size: 2.6rem;
        margin-bottom: 60px;
    }

    .boxes {

        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 10px;

        @media screen and (max-width: 1300px) {
            width: calc(80vw + 120px);
        }

        @media screen and (max-width: 800px) {
            width: calc(80vw + 40px);

        }

        .boxes__box {
            flex: 1;
            height: 210px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            @media screen and (max-width: 1300px) {
                flex-basis: 100%;
                height: 130px;

            }


            .boxes__box-title {
                text-align: center;
                color: #FFF;
                font-size: 2.6rem;
                padding-inline: 20px;

                @media screen and (max-width: 1400px) {
                    font-size: 2.1rem;
                }
            }

            
        }

        .boxes__box:not(:first-child) {
            @media screen and (max-width: 1300px) {
                
                margin-top: 20px;

            }
        }

        .line {
            width: 140px;
            height: 2px;
            margin-top: 35px;
            background-color: white;
            transition: background-color 0.3s ease;
        }
        
        .boxes__box.active .line {
        background-color: #FA900C;
        }

        .boxes__box-description {
            color: #FFF;
            font-size: 18px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            flex-basis: 100%;
            padding: 50px 52px;
            order: 1;
            margin-top: 62px;
            position: relative;
            

            @media screen and (max-width: 1300px) {
                order: unset;
                margin-top: 0;
                padding-inline: 70px;
            }


            p {
                margin: 0;
            }

            .close-description {
                display: none;
                position: absolute;
                right: 28px;
                top: 25px;
                cursor: pointer;

                @media screen and (max-width: 1300px) {
                    display: block;
                }

                @media screen and (max-width: 1000px) {
                    width: 15px;
                    height: 15px;
                }

                @media screen and (max-width: 600px) {
                    width: 10px;
                    height: 10px;
                }
            }
        }

        #box-1, #description-1 {
            background: linear-gradient(180deg, #C9CDDA 0%, rgba(201, 205, 218, 0.00) 100%);
        }

        #box-2, #description-2 {
            background: linear-gradient(180deg, #9EA4AA  0%,rgba(158, 164, 170, 0.00) 100%);
        }

        #box-3, #description-3 {
            background: linear-gradient(180deg, #72787F   0%,rgba(114, 120, 127, 0.00) 100%);
        }

        #box-4, #description-4 {
            background: linear-gradient(180deg, rgba(69, 76, 83, 0.80)  0%,rgba(69, 76, 83, 0.00) 100%);
        }

        #box-5, #description-5 {
            background: linear-gradient(180deg, #26282B   0%,rgba(38, 40, 43, 0.00) 100%);
        }

        #box-1:hover, #box-2:hover, #box-3:hover, #box-4:hover, #box-5:hover {
            background: radial-gradient(169.93% 34.79% at 20.06% 42.31%, #FFF 25.53%, rgba(255, 255, 255, 0.00) 100%);
            background-size: 300% 300%;
            animation: gradientAnimation 1.5s infinite;
            cursor: pointer;
        }
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



@keyframes gradientAnimation {
    0% {
        background-position: top left, top right, bottom right, bottom left;
    }
    25% {
        background-position: bottom left, top left, top right, bottom right;
    }
    50% {
        background-position: bottom right, bottom left, top left, top right;
    }
    75% {
        background-position: top right, bottom right, bottom left, top left;
    }
    100% {
        background-position: top left, top right, bottom right, bottom left;
    }
}