* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    /* height: 200vh; */
    background-color: #fff;
    /* background-color: #1f2d3a; */
    /* color: #30A9D9; */
    color: #1f2d3a;
}

.header-row-top {
    background-color: #fac11c;
    color: #1f2d3a;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
}

.header-col-top-left {
    text-align: center;
}

.header-logo {
width: 160px; 
position: absolute;
top: 9px;
left: 30px;   
}
.header-logo img{
    margin: 0;
    padding: 0;
    z-index: 5;
    height: 140px;
}

.header-col-top-center {
    text-align: right;
    display: flex;
    justify-content: end;
}
.header-col-top-center i {
    margin-right: 8px;
    margin-left: 20px;
}

.header-col-top-right {
    text-align: center;
}
.header-col-top-right a {
    color: #1f2d3a;
    text-decoration: none;
    margin: 0 2px;
}

.top-menu {
    margin: 0 0;
    padding: 0;
    color:#30A9D9;
    background-color: #1f2d3a;
    font-size: 15px;
}
.top-menu .navbar{
    padding: 0 200px;
}
.top-menu nav div .nav-item a.nav-link {
    padding: 12px 18px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    transition: .6s;
}

.top-menu nav div .nav-item a.nav-link:hover {
    color: #fac11c   ;
}
.top-menu nav div .nav-item a.active {
    background-color: #fac11c;
    color: #fff;
    transition: .6s;
}

.top-menu nav div .nav-item a.active:hover {
    color: #1f2d3a;
}

.navbar-toggler {
    color: #fff;
    border: #fff 2px solid;
    border-radius: 0;
    background-color: #fff;
    margin: 8px 0px;
    transition: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0;

}

.top-active {
    background-color: #1f2d3a;
    color: #1f2d3a;
}

.top-header-title {
    /* background-color: #30A9D9; */
    background-color: #1f2d3a;
    padding-bottom: 40px;


}
.top-header-title-light {
    background-color: #f0f0f0;
    padding-bottom: 40px;
}
.top-header-title-light h1 {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 0;
    color: #1f2d3a;   
}
.top-header-title-light-sq {
    background-color: #f0f0f0;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.top-header-title-light-sq div {
    width: 390px;
    height: 150px;
    text-align: center;
    line-height: 150px;
    font-size: 30px;
    letter-spacing: -1px;
    text-transform: uppercase;
    background-color: #1f2d3a;
    font-weight: 700;
    border: 1px solid #fac11c;
}
.top-header-title-light-sq div a {
    color: #fac11c;
    text-decoration: none;
    padding: 60px;
    transition: .5s;
}

.top-header-title-light-sq div a:hover {
    color: #f0f0f0;
}

.top-header-title h1 {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 0;
    color: #fac11c;
    /* color: #1f2d3a; */
}

.top-header-title p {
    font-size: 18px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 30px;
    color: #f0f0f0;
    /* color: #fac11c; */
}


/* odnośniki na górze strony gdzie jestes */
.top-breadcrumb {
    margin-top: 15px;
}
.top-breadcrumb .breadcrumb {
    font-size: 12px;
    text-align: center;
}

.top-breadcrumb .breadcrumb-item {
    text-transform: uppercase;
    font-weight: 500;
    color: #1f2d3a;
}
.top-breadcrumb nav .breadcrumb li:last-of-type {
    background-color: #fff;
}
.top-breadcrumb nav .breadcrumb li {
    padding: 5px 12px;
    border: #f0f0f0 1px solid;
    margin-right: 8px;
    background-color: #f0f0f0;
}
    .top-breadcrumb .breadcrumb-item a {
    padding: 5px 12px;
    text-decoration: none;
    color: #1f2d3a;
    border: none;
}
/* END - odnośniki na górze strony gdzie jestes */


/* odwracana karta */

.container-card {
    /* width: 250px; */
    height: 250px;
    background-color: #fac11c;
}
.container-card-all{
    width: 100%;
    height: 100%;
    transition: transform 1500ms;
    transform-style: preserve-3d;
}
.container-card-all:hover{
    cursor: pointer;
    transform: rotateY(180deg);
}
.container-card-all {
    height: 100%;
    width: 100%;
    position: relative;
}
.container-card-front, 
.container-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.container-card-front {
    background-color: #fac11c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
}

.container-card-back {
    background-color: #1f2d3a;
    transform: rotateY(180deg);
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.container-card-back h1 {
    font-size: 20px;
}
.container-card-back p {
    font-size: 14px;
}


/* slider */

.header-slider {
    height: 480px;
    overflow: hidden;
    position: relative;
}
.header-slider img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    animation: slider 15s infinite linear;
}
.header-slider img:nth-child(2) {
    animation-delay: 5s;
}
.header-slider img:nth-child(3) {
    animation-delay: 10s;
}

