/*------------------------
	pageWrap
	----------------------*/





.pageWrap {
  padding: 0;
  margin-top: 5vw;
  list-style: none;
  display: table;
  width: 100%;
  float:left;
  margin-right: 5%;
}
.pageWrapInner {
  display: table-cell;
  width: 45%;
  padding: 0 20px;
  position: relative;
  vertical-align: top;
  margin: 10px;
  font-family: 'helvetica', san-serif;
  /*border: 1px solid #252727;*/
  text-align: left;
  float: none;
}
 
 .pageWrapCenter {
    padding: 2vh 2vw;
    border: 1px dashed gray;
    display: table-cell;
    position: absolute;
	top: 25vh;
	left: 10vw;
 }

@media (max-width: 900px) {
   .pageWrap{
	   display: block;
	   width: 95vw;
	   
    }
	
	.pageWrapInner {
		width: 87%;
		float: left;
}

.pageWrapCenter {
	display: block;
    position: relative;
	top: 0;
	left: 0;
	margin: 0 auto;
 }
}
/*
HTML Beispiel Gallery

<h1>Simple and Responsive CSS Image Grid</h1>
<p>And it works also for other content, not only images ✌😏</p>
<div class="myGallery">
  <img src="https://picsum.photos/190/190?1" />
  <img src="https://picsum.photos/190/190?2" />
  <img src="https://picsum.photos/190/190?3" />
  <img src="https://picsum.photos/190/190?4" />
  <img src="https://picsum.photos/190/190?5" />
  <img src="https://picsum.photos/190/190?6" />
  <img src="https://picsum.photos/190/190?7" />
  <img src="https://picsum.photos/190/190?8" />
  <img src="https://picsum.photos/190/190?9" />
  <img src="https://picsum.photos/190/190?10" />
  <div class="item">
    <img src="https://picsum.photos/190/190?11" />
    <span class="caption">This is an image caption for image 11</span>
  </div>
  <div class="item">
    <img src="https://picsum.photos/190/190?12" />
    <span class="caption">This is an image caption for image 12</span>
  </div>
  <div class="item">
    <img src="https://picsum.photos/190/190?13" />
    <span class="caption">This is an image caption for image 13</span>
  </div>
  <div class="item">
    <img src="https://picsum.photos/190/190?14" />
    <span class="caption">This is an image caption for image 14</span>
  </div>
  <div class="item">
    <img src="https://picsum.photos/190/190?15" />
    <span class="caption">This is an image caption for image 15</span>
  </div>
</div>
<p><em><small>If you need something fancier, just check out <a href="https://gridzy.gallery/" target="_blank">Gridzy.Gallery</a></small></em></p>

-->Zugehöriges CSS 4 CSS Deklarationen:<--


.myGallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.myGallery img {
  width: 100%;
}


  And here are some declarations for the image caption.
  Just hover over one of the last 5 images to see it.


.myGallery .item {
  position: relative;
  overflow: hidden;
}

.myGallery .item img {
  vertical-align: middle;
}

.myGallery .caption {
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
}

.myGallery .item:hover .caption {
  transform: translateY(0%);
}

.myGallery {
  font-size: 1rem;
}

______________________________________________________

HTML Beispiel 2Spalten nebeneinander

<div class="rig">
  
  <div class="rig-item">
    <p><em><small>If you need something fancier, just check out <a href="https://gridzy.gallery/" target="_blank">Gridzy.Gallery</a></small></em></p>
  </div>
  <div class="rig-item">
    <p><em><small>If you need something fancier, just check out <a href="https://gridzy.gallery/" target="_blank">Gridzy.Gallery</a></small></em></p>
  </div>
  
</div>
*/
/*

.rig-gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto / auto auto auto; /*repeat(auto-fit, minmax(150px, 1fr));
  
 /* border: 1px solid #f00;
  column-count:2;
  column-gap: 30px;
  column-width:50%;*/
  
  /*
}

.rig-gallery img {
  width: 100%;
}


  Declarationen für image-caption.


.rig-gallery .rig-gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #0f0;
  text-align: center
}

.rig-gallery .rig-gallery-item img {
  vertical-align: middle;
}

.rig-gallery .rig-gallery-caption {
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
}

.rig-gallery .rig-gallery-item:hover .caption {
  transform: translateY(0%);
}
*/
#rig {
    max-width:1200px;
    margin:0 auto; /*center aligned*/
    padding:0;
    /*font-size:normal;  Remember to change it back to normal font size if have captions */
    list-style:none;
    background-color:#fff;
}
#rig li {
    display: inline-block;
    width:23%;
    vertical-align:top; /*middle oder bottom*/
    box-sizing:border-box;
    margin:0 0 30px 0;
    padding:16px;
	height: 340px;
	border: none;
}
        
