/*------------------------------------------------------------------
    [parallax]
------------------------------------------------------------------*/

.parallax-window {
    background-image: linear-gradient(left, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background-image: -moz-linear-gradient(left, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background-image: -webkit-linear-gradient(left, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background: -moz-linear-gradient(to right, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background: -webkit-gradient(to right, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background: -webkit-linear-gradient(to right, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background: -o-linear-gradient(to right, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
    background: linear-gradient(to right, rgba(0, 140, 211, 1), rgba(255, 255, 255, 0.1));
}

.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top;
}

.parallax-content {
    min-height: 280px;
    padding: 140px 0 0 0;
    color: #aeaeb3;
    padding-top: 160px;
    padding-bottom: 90px;
    background-image: linear-gradient(to right, rgb(48, 133, 238), rgba(255, 255, 255, 0.1));
}

.parallax-content p {
    font-size: 1.6rem;
    font-weight: 300;
    color: rgb(255, 255, 255);
    line-height: 1.1;
    text-align: left;
}

.parallax-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-align: left;
    margin-top: 0;
}

.offers-list a {
    text-decoration: none;
    color: #9a12d9;
}

.offers-list h2 {
    margin-top: 0;
    font-size: 1.0rem;
    background-color: #3085ee;
    color: white;
    text-transform: uppercase;
    padding: 6px;
}

.offers-list {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: #f7f7f7;
    border-bottom-style: solid;
}

.offers-list ul li {
    margin-top: 0rem;
}

.p-10 {
    padding: 1rem !important;
}

.product-box {
    background-color: #E04400;
    margin: 1rem;
}

.product-box h3 {
    color: white;
}

.header-fixed #body-wrapper {
    padding-top: 0rem;
}


/* ================================================= REALISATIONS ================================================== */

.realizations {
    margin-bottom: 2.5vw;
    color: #404040;
    background-color: #fff;
    /* width: 100%; */
    /* min-height: 90vh; */
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

.realizations-title {
    font-size: 3vw;
    padding: 2vw 0 2vw;
    letter-spacing: 1.5px;
    text-align: center;
}

.realizations-slider-container {
    /* width: 100%; */
    background-color: rgba(217, 217, 217, 0.4);
    /* min-height: 50vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.realizations-slider {
    width: 500%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    margin: 2.5vw 0 3.5vw;
    overflow: hidden;
}

.realizations-slider input {
    display: none;
}

.realizations-slider-img {
    /* width: 29vw;
    height: 26.6vw; */
    margin-left: 2vw;
    transition: 1s;
}

.realizations-slider-nav-manual {
    position: absolute;
    width: 100%;
    justify-content: center;
    margin-top: -3vw;
    display: flex;
}

.realizations-manual-btn {
    border: 0.15vw solid #2C70CA;
    padding: 0.35vw;
    border-radius: 1vw;
    cursor: pointer;
    transition: 0.5s;
}

.realizations-manual-btn:not(:last-child) {
    margin-right: 1vw;
}

.realizations-manual-btn:hover {
    background-color: #2C70CA;
}

#radio1:checked~.first-slide {
    margin-left: 2vw;
}

#radio2:checked~.first-slide {
    margin-left: -35%;
}

#radio3:checked~.first-slide {
    margin-left: -70%;
}

#radio4:checked~.first-slide {
    margin-left: -100%;
}


/* #radio5:checked ~ .first-slide{
    margin-left: -140%;
} */

.realizations-slider-nav-auto {
    position: absolute;
    width: 100%;
    justify-content: center;
    margin-top: -3vw;
    display: flex;
}

.realizations-slider-nav-auto div {
    border: 0.15vw solid #2C70CA;
    padding: 0.35vw;
    border-radius: 1vw;
    cursor: pointer;
    transition: 0.5s;
}

.realizations-slider-nav-auto div:not(:last-child) {
    margin-right: 1vw;
}


/* ================================================= REALISATIONS END ================================================== */


/* ================ form ======================= */


/* Split */

.split {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.split>* {
    width: calc(50% - 2.5em);
}

.split> :nth-child(2n - 1) {
    padding-right: 2.5em;
    border-right: solid 1px rgba(255, 255, 255, 0.15);
}

.split> :nth-child(2n) {
    padding-left: 2.5em;
}

.split.style1> :nth-child(2n - 1) {
    width: calc(66.66666% - 2.5em);
}

.split.style1> :nth-child(2n) {
    width: calc(33.33333% - 2.5em);
}

@media screen and (max-width: 1680px) {
    .split>* {
        width: calc(50% - 2em);
    }
    .split> :nth-child(2n - 1) {
        padding-right: 2em;
    }
    .split> :nth-child(2n) {
        padding-left: 2em;
    }
    .split.style1> :nth-child(2n - 1) {
        width: calc(66.66666% - 2em);
    }
    .split.style1> :nth-child(2n) {
        width: calc(33.33333% - 2em);
    }
}

@media screen and (max-width: 980px) {
    .split {
        display: block;
    }
    .split>* {
        border-top: solid 1px rgba(255, 255, 255, 0.15);
        margin: 4em 0 0 0;
        padding: 4em 0 0 0;
        width: 100% !important;
    }
    .split> :nth-child(2n - 1) {
        border-right: 0;
        padding-right: 0;
    }
    .split> :nth-child(2n) {
        padding-left: 0;
    }
    .split> :first-child {
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
    }
}

@media screen and (max-width: 736px) {
    .split>* {
        margin: 3em 0 0 0;
        padding: 3em 0 0 0;
    }
}


/* Split END */

.wrapper.style6 {
    background-color: #5A5E42;
    color: #f2f2f2;
    padding: 18px;
}

.wrapper h2,
h3 {
    color: #ffffff;
}

.wrapper.style1 input[type="text"],
.wrapper.style1 input[type="password"],
.wrapper.style1 input[type="email"],
.wrapper.style1 select,
.wrapper.style1 textarea {
    border: solid 1px rgba(255, 255, 255, 0.3);
}

.wrapper.style1 input[type="submit"],
.wrapper.style1 input[type="reset"],
.wrapper.style1 input[type="button"],
.wrapper.style1 button,
.wrapper.style1 .button {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.wrapper.style1 input[type="submit"]:hover,
.wrapper.style1 input[type="reset"]:hover,
.wrapper.style1 input[type="button"]:hover,
.wrapper.style1 button:hover,
.wrapper.style1 .button:hover {
    background-color: #21b2a6;
}

form>.fields {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 3em);
    margin: -1.5em 0 2em -1.5em;
}

form>.fields>.field.half {
    width: calc(50% - 0.75em);
}

form>.fields>.field {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    padding: 1.5em 0 0 1.5em;
    width: calc(100% - 1.5em);
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-color: rgba(144, 144, 144, 0.25);
    border-radius: 3px;
    border: none;
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
    box-shadow: inset 0 0 0 1px #fff;
}

.form-mod .form-field {
    margin-bottom: 25px;
}

ul.contact {
    list-style: none;
    padding: 0;
}

ul.contact>li:first-child {
    margin-top: 0;
}

ul.contact>li {
    padding: 0;
    margin: 1.5em 0 0 0;
    margin-top: 1.5em;
}

.form-input,
.search-input,
[data-grav-field="array"] input,
[data-grav-field="array"] textarea {
    background-color: rgba(144, 144, 144, 0.25);
    border: solid 1px rgba(255, 255, 255, 0.3);
}

.form-input:not(:placeholder-shown):invalid,
.search-input:not(:placeholder-shown):invalid,
[data-grav-field="array"] input:not(:placeholder-shown):invalid,
[data-grav-field="array"] textarea:not(:placeholder-shown):invalid {
    border-color: rgba(255, 255, 255, 0.3);
}


/* footer */

#footer {
    text-align: left;
}

#footer ul {
    list-style: none;
}


