@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    position: relative;
    scroll-behavior: smooth;

}

/* Cookie warning */
/* #cookie-background{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.692);
    z-index: 98;
    position: fixed;
    left: 0px;
    top: 0px;
    display: none;
} */
#cookie-warn {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 22, 22, 0.801);
    margin: 0;
    letter-spacing: 0.1em;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
    z-index: 99;
    text-align: center;
}

#cookie-warn a {
    color: #080808;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.4s;
    padding: 5px 15px;
    text-decoration: none;
    background: #00aeda;
}

#cookie-warn a:hover {
    color: rgb(0, 0, 0);
    background: #fff;

}

#cookie-warn p {
    font-weight: 300;
    font-size: 0.9em;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-bottom: 5px;
}

@media(max-width: 575px) {
    #cookie-warn p {
        font-size: 0.9em;
        color: rgb(255, 255, 255);
    }
}

.scroll-top-box {
    position: fixed;
    bottom: 40px;
    right: 40px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

}

.scroll-top {
    position: relative;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.5s;
}

.scroll-top span {
    position: absolute;
    height: 20px;
    width: 20px;
    left: 50%;
    top: 50%;
    transform: translateY(-3px) translateX(-50%) rotate(45deg);
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    cursor: pointer;
    transition: 0.4s;
}

.scroll-top:hover span {
    transform: translateY(-7px) translateX(-50%) rotate(45deg);
}

.social {
    position: fixed;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    width: auto;
    padding: 5px;
    /* background: #292929; */
    z-index: 1000;
    animation: social;
    animation-delay: 1s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.social li {
    list-style: none;
}

.social li a {
    color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /* border-radius: 4px; */
    margin-bottom: 5px;

}

.social li a:hover {
    background: #00aeda;
    transition: 0.2s;
}

@keyframes social {
    0% {
        right: -100%;
    }

    50% {
        right: 20px;
    }

    100% {
        right: 0;
    }
}


html {
    max-width: 1920px;
    margin: 0 auto;
}

body {
    height: auto;
}

section {
    overflow: hidden;

}

.space {
    width: 100%;
    height: 100px;
}

.head {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;

}

.head header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: 0.6s;
    background-color: #fff;
}

.head header .logo {
    position: relative;
    text-decoration: none;
    font-size: 26px;
    font-weight: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s;
    height: 100%;

}

.head header .logo span {
    font-weight: 600;
    color: #111;
}

.head header .logo img {
    position: relative;
    height: 35px;
}

.sticky {
    padding: 5px 20px !important;
    background: rgba(255, 255, 255, 0.144);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}




/*MENU BUTTON*/

.head header .menu-btn {
    display: none;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 40px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.menu-btn-burger {

    width: 40px;
    height: 3px;
    background: #111;
    /* box-shadow: 0 2px 5px rgba(37, 37, 37, 0.719); */
    transition: all 0.5s ease-in-out;
    z-index: 1000;
}

.btn-animation {
    animation: jumping 2.5s infinite;

}

.menu-btn-burger::before,
.menu-btn-burger::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #111;
    /* box-shadow: 0 2px 5px rgba(37, 37, 37, 0.719); */
    transition: all 0.5s ease-in-out;
    z-index: 11;

}

.menu-btn-burger::before {
    transform: translateY(-10px);
}

.menu-btn-burger::after {
    transform: translateY(10px);
}

@keyframes jumping {
    0% {
        transform: translateY(0px);
    }

    20% {
        transform: translateY(-10px);
    }

    40%,
    100% {
        transform: translateY(0px);
    }
}

/*ANIMACJA*/

.menu-btn.open .menu-btn-burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
    background-color: #fff;

}

.menu-btn.open .menu-btn-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
    background-color: #fff;

}




/*MENU NAVIGACJA*/
.menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    z-index: 5;

}

.menu ul {
    position: relative;
    display: flex;
    flex-direction: row;
}

.menu ul li {
    list-style: none;
    margin-right: 5px;
}

