:root {
  --red: #ef233c;
  --darkred: #c00424;
  --platinum: #e5e5e5;
  --black: #2b2d42;
  --white: #fff;
  --thumb: #edf2f4;
}

.divSpec{
	background-color: #FAF9F6;
	padding-bottom: 3%;
	border-bottom: 2px solid #19804B;
}

.container {
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
}

.arrowAnimation{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 20%;
}

.card-h2 {
  font-size: 32px;
  margin-bottom: 1em;
  color: black;
}

.cards { 
  display: flex;
  padding: 25px 0px;
  list-style: none;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.card {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
  scroll-snap-align: start;
  transition: all 0.2s;
  border: 3px solid #19804B;
}

.card:not(:last-child) {
  margin-right: 10px;
}

.card:hover {
  color: var(--white);
  background-color: #EA3335;
}

.card .card-title {
  font-size: 20px;
  color: black;
}

.card .card-content {
  margin: 20px 20px;
  max-width: 85%;
}

.card .card-link-wrapper {
  margin-top: auto;
}

.card .card-link {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: #19804B;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.card:hover .card-link {
  background-color: DarkGreen;
}

.cards::-webkit-scrollbar {
  height: 12px;
}

.cards::-webkit-scrollbar-thumb,
.cards::-webkit-scrollbar-track {
  border-radius: 92px;
}

.cards::-webkit-scrollbar-thumb {
  background-color: #EA3335;
}

.cards::-webkit-scrollbar-track {
  background: var(--thumb);
}

.cardImage{
	width: 100%;
}

@media (min-width: 300px) and (max-width: 599px){
	
	.card .card-link {
		width: 56%;
	}
	
	.card-h2 {
	  font-size: 25px;
	}
	
	.arrowAnimation{
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 50%;
	}
}

@media (min-width: 500px) {
  .card {
    flex-basis: calc(50% - 10px);
  }

  .card:not(:last-child) {
    margin-right: 20px;
  }
}

@media (min-width: 700px) {
  .card {
    flex-basis: calc(calc(100% / 3) - 20px);
  }

  .card:not(:last-child) {
    margin-right: 30px;
  }
}

@media (min-width: 1100px) {
  .card {
    flex-basis: calc(25% - 30px);
  }

  .card:not(:last-child) {
    margin-right: 40px;
  }
}


/* FOOTER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: fixed;
  right: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  padding: 5px;
  z-index: 1;
}

.page-footer a {
  display: flex;
  margin-left: 4px;
}