/* ======================================
Responsive Image gallery Style rules
======================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align:center;
}

/*
.container {
  padding: 20px 5%;
}
*/

.container {
    padding: 10px 5%;
    /* align-content: center; */
    /* width: 90vw; */
    /* justify-content: center; */
    /* vertical-align: middle; */
    margin: auto;
}

.header{
	    position: fixed;
    /* z-index: 10; */
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    background: white;
    padding: 10px 5%;
	z-index:10;
	display: flex;
    align-items: center;
}

.heading-text2 {
  /*margin-bottom: 2rem;*/
  font-size: 2rem;
  color:#404040;
  line-height:1em;
  text-align: left;
}

.heading-text2 p {
  font-weight: 100;
   
   font-size: 0.8em;
}

.heading-text3 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color:#404040;
  line-height:1em;
  text-align: left;
}

.heading-text3 p {
  font-weight: 100;
   
   font-size: 0.8em;
}



.heading-text {
  margin-bottom: 1rem;
  /*font-size: 2rem;*/
  color:#404040;
  font-weight:600;
   /* background-color: #f7f7f7;*/
	text-align: center;
   /* padding-left: 20px;
    padding-right: 20px;*/
	width:35vh;
	    padding-top: 10px;
}

.heading-text span {
  font-weight: 100;
  
}




ul {
  list-style: none;
}

/* Responsive image gallery rules begin*/

.image-gallery {
  /*display: flex;
  flex-wrap: wrap;
  gap: 0px;*/
  list-style: none;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	/*align-items: end;*/	
	    /*align-items: baseline;*/
    gap: 30px;
}


	
.image-gallery > li {
  /*flex: 1 1 auto;  or flex: auto;
  height: 200px;
  cursor: pointer;
  position: relative; */
  
      cursor: pointer;
    /* position: relative; 
    padding: 0px 10px 10px 0px;*/
  
}



.image-gallery li img {
 /* object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 5px;*/
  width:35vh;
      height: 35vh;
  object-fit: cover;
    /*width: 100%;
    height: 100%;*/
    /*vertical-align: middle;*/
    border-radius: 5px;
    /* align-items: center; */
    /* display: flex; */
    /* justify-content: center;*/
}




.tag {
      /* background: #eee; */
    border-radius: 15px;
    /*color: #999;*/
    display: inline-block;
    height: 40px;
    /* line-height: 26px; */
    padding: 0 20px 0 23px;
    position: relative;
    /* margin: 0 10px 10px 0; */
    margin: 10px auto;
    border-color: white;
    border: 3px solid white;
    font-size: 1rem;
    font-weight: 100;
}


@media (max-aspect-ratio: 5/4) {
  div {
    /* background: #222;  darkgrey */
  }
  .heading-text2 p{
	  font-size:1.3rem;
  }
  
  
  .image-gallery li img {
  width:80vw;
  height: 80vw;}
  
  .heading-text{
	width:80vw;  
  }
}


.tooltip::before {
  content: '';
  position: absolute;
  display: block;    
  width: 0px;        
  left: 50%;
  bottom: 0;
  border: 15px solid transparent;
  border-bottom: 0;
  border-top: 15px solid #5494db;
  transform: translate(-50%, calc(100% + 5px));
}