/* ogólne style -------------------------------------- */
body,html{
    padding:0;
    margin:0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    font-size: 10px;
    color:#2e2e2e;
    background-color:#FBFBFB;
    --global-light-sea-blue: #1ae2c1;
    --global-sea-blue: #27816e;
    --global-left-right-padding:100px;
    --global-blue: #0500ff;
}
@media(max-width:1200px){
  html,
  body {
    --global-left-right-padding:50px;
  }
}
@media(max-width:1024px){
  html,
  body {
    --global-left-right-padding:40px;
  }
}
@media(max-width:768px){
  html,
  body {
    --global-left-right-padding:20px;
  }
}
a{
    text-decoration:none;
    color:inherit;
}

* {
    font-family: 'Poppins';
    font-size:10px;
    --primary-color : #3e5ffd;
}

h2{
    font-size: 1.8rem !important;
    font-weight: 600 !important;
}

h3 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
}

table,
tr,
td {
    border: 1px solid #000;
    border-collapse: collapse;
}

td {
    padding: 5px;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

p>a {
    color: #80cb2e;
    font-weight: 700;
}

strong{
    text-align:left;
    font-size:1.8rem;
    color:#000;
}

hr{
    width:100%;
    border:none;
    /*border-top: 1px dashed #d7d7d7;*/
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #d5d4db;
}

::-webkit-scrollbar-track {
    background-color: #f9f9fb;
}

/*niebieski kolor dla linków w ciekawych miejscach w pobliżu*/

ul>li>strong {
    font-size: 1.8rem;
    list-style-type: none;
}

ul>li>strong:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #5dd70091;
    display: inline-block;
    margin-right: 10px;
    border-radius: 10px;
}

.center{
	text-align:center;
}


/* header style */
.header{
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:20px var(--global-left-right-padding);
    border-bottom:1px solid #f0f0f0;
    box-sizing:border-box;
}

.box{
    display:flex;
}

.logo{
    height: 100%;
    width: 100%;
}


/*style exists, but in react is "if" that creates style */
.menuHamburger{
    display:none;
    font-size:2.5rem;
    font-weight:500;
    cursor:pointer;
}
@media(max-width:900px){
    .menuHamburger{
        display:block; 
    }
}

.menu{
    width:calc(100% - 80px);
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
}
@media(max-width:900px){
    .menu{
        display:none;
        position:fixed;
        flex-direction:column;
        justify-content: flex-start;
        z-index:1000;
        top:0;
        right:0;
        height:100vh;
        width:calc(300px);
        padding: 30px 30px;
        background-color:#FBFBFB;
        -webkit-box-shadow: 0px 0px 10px 3px rgba(235,235,235,1);
        -moz-box-shadow: 0px 0px 10px 3px rgba(235,235,235,1);
        box-shadow: 0px 0px 10px 3px rgba(235,235,235,1);
    }
}

.menuLinks{
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
}

.menuLink{
    font-size:1.3rem;
    letter-spacing:0.5px;
    font-weight:600;
    text-transform:uppercase;
    margin-left: 25px;
    letter-spacing:1.5px;
    position:relative;
    display:flex;
    align-items: center;
}
@media(max-width:1024px){
    .menuLink{
        margin-left:20px;
        letter-spacing:1px; 
    }
}

.menuLink:before{
    content:"";
    width:5px;
    height:5px;
    border-radius:15px;
    background-color:#000948;
    position:absolute;
    left:-10px;
    margin-top: -1px;
    transition:0.2s;
}

@media(min-width:900px){
   .menuLink:hover:before{
        width:calc(100% + 16px);
        background-color:rgba(0, 9, 72,0.1);
        transition:0.2s;
        height:22px;
    } 
}


.menuLink:nth-child(2):before{
    background-color:var(--global-blue);
}
@media(min-width:900px){
    .menuLink:nth-child(2):hover:before{
        background-color:rgba(5, 0, 255, 0.1);
    }
}

.menuLink:nth-child(3):before{
    background-color:#f0366b;
}
@media(min-width:900px){
    .menuLink:nth-child(3):hover:before{
        background-color:rgba(240, 54, 107,0.1);
    }
}

.menuLink:nth-child(4):before{
    background-color:#00ffd1;
}
@media(min-width:900px){
    .menuLink:nth-child(4):hover:before{
        background-color:rgba(0, 255, 209,0.1);
    }
}

.menuLink:nth-child(5):before{
    background-color:#f9a664;
}
@media(min-width:900px){
    .menuLink:nth-child(5):hover:before{
        background-color:rgba(249, 166, 100,0.1);
    }
}

.advancedLink>.menuLink:before{
    background-color:#5a68bb;
}
.advancedLink>.menuLink:hover:before{
    width:5px;
    height:5px;
}

.advancedLink{
    color:#2e2e2e;
    position:relative;
}