/* The wrapper for each item */
.rig-cell {
    margin:12px;
    box-shadow:0 0 6px rgba(0,0,0,0.3);
    display:block;
    position: relative;
    overflow:hidden;
	margin: 0 1%;
}
        
/* If have the image layer */
.rig-img {
    display:block;
    width: 100%;
    height: auto;
    border:none;
    transform:scale(1);
    transition:all 3s;
}

#rig li:hover .rig-img {
    transform:scale(1.05);
}
        
/* If have the overlay layer */
.rig-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #3DC0F1 url(img/link.png) no-repeat center 20%;
    background-size:50px 50px;
    opacity:0;
    filter:alpha(opacity=0);/*For IE6 - IE8*/
    transition:all 0.6s;
}
#rig li:hover .rig-overlay {
    opacity:0.8;
}

/* If have captions */
.rig-text {
    display:block;
    padding:0 30px;
    box-sizing:border-box;
    position:absolute;
    left:0;
    width:100%;
    text-align:center;
    text-transform:capitalize;
    font-size:18px;
    font-weight:bold;
    font-family: 'Oswald', sans-serif;
    font-weight:normal!important;
    top:30%;
    color:#fff;
    opacity:0;
    filter:alpha(opacity=0);/*For older IE*/
    transform:translateY(-20px);
    transition:all .3s;
}
#rig li:hover .rig-text {
    transform:translateY(0px);
    opacity:0.9;
}
/*
@media (max-width: 9000px) {
    #rig li {
        width:18%;
    }
}
*/
@media (max-width: 900px) {
    #rig li {
        width:49.3%;
    }
}

@media (max-width: 550px) {
    #rig li {
        width:98%;
    }
}

/*------------------------
	tilesWrap
	----------------------*/
	
.tilesWrapimg {text-align: center; }
.tilesWrapimg img{border-radius: 50%; display: inline;}
.tilesWrap li a {cursor: pointer;}

.tilesWrap {
  padding: 0;
  margin-top: 5vw;
  list-style: none;
  display: table;
}
.tilesWrap li {
  display: table-cell;
  width: 25%;
  min-width: 230px;
  padding: 80px 20px 40px;
  position: relative;
  vertical-align: top;
  margin: 10px;
  font-family: 'helvetica', san-serif;
  /*border: 1px solid #252727;*/
  text-align: left;
  float: none;
}
.tilesWrap li h1 {
	  color: #000;
	  opacity: 0.3;
}
.tilesWrap li h2 {
  color: #b7b7b7;
  font-size: 50px;
  margin: 0;
  position: absolute;
  opacity: 0.2;
  top: 50px;
  right: 10px;
  transition: all 0.3s ease-in-out;
}
.tilesWrap li h3 {
  font-size: 40px;
  color: #b7b7b7;
  margin-bottom: 5px;
}
.tilesWrap li p {
  font-size: 16px;
    font-size: 16px;
  line-height: 18px;
  color: #b7b7b7;
  margin-top: 5px;
}
.tilesWrap li button {
  background: transparent;
  border: 1px solid #b7b7b7;
  padding: 10px 20px;
  color: #b7b7b7;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease-in-out;
  transform: translateY(-40px);
  opacity: 0;
  cursor: pointer;
  overflow: hidden;
}
.tilesWrap li button:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 120%;
  background: #b7b7b7;
  top: 0;
  opacity: 0;
  left: -140px;
  border-radius: 0 20px 20px 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  
}
.tilesWrap li:hover button {
  transform: translateY(5px);
  opacity: 1;
}
.tilesWrap li button:hover {
  color: #262a2b;
}
.tilesWrap li button:hover:before {
  left: 0;
  opacity: 1;
}

