:root {
    --main-color: #00B4D8;
    --dark-color: #1D1D1B;
    --dark-blue: #03045E;
    --light-color: #FFFFFF;
    --main-font: 'Montserrat', sans-serif;
    --light-blue: rgba(202, 240, 248, .2);
    --secondary-font: 'Karla', sans-serif;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--main-color);
    --bs-dropdown-link-active-color: var(--light-color);
}

.my-navbar ul li a.dropdown-item.active, .my-navbar ul li a.dropdown-item:active {
    color: var(--light-color);
    margin-right: 0;
}


::selection {
    color: var(--light-color);
    background-color: var(--main-color);
}

body {
    background-color: var(--light-color);
    overflow-x: hidden;
}

.logo-header {
    height: 70px;
}

.my-navbar {
    background-color: var(--light-color);
    border-bottom: 3px solid var(--main-color);
    height: 100px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
    width: 100vw;
}

.my-navbar li {
    display: flex;
    align-items: center;
}

.my-navbar li a {
    color: var(--dark-color);
    font-family: var(--main-font);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    transition: .7s ease-in-out;
    margin-right: 8px;
}

.my-navbar li a.dropdown-item {
    color: var(--dark-color);
}

.my-navbar li a:hover,
.my-navbar li a:focus {
    color: var(--main-color);
}

.my-navbar ul.navbar-nav {
    background-color: var(--light-color);
    padding-top: 5vh;
    text-align: center;
    margin: 10px 0 0 0;
    padding-bottom: 5vh;
    align-items: center;
}

.my-navbar ul.navbar-nav li.nav-item a.nav-link.active {
    color: var(--main-color);
    font-weight: 500;
}

.my-btn,
nav.my-navbar ul li.nav-item a.my-btn {
    background-color: var(--main-color);
    padding: 12px 24px 12px 24px;
    color: var(--light-color);
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: .7s ease-in-out;
    width: 100%;
}

.my-btn:hover,
nav.my-navbar ul li.nav-item a.my-btn:hover {
    border: 2px solid var(--main-color);
    background-color: transparent;
    color: var(--main-color);
}

.my-btn.small,
nav.my-navbar ul li.nav-item a.my-btn.small {
    font-size: 12px;
    padding: 8px 20px 8px 20px;
}

.my-navbar .my-btn {
    width: 50%;
    margin: auto;
    margin-top: 20px;
}

button.navbar-toggler,
button.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}


section.jumbotron-main {
    width: 100vw;
    height: calc(100vh - 90px);
    background-color: var(--light-blue);
}

section.jumbotron-main img {
    width: 100%;
    height: calc(100vh - 90px);
    object-fit: cover;
}

section.jumbotron-main .row > div {
    display: flex;
    align-items: center;
    padding-left: 100px;
}

section.jumbotron-main .main-banner-heading {
    font-family: var(--main-font);
    font-weight: 600;
    color: var(--dark-color);
    font-size: 50px;
}

section.jumbotron-main .main-banner-heading span {
    color: var(--main-color);
}

section.jumbotron-main .main-banner-text {
    font-family: var(--secondary-font);
    width: 70%;
    margin-bottom: 32px;
    margin-top: 20px;
}

.desktop-jumbotron {
    display: none;
}

.mobile-jumbotron .content {
    text-align: center;
    padding: 128px 24px 64px 24px;
}

.mobile-jumbotron p.main-banner-text {
    width: 100%;
}

section.offer {
    margin-top: 120px;
    margin-bottom: 120px;
}

section.offer .col-md-6 {
    height: 300px;
    position: relative;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: .7s ease-in-out;
}

section.offer .col-md-6:hover {
    background-size: 110%;
}

section.offer h2.offer-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    background-color: var(--main-color);
    color: var(--light-color);
    padding: 8px 24px 8px 20px;
    font-size: 24px;
}

section.icon-container {
    margin-top: 120px;
    margin-bottom: 120px;
    width: 100vw;
    border-bottom: 4px solid var(--main-color);
    padding: 60px 0 60px 0;
    background-color: var(--light-blue);
}

section.icon-container h5.icon-headline {
    color: var(--dark-color);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 16px;
    margin-top: 36px;
    width: 100vw;
    text-align: center;
}

section.icon-container p.icon-text {
    color: var(--dark-color);
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 300;
    opacity: .8;
    margin-top: 8px;
    width: 80%;
    margin: auto;
}

