@media only screen and (max-width: 600px)
{
	ul{ 
		flex-direction: column;
	background-color: #91FEFD;
	display: flex;
	justify-content:space-around;
	min-height: 50px;
	padding-top: 10px;
}
	
	li{
/*	border: 1px solid #000;*/
	list-style-type: none;
	width: 40px;
} 
 a{
 			font-family: "Comfortaa", sans-serif;
  font-size: 15px;
}
h1{
    font-size: 1em;
}

 
 div.pic{
	width: 100%;
	margin: 20px;

}
div.pic img{width: 100%;

}


div.row{
	flex-direction: column;
}
/*Kopy menu*/
div.menu{
	margin: 2px ;
	
}

@keyframes checked-anim {
    50% {
        width: 300px;
        height: 1000px;
    }
    100% {
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}
@keyframes not-checked-anim {
    0% {
        width: 3000px;
        height: 3000px;
    }
}
div.menu li, a {
    margin: 75px 0 -55px 0;
    color: #03A9F4;
    font: 14pt "Comfortaa", sans-serif;
    font-size: 15px;
    text-decoration: none;
    text-transform: none;
    list-style: none;
    outline: 0;
    display: none;
   
}
div.menu li {
    width: 230px;
    text-indent: 56px;}
div.menu a:focus {
    display: block;
    color: #333;
    background-color: #eee;
    transition: all .5s;
    z-index: 50;
}


#trigger, #burger, #burger:before, #burger:after {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #03A9F4;
    width: 30px;
    height: 5px;
    transition: .2s ease;
    cursor: pointer;
    z-index: 1;
}
#trigger {
    height: 25px;
    background: none;
}
#burger:before {
    content: " ";
    top: 10px;
    left: 0;
}
#burger:after {
    content: " ";
    top: 20px;
    left: 0;
}
#menu-toggle:checked + #trigger + #burger {
    top: 35px;
    transform: rotate(180deg);
    transition: transform .2s ease;

}

#menu-toggle:checked + #trigger + #burger:before {
    width: 20px;
    top: -2px;
    left: 18px;
    transform: rotate(45deg) translateX(-5px);
    transition: transform .2s ease;
}
#menu-toggle:checked + #trigger + #burger:after {
    width: 20px;
    top: 2px;
    left: 18px;
    transform: rotate(-45deg) translateX(-5px);
    transition: transform .2s ease;
}
#menu {
    position: absolute;
    margin: 0; padding: 0;
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-bottom-right-radius: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.26);
    animation: not-checked-anim .2s both;
    transition: .2s;

}
#menu-toggle:checked + #trigger + #burger + #menu {
    animation: checked-anim 1s ease both;
}
#menu-toggle:checked + #trigger ~ #menu > li, a {
    display: block;
}
[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    display: none;
}



input{
	display: block;
}

ul{
	padding: 0;
	margin: 0;
    
    
	
}

a{
	margin: 0;
	padding: 0;
}
li{
	height: 5px;
}










}