/* .menu ul li:before{
    content: attr(data-text);
    position: fixed;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 5em;
    font-weight: 700;
    pointer-events: none;
    opacity: 0;
    letter-spacing: 20px;
    transition: 0.5s;
    white-space: nowrap;
}

.menu ul li:hover:before{
    opacity: 0.05;
    letter-spacing: 0px;
} */
.menu ul li a {
    position: relative;
    display: inline-block;
    padding: 10px 10px;
    text-decoration: none;
    /* background: #00bcd4;
    background: transparent; */

    color: #222;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.menu ul:hover li a {
    opacity: 1;
}

.menu ul li a:hover {
    z-index: 1000;
    opacity: 1;
    /* letter-spacing: 5px; */
}


.menu ul li:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    transition: 0.3s;
    z-index: 12;
}

.menu ul li:hover::before {
    width: 80%;
    transition: 0.3s;
    background: #00aeda;
    height: 1px;
}

.active {
    z-index: 1000;
    opacity: 1;
    /* letter-spacing: 5px !important; */
}

.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 1px;
    transition: 0.5s;
    z-index: 12;
    background: #00aeda;
}

/*ZMIANA JĘZYKÓW*/
.languages {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.languages a {
    Color: #444;
    text-decoration: none;
    padding-left: 5px;
    padding-right: 5px;
    transition: 0.4s;
    font-weight: 500;
}

.languages a:hover {
    color: #00aeda;
}

.checked-lang {
    color: #00aeda !important;
}

/*BANNER*/

.underbanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 1;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background: #25adc5; */
    /* background: linear-gradient(90deg, rgb(139, 26, 214), rgb(1, 210, 221) ); */
    /* background: linear-gradient(90deg, #00adb6, #6c16b3 ); */
    /* background: linear-gradient(0deg, #00b689, #6c16b300 ); */

    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
}


.slim-banner {
    width: 80%;
}

.banner img {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 1;
    object-fit: cover;
    z-index: -1;
    filter: grayscale(0.6);
}

@keyframes textFromRight {
    100% {
        opacity: 1;
        transform: translateX(-150px);
    }
}