/* Różne */

.modular-text {
    padding-top: 0rem;
    padding-bottom: 0rem;
    margin-bottom: 1rem;
}

.colours-box {
    width: 95%;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-box {
    width: 20%;
    text-align: center;
}

.color-circle {
    height: 10vw;
    width: 10vw;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1vw;
}

.color-circle.green {
    background-color: #30A05D;
}

.color-circle.black {
    background-color: #000;
}

.color-circle.antracyt {
    background-color: #364135;
}

.color-circle.ocynk {
    background-color: #7A7D80;
}

.color-circle.graphite {
    background-color: #36454F;
}

#header .logo img,
#header .logo svg {
    height: 50px;
}

.header-transparent #header:not(.scrolled) {
    background: rgba(255, 255, 255, 0.91);
}

.hero {
    padding-top: 0;
    padding-bottom: 2rem;
    color: white;
}

.hero h2 {
    font-size: 1.5rem;
    color: white;
}

#footer {
    background: #205AA1;
    color: white;
}

.footer1 a {
    color: #bfdbff;
}


/* FOR MOBILE */

@media only screen and (max-width: 768px) {
    .parallax-content {
        padding: 0 0 0 20px;
        padding-top: 155px;
        padding-bottom: 20px;
    }
    .parallax-title {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        text-align: left;
        margin-bottom: 0;
    }
    .m-top-50 {
        margin-top: 50px;
    }
    .product-box {
        margin: 0 0 10px 0;
        ;
    }
}