.advancedLink:hover > .ulSubMenu{
    display:flex;
}

.arrow{
    transform:rotate(90deg);
    margin-top:-3px;
}

@media(max-width:900px){
    .arrow{
        margin-top: 0px;
        margin-left: 3px;
    }
}


.ulSubMenu{
    display:none;
    position:absolute;
    width:calc(100% - 10px);
    justify-content: flex-end;
    padding:10px 5px;
    box-shadow: 0px 2px 5px -3px rgb(168 168 168);
    background-color:#fff;
    margin:0;
    margin-left:10px;
    box-sizing:border-box;
    border-radius:3px;
    list-style-type: none;
}

@media(max-width:900px){
    .ulSubMenu{
        display:flex;
        position: relative;
        justify-content: flex-start;
        padding: 0px 0px 10px 0;
        box-shadow: none;
        background-color: #fbfbfb;
        margin: 0 0 0 20px;
        border-radius: 0;
        list-style-type: disc;
    }
}

.liSubMenu{
    width:100%;
    text-align:center;
    padding:2px 0;
    transition:0.3s;
    font-size: 1.3rem;
    text-transform:uppercase;
}


.liSubMenu:hover{
    background-color:rgba(90, 104, 187,0.1);
    transition:0.3s;
    border-radius:5px;
}

.menuSubLink{
    font-size:1.3rem;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:400;
    display:flex;
    justify-content: center;
    width:100%;
    text-align:center;
}
@media(max-width:900px){
    .menuSubLink{
        text-align:left;
        justify-content: flex-start;
        padding:0px 5px;
    }
}
/*
.menuMobile{
    position:fixed;
    display:flex;
    flex-direction:column;
    top:0;
    right:0;
    height:100vh;
    width:calc(300px);
    padding: 30px 30px;
    background-color:#FBFBFB;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(235,235,235,1);
    -moz-box-shadow: 0px 0px 10px 3px rgba(235,235,235,1);
    box-shadow: 0px 0px 10px 3px rgba(235,235,235,1);
}
*/
@media(max-width:900px){
    .menuLinks{
        flex-direction: column;
    }

    .menuLink{
        margin:10px 0;
        font-size:1.5rem;
    }

}


.menuMobileTitle{
    
    border-bottom:1px solid #ECECEC;
    padding-bottom:30px;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:2px;
    display:flex;
    justify-content:space-between;
    display:none;
}
@media(max-width:900px){
    .menuMobileTitle{
        display:block; 
    }
}
.menuMobileTitle>span{
    font-size:1.9rem;
    font-weight:700;
}


.x{
    width:30px;
    height:30px;
    cursor:pointer;

}
.x1{
    width:30px;
    height:2px;
    display:block;
    background-color:#000000;
    transform:rotate(45deg);
    position: relative;
    top:15px;
}

.x2{
    content: "";
    display:block;
    width:30px;
    height:2px;
    background-color:#000000;
    transform:rotate(135deg);
    top: 13px;
    position: relative;
}


/* header style END */

/* footer style START */
footer {
    margin-top: 100px;
    box-sizing:border-box;
}

.footer{
    width:100%;
    padding:20px var(--global-left-right-padding);
    font-size: 12px;
    font-weight:300;
    border-top: 1px solid #DEDEDE;
    margin-top:80px;
    text-align:center;
}

.copyright{
    margin-top:10px;
}
/* footer style END */


/* breadcrumbs ---------------------------------------------------------- */
.breadcrumbs {
    width: 100%;
    overflow-x: scroll;
    margin:0 var(--global-left-right-padding);
}

.breadcrumbs::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.breadcrumbs-list {
    list-style-type: none;
    /*display:flex;*/
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
    width: 780px;
}

@media(max-width:768px) {
    .breadcrumbs-list {
        padding: 0 0;
    }
}

.breadcrumbs-list>li,
.breadcrumbs-list>li>a {
    display: inline;
    font-weight: 400;
    font-size: 1.3rem;
    color: #616161;
}

.breadcrumbs-list>li:before {
    content: '/';
    padding: 0 5px;
    font-size: 1.3rem;
}

.breadcrumbs-1-li:before {
    content: '' !important;
    padding: 0px !important;
}

.breadcrumbs-last-li {
    cursor: default;
    pointer-events: none;
    color: #9d9d9d !important;
}


/* breadcrumbs END ---------------------------------------------------------- */


h1{
	
    font-size: 3rem;
    margin-top:0;
    margin-bottom: 14px;
}

.author{
	
    font-size: 1.4rem;
    margin-top:0;
    margin-bottom: 10px;
	color: #6B7672;
}

.technologies{
	text-align: center;
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.technology{
	max-width: 300px;
    margin: 0 auto 10px auto;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
	font-size:14px;
    display: inline-block;
}

.technologyJS{
	background-color: #fdf9e0;
    color: #ffae00;
}