.frow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
  .frow > * {
    max-width: 100%; }
  .frow.centered {
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100%; }
  .frow.centered-column {
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    height: 100%; }
  .frow.row-start {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; }
  .frow.row-center {
    flex-direction: row;
    align-items: center;
    justify-content: center; }
  .frow.row-end {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end; }
  .frow.row-between {
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
  .frow.row-around {
    flex-direction: row;
    align-items: center;
    justify-content: space-around; }
  .frow.column-start {
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start; }
  .frow.column-center {
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-start; }
  .frow.column-end {
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-start; }
  .frow.inline {
    display: inline-flex; }
  .frow.wrap {
    flex-wrap: wrap; }
  .frow.wrap-reverse {
    flex-wrap: wrap-reverse; }
  .frow.nowrap {
    flex-wrap: nowrap; }
  .frow.direction-row {
    flex-direction: row; }
  .frow.direction-reverse {
    flex-direction: row-reverse; }
  .frow.direction-column {
    flex-direction: column; }
  .frow.direction-column-reverse {
    flex-direction: column-reverse; }
  .frow.justify-start {
    justify-content: flex-start; }
  .frow.justify-end {
    justify-content: flex-end; }
  .frow.justify-center {
    justify-content: center; }
  .frow.justify-between {
    justify-content: space-between; }
  .frow.justify-around {
    justify-content: space-around; }
  .frow.items-start {
    align-items: flex-start; }
  .frow.items-end {
    align-items: flex-end; }
  .frow.items-center {
    align-items: center; }
  .frow.items-stretch {
    align-items: stretch; }
  .frow.items-baseline {
    align-items: baseline; }
  .frow.content-start {
	align-content: flex-start;
	margin-left: 0px;
}
  .frow.content-end {
    align-content: flex-end; }
  .frow.content-center {
    align-content: center; }
  .frow.content-between {
    align-content: space-between; }
  .frow.content-around {
    align-content: space-around; }



.frow [class*=col-xs], .frow [class*=col-sm], .frow [class*=col-md], .frow [class*=col-lg] {
    width: 100%; 
}

/* CUSTOM */
.content .cardTitle {
	position: relative;
	z-index: 1000;
	
}
.cards {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.content .cardTitle p {
	font-size: 2rem;
	line-height: 2rem;
	text-align: center;
	margin-top: -40px;
	padding-top: 10px;
	/* [disabled]padding-right: 60px; */
	/* [disabled]padding-left: 60px; */
	padding-bottom: 10px;
	background-color: #fbb825;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	color: #000000;
	border-left: 4px solid #000000;
	border-right: 4px solid #000000;
	border-bottom-color: #000000;
	border-bottom-style: solid;
	/* [disabled]border-bottom-width: 4px; */
	border-top: 4px solid #000000;
}

.cardLayout {
	/* [disabled]padding-top: 4px; */
	/* [disabled]padding-right: 14px; */
	/* [disabled]padding-left: 14px; */
	/* [disabled]padding-bottom: 5rem; */
	overflow: hidden;
	/* [disabled]margin-top: 100px; */
	margin-left: auto;
	margin-right: auto;
}

.cardLayout .cards .cardContainer {
	margin-bottom: 16px;
	position: relative;
	border: 2px solid #ABABAB;
	/* [disabled]border-radius: 4px; */
	overflow: hidden;
	transition: .6s;
	/* [disabled]background-color: #FFFFFF; */
	margin-left: 4px;
	margin-right: 4px;
}

.cardsBottomMargin {
	margin-bottom: 40px;
}

.cardLayout .cards .cardContainer:hover {
	opacity: 1;
	background-color: #707070;
	border: 2px solid #8A2336;
}

/* the section below the image needs to have a solid background so the image can be hidden behind it. The hover needs to be solid. Since the cardContainer is the only container that stretches, it has to have the fill colour. The cardContent needs to mirror the background colours and change as well (they will change at the same time) so make sure they are the SAME  */
.cardLayout .cardContent {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	position: relative;
	z-index: 99;
	background-color: #ABABAB;
	transition: .6s;
	/* [disabled]border-color: #5a1411; */
	/* [disabled]border-style: solid; */
	/* [disabled]border-bottom-width: 6px; */
	/* [disabled]border-top-width: 0px; */
	height: 100%;
}

.cardLayout .cards .cardContainer h3, .cardLayout .cards .cardContainer h4 {
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	color: #FFFFFF;
	text-align: center;
	line-height: 1;
	transition: .6s;
	margin-top: 0px;
	font-weight: 500;
}
.cardLayout .cards .cardContainer h3 {
	font-size: 1.5rem;
}
.cardLayout .cards .cardContainer h4 {
	font-size: 1.2rem;
}
.cardLayout .cards .cardContainer:hover h3, .cardLayout .cards .cardContainer:hover h4 {
	color: #FFFFFF!important;
}
.cardLayout .cards .cardContainer p {
	margin: 0;
	padding: 0;
	color: #C3C3C3;
	text-align: left;
}
.cardLayout .cards .cardContainer:hover p {
	color: #575757;
	transition: .6s;
	/*background-color: #fff;*/
}

.cardLayout .cards .cardContainer:hover .cardContent {
	background-color: #8A2336;
	border-bottom-color: #000000;
	/* [disabled]border-bottom-style: solid; */
	/* [disabled]border-bottom-width: 2px; */
}

.cardLayout .cards .cardContainer .cardThumbnail {
	/* [disabled]opacity: 0.6; */
	transition: .8s;
	position: relative;
	transform: scale(1.1);
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(100%);
}

.cardLayout .cards .cardContainer .cardThumbnail img{
	
}
.cardLayout .cards .cardContainer:hover .cardThumbnail {
	filter: none;
	-webkit-filter: grayscale(0%);
	/* [disabled]opacity: 1; */
	transform: scale(1.2) translateY(-10px); /* cannot translate too much because image may no longer fill container  */
}


  @media (min-width: 0px) {
    .frow .col-xs-1-1 {
	width: 100%;
	/* [disabled]background-color: #0015FF; */
}
    .frow .col-xs-1-2 {
      width: 50%; }
    .frow .col-xs-2-2 {
      width: 100%; }
    .frow .col-xs-1-3 {
      width: 33.33333%; }
    .frow .col-xs-2-3 {
      width: 66.66667%; }
    .frow .col-xs-3-3 {
      width: 100%; }
    .frow .col-xs-1-4 {
      width: 25%; }
    .frow .col-xs-2-4 {
      width: 50%; }
    .frow .col-xs-3-4 {
      width: 75%; }
    .frow .col-xs-4-4 {
      width: 100%; }
    .frow .col-xs-1-5 {
      width: 20%; }
    .frow .col-xs-2-5 {
      width: 40%; }
    .frow .col-xs-3-5 {
      width: 60%; }
    .frow .col-xs-4-5 {
      width: 80%; }
    .frow .col-xs-5-5 {
      width: 100%; }
    .frow .col-xs-1-6 {
      width: 16.66667%; }
    .frow .col-xs-2-6 {
      width: 33.33333%; }
    .frow .col-xs-3-6 {
      width: 50%; }
    .frow .col-xs-4-6 {
      width: 66.66667%; }
    .frow .col-xs-5-6 {
      width: 83.33333%; }
    .frow .col-xs-6-6 {
      width: 100%; }
    .frow .col-xs-1-7 {
      width: 14.28571%; }
    .frow .col-xs-2-7 {
      width: 28.57143%; }
    .frow .col-xs-3-7 {
      width: 42.85714%; }
    .frow .col-xs-4-7 {
      width: 57.14286%; }
    .frow .col-xs-5-7 {
      width: 71.42857%; }
    .frow .col-xs-6-7 {
      width: 85.71429%; }
    .frow .col-xs-7-7 {
      width: 100%; }
    .frow .col-xs-1-8 {
      width: 12.5%; }
    .frow .col-xs-2-8 {
      width: 25%; }
    .frow .col-xs-3-8 {
      width: 37.5%; }
    .frow .col-xs-4-8 {
      width: 50%; }
    .frow .col-xs-5-8 {
      width: 62.5%; }
    .frow .col-xs-6-8 {
      width: 75%; }
    .frow .col-xs-7-8 {
      width: 87.5%; }
    .frow .col-xs-8-8 {
      width: 100%; }
    .frow .col-xs-1-9 {
      width: 11.11111%; }
    .frow .col-xs-2-9 {
      width: 22.22222%; }
    .frow .col-xs-3-9 {
      width: 33.33333%; }
    .frow .col-xs-4-9 {
      width: 44.44444%; }
    .frow .col-xs-5-9 {
      width: 55.55556%; }
    .frow .col-xs-6-9 {
      width: 66.66667%; }
    .frow .col-xs-7-9 {
      width: 77.77778%; }
    .frow .col-xs-8-9 {
      width: 88.88889%; }
    .frow .col-xs-9-9 {
      width: 100%; }
    .frow .col-xs-1-10 {
      width: 10%; }
    .frow .col-xs-2-10 {
      width: 20%; }
    .frow .col-xs-3-10 {
      width: 30%; }
    .frow .col-xs-4-10 {
      width: 40%; }
    .frow .col-xs-5-10 {
      width: 50%; }
    .frow .col-xs-6-10 {
      width: 60%; }
    .frow .col-xs-7-10 {
      width: 70%; }
    .frow .col-xs-8-10 {
      width: 80%; }
    .frow .col-xs-9-10 {
      width: 90%; }
    .frow .col-xs-10-10 {
      width: 100%; }
    .frow .col-xs-1-11 {
      width: 9.09091%; }
    .frow .col-xs-2-11 {
      width: 18.18182%; }
    .frow .col-xs-3-11 {
      width: 27.27273%; }
    .frow .col-xs-4-11 {
      width: 36.36364%; }
    .frow .col-xs-5-11 {
      width: 45.45455%; }
    .frow .col-xs-6-11 {
      width: 54.54545%; }
    .frow .col-xs-7-11 {
      width: 63.63636%; }
    .frow .col-xs-8-11 {
      width: 72.72727%; }
    .frow .col-xs-9-11 {
      width: 81.81818%; }
    .frow .col-xs-10-11 {
      width: 90.90909%; }
    .frow .col-xs-11-11 {
      width: 100%; }
    .frow .col-xs-1-12 {
      width: 8.33333%; }
    .frow .col-xs-2-12 {
      width: 16.66667%; }
    .frow .col-xs-3-12 {
      width: 25%; }
    .frow .col-xs-4-12 {
      width: 33.33333%; }
    .frow .col-xs-5-12 {
      width: 41.66667%; }
    .frow .col-xs-6-12 {
      width: 50%; }
    .frow .col-xs-7-12 {
      width: 58.33333%; }
    .frow .col-xs-8-12 {
      width: 66.66667%; }
    .frow .col-xs-9-12 {
      width: 75%; }
    .frow .col-xs-10-12 {
      width: 83.33333%; }
    .frow .col-xs-11-12 {
      width: 91.66667%; }
    .frow .col-xs-12-12 {
      width: 100%; } 
}
  @media (min-width: 660px) {
    .frow .col-sm-1-1 {
	width: 100%;
}
    .frow .col-sm-1-2 {
      width: 50%; }
    .frow .col-sm-2-2 {
      width: 100%; }
    .frow .col-sm-1-3 {
      width: 33.33333%; }
    .frow .col-sm-2-3 {
      width: 66.66667%; }
    .frow .col-sm-3-3 {
      width: 100%; }
    .frow .col-sm-1-4 {
      width: 25%; }
    .frow .col-sm-2-4 {
      width: 50%; }
    .frow .col-sm-3-4 {
      width: 75%; }
    .frow .col-sm-4-4 {
      width: 100%; }
    .frow .col-sm-1-5 {
      width: 20%; }
    .frow .col-sm-2-5 {
      width: 40%; }
    .frow .col-sm-3-5 {
      width: 60%; }
    .frow .col-sm-4-5 {
	width: 80%;
}
    .frow .col-sm-5-5 {
      width: 100%; }
    .frow .col-sm-1-6 {
      width: 16.66667%; }
    .frow .col-sm-2-6 {
      width: 33.33333%; }
    .frow .col-sm-3-6 {
      width: 50%; }
    .frow .col-sm-4-6 {
      width: 66.66667%; }
    .frow .col-sm-5-6 {
      width: 83.33333%; }
    .frow .col-sm-6-6 {
      width: 100%; }
    .frow .col-sm-1-7 {
      width: 14.28571%; }
    .frow .col-sm-2-7 {
      width: 28.57143%; }
    .frow .col-sm-3-7 {
      width: 42.85714%; }
    .frow .col-sm-4-7 {
      width: 57.14286%; }
    .frow .col-sm-5-7 {
      width: 71.42857%; }
    .frow .col-sm-6-7 {
      width: 85.71429%; }
    .frow .col-sm-7-7 {
      width: 100%; }
    .frow .col-sm-1-8 {
      width: 12.5%; }
    .frow .col-sm-2-8 {
      width: 25%; }
    .frow .col-sm-3-8 {
      width: 37.5%; }
    .frow .col-sm-4-8 {
      width: 50%; }
    .frow .col-sm-5-8 {
      width: 62.5%; }
    .frow .col-sm-6-8 {
      width: 75%; }
    .frow .col-sm-7-8 {
      width: 87.5%; }
    .frow .col-sm-8-8 {
      width: 100%; }
    .frow .col-sm-1-9 {
      width: 11.11111%; }
    .frow .col-sm-2-9 {
      width: 22.22222%; }
    .frow .col-sm-3-9 {
      width: 33.33333%; }
    .frow .col-sm-4-9 {
      width: 44.44444%; }
    .frow .col-sm-5-9 {
      width: 55.55556%; }
    .frow .col-sm-6-9 {
      width: 66.66667%; }
    .frow .col-sm-7-9 {
      width: 77.77778%; }
    .frow .col-sm-8-9 {
      width: 88.88889%; }
    .frow .col-sm-9-9 {
      width: 100%; }
    .frow .col-sm-1-10 {
      width: 10%; }
    .frow .col-sm-2-10 {
      width: 20%; }
    .frow .col-sm-3-10 {
      width: 30%; }
    .frow .col-sm-4-10 {
      width: 40%; }
    .frow .col-sm-5-10 {
      width: 50%; }
    .frow .col-sm-6-10 {
      width: 60%; }
    .frow .col-sm-7-10 {
      width: 70%; }
    .frow .col-sm-8-10 {
      width: 80%; }
    .frow .col-sm-9-10 {
      width: 90%; }
    .frow .col-sm-10-10 {
      width: 100%; }
    .frow .col-sm-1-11 {
      width: 9.09091%; }
    .frow .col-sm-2-11 {
      width: 18.18182%; }
    .frow .col-sm-3-11 {
      width: 27.27273%; }
    .frow .col-sm-4-11 {
      width: 36.36364%; }
    .frow .col-sm-5-11 {
      width: 45.45455%; }
    .frow .col-sm-6-11 {
      width: 54.54545%; }
    .frow .col-sm-7-11 {
      width: 63.63636%; }
    .frow .col-sm-8-11 {
      width: 72.72727%; }
    .frow .col-sm-9-11 {
      width: 81.81818%; }
    .frow .col-sm-10-11 {
      width: 90.90909%; }
    .frow .col-sm-11-11 {
      width: 100%; }
    .frow .col-sm-1-12 {
      width: 8.33333%; }
    .frow .col-sm-2-12 {
      width: 16.66667%; }
    .frow .col-sm-3-12 {
      width: 25%; }
    .frow .col-sm-4-12 {
      width: 33.33333%; }
    .frow .col-sm-5-12 {
      width: 41.66667%; }
    .frow .col-sm-6-12 {
      width: 50%; }
    .frow .col-sm-7-12 {
      width: 58.33333%; }
    .frow .col-sm-8-12 {
      width: 66.66667%; }
    .frow .col-sm-9-12 {
      width: 75%; }
    .frow .col-sm-10-12 {
      width: 83.33333%; }
    .frow .col-sm-11-12 {
      width: 91.66667%; }
    .frow .col-sm-12-12 {
      width: 100%; 
	  } 
}
  @media (min-width: 992px) {
    .frow .col-md-1-1 {
      width: 100%; }
    .frow .col-md-1-2 {
      width: 50%; }
    .frow .col-md-2-2 {
      width: 100%; }
    .frow .col-md-1-3 {
	width: 33.33333%;
}
    .frow .col-md-2-3 {
      width: 66.66667%; }
    .frow .col-md-3-3 {
      width: 100%; }
    .frow .col-md-1-4 {
      width: 25%; }
    .frow .col-md-2-4 {
      width: 50%; }
    .frow .col-md-3-4 {
      width: 75%; }
    .frow .col-md-4-4 {
      width: 100%; }
    .frow .col-md-1-5 {
      width: 20%; }
    .frow .col-md-2-5 {
      width: 40%; }
    .frow .col-md-3-5 {
      width: 60%; }
    .frow .col-md-4-5 {
      width: 80%; }
    .frow .col-md-5-5 {
      width: 100%; }
    .frow .col-md-1-6 {
      width: 16.66667%; }
    .frow .col-md-2-6 {
      width: 33.33333%; }
    .frow .col-md-3-6 {
      width: 50%; }
    .frow .col-md-4-6 {
      width: 66.66667%; }
    .frow .col-md-5-6 {
      width: 83.33333%; }
    .frow .col-md-6-6 {
      width: 100%; }
    .frow .col-md-1-7 {
      width: 14.28571%; }
    .frow .col-md-2-7 {
      width: 28.57143%; }
    .frow .col-md-3-7 {
      width: 42.85714%; }
    .frow .col-md-4-7 {
      width: 57.14286%; }
    .frow .col-md-5-7 {
      width: 71.42857%; }
    .frow .col-md-6-7 {
      width: 85.71429%; }
    .frow .col-md-7-7 {
      width: 100%; }
    .frow .col-md-1-8 {
      width: 12.5%; }
    .frow .col-md-2-8 {
      width: 25%; }
    .frow .col-md-3-8 {
      width: 37.5%; }
    .frow .col-md-4-8 {
      width: 50%; }
    .frow .col-md-5-8 {
      width: 62.5%; }
    .frow .col-md-6-8 {
      width: 75%; }
    .frow .col-md-7-8 {
      width: 87.5%; }
    .frow .col-md-8-8 {
      width: 100%; }
    .frow .col-md-1-9 {
      width: 11.11111%; }
    .frow .col-md-2-9 {
      width: 22.22222%; }
    .frow .col-md-3-9 {
      width: 33.33333%; }
    .frow .col-md-4-9 {
      width: 44.44444%; }
    .frow .col-md-5-9 {
      width: 55.55556%; }
    .frow .col-md-6-9 {
      width: 66.66667%; }
    .frow .col-md-7-9 {
      width: 77.77778%; }
    .frow .col-md-8-9 {
      width: 88.88889%; }
    .frow .col-md-9-9 {
      width: 100%; }
    .frow .col-md-1-10 {
      width: 10%; }
    .frow .col-md-2-10 {
      width: 20%; }
    .frow .col-md-3-10 {
      width: 30%; }
    .frow .col-md-4-10 {
      width: 40%; }
    .frow .col-md-5-10 {
      width: 50%; }
    .frow .col-md-6-10 {
      width: 60%; }
    .frow .col-md-7-10 {
      width: 70%; }
    .frow .col-md-8-10 {
      width: 80%; }
    .frow .col-md-9-10 {
      width: 90%; }
    .frow .col-md-10-10 {
      width: 100%; }
    .frow .col-md-1-11 {
      width: 9.09091%; }
    .frow .col-md-2-11 {
      width: 18.18182%; }
    .frow .col-md-3-11 {
      width: 27.27273%; }
    .frow .col-md-4-11 {
      width: 36.36364%; }
    .frow .col-md-5-11 {
      width: 45.45455%; }
    .frow .col-md-6-11 {
      width: 54.54545%; }
    .frow .col-md-7-11 {
      width: 63.63636%; }
    .frow .col-md-8-11 {
      width: 72.72727%; }
    .frow .col-md-9-11 {
      width: 81.81818%; }
    .frow .col-md-10-11 {
      width: 90.90909%; }
    .frow .col-md-11-11 {
      width: 100%; }
    .frow .col-md-1-12 {
      width: 8.33333%; }
    .frow .col-md-2-12 {
      width: 16.66667%; }
    .frow .col-md-3-12 {
      width: 25%; }
    .frow .col-md-4-12 {
      width: 33.33333%; }
    .frow .col-md-5-12 {
      width: 41.66667%; }
    .frow .col-md-6-12 {
      width: 50%; }
    .frow .col-md-7-12 {
      width: 58.33333%; }
    .frow .col-md-8-12 {
      width: 66.66667%; }
    .frow .col-md-9-12 {
      width: 75%; }
    .frow .col-md-10-12 {
      width: 83.33333%; }
    .frow .col-md-11-12 {
      width: 91.66667%; }
    .frow .col-md-12-12 {
      width: 100%; } 
}
  @media (min-width: 1200px) {
    .frow .col-lg-1-1 {
      width: 100%; }
    .frow .col-lg-1-2 {
      width: 50%; }
    .frow .col-lg-2-2 {
      width: 100%; }
    .frow .col-lg-1-3 {
      width: 33.33333%; }
    .frow .col-lg-2-3 {
      width: 66.66667%; }
    .frow .col-lg-3-3 {
      width: 100%; }
    .frow .col-lg-1-4 {
      width: 25%; }
    .frow .col-lg-2-4 {
      width: 50%; }
    .frow .col-lg-3-4 {
      width: 75%; }
    .frow .col-lg-4-4 {
      width: 100%; }
    .frow .col-lg-1-5 {
      width: 20%; }
    .frow .col-lg-2-5 {
      width: 40%; }
    .frow .col-lg-3-5 {
      width: 60%; }
    .frow .col-lg-4-5 {
      width: 80%; }
    .frow .col-lg-5-5 {
      width: 100%; }
    .frow .col-lg-1-6 {
      width: 16.66667%; }
    .frow .col-lg-2-6 {
      width: 33.33333%; }
    .frow .col-lg-3-6 {
      width: 50%; }
    .frow .col-lg-4-6 {
      width: 66.66667%; }
    .frow .col-lg-5-6 {
      width: 83.33333%; }
    .frow .col-lg-6-6 {
      width: 100%; }
    .frow .col-lg-1-7 {
      width: 14.28571%; }
    .frow .col-lg-2-7 {
      width: 28.57143%; }
    .frow .col-lg-3-7 {
      width: 42.85714%; }
    .frow .col-lg-4-7 {
      width: 57.14286%; }
    .frow .col-lg-5-7 {
      width: 71.42857%; }
    .frow .col-lg-6-7 {
      width: 85.71429%; }
    .frow .col-lg-7-7 {
      width: 100%; }
    .frow .col-lg-1-8 {
      width: 12.5%; }
    .frow .col-lg-2-8 {
      width: 25%; }
    .frow .col-lg-3-8 {
      width: 37.5%; }
    .frow .col-lg-4-8 {
      width: 50%; }
    .frow .col-lg-5-8 {
      width: 62.5%; }
    .frow .col-lg-6-8 {
      width: 75%; }
    .frow .col-lg-7-8 {
      width: 87.5%; }
    .frow .col-lg-8-8 {
      width: 100%; }
    .frow .col-lg-1-9 {
      width: 11.11111%; }
    .frow .col-lg-2-9 {
      width: 22.22222%; }
    .frow .col-lg-3-9 {
      width: 33.33333%; }
    .frow .col-lg-4-9 {
      width: 44.44444%; }
    .frow .col-lg-5-9 {
      width: 55.55556%; }
    .frow .col-lg-6-9 {
      width: 66.66667%; }
    .frow .col-lg-7-9 {
      width: 77.77778%; }
    .frow .col-lg-8-9 {
      width: 88.88889%; }
    .frow .col-lg-9-9 {
      width: 100%; }
    .frow .col-lg-1-10 {
      width: 10%; }
    .frow .col-lg-2-10 {
      width: 20%; }
    .frow .col-lg-3-10 {
      width: 30%; }
    .frow .col-lg-4-10 {
      width: 40%; }
    .frow .col-lg-5-10 {
      width: 50%; }
    .frow .col-lg-6-10 {
      width: 60%; }
    .frow .col-lg-7-10 {
      width: 70%; }
    .frow .col-lg-8-10 {
      width: 80%; }
    .frow .col-lg-9-10 {
      width: 90%; }
    .frow .col-lg-10-10 {
      width: 100%; }
    .frow .col-lg-1-11 {
      width: 9.09091%; }
    .frow .col-lg-2-11 {
      width: 18.18182%; }
    .frow .col-lg-3-11 {
      width: 27.27273%; }
    .frow .col-lg-4-11 {
      width: 36.36364%; }
    .frow .col-lg-5-11 {
      width: 45.45455%; }
    .frow .col-lg-6-11 {
      width: 54.54545%; }
    .frow .col-lg-7-11 {
      width: 63.63636%; }
    .frow .col-lg-8-11 {
      width: 72.72727%; }
    .frow .col-lg-9-11 {
      width: 81.81818%; }
    .frow .col-lg-10-11 {
      width: 90.90909%; }
    .frow .col-lg-11-11 {
      width: 100%; }
    .frow .col-lg-1-12 {
      width: 8.33333%; }
    .frow .col-lg-2-12 {
      width: 16.66667%; }
    .frow .col-lg-3-12 {
      width: 25%; }
    .frow .col-lg-4-12 {
      width: 33.33333%; }
    .frow .col-lg-5-12 {
      width: 41.66667%; }
    .frow .col-lg-6-12 {
      width: 50%; }
    .frow .col-lg-7-12 {
      width: 58.33333%; }
    .frow .col-lg-8-12 {
      width: 66.66667%; }
    .frow .col-lg-9-12 {
      width: 75%; }
    .frow .col-lg-10-12 {
      width: 83.33333%; }
    .frow .col-lg-11-12 {
      width: 91.66667%; }
    .frow .col-lg-12-12 {
      width: 100%; } 
}

.frow-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; 
}

@media (min-width: 660px) {
	.frow-container {
 	   max-width: 750px; 
	} 
	.cardLayout .cardContent {
	padding-top: 8px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 8px;
	}
	.cards {
		max-width: 1000px;
	}	
	.cardLayout .cards .cardContainer .cardContent h2 {
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 6px;
	margin: 0;
	font-size: 1.4rem!important;
	line-height: 1.6rem;
	}
	.cardLayout .cards .cardContainer .cardContent p {
		padding: 0;
		margin: 0;
		text-align: justify;
	}
	.content .cardTitle p {
	font-size: 2rem;
	line-height: 1.6rem;
	margin-top: -40px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	}
}

@media (min-width: 992px) {
	.frow-container {
 	   max-width: 970px; 
	} 
}

@media (min-width: 1200px) {
	
  .frow-container {
    max-width: 1170px; 
	} 
  .direction-row-lg {
    flex-direction: row; }
  .direction-reverse-lg {
    flex-direction: row-reverse; }
  .direction-column-lg {
    flex-direction: column; }
  .direction-column-reverse-lg {
    flex-direction: column-reverse; 
	} 	

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important; }

.hidden-xs, .hidden-sm, .hidden-md, .hidden-lg {
  display: block !important; }

.frow.hidden-xs, .frow.hidden-sm, .frow.hidden-md, .frow.hidden-lg {
  display: flex !important; 
}
	
}