@keyframes textFromLeft {

    100% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.banner .content {
    margin-top: 10px;
    background-color: #ffffff00;
    padding: 50px 50px 20px 50px;
    overflow: hidden;
}

.banner .content span:nth-child(1) {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: #111;
    animation: slide-up;
    animation-duration: 1s;
    animation-delay: 1s;
}

.banner .content span:nth-child(2) {
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #111;
    animation: slide-right;
    animation-duration: 1s;
    animation-delay: 1s;
}

.banner .content span:nth-child(3) {
    position: absolute;
    bottom: -100%;
    right: 0;
    width: 1px;
    height: 100%;
    background: #111;
    animation: slide-up;
    animation-duration: 1s;
    animation-delay: 2s;
}

.banner .content span:nth-child(4) {
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 1px;
    background: #111;
    animation: slide-right;
    animation-duration: 1s;
    animation-delay: 2s;
}

@keyframes slide-up {
    0% {
        bottom: -100%;
    }

    100% {
        bottom: 100%;
    }
}

@keyframes slide-right {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.banner .content h1 {
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    margin: 0 auto;
    font-size: 75px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
    line-height: 80px;
    letter-spacing: 22px;
    text-transform: uppercase;
    /* -webkit-box-reflect: bottom 1px linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.082)); */
    opacity: 0;
    left: 150px;
    animation: textFromRight;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;

}

.banner .content h1::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 200%;
    width: 1px;
    height: 100%;
    background-color: #02aee2;
    animation: border-up;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

.banner .content h1::after {
    content: '';
    position: absolute;
    left: -200%;
    bottom: -5px;
    width: 140%;
    height: 1px;
    background-color: #02aee2;
    animation: border-right;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes border-up {
    0% {
        top: 200%;
    }

    100% {
        top: -10px;
    }
}

@keyframes border-right {
    0% {
        left: -200%;
    }

    100% {
        left: -60px;
    }
}

/* div .separator{
    margin:0 auto;
    height: 1px;
    width: 100%;
    text-align: center;
    background: #02aee2;
} */
.banner .content h2 {
    font-size: 42px;
    letter-spacing: 2px;
    color: #000000;
    margin: 10px;
    transition: 0.5s;
}

.banner .content p {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgb(0, 0, 0);
    opacity: 0;
    left: 150px;
    text-transform: uppercase;
    animation: textFromRight;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}



/*BUTTONS*/
.btn-box {
    position: relative;
    width: 420px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;

}

.messageBox {
    justify-content: center !important;
}

.btn-box a {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background: #02aee2;
    letter-spacing: 2px;
    font-size: 16px;
}

.btn-box a:nth-child(2) {
    background: #000000;

}

.btn-box a:hover {
    color: rgba(255, 255, 255, 1);
}

.btn-box a span {
    display: block;
    position: absolute;
    background: #fff;
}

.btn-box a span:nth-child(1) {
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
    z-index: 10;
}

.btn-box a:hover span:nth-child(1) {
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}


.btn-box a span:nth-child(2) {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.btn-box a:hover span:nth-child(2) {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s;
}




.btn-box a span:nth-child(3) {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
    transition-delay: 0.5s;
}

.btn-box a:hover span:nth-child(3) {
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
    transition-delay: 0.5s;

}



.btn-box a span:nth-child(4) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
    transition-delay: 0.5s;
}

.btn-box a:hover span:nth-child(4) {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s;
    transition-delay: 0.5s;

}




.scrollDown {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateY(-50px) translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    cursor: pointer;

}

.scrollDown span {
    position: absolute;
    top: 20%;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    animation: scrollDown 1.5s linear infinite;
    opacity: 0;

}

.scrollDown span:nth-child(1) {
    transform: translate(-10px, -10px);

    animation-delay: -0.4s;
}

.scrollDown span:nth-child(2) {
    transform: translate(0, 0);

    animation-delay: -0.2s;

}

.scrollDown span:nth-child(3) {
    transform: translate(10px, 10px);

    animation-delay: 0s;

}

@keyframes scrollDown {
    0% {
        top: -3px;
        left: -3px;
        opacity: 0;
    }

    25% {
        top: 0px;
        left: 0px;
        opacity: 1;
    }

    50%,
    100% {
        top: 3px;
        left: 3px;
        opacity: 0;
    }
}





/*CONTENT*/



/* .section-title
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 80px;
    background: #292929;
    text-transform: uppercase;

}
.section-title h2
{
    font-size: 40px;
    color: #ececec;
}
.section-title h2::before
{
    content: '';
    position: absolute;
    left:-21px;
    top: -10px;
    width: 1px;
    height: 50px;
    background-color: #02aee2;
}
.section-title h2::after
{
    content: '';
    position: absolute;
    left:-40px;
    bottom: -5px;
    width: 140%;
    height: 0.01em;
    background-color: #02aee2;
} */


.service {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #292929;
    padding-bottom: 100px;
    /* padding-top: 80px; */

    border-bottom: 1px solid #02aee279;

}

/* .service-cover
{
    position:absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.1;
} */

.service .container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 80px;

}

.service .container .card {
    position: relative;
    width: 400px;
    min-height: 500px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 40px 10px 0px 10px;
    border: 1px solid rgba(255, 255, 255, 0.103);
    margin: 10px
}

.service .container .card .imgBox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service .container .card .imgBox img {
    width: 100px;
    height: 100px;
    filter: brightness(0.7);
}

.service .container .card .contentBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    color: #ececec;
}

.service .container .card .contentBox h2 {
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: #ececec;
    margin-top: 10px;
}

.service .container .card .contentBox p {
    font-weight: 300;

    text-align: left;
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

.service .container .card .contentBox ul {
    margin-top: 10px;
    margin-left: 10px;

    font-size: 14px;
    letter-spacing: 1px;
}





/* about */
.about {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 100px;
    background: url(../images/onas-bg.jpeg) fixed no-repeat;
}

.about-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.6;
}

.about .contentBox {
    overflow: hidden;
}



.about p.text {
    color: #111;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding: 40px;
    text-align: justify;
}


















/* REFERENCJE  */
.referencje {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 20px;
    background: rgb(65, 64, 64);

}

.sectitle {
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    letter-spacing: 3px;
    margin-top: 110px;
}

.dark {
    color: #111 !important;
}

.sectitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0px;
    width: 0.02em !important;
    height: 40px;
    background-color: #02aee2;
}

.sectitle::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -2px;
    width: 130%;
    height: 0.02em !important;
    background-color: #02aee2;
}

.referencje .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 50px 100px;
    max-width: 1200px;

}



