body
{
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
main 
{
    width: 100%;
    
}
header 
{
    background-color: white;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute; /*fixed - porusza się ze stroną*/
}

img.logo
{
    float: left;
}

/* scrollbar */
::-webkit-scrollbar
{
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb
{
    background: linear-gradient(
        to bottom,
        #ff850a,
        #ff3474
    );
    border-radius: 50px;
}

::-webkit-scrollbar-track
{
    background: #474747;
}

a.menu:hover
{
    color:black;
}
/* menu */
@media screen and (min-width: 1025px)
{
    ul.menu
    {
        float: right;
        list-style-type: none;
        display: inline-flex;
        padding-right: 250px;
        padding-top: 25px;
    }
    a.menu
    {
        text-decoration: none;
        font-size: 30px;
        padding: 10px;
        color: black;
        margin: 0px;
        display: inline-flex;
        position: relative;
        font-weight: 600;
    }
    
    /*a.menu:hover
    {
        color: red;
        text-decoration: overline underline 4px;
    }*/
    a.menu::before, a.menu::after
    {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #e65454;
        transform: scaleX(0);
        transition: transform .25s;
    }
    a.menu::before
    {
        top: -3px;
        transform-origin: left;
    }
    a.menu::after
    {
        bottom: -3px;
        transform-origin: right;
    }
    a.menu:hover::before, a.menu:hover::after
    {
        transform: scaleX(1);
    }
}


/* hamburger menu */
/*----------------------------------------------------------*/
.sidenav 
{
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

  
/* The navigation menu links */
.sidenav a 
{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
  
/* When you mouse over the navigation links, change their color */
.sidenav a:hover
{
    color: #f1f1f1;
}
  
/* Position and style the close button (top right corner) */
.sidenav .closebtn 
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
  
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main
{
    transition: margin-left .5s;
    padding: 20px;
}
  
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) 
{
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

@media screen and (max-width: 1024px)
{
    ul.menu
    {
        display: none;
    }
    a.menu
    {
        display: none;
    }
    span.open
    {
        float: right;
        padding-top: 35px;
        padding-right: 30px;
    }
    div.bar
    {
        width: 35px;
        height: 5px;
        background-color: black;
        margin: 5px;
    
    }
}
/*----------------------------------------------------------*/


div.section
{
    background: linear-gradient(to bottom right, white 46%, /*rgb(179, 32, 32)*/ rgb(102,28,45,255)  46.1%);
    
}

h1.title
{
    font-size: 90px;
    margin-right: 2000px;
    margin-left: 100px;
    padding-top: 200px;
    margin-bottom: 410px;
    text-align: center;
    display: flex;
    font-family: 'Roboto Mono', monospace;
    
}
/* h1.title na mniejsze ekrany (media screen) */
/* najpeirw przetestować na githubie */
@media screen and (max-width: 700px)
{
    h1.title
    {
        font-size: 70px;
        margin-right: 2000px;
        margin-left: 100px;
        padding-top: 200px;
        margin-bottom: 410px;
        text-align: center;
        display: flex;
        font-family: 'Roboto Mono', monospace;
    }
}

@media screen and (max-width: 590px)
{
    h1.title
    {
        font-size: 60px;
        margin-right: 2000px;
        margin-left: 70px;
        padding-top: 200px;
        margin-bottom: 410px;
        text-align: center;
        display: flex;
        font-family: 'Roboto Mono', monospace;
    }
}

@media screen and (max-width: 470px)
{
    h1.title
    {
        font-size: 60px;
        margin-right: 2000px;
        margin-left: 35px;
        padding-top: 100px;
        margin-bottom: 410px;
        text-align: center;
        display: flex;
        font-family: 'Roboto Mono', monospace;
    }
}

.mySlides
{
    display: none;
}

a.arrow-down 
{
    text-decoration: none;
    color: black;
}

span.material-symbols-rounded1
{
    display: flex;
    justify-content: center;
    position: absolute;
    color: black;
    width: 100%;
    bottom: 15px;
    padding: 20px 0;
    font-size: 48px;
}

/* scroll top */
#myBtn
{
    display: fixed;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 28px;
    border: none;
    outline: none;
    background-color: rgb(179, 88, 88);
    color: white;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 50%;
}

#myBtn:hover {
    background-color: #555;
}

*, ::after, ::before 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (max-width: 1259px)
{
    div.slides
    {
        margin: auto;
        background-color: unset;
        padding-top: 100px;
        padding-bottom: 200px;
    }
    img.mySlides
    {
        margin: auto;
        max-width: 450px;
    }
}

@media screen and (max-width: 480px)
{
    img.mySlides
    {
        margin-top: 150px;
        max-width: 350px; 
    }
}

@media screen and (max-width: 390px)
{
    img.mySlides
    {
        margin-top: 70px;
        max-width: 350px;
    }
}

@media screen and (min-width: 1260px)
{
    div.slides
    {
        float: right;
        margin-right: 90px;
        margin-top: -930px;
    }
}

div
{
    /*background-color: rgb(179, 32, 32);*/
    background-color: rgb(102,28,45,255);
}
p.test1
{
    /*background-color: rgb(179, 32, 32);*/
    background-color: rgb(102,28,45,255);
}

center.icons
{
    /*background-color: rgb(179, 32, 32);*/
    background-color: rgb(102,28,45,255);
}
lord-icon
{
    margin: 30px;
    
}

lord-icon.project
{
    background-color: whitesmoke;
    
}

lord-icon.build
{
    background-color: whitesmoke;
    
}

lord-icon.delivery
{
    background-color: whitesmoke;
    
}

lord-icon.home
{
    background-color: whitesmoke;
    
}

button.gallery
{
    cursor: pointer;
    height: 70px;
    width: 210px;
    font-size: 150%;
    text-decoration: underline 5px;
    /*background: linear-gradient(to bottom right, white 10%, rgb(179, 128, 20) 50.1%);*/
    background: linear-gradient(
        to bottom,
        #ff850a,
        #ff3474
    );
    font-family: 'Roboto Mono', monospace;
    border-color: #111;
    border-radius: 15px;
    
}

button.gallery:hover
{
    border: 1px;
    box-sizing: border-box;
    box-shadow: 10px;
    
}

/*-----------------------*/
.footer-main{
    padding-top: 90px;
}

.address-main > div.col-lg-4 {
    border-bottom: dotted 1px #999;
}
.address-box {
    padding: 10px 0;
    margin-bottom: 30px;
}
.add-icon{
    float: left;
    width: 60px;
    display: block;
    padding: 0px 5px;
}
.address-box .add-icon {
    background: #27303b;
    height: 75px;
    line-height: 75px;
    width: 75px;
    margin-right: 20px;
    text-align: center;
}
.add-icon img{
    width: 100%;
}
.address-box .add-icon img {
    max-width: 40px;
}
.add-content{
    padding-left: 70px;
    background-color: #212529;
}
.add-content h5 {
    font-size: 22px;
    color: #ffffff;
    padding: 0;
    font-weight: 500;
    margin-bottom: 10px;
}
.add-content p {
    font-size: 22px;
    color: #999999;
    font-weight: 300;
}
.add-content p a{
    font-size: 22px;
    color: #999999;
    font-weight: 300;
    word-wrap: break-word;
}
.add-content p a:hover{
    color: #ffb32d;
}

div.container
{
    background-color: #212529;
}

div.col-lg-4
{
    background-color: #212529;
}

div.address-box
{
    background-color: #212529;
}
