body { color: #6c757d; }
.bg-red { background-color: #D40000 }
.bg-dark-gray { background-color: #333333; }
html { scroll-behavior: smooth; }
.container-bg {
    background-repeat: repeat-y;
    background-position: left top, right top;
    padding-right: 79px;
    padding-left: 79px;
    margin-right: auto;
    margin-left: auto;
}
.main {
    background-color: #fff;
}
header {
    background-color: rgba(0,0,0,0.9);
    border-bottom: 3px solid #D40000;
}
header .logo {
    position: absolute;
    top: 0;
}
header .navbar-nav {
    font-size: .7rem;
}
header .navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
#slider img {
    object-fit: cover;
    max-height: 520px;
    -webkit-animation: zoom-in-zoom-out 15.2s infinite;
    -moz-animation: zoom-in-zoom-out 15.2s infinite;
    -o-animation: zoom-in-zoom-out 15.2s infinite;
    animation: zoom-in-zoom-out 15.2s infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.5, 1.5);
    }
    100% {
        transform: scale(1, 1);
    }
}
.separator {
    display: block;
    width: 84px;
    height: 3px;
    margin: 15px 0 15px;
    background-color: #D40000;
    position: relative;
}
.section .blocks-gallery-item {
    margin-right: auto !important;
    margin-bottom: 0 !important;
}
.section-dla-wszystkich-realizujacych-wykonczenia {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-dla-wszystkich-realizujacych-wykonczenia:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, .7);
}
.z-index {
    z-index: 2;
}
iframe {
    width: 100%;
}
.section-bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
}
.section-bg-single {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center top;
}
.section ul {
    list-style: none;
}
form .form-control {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 2px solid #000;
    border-radius: 0;
}
form .small a {
    color: #333;
    font-weight: bold;
}
#basic-captcha-code {
    letter-spacing: 8px;
}
.section-single-page-header img {
    object-fit: cover;
    width: 100%;
}
.animation-bouncing {
    position: relative;
    width: 100%;
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    -moz-animation: bouncing-text 20s linear infinite alternate;
    -webkit-animation: bouncing-text 20s linear infinite alternate;
    animation: bouncing-text 20s linear infinite alternate;
}
@-moz-keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
    }
    100% {
        -moz-transform: translateX(-50%);
    }
}

@-webkit-keyframes bouncing-text {
    0% {
        -webkit-transform: translateX(50%);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    100% {
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
.container-content img {
    height: auto;
}

@keyframes OpacityAnimation {
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes OpacityAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes OpacityAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes OpacityAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
.animation-pulse {
    -webkit-animation: pulse 2s linear infinite;
    -moz-animation: pulse 2s linear infinite;
    animation: pulse 2s linear infinite;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }

}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1.1);
    }

}

@-ms-keyframes pulse {
    0% {
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -ms-transform: scale(1);
        transform: scale(1.1);
    }
}

.animate-opacity {
    -webkit-animation: OpacityAnimation 3s infinite;
    -moz-animation: OpacityAnimation 3s infinite;
    -o-animation: OpacityAnimation 3s infinite;
    animation: OpacityAnimation 3s infinite;
}
.animate-opacity-a {
    -webkit-animation: OpacityAnimation 1.2s infinite;
    -moz-animation: OpacityAnimation 1.2s infinite;
    -o-animation: OpacityAnimation 1.2s infinite;
    animation: OpacityAnimation 1.2s infinite;
}
.animate-opacity-b {
    -webkit-animation: OpacityAnimation 1.6s infinite;
    -moz-animation: OpacityAnimation 1.6s infinite;
    -o-animation: OpacityAnimation 1.6s infinite;
    animation: OpacityAnimation 1.6s infinite;
}
.animate-opacity-c {
    -webkit-animation: OpacityAnimation 2s infinite;
    -moz-animation: OpacityAnimation 2s infinite;
    -o-animation: OpacityAnimation 2s infinite;
    animation: OpacityAnimation 2s infinite;
}
.box-info-for-client {
    width: 90%;
    height: 275px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    text-align: center;
    position: absolute;
    left: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-info-for-client a {
    background-color: #FFFF00;
    color: #e84c3d;
    padding: 10px;
}

@media screen and (min-width: 0) and (max-width: 992px) {
    #slider img {
        height: 350px;
    }
}
@media screen and (min-width: 0) and (max-width: 1400px) {
    header .logo {
        width: 110px;
    }
    .container-bg {
        padding-right: 9px;
        padding-left: 9px;
        background-image: none !important;
    }
    .thumbnail-o-inwestycji, .thumbnail-informacje-dla-klientow {
        display: none;
    }
    .col-lg-7, .col-lg-4, .col-lg-5 {
        flex: 0 0 auto !important;
        width: 100% !important;
    }
    #kontakt .col-12 {
        text-align: center;
    }
}
@media screen and (min-width: 1400px) and (max-width: 1470px) {
    header .logo {
        width: 15%;
    }
}
#informacje-dla-klientow ul, #o-inwestycji ul {
    list-style: disc;
}
form button[type=submit] {
    background-color: #D40000;
    border-color: #D40000;
}
.top {
    position: fixed;
    background-color: #333;
    color: #fff;
    padding: 20px;
    bottom: 20px;
    right: 20px;
}
.toast-cookies a {
    color: #fff;
}