.referencje .container .swiper-container {
    position: relative;
    width: 100%;
    height: auto !important;
    margin: 20px auto;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0);
    border: -1px solid rgb(185, 24, 24);

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide a {
    position: relative;
    display: block;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.referencje .container .buttons-box {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    height: 100px;
}

.referencje .container .buttons-box .swiper-button-next-unique {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.397);
    cursor: pointer;
}

.referencje .container .buttons-box .swiper-button-prev-unique {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.397);
    cursor: pointer;

}

.referencje .container .buttons-box .swiper-button-next-unique span {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    height: 20px;
    width: 20px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: 0.3s;

}

.referencje .container .buttons-box .swiper-button-prev-unique span {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    height: 20px;
    width: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: 0.3s;
}

.referencje .container .buttons-box .swiper-button-next-unique:hover span {
    left: 50%;
}

.referencje .container .buttons-box .swiper-button-prev-unique:hover span {
    left: 50%;
}

















/* REALIZACJE   && NIERUCHOMOŚCI*/
.realizacje {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 20px 80px 20px;
    background: #fff;
    /* background: url(../images/bg-2.jpg) fixed; */
    border-top: 1px solid #02aee26c;
    transition: 0.5s;
    height: auto;
}

.realizacje-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.2;
}


.realizacje .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 0px 0px 0px;
    max-width: 1200px;
    overflow: auto;
}


.realizacje .container-properties {
    max-width: 1000px;
}

.realizacje .hidden-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 0px 0px 0px;
    max-width: 1200px;
}

.realizacje .container-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.realizacje .container-btn .btn {
    padding: 12px 35px;
    background: #02aee2;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.9em;
    transition: 0.5s;
    cursor: pointer;
}

.realizacje .container-btn .btn:hover {
    background: #242424;
}

.realizacje .container-btn .wrap {
    display: none;
}

.portfolio-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 250px;
    height: 300px;
    margin-bottom: 50px;
    margin-left: 25px;
    margin-right: 25px;
}

.portfolio-card .imgBox {

    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

}

.portfolio-card .imgBox::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 50%;
    transition: 0.4s;
    background: #02aee2;
    z-index: 15;
}

.portfolio-card .imgBox p {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 20px;
    background: #02aee2;
    transition: 0.4s;
    opacity: 0;
}

.portfolio-card .imgBox .portfolio-btn {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    border: solid 2px white;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 1;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}


.portfolio-card .imgBox .portfolio-btn img {
    width: 100%;
    object-fit: cover;
    z-index: 2;
    transition: 0.4s;
}

.portfolio-card .imgBox:hover::before {
    width: 90%;
}

.portfolio-card .imgBox:hover p {
    background: #02aee2;
    font-size: 1.5em;
    z-index: 11;
    opacity: 1;
    font-size: 1em;
}



.portfolio-card .contentBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.portfolio-card .contentBox h3 {
    text-align: center;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-transform: uppercase;
    margin: 15px;
    color: rgb(0, 0, 0);
}

.portfolio-card .contentBox p {
    font-size: 0.7em;
    /* color:#02aee2; */
    color: #000;

}


.portfolio-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.815);
    display: none
}

.portfolio-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90vh;
    overflow: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 50px 50px 50px;
    z-index: 1000;
    border: solid 1px #222;
    -webkit-box-shadow: 0px 0px 20px 9px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 20px 9px rgba(0, 0, 0, 0.6);
}


.portfolio-content .close-btn {
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 1;
}

.portfolio-content .close-btn span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #000;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transition: 0.5s;
}

.portfolio-content .close-btn span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #000;
    transform: translateX(-50%) translateY(-50%) rotate(135deg);
    transition: 0.5s;
}

.portfolio-content .close-btn:hover span:nth-child(1),
.portfolio-content .close-btn:hover span:nth-child(2) {
    background-color: #02aee2;

}

.portfolio-content .portfolio-container {
    position: absolute;
    top: 0;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 100px;
    height: auto !important;
}

.portfolio-content .portfolio-container h3 {
    font-size: 1.6em;
    text-transform: uppercase;
    padding: 20px;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    text-align: center;
    margin: 0 auto;
}

