/*

WPA
engineering

*/
:root {
    --col1: #007ac2;
    --col2: #77c043;
    --col3: #ed1c24;
    --text: #414042;
    --light: #f5f5f5;
    --borbis: #aec90b;
}

/* scroll */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--col3);
    background: linear-gradient(to bottom, var(--col1), var(--col2), var(--col3));
    border-radius: 100px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* font */
@font-face {
    font-family: 'Cairo';
    font-display: swap;
    src: url('/font/Cairo.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: normal;
}

/* podstawowe style */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

body,
input,
textarea,
select,
button {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
    color: #222;
}

.title-container {
    overflow: hidden;
}

.line {
    padding-bottom: 20px;
    border-bottom: 1px solid #dedede;
}

.line > span {
    display: inline-block;
    position: relative;
}

.line > span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -21px;
    width: 100%;
    height: 2px;
}

.line1> span:after {
    background: var(--col1);
}

.line2> span:after {
    background: var(--col2);
}

.line3 > span:after {
    background: var(--col3);
}

h1 {
    font-size: 360%;
    font-weight: 400;
    letter-spacing: 1px;
}

.cta h3 {
    font-size: 250%;
    font-weight: 200;
    letter-spacing: 1px;
}

h2 {
    font-size: 210%;
    font-weight: 700;
}

h3 {
    font-size: 180%;
}

h4 {
    font-size: 150%;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.35;
}

h5 {
    font-size: 120%;
}

h6 {
    font-size: 110%;
}

.upper {
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease;
    outline: none;
}

a:hover {
    color: var(--col1);
}

a:active,
a:focus {
    outline: 0;
    border: none;
}

p {
    margin: 0 auto 30px;
    color: var(--text);
}

p.constrained {
    max-width: 800px;
}

p:last-child {
    margin-bottom: 0;
}

p.small {
    font-size: 90%;
}

p.large {
    font-size: 110%;
}

label a, p a {
    position: relative;
}

iframe {
    display: block;
    max-width: 100%;
}

.center,
.center p,
p.center {
    text-align: center;
}

.right,
.right p,
p.right {
    text-align: right;
}

@media(min-width: 1001px) {
    .right-pc,
    .right-pc p,
    p.right-pc {
        text-align: right;
    }

    .center-pc,
    .center-pc p,
    p.center-pc {
        text-align: center;
    }
}

.justify,
.justify p,
p.justify {
    text-align: justify;
}

b,
strong,
.strong {
    font-weight: 600;
}

.stronger {
    font-weight: 800;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 10px;
}

.imgfit {
    min-height: 100%;
    object-fit: cover;
}

img.left {
    float: left;
    margin: 0 30px 15px 0;
}

img.right {
    float: right;
    margin: 0 0 15px 30px;
}

.center img,
img.center {
    margin: 0 auto;
}

.right img {
    margin-left: auto;
}

ol,
ul {
    margin: 0;
    padding-left: 20px;
}

li ul,
li ol,
ol li:not(:first-child),
ul li:not(:first-child) {
    margin-top: 10px;
}

ul.p,
ol.p {
    margin: -20px 0 30px;
}

ul.p:last-child,
ol.p:last-child {
    margin-bottom: 0;
}

ul.check {
    list-style: none;
    padding-left: 0;
}

ul.check li {
    position: relative;
    padding-left: 32px;
}

ul.check li:before {
    content: "\f00c";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
}

ul.check1 li:before {
    color: var(--col1);
}

ul.check2 li:before {
    color: var(--col2);
}

ul.check3 li:before {
    color: var(--col3);
}

.container {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1440px;
    width: 100%;
}

.container.half {
    max-width: 720px;
}

.container.full {
    max-width: 100%;
}

@media(min-width: 1001px) {
    .container.lefthalf {
        margin-right: inherit;
        padding-right: 50px;
    }

    .container.righthalf {
        margin-left: inherit;
        padding-left: 50px;
    }
}

.container.small {
    max-width: 1000px;
}

.abs-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=url],
input[type=search],
input[type=date],
input[type=number],
textarea,
select {
    padding: 10px 15px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    line-height: 1.5;
    width: 100%;
    height: auto;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    border: 0;
    border: 1px solid #dedede;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-transition: background-color 600000s 0s, color 600000s 0s, background-image 600000s 0s;
    transition: background-color 600000s 0s, color 600000s 0s, background-image 600000s 0s;
}

input[type=text]:focus,
textarea:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=date]:focus {
    border-color: var(--col3);
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .5;
}

