    @font-face {
        font-family: Rubik;
        src: url('font/Rubik-Regular.ttf');
    }
    
    * {
        margin: 0;
        padding: 0;
    }
    
    body {
        background-color: #ffffff;
        margin: 0;
        width: 100%;
        padding: 0;
        min-height: 100%;
        //border-top: 10px solid #ffc32e;
        clear: both;
        //overflow: hidden;
        overflow-y: auto;
        min-height: 100vh;
        font-family: "Rubik", serif;
        font-weight: 300;
        height: 100%;
    }
    
    header__ {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        height: 60px;
        background-color: gray;
    }
    
    header {
        position: relative;
        width: 100%;
        display: flex;
        height: 70px;
        background-color: rgb(255, 255, 255);
    }
    
    main {
        display: flex;
        width: 100%;
        height: auto;
        //border: 1px solid red;
        background-color: #ffffff;
        //flex-wrap: wrap;
		//clear: both;
		flex-direction: row;
    }
    
    nav {
        width: 25%;
        background-color: #ffffff;
    }
    
    .logo {
        width: 100%;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 8px;
		margin: 0;
    }
    
    .logo img {
        width: 70%;
        height: auto;
        max-width: 100%;
    }
    
    nav .hr {
        margin: 0px 20px 0px 20px;
        height: 4px;
        background-color: rgb(233, 233, 233);
        // border-top: 4px solid rgb(233, 186, 0);
        width: 200px;
    }
    
    ul {
        border-top: 0px solid yellow;
        padding: 20px;
        margin: 0px  ;
        list-style-type: none;
    }
    
    ul li {
        padding: 0 0 8px 0;
	
		 
    }
	
	ul li.lin {
  
		  list-style-type: square;
		  list-style-type: none;
		          margin: 0px 0 0px 0px;
		  padding: 0px 0 0px 2px; 
		  //background-color: #eeeeee;
		  border-radius: 4px;
		  border-left: 0px solid #bbbbbb;
    }
	
	ul li.lin::marker {
  color: rgb(233, 186, 0);
}
	
    
    ul li.lin a {
        text-decoration: none;
        font-size: 20px;
        line-height: 36px;
        padding: 3px 5px 7px 6px;
        color: #689c0b;
	    display: block;
    }
	
	ul li.lin a.rozwin1::before {
  content: "•"; /* Adds a dot */
    //content: "∎"; /* Adds a dot */
	   color: #cccccc;
  
  
  
 
  margin: 0px 7px 0 0; /* Optional spacing */
   
   //font-size: 12px;
  //line-height: 12px;
  text-decoration: none;
}
	
    
    ul li.lin a:hover {
        color: #000000;
        //text-decoration: underline;
    }
    
    .mapa {
        //position: relative;
        width: 100%;
        height: 80vh;
        margin: 0;
        padding: 0;
        border: 0;
		background-color: #ffffff;
		display: flex;
		align-items: stretch;
    }
    
    .iframe {
        border: 0;
        //position: absolute;
        //top: 0;
        //left: 0;
        display: block;
        width: 100%;
         height: auto;
		margin: 0;
        padding: 0;
        border: 0;
        // clear: both;
        //overflow: hidden;
        //border: 1px solid red;
        //background-color: #8d4040;
    }
    
    footer {
        display: block;
        width: 100%;
        // min-height: 400px;
        padding: 70px 0 70px 0;
        background-color: #f5f5f5;
        text-align: center;
    }
    
    footer h1 {
        font-weight: 300;
        font-size: 29px;
        line-height: 31px;
        padding: 10px 0 10px 0;
        color: #fec32d;
    }
    
    footer h2 {
        font-weight: 400;
        font-size: 17px;
        line-height: 20px;
        padding: 10px 0 10px 0;
        color: #000000;
    }
    
    footer .button {
        box-sizing: border-box;
        font-size: 13px;
        text-decoration: none;
        background-color: #fec32d;
        color: #333333;
        margin: 10px 0 10px 0;
        padding: 14px;
        border-top: 1px solid #CCCCCC;
        border-right: 1px solid #333333;
        border-bottom: 1px solid #333333;
        border-left: 1px solid #CCCCCC;
    }
    
    footer p {
        font-weight: 200;
        padding: 14px 0 14px 0;
        font-size: 14px;
        line-height: 19px;
    }
    
    @media screen and (max-width: 768px) {
        main {
            width: 100%;
            height: auto;
 

 
        }
        nav {
            width: 100%;
            height: auto;
        }
        .mapa {
            width: 100%;
            height: 100vh;
        }
    }
	
	    @media screen and (max-width: 600px) {
        main {
            width: 100%;
            height: auto;
			 flex-direction: column;
        }
        nav {
            width: 100%;
            height: auto;
        }
        .mapa {
            width: 90%;
            height: 60vh;
			margin: 0 auto;
        }
    }