.portfolio-content .portfolio-container .realization-desc {
    position: relative;
    width: 100%;
    font-size: 0.9em;
    padding: 10px 10px 10px 10px;
    text-align: left;
    letter-spacing: 0.1em;
    text-transform: uppercase;

}

.portfolio-content .portfolio-container p::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -5px;
    height: 5px;
    width: 5px;
    background: #02aee2;

}

.portfolio-content .portfolio-container .imgBox {
    position: relative;
    margin-top: 50px;
    height: auto;
    width: 100%;
    -webkit-box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.45);
}

.imgPropertyBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.imgPropertyBox img {
    max-width: 250px;
    height: auto;
    margin: 10px;
    cursor: pointer;
}

.portfolio-container .property-desc {
    margin-top: 10px;
    text-align: justify;
}

#nieruchomosci .portfolio-content .portfolio-container {
    align-items: flex-start !important;
}

#nieruchomosci ul {
    padding-left: 20px;
}

/* #nieruchomosci ul li {
    line-height: 30px;
} */

#nieruchomosci iframe {
    margin: 0 auto;
}

.portfolio-container p::before {
    content: none !important;
}



.portfolio-container .room {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    /* border: 1px solid black; */
    width: 400px;
    margin: 0 auto;
}

.portfolio-container .room span {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 25px;
    padding-left: 3px;
}

.portfolio-container .room :nth-child(1) {
    width: 15%;
    border-left: 1px solid black;
    border-right: 1px solid black;
    /* border-top: 1px solid black;
    border-bottom: 1px solid black; */

}

.portfolio-container .room :nth-child(2) {
    width: 70%;
    border-right: 1px solid black;
    /* border-top: 1px solid black;
    border-bottom: 1px solid black; */

}

.portfolio-container .room :nth-child(3) {
    width: 15%;
    border-right: 1px solid black;

    /* border-top: 1px solid black;
    border-bottom: 1px solid black;*/
}

.portfolio-container .room span :nth-child(1) {
    width: 50px;
}

.portfolio-container .room span :nth-child(2) {
    width: 300px;
}

.portfolio-container .room span :nth-child(3) {
    width: 50px;
}

.portfolio-content .portfolio-container img {
    width: 100%;
}

.portfolio-content .portfolio-container a {
    margin-top: 50px;
    padding: 12px 35px;
    background: #02aee2;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.9em;
    transition: 0.5s;
    cursor: pointer;
    text-decoration: none;
}


.gallery {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;

}

.gallery img {
    width: 250px !important;
    height: auto;
    margin: 20px;
    cursor: pointer;
    /* border: 2px solid #02aee2; */
}

#lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.808);
    display: none;
}

#lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;

}

#lightbox.active img {
    max-width: 60%;
    max-height: 80%;
}















.bg-break {
    position: relative;
    width: 100%;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

/* .bg-cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
        background: url(../images/banner/5.jpg) fixed no-repeat center; 

}*/
.frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    /* -webkit-box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.4); 
    box-shadow: inset 0px 0px 5px 5px rgba(0,0,0,0.4); */
}

.bg-break img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.8);
}






















/* WSPÓŁPRACA */

.cooperate {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    padding: 20px 0px 100px 0px;
}