@media (max-width: 659px) {
  .visible-xs {
    display: block !important; }
  .frow.visible-xs {
    display: flex !important; }
  .hidden-xs,
  .frow.hidden-xs {
    display: none !important; 
	} 
  .direction-row-xs {
    flex-direction: row; }
  .direction-reverse-xs {
    flex-direction: row-reverse; }
  .direction-column-xs {
    flex-direction: column; }
  .direction-column-reverse-xs {
    flex-direction: column-reverse; } 
}

@media (min-width: 660px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  .frow.visible-sm {
    display: flex !important; }
  .hidden-sm,
  .frow.hidden-sm {
    display: none !important; 
	} 

}



@media (min-width: 992px) and (max-width: 1199px) {
  .direction-row-md {
    flex-direction: row; }
  .direction-reverse-md {
    flex-direction: row-reverse; }
  .direction-column-md {
    flex-direction: column; }
  .direction-column-reverse-md {
    flex-direction: column-reverse; }   
	.visible-md {
    display: block !important; }
  .frow.visible-md {
    display: flex !important; }
  .hidden-md,
  .frow.hidden-md {
    display: none !important; 
	} 

}


@media (min-width: 660px) and (max-width: 991px) {
  .direction-row-sm {
    flex-direction: row; }
  .direction-reverse-sm {
    flex-direction: row-reverse; }
  .direction-column-sm {
    flex-direction: column; }
  .direction-column-reverse-sm {
    flex-direction: column-reverse; 
	}
}