textarea {
    display: block;
    resize: none;
    height: 100px;
}

.button {
    font-weight: 675;
    font-size: 110%;
    letter-spacing: .5px;
    padding: 16px 36px;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(to left, var(--col1), var(--col2), var(--col3));
    background-size: 200%;
    border: 0;
    border-radius: 100px;
    opacity: 1;
    position: relative;
    text-transform: uppercase;
    transition: .5s ease;
}

.button:hover {
    background-position: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,.15);
    color: #fff;
        transform: translateY(-3px);
}

.button.alt {
    border: 1px solid var(--text);
    color: var(--text);
    background: transparent;
}

.button.alt:hover{
    background: var(--text);
    color: #fff;
}

.button.althov1:hover {
    background: var(--col1);
    border-color: var(--col1);
}

.button.althov2:hover {
    background: var(--col2);
    border-color: var(--col2);
}

.button.althov3:hover {
    background: var(--col3);
    border-color: var(--col3);
}

button[disabled],
input[disabled],
[type=submit]:disabled {
    pointer-events: none;
    opacity: .5;
}

/* uklad */
.section {
    padding: 50px 0;
    position: relative;
}

.bigsection {
    padding: 80px 0;
}

.smallsection {
    padding: 30px 0;
}

.bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bgdark {
    background-color: #222;
}

.bgdark * {
    color: #fff;
}

.bgcontain {
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
}

.above {
    position: relative;
    z-index: 5;
}

.bglight {
    background-color: var(--light);
}

html .col1 {
    color: var(--col1);
}

html .col2 {
    color: var(--col2);
}

html .col3 {
    color: var(--col3);
}

.flex {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
    position: relative;
}

@media(min-width: 1001px) {
    .row.bigspace {
        margin: -30px;
    }

    .row.bigspace>.col {
        padding: 30px;
    }
}

.row.smallspace {
    margin: -10px;
}

.row.nospace {
    margin: 0;
}