.header-slider h1 {
    position: absolute;
    font-size: 50px;
    color: #fff;
    background-color: rgba(0,0,0,.3);
    padding: 20px 40px;
    top: 30%;
    left: 10%;
    opacity: 0;
    text-align: center;
    animation: txt 15s infinite linear;
}
.header-slider h1:nth-of-type(1){
    left: 5%;
    top: 5%
}
.header-slider h1:nth-of-type(2){
    animation-delay: 5s;
}
.header-slider h1:nth-of-type(3){
    animation-delay: 10s;
    left: 15%;
    top: 18%;
}

@keyframes slider {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    33.33% {
        opacity: 1;
    }
    38.33% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes txt {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    33.33% {
        opacity: 1;
    }
    38.33% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


/* end - slider */

/* pogotowie  */
.top-header-alert-dark {
    /* margin-right: 20px; */
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: -3px;
    text-align: center;
    position: relative;
    font-weight: 900;
    color: #fac11c;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-header-alert-dark h1, .top-header-alert-dark h2{
    padding: 10px 0;
    background: #1f2d3a;
}

.top-header-alert-center {
    top: 50%;
    left: 500%;
}

.top-header-alert {
    font-weight: 800;
}
.top-header-alert-light {
    margin: 20px 0;
    padding: 20px 30px;
    position: relative;
    height: 100%;
    background-color: #fac11c;
    text-align: justify;
}

/* art style */
.art-margin-bottom {
    margin-bottom: 60px;
}

.art-bg-light {
    color:#1f2d3a;
    background-color: #f0f0f0;
    padding-top: 40px;
}
.art-card-body-light {
    text-align: center;
}

.art-card-body-light h5 {
    color: #1f2d3a;
    font-size: 34px;
    font-weight: 900;
}

.art-bg-dark {
    padding-top: 60px;
    background-color: #1f2d3a;
    margin: 0;
    padding: 0;
}

.art-card-light {
    flex-direction: column;
}

.art-card {
   /* border: #fac11c solid 1px; */
   text-align: center;
   margin-bottom: 40px;
}

.art-card-img {
    overflow: hidden;
    /* border-bottom: #fac11c solid 1px; */
   border: #fac11c solid 1px;

 }
.art-card-img-top {
    border-radius: 0;
    height: 250px;
    width: 100%;
    object-fit: cover;
    opacity: .7;
    transition: .5s ease all;
}

.art-card-img-top:hover {
    opacity: 1;
    transform: scale(1.08);
 }

 .art-card-body {
    background-color: none;
    color: #f0f0f0;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
 }
 .art-card-body-title {
    color: #30A9D9;
    font-size: 25px;
    padding-top: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
 }

 .art-card-body-text {
    padding: 14px 0;
 }

 .art-card-body-btn {
    color: #f0f0f0;
    background-color: #30A9D9;
    opacity: 0.4;
    padding: 8px 14px;
    border: none;
    margin: auto 0;
    font-weight: 300;
    text-transform: lowercase;
    font-size: 18px;
    transition: .5s ease all;
    width: 100%;

 }

.art-card-body-btn:hover {
    background-color: #fac11c;
    color: #1f2d3a;  
    opacity: 1;  
    cursor: pointer;
}

/* end - art style */
.footer-section-main {
    background-color: #1f2d3a;
    color: #f0f0f0;
    padding: 40px 0 50px 0;
    font-size: 18px;
    font-weight: 100;
    word-spacing: 4px;
}

.footer-section-main-logo {
    margin-left: 80px;
    margin-bottom: 10px;
}

.footer-section-main img {
    width: 60px;
}

.footer-section-main ul {
    list-style: none;
}

.footer-section-main ul li {
    margin-bottom: 7px;
}

.footer-section-main-images-item {
    display: flex;
    flex-wrap: wrap;
}

.footer-section-main-images-item img {
    border: 2px solid #f0f0f0;
    width: 80px;
    height: 80px;
    margin: 5px;
    object-fit: cover;
    transition: .5s;
}
.footer-section-main-images-item img:hover {
    border: 2px solid #fac11c;
}
.dwojka-footer {
    margin-top: 50px;
    padding-top: 8px;
    border-top: #f0f0f074 solid .5px;
}
.dwojka-copyright a {
    text-decoration: none;
    color: #f0f0f0;
}

.footer-social-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.footer-social-icon li {
    margin: 3px;
}
.footer-social-icon li a {
    color:#fac11c;
}

.container-art h1 {
    padding: 30px 0 0 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #1f2d3a;
}

.container-art p {
    text-align: justify;
}

.container-art ul li {
    list-style: none;
}


.container-certyfikat p {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.container-certyfikat img {
    width: calc(50% - 48px);
    border: 4px solid #1f2d3a;
    margin: 20px;
}

/* galeria */

.galeria-image-h1 h1 {
    margin-top: 40px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: #1f2d3a dotted 1px;
    font-weight: 800;
}

.galeria-image {
    display: flex;
    flex-wrap: wrap;
    border-bottom: #1f2d3a dotted 1px;
    padding-bottom: 20px;
}

.galeria-image a {
    margin: 7px;
}

.galeria-image img {
    border: solid 1px #fac11c;
    box-shadow: 0px 0px 5px 2px #1f2d3a;
    transition: 0.6s;
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.contact-form h2 {
    color: #f0f0f0;
    font-size: 25px;
    font-weight: 300;
}
.contact-form h2:nth-of-type(1) {
    font-weight: 700;
}
.contact-image-logo img {
    margin: 30px;
    width: 130px;
}

.header-row-top-mobile {
    display: none;
}
/**
 * Basic CSS Media Query Template
 * TODO: I should probably use Sass...
 * Author: Michael Vieth
 * ------------------------------------------
 *  Responsive Grid Media Queries - 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet 
 *   480-less    - phone landscape & smaller
 * --------------------------------------------
 */
@media all and (min-width: 1024px) and (max-width: 1280px) { 
    .header-row-top {
        display: flex;
        flex-direction: row;
        padding-bottom: 70px;
    } 
    .header-col-top-left, .header-logo {
        text-align: left;
        width: 100%;
        top: 0;
        left: 5%;
        padding: 10px 0;
    }
    .header-col-top-center {
        margin: 20px 0 0;
        width: 100%;
    }
    .header-col-top-center-mail, .header-col-top-center-tele {
        text-align: right;
    }
    .top-menu {
        margin: auto;
    }
    .top-menu .navbar{
        padding: 0;
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    .header-row-top {
        display: flex;
        flex-direction: row;
        padding-bottom: 70px;
    } 
    .header-col-top-left, .header-logo {
        text-align: left;
        width: 100%;
        top: 0;
        left: 5%;
        padding: 10px 0;
    }
    .header-col-top-center {
        margin: 20px 0 0;
        width: 100%;
    }
    .header-col-top-center-mail, .header-col-top-center-tele {
        text-align: right;
    }
    .top-menu {
        margin: auto;
    }
    .top-menu .navbar{
        padding: 0;
    }
    .top-header-title-light-sq div {
        font-size: 25px;
        width: 100%;
    }
 }
 
@media all and (min-width: 480px) and (max-width: 768px) {

    .header-row-top {
        display: flex;
        flex-direction: row;
        padding-bottom: 140px;
    } 
    .header-col-top-left, .header-logo {
        text-align: center;
        width: 100%;
        top: 0;
        left: 0;
        padding: 20px 0;
    }
    .header-col-top-center-mail, .header-col-top-center-tele {
        display: none;
    }
    .header-row-top-mobile, .header-col-top-center {
        display:block;
        background-color: #fac11c;

    }
    .header-col-top-center-tele-mobile {
        font-size: 26px;
        text-align: center;
        line-height: 40px;
        padding: 0 0 16px 0;
    }
    .top-menu {
        margin: auto;
    }
    .top-menu .navbar{
        padding: 0;
    }
    .top-header-title-light-sq div {
        font-size: 25px;
    }
}
 
@media all and (max-width: 480px) {
    .header-row-top {
        display: flex;
        flex-direction: row;
        padding-bottom: 140px;
    } 
    .header-col-top-left, .header-logo {
        text-align: center;
        width: 100%;
        top: 0;
        left: 0;
        padding: 20px 0;
    }
    .header-col-top-center-mail, .header-col-top-center-tele {
        display: none;
    }
    .header-row-top-mobile, .header-col-top-center {
        display:block;
        background-color: #fac11c;

    }
    .header-col-top-center-tele-mobile {
        font-size: 26px;
        text-align: center;
        line-height: 40px;
        padding: 0 0 16px 0;
    }
    .top-menu {
        margin: auto;
    }
    .top-menu .navbar{
        padding: 0;
    }
    .mapa {
        display: none;
    }
   
    .top-header-title-light-sq div {
        font-size: 16px;
        width: 100%;
    }
 }
 
 
 /* Portrait */
@media screen and (orientation:portrait) { /* Portrait styles here */ }
 /* Landscape */
@media screen and (orientation:landscape) { /* Landscape styles here */ }
 
 
 /* CSS for iPhone, iPad, and Retina Displays */
 
 /* Non-Retina */
 @media screen and (-webkit-max-device-pixel-ratio: 1) {
 }
 
 /* Retina */
 @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
 only screen and (-o-min-device-pixel-ratio: 3/2),
 only screen and (min--moz-device-pixel-ratio: 1.5),
 only screen and (min-device-pixel-ratio: 1.5) {
 }
 
 /* iPhone Portrait */
 @media screen and (max-device-width: 480px) and (orientation:portrait) {
 } 
 
 /* iPhone Landscape */
 @media screen and (max-device-width: 480px) and (orientation:landscape) {
 }
 
 /* iPad Portrait */
 @media screen and (min-device-width: 481px) and (orientation:portrait) {
 }
 
 /* iPad Landscape */
 @media screen and (min-device-width: 481px) and (orientation:landscape) {
 }

/* @media (max-width: 768px) {
    .header-row-top{
        text-align: center;
        height: 180px;
    }
    .header-col-top-right {
        display: none;
    }
    .header-col-top-center {
        display: none;
    }

    .header-container-top {
        display: flex;
        flex-direction: column;
        
    .header-slider h1 {
            position: absolute;
            font-size: 20px;
        } 
    }
} */
