/* DEFAULTS */

html {
    height: 100%;
}

body {
    background-color: #fff;
    font-family: "Open sans", "Arial", sans-serif;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

body.nav-opened {
    overflow: hidden;
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
    color: #E5046E;
}

strong,
b {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Open sans", "Arial", sans-serif;
    color: #222;
    font-weight: 700;
    line-height: 130%;
    margin: 24px 0;
}

h1,
.h1 {
    font-size: 44px;
}

h2,
.h2 {
    font-size: 32px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 18px;
}

p {
    margin: 0;
}

a {
    color: #222;
    text-decoration: none;
    transition: color .3s ease;
}

em {
    color: #E5046E;
    font-style: normal;
}

textarea {
    resize: vertical;
}

img {
    max-width: 100%;
    height: auto;
}

picture {
    display: flex;
    /* height: auto; */
    height: 100%;
}

button {
    outline: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.container {
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
}

.container-wide {
    max-width: 1800px;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    transition: padding .3s ease;
}

.colored {
    color: #E5046E;
}

/* btns */

.btn {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 16px 42px;
    border-radius: 9999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    transition: color .3s ease, background .3s ease, border .3s ease
}

.btn-outline {
    border-color: #E5046E;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus-within {
    background: #b60356;
}

.btn-primary {
    background: #E5046E;
    border-color: #E5046E;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within {
    background: #b60356;
    border-color: #b60356;
    color: #fff;
}

.btn-secondary {
    background: #222;
    border-color: #222;
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-within {
    background: #333;
    border-color: #333;
}

/* btns */

/* inputs */

input,
textarea {
    outline: 0;
    width: 100%;
    padding: 8px;
    border: 2px solid #222;
    box-shadow: 0 0 0 0;
    transition: border .3s ease;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
    border-color: #E5046E;
}

/* inputs */

/* nav sticky */

.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    z-index: 1002;
    background-color: #fff;
}

.navbar-sticky .navbar-default {
    box-shadow: 0px 4px 24px 0px rgba(24, 40, 50, 0.15);
}

.navbar-sticky .nav-wrapper {
    padding: 10px 0;
}

/* nav sticky */

/* nav */

.navbar-divider {
    background-color: #E5046E;
    width: 100%;
    height: 40px;
}

.footer-divider {
    background-color: #E5046E;
    width: 100%;
    height: 6px;
}

.navbar-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.nav-wrapper {
    padding: 25px 0;
    transition: padding .3s ease;
}

.nav-wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    transition: transform .3s ease;
    display: flex;
}

.navbar-logo img {
    max-width: 200px;
    width: 100%;
}

.navbar-logo:hover {
    transform: scale(0.95);
}

.navbar-menu-wrapper .hamburger {
    display: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
}

.navbar-nav a {
    font-size: 16px;
    color: #E5046E;
    padding: 10px;
    transition: color .3s ease;
    text-transform: uppercase;
}

.navbar-nav li.active a,
.navbar-nav a:hover {
    color: #222;
}

.navbar-collapse-toggler {
    display: none;
}

.navbar-brand {
    position: relative;
    z-index: 99;
}

@media (min-width:1200px) {
    .navbar-nav {
        margin-left: -10px;
        margin-right: -10px;
    }

    .hamburger-logo {
        display: none;
    }
}

@media (max-width:1199px) {

    .navbar-collapse {
        position: absolute;
        left: 0;
        top: -12px;
        width: 100%;
        transform: translateX(100%);
        transition: transform .3s ease;
        background-color: #fff;
        height: 100svh;
        padding: 25px;
    }

    .navbar-collapse.active {
        transform: translateX(0);
    }


    .navbar-collapse-overflow {
        padding-top: 160px;
    }

    .navbar-nav li.active a,
    .navbar-nav a:hover {
        color: #222;
    }

    .navbar-menu-wrapper .main-logo {
        max-width: 75%;
    }

    .navbar-menu-wrapper {
        padding: 12px 0;
    }

    .navbar-menu-wrapper .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 99;
    }

    .navbar-menu-wrapper .bar {
        width: 24px;
        height: 2px;
        background-color: #222;
        margin: 4px 0;
        transition: 0.4s;
    }

    .navbar-menu-wrapper .hamburger {
        display: flex;
    }

    .hamburger-logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateY(100%) translateX(-50%);
        width: 100%;
        max-width: 75%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-primary {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
    }

    .navbar-nav a {
        font-size: 18px;
        color: #222;
    }

    .navbar-nav li.active a,
    .navbar-nav a:hover {
        color: #E5046E;
    }

    .nav-menu-wrapper {
        width: 100%;
        padding: 0;
    }

    .nav-menu-wrapper nav {
        transform: translateX(100%);
        transition: transform .3s ease;
        position: absolute;
        left: 0;
        top: 0;
        background: lime;
        z-index: 99;
        width: 100%;
    }

    .nav-menu-wrapper.active nav {
        transform: translateX(0);
    }

    .navbar-menu-wrapper .bar.active:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }

    .navbar-menu-wrapper .bar.active:nth-child(2) {
        opacity: 0;
    }

    .navbar-menu-wrapper .bar.active:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }

    .nav-menu-wrapper {
        border-bottom: 0;
    }
}

