/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */

*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */

html {
    font-size: 62.5%;
}

body {
    font-weight: 400;
    color: #040404;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    background: #F0F0F0;
    padding-top: 78px;
}

/* clear */

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: #444;
    text-decoration: none;
}

a:hover {
    color: #444;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    outline: 0;
    border: 1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */

.wrapper {
    max-width: 1280px;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

/* header */

.header {
    background: #fff;
    color: #111;
    border-bottom: 1px solid #e9e9e9;
    z-index: 5;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    transition: top 0.2s ease-in-out;
    width: 100vw;
    top: 0;
    z-index: 999;
}

.header.nav-up {
    top: -80px;
}

#site-navigation-toggle {
    position: relative;
    display: block;
    width: 30px;
    height: 26px;
    background: transparent;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-left: 0;
    border-right: 0;
    color: #222;
    font-size: 0;
    transition: all 0.25s ease-in-out;
    z-index: 100;
    margin-right: 15px;
}

#site-navigation-toggle:focus {
    outline: none;
}

#site-navigation-toggle input[type="checkbox"] {
    visibility: hidden;
}

.nav .wpml-ls-menu-item ul.sub-menu {
    width: 50px;
}

#site-navigation-toggle:before,
#site-navigation-toggle:after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

#site-navigation-toggle:hover {
    color: #a6b9c7;
}

#site-navigation-toggle.toggled-on {
    border-color: transparent;
}

#site-navigation-toggle.toggled-on:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

#site-navigation-toggle.toggled-on:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* logo */

.logo {}

.logo-img {
    max-width: 140px;
    padding-top: 20px;
    padding-bottom: 21px;
}

/* nav */

.navcol {
    align-items: stretch;
    display: flex;
    justify-content: end;
}

.nav {
    display: flex;
    align-items: stretch;
}

.nav ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #040404;
    text-transform: uppercase;
}

.nav ul li {
    padding: 10px 15px;
    align-items: center;
    display: flex;
}

.nav a {
    color: #040404;
    font-size: 1.35rem;
    position: relative;
}

.nav a:hover {
    color: #797979;
}

.nav .current-menu-parent>a::before,
.nav .current-menu-item>a::before {
    content: '';
    display: block;
    width: 80%;
    margin: 0px auto;
    height: 2px;
    background: #ffe359;
    position: absolute;
    bottom: -2px;
    margin-left: 10%;
}

.nav .sub-menu .current-menu-item>a::before {
    display: none;
}

.nav .sub-menu .current-menu-item>a {
    color: #ffe359;
}

.nav .sub-menu {
    background: #040404;
    color: #fff;
    position: absolute;
    right: 0;
    top: 78px;
    display: none;
    width: 100%;
    justify-content: center;
    transition: all 1s ease-in-out;
}

.nav .menu-item-has-children:hover .sub-menu {
    top: 77px;
    display: flex;
}

.nav .menu-item-has-children>a {
    position: relative;
    padding-right: 10px
}

.nav .menu-item-has-children>a::after {
    border: 4px solid transparent;
    border-top-color: #000;
    content: "";
    display: inline-block;
    height: 0;
    position: absolute;
    right: -2px;
    top: calc(50% - 2px);
    transition: all .2s;
    width: 0;
}

