.main-page-img {
          text-align:center;
	
	
}
.main-page-img img{
	width:50%;
	border:2px solid var(--col-orange);
	border-radius:20px;
	margin:10px 0px;
}

.main-page-img-txt{
	color:var(--col-orange);
	font-size:1.5rem;
	font-weight:bold;
} 


/* Front Page Images */
.index-img-gallery{
 display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 1rem;
  justify-items: center;
  margin: 0;
  padding: 0;
}

/* The Picture Frame */
.index-img-gallery-card {
  padding: .5rem;
  font-size: 1.2rem;
  text-align: center;
  background-color: var(--col-dark);
  color: #d9d9d9;
  transition: transform .25s; 
  border:1px solid var(--col-orange);
  border-radius:8px;
} 

.index-img-gallery-card:hover {
	transform: scale(1.1); 
	}

/* The Images */
.index-img-gallery-card img {
   width: 100%;
  height:150px;
  object-fit: cover;
   opacity: .7;
}
  
.index-img-gallery-card img:hover {
  opacity: 1;
}

.img-gallery-wide{
 display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 1rem;
  justify-items: center;
  margin: 0;
  padding: 0;
}

/* The Picture Frame */
.img-gallery-wide-card {
  padding: .5rem;
  font-size: 1.2rem;
  text-align: center;
  background-color: var(--col-dark);
  color: #d9d9d9;
  transition: transform .25s; 
  border:1px solid var(--col-orange);
  border-radius:8px;
  min- height:150px; 
 width:170px;
} 

.img-gallery-wide-card:hover {
	transform: scale(1.1); 
	}

/* The Images */
.img-gallery-wide-card img {
  width: 150px;
  height: 125px;
  object-fit: cover;
   opacity: .7;
}
  
.img-gallery-wide-card img:hover {
  opacity: 1;
}
.img-gallery{
 display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 1rem;
  justify-items: center;
  margin: 0;
  padding: 0;
}

/* The Picture Frame */
.img-gallery-card {
  padding: .5rem;
  font-size: 1.2rem;
  text-align: center;
  background-color: var(--col-dark);
  color: #d9d9d9;
  transition: transform .25s; 
  border:1px solid var(--col-orange);
  border-radius:8px;
  min-height:170px; 
  width:150px;
} 

.img-gallery-card:hover {
	transform: scale(1.1); 
	}

/* The Images */
.img-gallery-card img {
  width: 125px;
  height: 150px;
  object-fit: cover;
   opacity: .7;
}
  
.img-gallery-card img:hover {
  opacity: 1;
}




.garf-news-img{
	width:200px;
	float:right;
	border:2px solid var(--col-orange);
	padding:5px;
	border-radius:8px;
	 transition: transform .2s; /* Animation */
	 margin-left:10px;
}

.garf-news-img:hover{
	background-color:var(--col-orange);
	transform: scale(1.1);
}

/*Roll down info*/
.rvw-container {
  position: relative;
  width: 200px;
 min-height:300px;
  background-color:var(--col-dark);
  border:solid 2px var(--col-orange);
  border-radius:10px;
  text-align:center;
  margin:10px;
}   



.classes-card-div {
    margin: 0 auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
    font-family: sans-serif;
    padding-top: 30px;
    min-height:550px;
   
}



.classes-card-div * {
    box-sizing: border-box;
}

.classes-card-div__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-top: 2px solid var(--col-orange);
    border-right: 2px solid  var(--col-orange);
    border-left: 2px solid  var(--col-orange);
}

.classes-card-div__content {
	min-height:250px;
	line-height: 1.5;
	font-size: 0.9em;
	padding: 15px;
	background: var(--col-dark);
	border-right: 2px solid  var(--col-orange);
	border-left: 2px solid  var(--col-orange);
	}

.classes-card-div__content > p:first-of-type {
    margin-top: 0;
    font-size:1.5em;
    color:var(--col-orange);
    text-align:center;
}

.classes-card-div__content > p:last-of-type {
    margin-bottom: 0;
}

.classes-card-div__info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--col-darkest);
    border-bottom: 2px solid  var(--col-orange);
    border-right: 2px solid  var(--col-orange);
    border-left: 2px solid  var(--col-orange);
   
}