body, html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

h1{
    color: black;
    font-size: 40px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
h2{
    font-size: 38px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

h3{
    font-size: 32px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

p{
    padding-top: 20px;
    color: #6D676E;
}

b{
    font-weight: 700;
}

iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

#menu-bar{
    position: fixed;
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index:100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 4rem;
    background: #fff;
    border-bottom: #FF914D 3px solid;
}

.hideWhenSmall{ display:block; }
.menu-items{
    align-items: center;
    padding: 0; 
    margin: 0;
}
.menu-item{
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align:center;
    color: black;
    text-decoration: none;
    height: 100%;
}
.menu-item:hover{
    color: #FF914D;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -40%;
    background-color: #ffffff;
    color: black;
    border-top: transparent 5px solid;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.submenu a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    white-space: nowrap;
}
.menu-item:hover .submenu {
    display: block;
}

#section-1{
    width: 100%;
    height: 100%;
    position: relative;
}

#section-1-background{
    width: 100%;
    height: 100%;
    position: relative;
}

#section-1-foreground{
    padding-top: 300px;
}

#section-1-box{
    width: 50px;
    height: 50px;
    background: rgba(255, 145, 77, 0.90);
}

.center-image{
    text-align: center;
}

.section-1-box{
    width: 100px;
    height: 100px;
    left: 68px;
    top: 704px;
    position: absolute;
    background: rgba(255, 145, 77, 0.20);
}

#main-logo{
    width: 400px; 
    height: 400px;
}

#section-2{
    width: 100%;
    height: 700px;
    overflow: hidden;
}

#section-3{
    width: 100%;
    padding-top: 110px;
    background-color: #F2F2F5;
}

#section-3-button{
    border: 0;
    background-color: #FF914D;
    color: #FFFFFF;
    width: 70%;
    margin: 10px 0 30px 0;
    padding: 14px;
    font-size: 24px;
}

#section-3-button:hover{
    background-color: #EE803C;
}

#section-3-hand-image{
    width: 70%;
    margin-top: 20px;
}

.widther{
    width: 70%;
}

.section-3-card{
    min-height: 247px;
    background-color: #fff;
    padding: 30px;
}

.section-3-card a{
    color: #FF914D;
    font-weight: bolder;
    text-decoration: none;
}

.section-3-card a:hover{
    color: #c55916;
    text-decoration: underline;
}

#section-4{
    width: 100%;
    padding-top: 110px;
    padding-bottom: 80px;
}

.section-4-text {width: 80%;}
#section-5{
    width: 100%;
    padding-top: 90px;
    padding-bottom: 80px;
    background-color: #F2F2F5;
}

img.section-5-img-responsive{
    width: 175px;
    height: auto;
    object-fit: contain;
    filter: saturate(10%);
    transition: filter 0.5s ease-in-out;
}

img.section-5-img-responsive:hover{
    filter: saturate(100%);
}

.slider-container {
    overflow: hidden;
    width: 100%;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.slider {
    display: flex;
}

.slide {
    min-width: 175px; /* Szerokość każdego logo */
    display: flex;
    justify-content: center;
    align-items: center;
}

#section-6{
    width: 100%;
    height: 200px;
}

#section-7{
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #FF914D;
}

#section-7-box{
    background-color: #FFFFFF;
    height: 100%;
}

#section-7-map{
    height: 100%;
    padding: 0;
    min-height: 400px;
}

.section-7-card{
    background-color: #F2F2F5;
    padding: 0;
}

#footer{
    width: 100%;
    padding-top: 90px;
    padding-bottom: 70px;
    color: #D9D9D9;
    background-color: #111119;
}

.footer-p{
    color: #D9D9D9;
}

#footer-under{
    padding-top: 15px;
    padding-bottom: 20px;
    color: #FFFFFF;
    background-color: #000011;
}


/* PAGES */
#header-of-page{
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Price list */
#price-list{background-color: #f2f2f5;}
.card{ border-radius: 0; }
.card-normal{ margin-top: 40px; }
.card-main-bar{ height: 40px; font-size: 28px; background-color: #FF914D; color: white;}

@media (max-width: 550px) {
    h2{padding: 0 10px;}
    #main-logo{
        width: 300px; 
        height: 300px;
    }
    #section-1-logo{text-align: center;}
    #section-1-foreground{padding-top: 200px;}
    #section-3-button{width: 100%;}
    #section-3-hand-image{ margin-top: 0px !important; }
    #section-3-hand-image-container{ display: block !important; }
    #section-4 h2{margin: 25px 0;}
    .section-4-text {padding: 0 10px; width: 100%;}
    .widther{padding: 0 10px; width: 100%;}
    .footer-p{padding: 0 10px;}
    #footer-under .container {padding: 0 20px;}
    
}

@media (max-width: 992px) {
    .hideWhenSmall{ display:none; }
    #section-3-hand-image-container{ display:none; }
    .card-normal{ margin-top: 0; }
}

@media (max-width: 1200px) {
    #section-3-hand-image{ margin-top: 90px !important; }
}

@media (max-width: 1400px) {
    #section-3-hand-image{
        width: 90%;
        margin-top: 0px;
    }
}

@media (max-width: 1600px) {
    #section-3{
        padding-top: 230px;
    }
}

.holder{background-color: #ff3636; color: white;}