.cooperate .swiper-container {
    width: 70%;
    height: 150px;
    margin: 40px auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: 100%;
    width: 50%;


    /* Center slide text vertically */

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.cooperate .swiper-slide img {
    width: 300px;
    height: auto;
    margin: 0 auto;
}

.cooperate .buttons-box {
    position: absolute;
    top: 55%;
    width: 100%;
    transform: translateY(-50%);
    height: 100px;
}

.cooperate .buttons-box .swiper-button-next-unique {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(51, 51, 51, 0.397);
    cursor: pointer;
}

.cooperate .buttons-box .swiper-button-prev-unique {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(51, 51, 51, 0.397);
    cursor: pointer;

}

.cooperate .buttons-box .swiper-button-next-unique span {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    height: 18px;
    width: 18px;
    border-left: 2px solid rgb(0, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
    transition: 0.3s;
}

.cooperate .buttons-box .swiper-button-prev-unique span {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    height: 18px;
    width: 18px;
    border-top: 2px solid rgb(0, 0, 0);
    border-right: 2px solid rgb(0, 0, 0);
    transition: 0.3s;
}

.cooperate .buttons-box .swiper-button-next-unique:hover span {
    left: 50%;
}

.cooperate .buttons-box .swiper-button-prev-unique:hover span {
    left: 50%;
}

















/*CONTACT*/


.contact {
    position: relative;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background: url(../images/bg.webp); */
    /* background: #d63f03; */
    background: #242424;
    background-size: cover;

}

.contact img {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(0.9);
}



.contact .content {
    position: relative;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact .content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;

}

.contact .content p {
    font-weight: 300;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.contact .container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 100px;

}

.contact .container .contactInfo {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact .container .contactInfo .box {
    position: relative;
    padding: 20px 10px;
    display: flex;
    width: 75%;
    border-bottom: 1px solid #02aee260;
    margin-bottom: 20px;
}

.contact .container .contactInfo .box .icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border: 1px solid #02aee27e;
}

.contact .container .contactInfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    justify-content: start;
    font-weight: 300;
    letter-spacing: 0.1em;

}

.contact .container .contactInfo .box .text h3 {
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.1em;
    margin-bottom: 10px;
    letter-spacing: 0.1em;

}

.contact .container .contactInfo .box .text a {
    text-decoration: none;
    color: #fff;

}


.contactForm {
    width: 50%;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.24); */
}

/* .contactForm h2
{
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-transform: uppercase;
} */

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
    background: transparent;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    outline: none;
    resize: none;
    background-color: rgba(255, 255, 255, 0.404);
}

.contactForm .inputBox label {
    font-weight: 400;
    transition: 0.5s;
    color: rgb(255, 255, 255);
}



/* CHECKBOX */

.radio-boxes input {
    box-sizing: border-box;
    margin: 0;
    outline: none;
    display: none;
}

/* .radio-boxes {
    list-style-type: none;
  } */
.radio-boxes span {
    color: #fff;
}

.radio-boxes span a {
    color: #fff;
}

.radio-boxes input+label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    left: 0;
    width: 100%;
    padding: 10px 10px 10px 64px;
    line-height: 18px;
    min-height: 24px;
    background-color: transparent;
    color: #7f7f7f;
    font-weight: 300;
    transition: all 200ms ease;
}

.radio-boxes input+label:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 10px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-sizing: border-box;
    transition: all 200ms ease;
}

.radio-boxes input:checked+label:before {
    content: "\f00c";
    font-family: FontAwesome;
    text-decoration: inherit;
    background-color: #fff;
    color: #02aee2;
    border: 1px solid #02aee2;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
}


.contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: #02aee2;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.status_ok {
    color: rgb(71, 207, 30) !important;
    font-weight: 500 !important;
}

.status_err {
    color: rgb(219, 0, 0) !important;
    font-weight: 500 !important;
}

.contactForm .rodo {
    font-weight: 300;
    font-size: 0.8em;
    letter-spacing: 0.1em;
}



/* MAPA */
.map {
    position: relative;
    width: 100%;
}

.map iframe {
    width: 100%;
}

/* .map ::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 90%;
    border: solid 1px black;
    z-index: 1000;
} */






/*FOOTER*/

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px;
    background: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

footer .container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

footer .container .box {
    position: relative;
    width: 33.333%;
    padding-left: 10%;
}

footer .container .box .innerBox {
    padding: 10px;
}


/* footer .container .box.aboutus
{
    width: 40%;
} */
footer .container h2 {
    position: relative;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 20px;
    padding-left: 30px;
}

footer .container h2::before {
    content: '';
    position: absolute;
    left: 15px;
    top: -2px;
    width: 1px;
    height: 90%;
    background-color: #02aee2b2;
}

footer .container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40%;
    height: 1px;
    background-color: #02aee2b2;
}

footer .container h3 {
    position: relative;
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px;
}


footer p {
    color: #999;
    margin-bottom: 10px;
}