.row.nowrap, .row.unwrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.row.spread,
.flex.spread {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.row.toend {
    justify-content: flex-end;
}

.row.centered,
.flex.centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.row.middle,
.flex.middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.col {
    width: 100%;
    padding: 15px;
    position: relative;
}

.row.smallspace>.col {
    padding: 10px;
}

.row.nospace>.col {
    padding: 0;
}

.col.auto {
    width: auto;
    max-width: 100%;
}

.col.fill {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.col.shrink {
    -ms-flex-negative: 999999;
    flex-shrink: 999999;
}

.col.toright {
    margin-left: auto;
}

.boxcol {
    background: #fff;
    height: 100%;
    padding: 40px;
}

.boxcol.boxsmall {
    padding: 30px;
}

@media(min-width: 1001px) {
    .row.reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .skewrow:not(.reverse) > .col:last-child {
        transform: translateY(30px);
    }

    .skewrow.reverse > .col:first-child {
        transform: translateY(30px);
    }

    .col_11 {
        width: 91.6666%;
    }

    .col_10 {
        width: 83.3333%;
    }

    .col_9 {
        width: 75%;
    }

    .col_8 {
        width: 66.6666%;
    }

    .col_7 {
        width: 58.3333%;
    }

    .col_6 {
        width: 50%;
    }

    .col_5 {
        width: 41.6666%;
    }

    .col_4 {
        width: 33.3333%;
    }

    .col_36 {
        width: 30%;
    }

    .col_3 {
        width: 25%;
    }

    .col_24 {
        width: 20%;
    }

    .col_2 {
        width: 16.6666%;
    }

    .col_1 {
        width: 8.3333%;
    }
}

.bottom_space_0 {
    margin-bottom: 0 !important;
}

.bottom_space_5 {
    margin-bottom: 5px !important;
}

.bottom_space_10 {
    margin-bottom: 10px !important;
}

.bottom_space_15 {
    margin-bottom: 15px !important;
}

.bottom_space_20 {
    margin-bottom: 20px !important;
}

.bottom_space_25 {
    margin-bottom: 25px !important;
}

.bottom_space_30 {
    margin-bottom: 30px !important;
}

.bottom_space_45 {
    margin-bottom: 45px !important;
}

.bottom_space_60 {
    margin-bottom: 60px !important;
}

/* header */
header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    z-index: 1000;
    padding: 18px 0;
    background: #fff;
}

.header-space {
    height: 100px;
}

* {
    scroll-margin-top: 100px;
}

.logo img {
    height: 64px;
    width: auto;
}

/* header - menu */
nav > ul {
    margin: 0 -20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

nav > ul > li {
    margin: 0 !important;
    list-style: none;
    position: relative;
}

nav > ul > li > a {
    padding: 5px 20px;
    text-transform: uppercase;
    position: relative;
    display: block;
    transition: .5s ease;
    font-weight: 800;
    letter-spacing: .5px;
}

nav ul li:nth-child(3n+1):hover > a, nav ul li:nth-child(3n+1).active > a {
    color: var(--col1);
}

nav ul li:nth-child(3n+2):hover > a, nav ul li:nth-child(3n+2).active > a {
    color: var(--col2);
}

nav ul li:nth-child(3n+3):hover > a, nav ul li:nth-child(3n+3).active > a {
    color: var(--col3);
}

/* header - submenu */
.submenu a {
    font-size: 95%;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

@media(min-width: 1001px) {
    .submenu-container {
        padding-top: 31.5px;
        position: absolute;
        top: calc(100% + 20px);
        left: 20px;
        transition: top .3s, opacity .3s, transform 0s .3s;
        opacity: 0;
        transform: scale(0);
    }

    li:hover > .submenu-container {
        top: 100%;
        opacity: 1;
        transform: scale(1);
        transition: top .3s, opacity .3s;
    }

    .submenu {
        margin: 0;
        padding: 0;
        list-style: none;
        background: var(--col3);
        padding: 10px;
        width: 280px;
        position: relative;
        box-shadow: 0 10px 10px rgba(0,0,0,.15);
    }

    .submenu a {
        display: block;
        padding: 5px 10px;
        transition: .3s ease-in-out;
        position: relative;
    }

    .submenu a span {
        position: relative;
        z-index: 5;
        color: #fff;
    }

    .submenu a:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(255 255 255 / 35%);
        transition: .5s ease;
        transform: scaleX(0);
        transform-origin: left;
    }

    .submenu a:hover:before, .submenu a.active:before {
        transform: scaleX(1);
    }
}

/* menu - linia */
.menu-line {
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.menu-line.active {
    transition: all .5s cubic-bezier(.35,.7,.35,1);
}

/* menu - ikonki */
.menu-icons {
    display: flex;
    margin: -5px;
}

.menu-icons a {
    margin: 5px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 90%;
    color: #fff;
    border-radius: 100%;
    background: var(--col1);
}

.menu-icons a:nth-child(2) {
    background: var(--col2);
}

.menu-icons a:nth-child(3) {
    background: var(--col3);
}

.menu-icons a:hover {
    transform: scale(1.15);
}

/* header - fixed */
header.fixed {
    position: fixed;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* glowna - intro */
.intro {
    height: 600px;
    position: relative;
}

body.nowebp .intro {
    background-image: url(/img/intro.jpg);
}

.intro:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, transparent, #000);
    opacity: .75;
}

/* o firmie - zespol */
.osoba {
    background: #fff;
    overflow: hidden;
}

.osoba-info {
    padding: 15px 10px 20px;
}

/* o firmie - wartosci */
.big-icon {
    font-size: 350%;
}

/* oferta */
body.oferta .section .flex, body.oferta .section .flex > div {
    width: 100%;
}

/* kontakt - formularz */
label.zgoda span {
    font-size: 90%;
    line-height: 1.5;
    color: rgb(65 64 66 / 75%);
}

label.zgoda span a {
    color: var(--col1);
}

label.zgoda {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

input[type="checkbox"] {
    margin-right: 10px;
    position: relative;
    top: 6px;
}

.form-submit {
    margin-top: 10px;
}

.formularz .invalid,
.formularz .invalid+.select2-container--default .select2-selection--single {
    border-color: #af0000;
}

input[type=checkbox].invalid {
    -webkit-box-shadow: 0 0 3px 2px #af0000;
    box-shadow: 0 0 3px 2px #af0000;
}

.form-error * {
    color: #af0000 !important;
}

.form-success * {
    color: green !important;
}

.form-msg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.25;
    height: 100%;
    font-size: 95%;
    justify-content: center;
}

.form-msg i {
    margin-right: 15px;
    font-size: 110%;
}

.form-msg p {
    -ms-flex-negative: 99999;
    flex-shrink: 99999;
    margin: 0;
}

/* page header */
.page-header {
    padding: 100px 0;
    background-color: var(--col1);
}

.page-header h1 {
    font-size: 300%;
}

/* footer */
footer {
    margin-top: auto;
    background: var(--light);
}

.footer-widgets {
    font-size: 90%;
}

.footer-widgets .logo {
    height: 50px;
}

.dana {
    display: flex;
}

.dana:not(:last-child) {
    margin-bottom: 15px;
}

.dana i {
    line-height: 1.75;
    margin-right: 10px;
    width: 20px;
}

.footer-menu {
    padding: 0;
    margin: -5px 0;
}

.footer-menu li {
    list-style: none;
    margin: 0 !important;
}

.footer-menu li a {
    display: block;
    padding: 5px 0;
}

/* footer - copyright */
.copyright {
    font-size: 75%;
    padding: 15px 0;
    background: rgb(0 0 0 / 5%);
}

.copyright p {
    color: #666;
}

.copyright a {
    color: var(--borbis) !important;
}

/* rwd */
@media(max-width: 1400px) {
    body,
    input,
    textarea,
    select,
    button {
        font-size: 17px;
    }

    .intro {
        height: 550px;
    }
}

@media(max-width: 1200px) {
    body,
    input,
    textarea,
    select,
    button {
        font-size: 16px;
    }

    .intro {
        height: 500px;
    }
}

@media(min-width: 1001px) {
    .nopc {
        display: none !important;
    }
}

@media(max-width: 1000px) {
    .norwd {
        display: none !important;
    }

    body,
    input,
    textarea,
    select,
    button {
        font-size: 15px;
    }

    .menu-toggle {
        font-size: 150%;
        margin-left: 7px;
        position: relative;
        width: 20px;
        height: 25px;
        text-align: center;
        display: block;
    }

    .menu-toggle i {
        position: absolute;
        top: 2px;
        right: 0;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        width: 100%;
    }

    #mmt:not(:checked)~.menu-toggle i:last-child,
    #mmt:checked~.menu-toggle i:first-child {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    header {
        padding: 10px 0;
    }

    header .logo img {
        height: 40px;
    }

    .header-space {
        height: 60px;
    }

    * {
        scroll-margin-top: 60px;
    }

    nav {
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        background: #222;
        margin: 0;
        display: block;
        padding: 10px 0;
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s -webkit-transform .15s;
        transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s -webkit-transform .15s;
        -o-transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s transform .15s;
        transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s transform .15s;
        transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s transform .15s, 0s -webkit-transform .15s;
    }

    #mmt:checked~nav {
        top: 60px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        -webkit-transition: opacity .25s ease-in-out, top .25s ease-in-out;
        -o-transition: opacity .25s ease-in-out, top .25s ease-in-out;
        transition: opacity .25s ease-in-out, top .25s ease-in-out;
        max-height: calc(100vh - 60px);
        overflow: auto;
    }

    nav ul {
        flex-direction: column;
        margin: 0;
        align-items: flex-start;
    }

    nav ul li {
        width: 100%;
        margin: 0 !important;
    }

    nav ul li a {
        padding: 10px 35px;
        font-size: 110%;
        display: block;
        color: #fff;
        transform: none;
    }

    .footer-widgets .logo {
        height: 30px;
    }

    .intro {
        height: 450px;
    }

    .intro .container {
        padding-bottom: 75px;
    }

    .rwd_bottom_space_0 {
        margin-bottom: 0px !important;
    }

    .rwd_bottom_space_15 {
        margin-bottom: 15px !important;
    }
    
    .rwd_bottom_space_20 {
        margin-bottom: 20px !important;
    }
    
    .rwd_bottom_space_30 {
        margin-bottom: 30px !important;
    }

    .page-header {
        padding: 75px 0;
    }

    .section {
        padding: 40px 0;
    }
}

@media(max-width: 690px) {
    h1, .big-icon {
        font-size: 300%;
    }

    .page-header h1 {
        font-size: 250%;
    }
    
    .cta h3, h2 {
        font-size: 200%;
    }
    
    h3 {
        font-size: 170%;
    }

    .boxcol {
        padding: 30px;
    }
    
    .boxcol.boxsmall {
        padding: 20px;
    }

    .page-header {
        padding: 50px 0;
    }

    .section {
        padding: 35px 0;
    }
}

@media(max-width: 480px) {
    body,
    input,
    textarea,
    select,
    button {
        font-size: 14px;
    }

    h1 {
        font-size: 225%;
    }

    .page-header h1 {
        font-size: 200%;
    }

    h2 {
        font-size: 180%;
    }

    h3 {
        font-size: 160%;
    }

    h4 {
        font-size: 140%;
    }

    .intro h4 {
        font-size: 120%;
    }

    .intro {
        height: 400px;
    }

    .intro .container {
        padding-bottom: 50px;
    }
}