/*
    Theme Name: Interbox
    Author: GQIM
    Author URI: http://gqim.com
    Description: Interbox by GQIM
    Version: 1.0
    License: Private
    Text Domain: interbox
*/

:root {
    --white: #fff;
    --black: #000;
    --gray: #F0F0F0;
    --dark: #3d3d3c;
    --dark-gray: #707070;
    --orange-transparent: rgba(246, 140, 31, 0.75) !important;
    --orange: #f68c1f !important;
    --dark-green: #6f924a !important;
    --light-green: #9ccb3b !important;
    --text-gray: #8e8e8e !important;
    --red: #fa6465 !important;
    --blue: #009adc !important;
    --yellow: #ffe700 !important;
}

.bg-gray {background-color: var(--gray) !important;}
.bg-dark {background-color: var(--dark) !important;}
.bg-orange {background-color: var(--orange) !important;}
.bg-orange-transparent {background-color: var(--orange-transparent) !important;}
.bg-dark-green {background-color: var(--dark-green) !important;}
.bg-light-green {background-color: var(--light-green) !important;}
.bg-red {background-color: var(--red) !important;}
.bg-blue {background-color: var(--blue) !important;}
.bg-yellow {background-color: var(--yellow) !important;}

.text-black {color: var(--black) !important;}
.text-gray {color: var(--text-gray) !important;}
.text-red {color: var(--red) !important;}
.text-blue {color: var(--blue) !important;}
.text-yellow {color: var(--yellow) !important;}
.text-orange {color: var(--orange) !important;}
.text-light-green {color: var(--light-green) !important;}

html, body {
    font-family: 'Open Sans', Open Sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    margin: 0;
    scroll-behavior: smooth !important;
    color: var(--text-gray) !important;
}

a, a:hover  {
    color: inherit !important;
    text-decoration: none !important;
}

p {
    margin-bottom: 0 !important;
}

ul.menu, div.menu ul {
    padding-inline-start: 0;
    list-style: none;
    margin-bottom: 0;
}

ul.menu li, div.menu ul li {
    display: inline-block;
    margin-right: 1rem;
}

@media screen and (max-width: 1199.9999999px) {
    ul.menu li, div.menu ul li {
        display: block;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

ul.menu li:last-child, div.menu ul li:last-child {
    margin-right: 0;
}

header {
    font-weight: 600;
}

header ul.menu a:hover {
    color: var(--dark-green) !important;
    text-decoration: underline !important;
    transition: all 100ms ease-in-out;
}

.bg-size-cover {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.full-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.z-index-10 {
    z-index: 10;
}

.z-index-100 {
    z-index: 100;
}

@media screen and (max-width: 576px) {
    .parallax-img-fluid {
        width: 100%;
        height: auto;
    }
}

/* SOCIALS BOOKMARKS */

.socials-container {
    right: 0 !important;
    top: 50%;
    margin-top: -50px;
    z-index: 9999;
}

.social-bookmark {
    margin-bottom: 1px;
    background-color: var(--dark) !important;
    color: var(--white) !important;
    position: relative;
    right: calc(-100% + 2.25rem);
    transition: all 300ms ease-in-out;
}

.social-bookmark:hover {
    right: 0 !important;
    color: var(--white) !important;
}

/* SOCIALS END */

h2 {
    display: inline-block !important;
    margin-bottom: 3rem !important;
    border-bottom: 5px solid var(--text-gray);
}

.h2-white {
    color: var(--white) !important;
    border-bottom: 5px solid var(--white);
}

.top-left {left: 0; top: 0;}
.top-right {right: 0; top: 0;}
.bottom-left {left: 0; bottom: 0;}
.bottom-right {right: 0; bottom: 0;}

.list-content {
    padding-inline-start: 1rem;
    list-style-type: none;
}

.list-content li {
    position: relative;
    margin-bottom: 1.5rem;
}

.list-content li::before {
    position: absolute;
    content: '';
    left: -1rem;
    top: .5rem;
    width: 5px;
    height: 15px;
    background-color: var(--text-gray);
}

.percent {
    font-weight: lighter;
    font-size: 3rem;
    position: relative;
}

.percent::after {
    position: absolute;
    content: '';
    bottom: -.5rem;
    left: calc(50% - 1.5rem);
    width: 3rem;
    height: 5px;
}

.percent.bg-red, .percent.bg-blue, .percent.bg-yellow {
    background-color: transparent !important;
}

.percent.bg-red::after {background-color: var(--red);}
.percent.bg-blue::after {background-color: var(--blue);}
.percent.bg-yellow::after {background-color: var(--yellow);}

.btn {
    border: 2px solid var(--white) !important;
    border-radius: 0 !important;
    padding: .5rem 1.5rem !important;
}

.content-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(4, 1fr));
    grid-gap: 0;
    grid-auto-rows: min-content 1fr;
    font-weight: lighter !important;
}

h3 {
    font-weight: lighter !important;
    text-transform: uppercase;
}

.font-weight-light {
    font-weight: lighter !important;
}

.font-size-big {
    font-size: 2rem;
}

.green-arrow {
    bottom: -25px;
    left: 10px;
}

.img-cover {
    object-fit: cover;
}

h4, h5 {
    margin-bottom: 0 !important;
}

.min-height-300px {
    min-height: 300px;
}

.category-list {
    list-style-type: none;
    padding-inline-start: 0;
}

@media screen and (min-width: 1200px) {
    .content-grid {
        font-size: 2rem;
        grid-auto-rows: minmax(300px, auto) !important;
    }

    h3 {
        font-size: 3rem !important;
    }

    .studio-projektowania {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .transport-gratis {
        grid-column: 3 / 4;
        grid-row: 1;
    }

    .atrakcyjne-ceny {
        grid-column: 4 / 4;
        grid-row: 1;
    }

    .just-in-time {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .dlaczego-my {
        grid-column: 3 / 5;
        grid-row: 2 / 4;
    }
}

h3.red-underline::after {
    content: '';
    position: absolute;
    height: 5px;
    width: 6rem;
    background-color: var(--red);
    bottom: -1rem;
    left: 0;
}

h3.white-underline::after {
    content: '';
    position: absolute;
    height: 5px;
    width: 6rem;
    background-color: var(--white);
    bottom: -1rem;
    left: 0;
}

.contact-map {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    width: 100%;
}

.category-name {
    transform: rotate(180deg);
    writing-mode: vertical-rl !important;
    text-orientation: sideways-right !important;
    border-left: 1px solid var(--white);
}

.categories-contact {
    border-bottom: 1px solid var(--dark);
}

/* owl nav */

.owl-nav {
    position: relative !important;
    top: 0;
    left: 0;
}

.owl-nav button.owl-prev {
    position: absolute !important;
    left: -6rem;
    top: -170px;
}

.owl-nav button.owl-next {
    position: absolute !important;
    right: -6rem;
    top: -170px;
}

.rotate-180 {
    transform: rotate(180deg);
}

/** breadcrumbs */

#breadcrumbs {
    list-style:none;
    margin:10px 0;
    overflow:hidden;
}

#breadcrumbs li {
    display:inline-block;
    vertical-align:middle;
    margin-right:15px;
}

#breadcrumbs .separator {
    font-size:18px;
    font-weight:100;
    color:#ccc;
}

.product-item-max-width {
    max-width: 21%;
    text-align: center !important;
}

table.product-info-table tr {
    margin-bottom: 1rem;
}

table.product-info-table th, table.product-info-table td {
    padding: .5rem 1rem .5rem 0;
}