.nav .menu-item-has-children:hover>a::after {
    top: calc(50% - 7px);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.nav .sub-menu a {
    color: #fff;
    font-weight: 400;
}

.nav .sub-menu a:hover {
    color: #FFE359;
}

/* sidebar */

.sidebar {}

/* footer */

.footer {
    background: #040404;
    color: #fff;
    font-size: 1.6rem;
    padding-top: 50px;
    padding-bottom: 20px;
    position: relative;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer a {
    color: rgb(232, 232, 232);
    display: block;
}

.footer a:hover {
    color: #FFE359;
}

.footer-right {
    text-align: right;
    position: relative;
}

.footer-right img {
    position: absolute;
    right: -15px;
    top: -80px;
}

.contact-company {
    font-size: 1.4rem;
}

.contact-company,
.contact-mail,
.contact-phone {
    padding-left: 30px;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

.contact-company:before,
.contact-mail:before,
.contact-phone:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 24px;
    background-image: url(/wp-content/themes/html5blank-stable/img/icons/phone-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}

.contact-mail:before {
    background-image: url(/wp-content/themes/html5blank-stable/img/icons/mail-icon.png);
}

.contact-company:before {
    width: 16px;
    background-image: url(/wp-content/themes/html5blank-stable/img/icons/office-icon.svg);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

h2 {
    font-size: 4.2rem;
    padding-top: 30px;
    padding-bottom: 0;
}

h2::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #FFE359;
    display: inline-block;
    margin-right: 6px;
}

h3 {
    font-size: 3.3rem;
    padding-top: 30px;
    padding-bottom: 15px;
}

h2>span,
h3>span {
    font-weight: 300;
}

h3::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #FFE359;
    display: inline-block;
    margin-right: 6px;
    margin-left: -16px;
}

.rozwiazania-dedykowane h2,
.sklepy-internetowe h2,
.branding-marketing h2,
.strony-www h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.rozwiazania-dedykowane h2>span,
.sklepy-internetowe h2>span,
.branding-marketing h2>span,
.strony-www h2>span {
    font-size: 2.6rem;
}

p.subtitle {
    font-weight: 400;
    font-size: 1.8rem;
}

.copyright {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px #6c6c6c solid;
    font-size: 1.2rem;
    color: #8d8d8d;
}

.copyright a {
    color: #8d8d8d;
    display: inline-block;
}

.copyright a:hover {
    color: #ffe359;
}

.copy {
    text-align: right;
}

.whitebg {
    background-color: #fff;
    padding: 50px 0;
}

.yellowbg {
    background: #ffe359;
    padding: 50px 0 75px;
}

#breadcrumbs {
    font-size: 1.2rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.mobile-reverse {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #F0F0F0;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

#homeslider {
    background-color: #FFE359;
    height: calc(100vh - 250px);
    overflow: hidden;
    position: relative;
}

#homeslider>.container {
    align-items: stretch;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

#homeslider .row {
    align-items: center;
    height: 100%;
    width: 100%;
}

#homeslider h1 {
    font-size: 4.5rem;
}

#homeslider h1>span {
    font-weight: 400;
    background: #040404;
    color: white;
    padding: 8px;
    margin-top: 10px;
    display: inline-block;
    font-size: 4.0rem;
}

#homeslider p {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.button {
    color: #040404;
    background-color: #FFE359;
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: bold;
}

.button:hover {
    color: #fff;
    background: #040404;
    transition: background-color .2s, color: .2s;
}

#homeslider::before {
    content: '';
    background: #fff;
    width: 50vw;
    height: 50vw;
    display: block;
    position: absolute;
    top: calc(-10vw);
    left: calc(-10vw);
    border-radius: 100%;
    z-index: 0;
}

.our-offer {
    padding-top: 50px;
    padding-bottom: 50px;
}

.offerbox {
    font-size: 2.0rem;
    font-weight: bold;
    position: relative;
    padding: 50px 0;
}

.offerbox-link {
    display: block;
    width: fit-content;
    color: #040404;
    margin: 0px auto;
    position: relative;
}

.offerbox .offerbox-link::before {
    content: '';
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    background: #FFE359;
    display: block;
    position: absolute;
    top: -20px;
    left: 15px;
    z-index: -1;
}

.offerbox:nth-child(2) .offerbox-link::before {
    top: auto;
    bottom: 30px;
    left: 20px;
    background: #C5E8E4;
}

.offerbox:nth-child(3) .offerbox-link::before {
    top: -15px;
    right: 30px;
    left: auto;
    background: #ec7d6c;
}