.width-100 {
  width: 100% !important; }

.width-auto {
  width: auto !important; }

.height-100 {
	height: 100% !important;
	/* [disabled]background-color: #EFEFEF; */
}

.height-auto {
  height: auto !important; }

.clickable:not([disabled]), [onclick]:not([disabled]) {
  cursor: pointer !important; }

.not-clickable, .not-clickable[onclick] {
  cursor: default !important; }

.letsGo-hide {
  display: none !important; }



/* Customize */

.backGrImage1 {
	background-image: url(../images/backgrounds/fullPageBackground.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	/* [disabled]height: 200px; */
}

.textOverlay {
	margin: 10%;
	padding: 20px;
	background-color: rgba(0,0,0,0.50);
	border-radius: 6px;
	color: #fff;
}

.contentPadding {
	padding: 15px;
}

.gridContainer {
	/* [disabled]background-color: #FFC9CA; */
	padding: 10px;
	/* [disabled]border: 4px solid #fff; */
}


/* Gutters on larger screens ONLY */
@media (min-width: 660px) {
	.frow.gutters20 {
	/* [disabled]margin-left: -10px; */
	/* [disabled]margin-right: -10px; */
	}
	.frow.gutters20 > [class*=col-xs], .frow.gutters20 > [class*=col-sm], .frow.gutters20 > [class*=col-md], .frow.gutters20 > [class*=col-lg] {
		  padding-left: 10px;
		  padding-right: 10px; 
	}
	.frow.gutters10 {
	/* [disabled]margin-left: -5px; */
	/* [disabled]margin-right: -5px; */
	}
	.frow.gutters10 > [class*=col-xs], .frow.gutters10 > [class*=col-sm], .frow.gutters10 > [class*=col-md], .frow.gutters10 > [class*=col-lg] {
		  padding-left: 5px;
		  padding-right: 5px; 
	}
	.frow.gutters6 {
		margin-left: -3px;
		margin-right: -3px;
	}
	.frow.gutters6 > [class*=col-xs], .frow.gutters6 > [class*=col-sm], .frow.gutters6 > [class*=col-md], .frow.gutters6 > [class*=col-lg] {
		  padding-left: 3px;
		  padding-right: 3px; 
	}

}