.my-row>div {
    width: 100vw;
    margin-bottom: 40px;
    text-align: center;
}

.icon-container .container {
    --bs-gutter-x: 0;
}

.icon-container.contacts a {
    text-decoration: none;
}

.icon-container.contacts a h5 {
    transition: .5s ease-in-out;
}

.icon-container.contacts a:hover h5 {
    color: var(--main-color);
}

h2.section-headline {
    color: var(--dark-blue);
    font-size: 40px;
    font-weight: 600;
    font-family: var(--main-font);
    margin-bottom: 16px;
}

section.aboutUs {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    background-color: var(--light-blue);
    margin-top: 120px;
    margin-bottom: 120px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-x: hidden;
    width: 100vw;
}

section.aboutUs h2 {
    margin-bottom: 20px;
}

section.aboutUs p.aboutUs-text {
    color: var(--dark-color);
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-top: 6px;
}

section.aboutUs .img-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/aboutUs.png');
}

footer {
    width: 100vw;
    background: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5vw 4px 5vw;
}

footer p a {
    color: white;
}

.footer {
    display: flex;
    align-items: center;
}

footer p {
    color: var(--light-color);
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 300;
}

section.banner {
    text-align: center;
    padding: 64px;
    background-image: url('../images/banner.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

section.banner h3.banner {
    color: var(--light-color);
    font-size: 36px;
    margin-bottom: 32px;
}

section.banner a {
    background-color: var(--light-color);
    color: var(--main-color);
    font-weight: 600;
}

section.banner a:hover {
    color: var(--light-color);
    border-color: var(--light-color);
}


section.offer-banner {
    width: 100vw;
    height: 50vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 48px;
}

section.offer-banner h1.heading-offer {
    color: var(--light-color);
    font-size: 50px;
    font-family: var(--main-font);
    font-weight: 600;
}

section.offer-banner span.company {
    color: var(--light-color);
    font-size: 16px;
    font-weight: 300;
    font-family: var(--secondary-font);
}

section.offer-text {
    margin-top: 80px;
    margin-bottom: 120px;
}

section  p.text-offer {
    color: var(--dark-color);
    font-size: 18px;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.table-header {
    background-color: var(--main-color);
    color: var(--light-color);
    text-align: center;
    padding: 12px;
    font-size: 20px;
    font-weight: 600;
}

.table-header.left {
    border-right: 0.75rem solid white;
}

.table-header.right {
    border-left: 0.75rem solid white;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-striped-bg: var(--light-blue);
}

.table {
    --bs-table-hover-bg: var(--main-color);
    --bs-table-hover-color: white;
}

section.kontaktni-udaje {
    margin-top: 80px;
    margin-bottom: 120px;
}

section.kontaktni-udaje p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--dark-color);
}

section.kontaktni-udaje p a {
    color: var(--dark-color);
    text-decoration: none;
    transition: .5s ease-in-out;
}

section.kontaktni-udaje p a:hover {
    color: var(--main-color);
}

section.cenik {
    margin-top: 80px;
}

.cenik-desktop {
    display: none;
}


strong.no-strong {
    font-weight: inherit;
}
@media(min-width: 991px) {
    .my-navbar ul.navbar-nav {
        background-color: transparent;
    }

    .my-navbar .my-btn {
        margin-left: 12px;
    }

    .my-navbar {
        height: 100px;
        background-color: transparent;
    }

    .my-navbar .my-btn {
        width: 100%;
        margin-top: 0;
    }

    .my-row>div {
        width: 25vw;
        text-align: left;
        margin-bottom: 0;
    }

    .my-row {
        display: flex;
        justify-content: space-around;
    }

    section.icon-container h5.icon-headline {
        font-size: 20px;
        margin-top: 32px;
        width: fit-content;
        text-align: left;
    }

    section.icon-container p.icon-text {
        margin-left: 0;
    }

    section.aboutUs {
        padding-right: 0;
        padding-left: 0;
    }

    .desktop-jumbotron {
        display: block;
    }

    .mobile-jumbotron {
        display: none;
    }

    .cenik-mobile {
        display: none;
    }

    .cenik-desktop {
        display: block;
    }

}

@media(min-width: 1220px) {
    section.desktop-jumbotron .main-banner-heading {
        font-size: 70px;
    }
}