.offerbox:nth-child(4) .offerbox-link::before {
    top: auto;
    bottom: 30px;
    left: auto;
    right: 50px;
    background: #3f5e69;
}

.offerbox-link p::after {
    content: '';
    width: 0;
    height: 5px;
    background: #FFE359;
    display: block;
    margin-top: 0px;
    transition: width .5s;
}

.offerbox-link:hover {
    color: #040404;
}

.offerbox-link:hover p::after {
    width: 100%;
}

.offerbox-link>img {
    padding-bottom: 10px;
}

.steps {
    height: 100%;
    position: relative;
}

.steps>.inner {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    position: relative;
    padding-left: 45px;
    margin-top: 30px;
    height: 100%;
}

.steps>.circle {
    color: #fff;
    background: #040404;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    line-height: 2.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 400;
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2.7rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 3px 3px 0px #e0e0e0;
    z-index: 3;
}

.steps .title {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 2.2rem;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.steps p {
    margin-bottom: 0;
}

.margin-td {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mt-15 {
    margin-top: 15px;
    display: inline-block;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

body.rozwiazania-dedykowane,
body.branding-marketing,
body.sklepy-internetowe,
body.strony-www,
body.oferta,
body.kontakt {
    background-color: #fff;
}

.realizacje h1,
.rozwiazania-dedykowane h1,
.branding-marketing h1,
.sklepy-internetowe h1,
.strony-www h1,
.oferta h1,
.kontakt h1 {
    color: #040404;
    font-size: 6rem;
    margin-top: 40px;
    position: relative;
    width: fit-content;
}

.realizacje h1::before,
.rozwiazania-dedykowane h1::before,
.branding-marketing h1::before,
.sklepy-internetowe h1::before,
.strony-www h1::before,
.oferta h1::before,
.kontakt h1::before {
    content: '';
    display: block;
    background-color: #FFE359;
    width: calc(100% + 50px);
    height: 30px;
    position: absolute;
    z-index: -1;
    bottom: 5px;
}

.sklepy-internetowe h1::before {
    background-color: #C5E8E4;
}

.branding-marketing h1::before {
    background-color: #ec7d6c;
}

.rozwiazania-dedykowane h1::before {
    background-color: #3f5e69;
}

.contactbox strong {
    font-size: 2.4rem;
    font-weight: bold;
    display: block;
}

.footer .contactbox strong {
    font-size: 1.4rem;
    margin-bottom: 0px;
    display: inline;
}

.contactbox .visitme,
.contactbox .callme,
.contactbox .mailme {
    margin: 15px 0;
    font-size: 1.8rem;
}

.contactbox .visitme span,
.contactbox .callme span,
.contactbox .mailme span {
    font-weight: 300;
    text-transform: uppercase;
    color: #444;
    font-size: 1.3rem;
}

.contact-form {
    background: #f8f8f8;
    padding: 50px;
    margin-top: 30px;
}

.contact-form h4 {
    text-align: center;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 22px;
    margin-top: 0;
}

.contact-image {
    width: 90%;
    text-align: center;
    margin: 0px auto;
    margin-top: 30px;
    display: block;
}

label {
    font-weight: bold;
    font-size: 1.3rem;
    width: 100%;
}

textarea,
input {
    border: 2px solid #e9e9e9;
    font-size: 1.6rem;
    font-weight: 300;
    padding: 5px;
    width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
}

textarea:focus,
textarea:focus-visible,
input:focus {
    border: 2px solid #FFE359;
}

textarea {
    max-height: 150px;
}

.wpcf7-list-item-label {
    font-weight: 300;
}

.offer-grid {
    padding-bottom: 10px;
}

.offer-www .productbox-inner {
    background: #FFE359;
    color: #040404;
    display: block;
    padding: 30px;
    height: 100%;
    background-image: url(/wp-content/themes/html5blank-stable/img/website.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: 180% bottom;
    padding-right: 45%;
}

.offer-www .productbox-inner h2 {
    padding-top: 0;
}

.offer-ecommerce .productbox-inner {
    background: #C5E8E4;
    color: #3a645f;
    display: block;
    padding: 30px;
    height: 100%;
    background-image: url(/wp-content/themes/html5blank-stable/img/ecommerce-oferta.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: -50% 100%;
    text-align: right;
    padding-top: 5px;
    padding-left: 20%;
    padding-bottom: 215px;
}

.offer-branding .productbox-inner {
    background: #ec7d6c;
    color: #6c2c23;
    display: block;
    padding: 30px;
    height: 100%;
    background-image: url(/wp-content/themes/html5blank-stable/img/marketing.png);
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: 190% 20px;
    text-align: left;
    padding-top: 5px;
    padding-right: 50%;
    padding-bottom: 215px;
}

.offer-dedicated .productbox-inner {
    background: #3f5e69;
    color: #e0e0e3;
    display: block;
    padding: 30px;
    height: 100%;
    background-image: url(/wp-content/themes/html5blank-stable/img/dedykowana.png);
    background-size: 71%;
    background-repeat: no-repeat;
    background-position: 150% bottom;
    padding-right: 55%;
}

.offer-dedicated .productbox-inner h2 {
    padding-top: 0;
}

.productbox-inner h2::before {
    display: none;
}

.productbox-inner h2>span {
    font-weight: 300;
}

#cookie-notice .cn-button:not(.cn-button-custom) {
    color: #040404 !important;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}
*/
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {}

@media only screen and (min-width:480px) {}

@media only screen and (min-width:768px) {
    .nav {
        display: flex;
    }
}

@media only screen and (min-width:1024px) {}

@media only screen and (min-width:1140px) {}

@media only screen and (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

@media only screen and (max-width: 1024px) {
    .col-md-3.steps-col {
        flex: 50%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .col-md-3.steps-col  {
        margin-bottom: 30px;
        flex: 100%;
    }

    .col-md-3.steps-col :last-child {
        margin-bottom: 0px;
    }

    .copy {
        text-align: left;
    }

    .footer-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .footer-right img {
        position: absolute;
        right: 15px;
        top: -25px;
        width: 40%;
    }

    .mobile-reverse .row {
        flex-direction: column-reverse;
    }

    .mobile-reverse .row h2 {
        padding-top: 0;
    }

    .realizacje h1,
    .rozwiazania-dedykowane h1,
    .branding-marketing h1,
    .sklepy-internetowe h1,
    .strony-www h1,
    .oferta h1,
    .kontakt h1 {
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .realizacje h1::before,
    .rozwiazania-dedykowane h1::before,
    .branding-marketing h1::before,
    .sklepy-internetowe h1::before,
    .strony-www h1::before,
    .oferta h1::before,
    .kontakt h1::before {
        max-width: 80%;
        top: auto;
        bottom: -6px;
    }

    .mobilemenu {
        cursor: pointer;
        padding: 10px;
    }

    .mobilemenu .hamburger {
        width: 50px;
        height: 5px;
        background-color: #999;
        margin-top: 5px;
    }

    .logocol,
    .navcol {
        width: 50%;
        max-width: 50%;
    }

    .nav {
        position: fixed;
        z-index: 2;
        background: #fff;
        width: 100%;
        top: 78px;
        left: 0;
        display: none;
        padding-bottom: 15px;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #homeslider {
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
    }

    #homeslider h1 {
        font-size: 4rem;
    }

    #homeslider h1>span {
        font-weight: 400;
        background: #040404;
        color: white;
        padding: 8px;
        margin-top: 10px;
        font-size: 2.6rem;
        margin-bottom: 5px;
        width: fit-content;
    }

    #homeslider .button {
        margin-bottom: 15px;
        display: inline-block;
        color: #fff;
        background: #040404;
    }

    .offerbox {
        padding: 30px 0;
    }
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}