@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;600&family=Roboto+Slab:wght@100;400;500&display=swap');
@import url("//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.min.css");
@font-face {
  font-family: 'fontello';
  src: url('./font/fontello.eot?88603717');
  src: url('./font/fontello.eot?88603717#iefix') format('embedded-opentype'),
       url('./font/fontello.woff?88603717') format('woff'),
       url('./font/fontello.ttf?88603717') format('truetype'),
       url('./font/fontello.svg?88603717#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
.demo-icon {
  font-size: 5rem; 
}
:root {
    --main-bg-color: #f9f9f9;
    --lightgray: #efefef;
    --blue: steelblue;
    --white: #fff;
    --black: rgba(0, 0, 0, 0.8);
    --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
    --pink:#e072a4;
    --green:#b0e298;
  }
body {
	background: var(--main-bg-color);
	font-family: 'Raleway', Calibri, Arial, sans-serif;
	font-weight: 500;
	color: var(--black);
  line-height: 1.6;	
}
h2 {
    text-transform: uppercase;
}
h2:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    width: 30%; /* Change this to whatever width you want. */
    border-bottom: 2px solid var(--pink); /* This creates the border. Replace black with whatever color you want. */
  }
p, .list-p{
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 8vw - 2rem, 1.2rem);
}

main, header, section, footer {
  margin: 0;
  padding: 20px;
}
img {
    width:100%;
}
/********** NAV ***************/

.menu, .menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    z-index:10;  
    overflow:hidden;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.26);
    text-transform: uppercase;    
}
.menu li a {
  display: block;
  text-indent: -500em;
  height: 5em;
  width: 5em;
  line-height: 5em;
  text-align:center;
  color: var(--black);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.1s ease-in-out;
}
.menu li a:before {
  font-family: FontAwesome;
  speak: none;
  text-indent: 0em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.4em;
}


.menu li a.home:before {
  content: "\f039";
}
.menu-bar li a:hover,
.menu li:first-child a {
  background: var(--pink);
  color: #fff;
}
.menu li a:hover {
  color: #c2e2eb;
}
.menu li:first-child a,
.menu li:first-child a:hover {
  background: var(--pink);
} 
.menu-bar{
    overflow:hidden;
    left:5em;
    z-index:5;
    width:0;
    height:0;
    transition: all 0.1s ease-in-out;
}
.menu-bar li a{
  display: block;
  height: 4em;
  line-height: 4em;
  text-align:center;
  color: var(--black);
  text-decoration:none;  
  position: relative;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.1s ease-in-out;
}
.menu-bar li:first-child a{
    height:5em;   
    line-height:5;
    background: var(--pink);
    cursor: default;
    color:var(--black);
}


.open{
    width:15em;
    height:100%;
}

/************* CONTENT ****************/
.flex-container {
  display: flex;
  flex-direction: row;
} 
.container {
    margin-left: auto;
  }
.wrapper {
    margin: auto;
    max-width: 75rem;
  }
.header {
    font-family: 'NunitoSans-Bold', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
  }
 
  #logo {
    display: flex;
    padding-top:3px;
  }
  .logo {
      width:4rem;
    text-align: center;
    margin: auto;
  }
  
  .content {
    max-width:900px;
  }


  #map, #map2 { height: 600px; }


.interests {
  /* background-color: cadetblue;*/
  background-color: var(--pink);
  padding: 3rem;
  color: white;
  border-radius: 0.5rem;
}
.big {
  height: 30px;
  width: 30px;
  background-color: var(--pink);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}
.italik {
  font-style: italic;
}

.col1, .col2 {
  width: 50%;
  margin: 1rem;
}
.col2 {
  text-align: right;
}
.bor-pink {
  border:5px solid var(--pink);
  border-radius: 0.5rem;
  padding: 1rem;
}
.rest {
  background-color: #EFE8D8;
  color:rgba(0, 0, 0, 0.8);
  padding: 3rem;
  border-radius: 0.5rem;
}

  /**************** MEDIA QUERIES *******************/

  @media all and (max-width: 350px) {
    .header {
      font-size: 1em;
    }
    .container {
      font-size: 1rem;
      margin-left: 0rem;
    }
    .container p {
      font-size: 1rem;
    }
    
  }
  @media only screen 
    and (min-device-width : 320px)
    and (max-device-width : 568px) 
    and (orientation : landscape) {
        .container {
            margin-left: 4rem;
         }
    }
 
  @media all and (max-width: 500px) {
    .container {
        margin-top:100px;
    }

    .menu{
        height:5em;
        width:100%;
       
    }
    .menu li{
        display:inline-block;
        float: left;
    }
    .menu li a {
      width: 4em;
    }
    
    .menu-bar{
        width:100%;
        left:0;
        height:0;
    }
    .open{
        width:100%;
        height:auto;
    }
    .flex-container {
      display: flex;
      flex-direction: column;
    } 
    .col1 {
      width: 100%; 
      text-align: center;   
    }
    
    .col2 {
      width: 100%;  
      margin: 0rem;  
      text-align: center; 
    }
    .demo-icon {
      text-align: center; ; 
    }
   
}


  
  @media screen and (max-height: 34em) and (max-width: 500px){
    .wrapper {
        margin-left: 5rem;
        max-width: 75rem;
      }
    .menu{
          height:3.5em;
      }
      .menu li a {
        width: 4em;
      }
 
  }
  
  @media screen and (min-width: 640px){
    .flex-container {
        display: flex;
        flex-direction: row;
    } 
     
    .content {
       flex: 1;
    }
    
    .container {
      /* margin-left: 4rem;*/
    }
   
      
  }

   /*tableti*/
   @media screen and (min-width: 768px) and (max-width: 900px) {
    .wrapper {
      margin-left: 5rem;
      
    }
  }

    /*landscapet tablet*/
    @media screen and (min-width: 900px) and (max-width: 1290px) {
        .wrapper {
          margin-left: 5rem;
          
        }
      }
 