.sci {
    margin-top: 20px;
    display: flex;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.sci li a:hover {
    background: #02aee2;
}

.sci li a .fa {
    color: #fff;
    font-size: 20px;
}

.quickLinks {
    position: relative;
}

.quickLinks ul li {
    margin-left: 10px;
    list-style: none;
}

.quickLinks ul li a {
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quickLinks ul li a:hover {
    color: #fff;
}

/* footer .foot-contact
{
    width: calc(35% - 65px);
    margin-right: 0 !important;
} */

footer .foot-contact .info {
    position: relative;
}

footer .foot-contact .info li {
    display: flex;
    margin-left: 10px;
    margin-bottom: 16px;
}

footer .foot-contact .info li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

footer .foot-contact .info li span {
    color: #999;
}

footer .foot-contact .info li a {
    color: #999;
    text-decoration: none;
}

footer .foot-contact .info li a:hover {
    color: #fff;
}







/*COPYRIGHT*/

.copyright {
    width: 100%;
    background: #181818;
    padding: 12px 100px;
    color: #999;
    text-align: center;
}













/*Scroll-in-out*/
.fromLeft[data-scroll="out"] {
    left: -100px;
    opacity: 0;
}

.fromLeft[data-scroll='in'] {
    left: 0;
    opacity: 1;
    transition: 0.6s;
}

.fromRight[data-scroll="out"] {
    right: -100px;
    opacity: 0;
}

.fromRight[data-scroll='in'] {
    right: 0;
    opacity: 1;
    transition: 0.6s;
}

.fadeIn[data-scroll="out"] {
    opacity: 0;
}

.fadeIn[data-scroll='in'] {
    opacity: 1;
    transition: 0.7s;

}

.slideDown[data-scroll="out"] {
    top: -100px;
    opacity: 0;
}

.slideDown[data-scroll='in'] {
    top: 0;
    opacity: 1;
    transition: 0.6s;
}

.slideUp[data-scroll="out"] {
    top: 100px;
    opacity: 0;
}

.slideUp[data-scroll='in'] {
    top: 0;
    opacity: 1;
    transition: 0.6s;
}



/*MEDIA QUERIES*/

@media (max-height: 400px) {
    .banner .content h1 {
        font-size: 25px !important;
        line-height: 30px !important;
    }

    .btn-box {
        margin-top: 10px;
    }



}

@media (max-width: 1200px) {

    .banner .content h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .banner .content h2 {
        font-size: 32px;
    }

    /* .cards .card
    {
        min-height:500px;
    } */
    .cards .card .contentBox {
        padding: 40px;
    }

}



@media (max-width: 991px) {
    header {
        padding: 5px 20px !important;
    }

    .sticky {
        padding: 5px 20px !important;
    }

    .banner .content {
        max-width: 90%;
        padding-top: 50px;
    }

    .banner .content h1 {
        font-size: 40px;
        line-height: 50px;

    }

    .menu-btn {
        display: flex !important;
    }

    .menu-btn-burger,
    .menu-btn-burger::after,
    .menu-btn-burger::before {
        background: #111;
    }

    .menu {
        width: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        z-index: 100;
        background: #292929;
    }

    .opened {
        right: 0;
        top: 0;
    }

    .menu ul {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 200px;
    }

    .menu ul li {
        list-style: none;
        margin-top: 10px;
        border-bottom: rgba(17, 17, 17, 0.384) solid 1px !important;
        width: 100%;
    }

    .menu ul li a {
        color: #fff;
        letter-spacing: 4px;
        width: 100%;
    }

    .menu ul li:hover::before {
        width: 100%;
        height: 1px !important;
    }

    .about {
        padding: 100px 20px;
    }


    .contact {
        padding: 80px 50px;
    }

    .contact .container {
        flex-direction: column;
        padding: 50px;
    }

    .container .contactInfo {
        margin-bottom: 40px;
        padding: 30px;
    }

    .container .contactInfo,
    .contactForm {
        width: 100% !important;
    }

    footer {
        padding: 40px;
    }

    footer .container {
        flex-direction: column;
    }

    footer .container .box {
        margin-right: 0px;
        margin-bottom: 40px;
    }

    footer .container .box.aboutus,
    footer .container .box.quickLinks,
    footer .container .box.foot-contact {
        width: 100%;
    }

    .copyright {
        padding: 12px 40px;
    }

}

@media (max-width: 767px) {
    .social {
        display: none;
    }

    .head header .logo span {
        display: none;
    }



    .btn-box {
        justify-content: center;
    }

    .banner .content h1 {
        font-size: 35px;
        line-height: 45px;
        letter-spacing: 4px;
    }

    .about {
        padding: 100px 0px 0px 0px;
    }

    .about .contentBox {
        padding: 0px;
    }

    .portfolio-content {
        padding: 0;
        width: 90%;
    }

    .portfolio-content .portfolio-container {
        padding: 50px 10px;
        width: 95%;
    }

    .portfolio-content .portfolio-container h3 {
        font-size: 1.2em;
    }

    .portfolio-content .container p {
        font-size: 16px;
    }

    .bg-break img {
        height: 100%;
    }

    .cooperate .buttons-box .swiper-button-next-unique {
        left: 15px;
    }

    .cooperate .buttons-box .swiper-button-prev-unique {
        right: 15px;
    }

    .contact .content h2 {
        font-size: 25px;
    }

    .contact {
        padding: 80px 10px;
    }

    .contact .container {
        padding: 0;
    }

    .contact .container .contactInfo {
        width: 100%;
    }


    .footer .container {
        flex-direction: column;
    }
}


@media(max-width: 480px) {

    .sticky {
        padding: 10px 20px !important;
    }

    .banner .content {
        width: 100%;
        padding: 20px;
    }

    .banner .content h1 {
        letter-spacing: 2px;
    }

    .btn-box a {
        font-size: 12px;
        padding: 12px 30px;
        margin: 10px;
    }

    .btn-box a span {
        display: none;
    }


    .about .contentBox {
        padding: 0px;
    }

    .about .contentBox p {
        padding: 20px;
        font-size: 16px;
        letter-spacing: 1.5px;
        line-height: 19px;
    }

    .sectitle {
        font-size: 26px;

    }

    .sectitle::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 0px;
        height: 25px;
    }

    .sectitle::after {
        content: '';
        position: absolute;
        left: -30px;
        bottom: -2px;
        width: 140%;
        height: 0.02em !important;
        background-color: #02aee2;
    }

    .referencje .container {
        padding: 50px 80px;
        width: 100%;
    }

    .cooperate .buttons-box .swiper-button-next-unique {
        left: 5px;
    }

    .cooperate .buttons-box .swiper-button-prev-unique {
        right: 5px;
    }

    .contact .container .contactInfo,
    .contact .container .contactForm {
        padding: 40px 5px;
        width: 100%;
    }

    footer {
        padding: 40px 10px;
    }


    /*Scroll-in-out*/


    /* .fromLeft[data-scroll="out"]
    {
        left: 0;
        opacity: 0 ;
    }

    .fromLeft[data-scroll='in']
    {
        left: 0 ;
        opacity: 1 ;
        transition: 0.6s ;
    }

    .fromRight[data-scroll="out"]
    {
        right: 0 ;
        opacity: 0 ;
    }

    .fromRight[data-scroll='in']
    {
        right: 0 ;
        opacity: 1 ;
        transition: 0.6s;
    }
    .fadeOut[data-scroll="out"]
    {
        opacity: 0 ;
    }

    .fadeIn[data-scroll='in']
    {
        opacity: 1 ;
        transition: 0.6s;
    }
    .slideDown[data-scroll="out"]
    {
        top: 0;
        opacity: 0 ;
    }

    .slideDown[data-scroll='in']
    {
        top: 0 ;
        opacity: 1 ;
        transition: 0.6s;
    }
*/
    .fromLeft[data-scroll="out"] {
        left: 0;
        opacity: 0;
    }

    .fromLeft[data-scroll='in'] {
        left: 0;
        opacity: 1;
        transition: 0.6s;
    }

    .fromRight[data-scroll="out"] {
        right: 0;
        opacity: 0;
    }

    .fromRight[data-scroll='in'] {
        right: 0;
        opacity: 1;
        transition: 0.6s;
    }

    .fadeOut[data-scroll="out"] {
        opacity: 1;
    }

    .fadeIn[data-scroll='in'] {
        opacity: 1;
        transition: 0.6s;
    }

    .slideDown[data-scroll="out"] {
        top: 0;
        opacity: 0;
    }

    .slideDown[data-scroll='in'] {
        top: 0;
        opacity: 1;
        transition: 0.6s;
    }

}


#load {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    background: url(/images/loader.gif);
    width: 43px;
    height: 11px;
}