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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
}

.hero-shadow {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: -1;
}

.orange-color {
    color: rgb(255, 102, 0);
}

.scroll-fix::before {
    display: block;
    margin-top: -3rem;
    height: 3rem;
    content: '';
}

nav .navbar-nav, nav .fa-bars {
    font-size: 1.8rem;
    text-transform: uppercase;
}

nav .fa-bars {
    padding: 1rem 2rem;
}

nav .btn {
    font-size: 1.8rem;
    text-transform: uppercase;   
}

.small-heder {
    color: rgb(255, 102, 0);
    font-weight: bold; 
    text-transform: uppercase;
}

/* HEADER */
header {
    position: relative;
    height: 60rem;
    background-image: url('../img/header.jpg');
    background-position: center;
    background-size: cover;
    z-index: 0;
}

header .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.header-text {
    font-size: 2.2rem;
}

/* ABOUT */
#about {
    background-color: rgb(240, 240, 240);
}
#about .about-boxes h3 {
    font-size: 3.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

#about .about-icon {
    font-size: 3rem;
}

/* ZBIORKI */
#fundraising .accordion-button {
    font-size: 1.8rem;
    text-transform: uppercase;
    background:rgb(255, 102, 0);
    text-align: center;
    display: block;
}

#fundraising .card-img-top {
    height: 300px;
    object-fit: cover;
}

#fundraising .btn {
    font-size: 1.3rem;
}

#fundraising .pay-icon {
    font-size: 6rem;
}

#fundraising .iphone-link a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    text-align: center;
}

#fundraising .shop-link a:link {
    color: rgb(255, 102, 0);
    font-weight: bold;
    text-decoration: none;
}

#fundraising .shop-link a:visited {
    color: rgb(255, 102, 0);
    font-weight: bold;
    text-decoration: none;
}

#fundraising .shop-link a:hover {
    color: rgb(255, 102, 0);
    text-decoration: underline;
    font-weight: normal;
}

#fundraising .btn-paypal {
    font-size: 1.8rem;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid;
    cursor: pointer;
    font-weight: bold;
    font-style: italic;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 300px;
}

#fundraising .btn-paypal-success {
    border-color:rgba(0, 0, 0);
    background-color: black;
    color: white;
}

#fundraising .btn-paypal-success:hover {
    background-color: white;
    color: black;
}

#fundraising .fundraising-link a:link {
    font-weight: bold;
    text-decoration: underline;
}

#fundraising .fundraising-link a:visited {
    font-weight: bold;
    text-decoration: underline;
}

#fundraising .fundraising-link a:hover {
    font-weight: normal;
    text-decoration: none;
}

#fundraising .description-height {
    height: 60px;
    object-fit: cover;
}

/* SOCIAL MEDIA */
#socialmedia {
    background-color: rgb(240, 240, 240);
}

#socialmedia .card-img-top {
    height: 300px;
    object-fit: cover;
}

#socialmedia .card-footer-size {
    height: 60px;
    text-align: center;
}

#socialmedia .socialmedia-link a:link {
    font-weight: bold;
    text-decoration: underline;
}

#socialmedia .socialmedia-link a:visited {
    font-weight: bold;
    text-decoration: underline;
}

#socialmedia .socialmedia-link a:hover {
    font-weight: normal;
    text-decoration: none;
}

#socialmedia .socialmedia-link .fab {
    margin-right: .5rem;
    font-size: 2rem;
    font-weight: bold;
}

/* KONTAKT */
#contact {
    display: block;
}
#contact .company-name {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.8rem;
}

#contact .submit-btn {
    font-size: 1.6rem;
}

#contact .input-group-text .fas {
    font-size: 2rem;
}

#contact .contact-info .fas {
    margin-right: .5rem;
    font-size: 2rem;
    font-weight: bold;
}

#contact .iphone-link a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* OTHERS */
#others {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    height: 100vh;
}

#others .others-button {
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 2rem;
    border-radius: 5px;
}

#others .others-box {
    border: 2px solid;
    padding-top: 10rem;
    padding-bottom: 10rem;
    border-radius: 10px;
    margin: 10px;
}

/* COOKIES MESSAGE */
#cookies-message{
	color: white; 
    padding: 12px 10px; 
    text-align: center; 
    position: fixed; 
    bottom:0px; 
    left:0; 
    right:0; 
    background-color: rgba(0,0,0,0.6); 
    z-index: 100000; 
    box-shadow: 0 0 5px rgba(0,0,0,0.4); 
    display: none;
}
#accept-cookies-checkbox{
	background-color: rgb(255, 102, 0); 
    color: #FFF; 
    border: solid 1px rgb(255, 102, 0); 
    transition: all 0.5s; 
    padding: 2px 6px; 
    border-radius: 4px; 
    display: inline-block; 
    margin-left: 10px; 
    text-decoration: none; 
    cursor: pointer
}
#accept-cookies-checkbox:hover{
	background-color: transparent; 
    border-color: white;
}