#rig li:hover, .tilesWrap li:hover {
box-shadow: 0px 0px 10px 5px #ddd; transition: all 0.3s ease-in-out;
}

.tilesWrap li:hover h2 {
  top: 0px;
  opacity: 0.6;
}

.tilesWrap li:hover h1 {
  opacity: 0.6;
}
@media (max-width: 1780px) {
   .tilesWrap li h2 {
  font-size: 3vw;
    }
.tilesWrap li h1{  font-size: 2vw;}	
	.tilesWrap li {
  width: 25%;
  min-width: 200px;
}
}
@media (max-width: 900px) {
   .tilesWrap li h2, .tilesWrap li h1{
  font-size: 5vw;
    }
	
	.tilesWrap li {
  width: 80%;
  min-width: 230px;
    min-height: auto;
	float: left;
}
}

/*---- start-testmonials----*/
.test-monial-time-line{
	position:relative;
	margin: 2em 0;
}
.test-monial-time-line-left-text p{
	color: #8E999C;
	font-size: 0.875em;
	line-height: 1.5em;
}
.test-monial-time-line-left-pic{
	text-align:center;
}
.test-monial-time-line-left-pic a{
	color: #394346;
	font-size: 1.1em;
	font-weight: 600;
	margin: 0.2em 0;
	display: block;
}
.test-monial-time-line-left-pic a:hover{
	text-decoration:none;
	color:#FD3B01;
}
.test-monial-time-line-left-pic img{
	border-radius:5px;
	display:inline-block;
}
.test-monial-time-line-grid{
	position:relative;
}
.grid-point{
	height: 40px;
	width: 40px;
	display: block;
	background: #FD3B01;
	border: 6px solid #DEDEDE;
	border-radius: 30em;
	position: relative;
	/*right: -6.5%;
	top: 22px;
	z-index: 999;*/
	-webkit-border-radius: 30em;
	-moz-border-radius: 30em;
	-o-border-radius: 30em;
	-ms-border-radius: 30em;
}
.grid-point1{
	left: -6.5%;
	top: 22px;
}
.test-monial-timeline-connector span{
	width: 1px;
	height: 500px;
	background: #E1E1E1;
	position: absolute;
	left: 50%;
}
.test-monial-time-line-grid-l1{
	margin-top: 37%;
}
.test-monial-time-line-grid-r1{
	margin-top:10%;
}
.test-monial-time-line-grid-r2{
	margin-top:60%;
}
.testmonials{
	padding: 3em 0 4em;
}
.more-testmonial-time-line{
	background: #00AEEF;
	height: 70px;
	width: 70px;
	display: block;
	position: absolute;
	text-align: center;
	color: #FFF;
	border-radius: 30em;
	-moz-border-radius: 30em;
	-o-border-radius: 30em;
	-ms-border-radius: 30em;
	-webkit-border-radius: 30em;
	-moz-border-radius: 30em;
	-o-border-radius: 30em;
	-ms-border-radius: 30em;
	position: absolute;
	left: 47%;
	bottom: -23%;
}
.more-testmonial-time-line:hover{
	text-decoration:none;
	color:#FFF;
	background:#FD3B01;
}
.more-testmonial-time-line span{
	margin-top: 1.4em;
	display: block;
}