/* nav */

/* footer */

footer {
    background-color: #333;
}

footer .footer-main {
    padding: 8px 0 32px;
}

footer * {
    color: #fff;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-wrapper .footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-wrapper .footer-col:last-child {
    text-align: right;
}

footer .nav-footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .nav-footer ul a {
    padding: 10px;
}

.footer-wrapper .footer-copy {
    text-align: right;
    width: 100%;
    font-size: 12px;
}

.footer-social ul {
    display: flex;
    list-style-type: none;
    gap: 24px;
    padding: 0;
    margin: 0;
}

.footer-columns {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0 50px;
}

.footer-columns .footer-column {
    width: calc(25% - 10px);
}

.footer-column h4 {
    font-size: 18px;
}

.footer-column h5 {
    margin: 0 0 10px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
}

.footer-column svg {
    max-width: 64px;
}

.footer-column ul svg {
    transition: transform .3s ease;
}

.footer-column ul a:hover svg {
    transform: scale(0.95);
}

.footer-column>a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 30px;
}

.footer-column>a:last-child {
    margin-bottom: 0;
}


@media (min-width:992px) {
    footer .nav-footer ul {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (max-width:991px) {

    .footer-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    footer .nav-footer ul {
        gap: 12px;
        justify-content: center;
    }

    .footer-wrapper .footer-col,
    .footer-wrapper .footer-col:last-child {
        text-align: center;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-columns .footer-column {
        width: calc(50% - 10px);
    }
}

@media (max-width:768px) {
    footer .nav-footer ul {
        flex-direction: column;
    }
}

@media (max-width:679px) {
    .footer-columns .footer-column {
        width: 100%;
    }
}


/* footer */


/* other */

.section-title {
    text-align: center;
    padding: 0 0 40px;
}

/* other */

/* footer svg */

.navbar-divider {
    display: flex;
    align-items: center;
    z-index: 99;
    position: relative;
}

.floating-social {
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
}

.floating-social ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    background-color: #222;
    border-radius: 16px;
}

.floating-social svg {
    max-width: 32px;
    width: 100%;
    height: auto;
    transition: transform .3s ease;
}

.floating-social a {
    display: flex;
    align-items: center;
    padding: 3px;
}

.floating-social a:hover svg {
    transform: scale(0.9);
}

@media (min-width:1200px) {
    .floating-social svg {
        max-width: 32px;
    }
}

/* footer svg */

/* social realizacje */

.social-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 40px;
}

.social-wrapper svg {
    max-width: 64px;
    width: 100%;
    height: auto;
    transition: transform .3s ease;
}

.social-wrapper a:hover svg {
    transform: scale(0.9);
}


/* social realizacje */

.grecaptcha-badge {
    display: none;
}