/* wp admin bar */
.customize-support header {
    top: 32px;
}

* {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --white: white;
    --orange: #ff6a00;
    --blue-gradient: linear-gradient(45deg, rgba(29,24,72,1) 0%, rgba(0,140,165,1) 100%);
    --black-08: rgba(0, 0, 0, 0.8);
    --grey: #f4f4f4;
}

html, body {
    height: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
header {
    position: fixed;
    top: 0; right: 0; left: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 2rem;
    z-index: 1080;
    transition: all .3s;
}
header .nav a {
    padding: 0 1.75rem;
    color: var(--white);
    transition: color .5s;
}
header .nav a:hover {
    color: var(--orange);
}
header .nav a strong {
    color: var(--orange);
}
header img {
    width: 300px;
}
header .bi-list {
    color: var(--white);
    font-size: 1.7rem;
}
header .bg {
    position: fixed;
    top: 0; right: 0; left: 0;
    background-color: var(--black-08);
    height: 120px;
    z-index: -1;
    transform: translateY(-100%);
    transition: all .5s;
}
header.scrolled .bg {
    transform: translateY(0);
}
main section {
    scroll-margin-top: 200px;
}
section {
    scroll-margin-top: 100px;
}
.burger {
    padding-top: .25rem;
    z-index: 1090;
}
@media (max-width: 992px) {
    header.menu.scrolled .bg {
        transform: translateY(-100%);
    }
    header {
        padding: 1.5rem 1rem;
    }
    header img {
        width: 250px;
        position: relative;
        z-index: 1090;
    }
}

@media (max-width: 992px) {
    .menu-container {
        flex-direction: column;
        position: fixed;
        top: 0; right: 0; bottom: 0; left: 0;
        background-color: var(--black-08);
        padding-top: 8rem;
        font-size: 1.5rem;
        transform: translateX(100%);
        transition: all .5s;
    }
    header.menu .menu-container {
        transform: translateX(0);
    }
    header.menu .burger .bi-list::before {
        content: '\F659';
    }
    header .nav {
        flex-direction: column;
        align-items: center;
    }
    header .nav a, header .nav li {
        margin: 1rem 0;
    }
}

@media (max-width: 992px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}


.intro {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white);
}
.intro::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    box-shadow: inset -50px -50px 100px black;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.4) 100%);
    z-index: 0;
}
.intro-img {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 10s;
}
@media (max-width: 992px) {
    .intro-img {
        background-position: center;
    }
}
.intro:hover .intro-img, .intro:focus .intro-img {
    transform: scale(1.2);
}
.intro .container, .scroll-down {
    position: relative;
    z-index: 1070;
}
.intro .card {
    background-color: var(--black-08);
    color: var(--white);
    min-height: 5rem;
    transition: color .5s;
}
.intro .card-body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}
.intro .card:hover {
    color: var(--orange);
}
@media (max-width: 992px) {
    .intro .card-body {
        padding: .25rem 1.5rem;
    }
    .intro .card {
        margin-bottom: .5rem;
    }
}
.intro .wp-block-heading {
    margin-bottom: 1rem;
}

.intro .col-lg-4 .card {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

main {
    background-color: var(--white);
}

section {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
@media (max-width: 992px) {
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
section h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8e8e8e;
    margin-bottom: 1.5rem;
}
section.bg {
    background-color: var(--grey);
}
.service-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    transition: all .5s;
}
.service-box:hover {
    background-color: var(--grey);
}
.light-shadow {
    box-shadow: 0px 0px 45px 0px rgba(66, 68, 90, 0.25);
}
.service-box {
    border: 1px solid rgba(211, 211, 211, .3);
}

.oferta .service-box i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}
.oferta .service-box div {
    font-weight: 700;
}

.sky-sep span {
    width: 35px;
    height: 1px;
    background-color: var(--orange);
    display: inline-block;
}
section.cta {
    background: var(--blue-gradient);
    color: var(--white);
}
.cta .contact {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 700;
}
footer {
    background: var(--blue-gradient);
    color: var(--white);
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: .8rem;
    line-height: 1.8;
}
.small-footer {
    border: 1px solid white;
    padding: 1rem;
    font-size: .7rem;
    opacity: .5;
}
.small-footer .nav > * {
    margin-right: 1rem;
}
footer img {
    max-width: 150px;
}
footer i {
    color: var(--orange);
}
footer .phones {
    font-size: 1.1rem;
}
div.img {
    min-height: 500px;
    width: 100%;
    background-position: center;
    background-size: cover;
}
.subheader {
    height: 300px;
    color: var(--grey);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
}
@media (max-width: 992px) {
    .subheader {
        height: 200px;
    }
}
.subheader .card {
    background-color: var(--black-08);
    color: var(--grey);
    font-size: .7rem;
    border: 1px solid var(--grey);
    margin-right: 1rem;
    transition: all .5s;
}
.subheader .card:hover {
    color: var(--orange);
    border: 1px solid var(--orange);
}
.subheader .card .card-body {
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
}
.subheader .card i {
    font-size: .8rem;
}
.exp {
    min-height: 250px;
    background: var(--blue-gradient);
    color: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 700;
    flex-direction: column;
}
.exp i {
    font-size: 2rem;
    color: var(--grey);
    line-height: 1;
    margin-bottom: .2rem;
}
.exp span {
    font-size: .8rem;
    font-weight: 400;
    color: var(--grey);
    opacity: .8;
}

.services .exp {
    min-height: 180px;
}
.services h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}
.services h3 {
    font-size: 1.2rem;
}
.services section:nth-child(even) {
    background-color: var(--grey);
}
.btn {
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
}
.btn-primary {
    background: var(--blue-gradient);
    border-color: var(--orange);
}
.btn-primary:hover {
    color: var(--orange);
}

.customers .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
}
.customers .card {
    transition: all .5s;
}
.customers .card:hover {
    background-color: var(--grey);
}

.customers .card-body img {
    max-width: 150px;
}
.current-menu-item a {
    color: var(--orange)!important;
    font-weight: 700;
}

.kontakt .contact i {
    color: var(--orange);
}