.ospf-help-swap-sections {
	background-color: var(--gray);
}
.ospf-help-swap-sections .swap-section-col {
	background-color: var(--gray);
}
.ospf-help-swap-sections .swap-section-item-contained .swap-section-col {
	background-color: var(--primary-btn_txt-color);
}

.ospf-how-to-help-yourself {
	padding: 90px 0;
	background-color: var(--primary-btn_txt-color);
}
.ospf-how-to-help-yourself-title > h2 {
	margin: 0;
	font-size: 32px;
}
.ospf-how-to-help-yourself-desc {
	margin-top: 30px;
}
.warning-end-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 50px;
}
.warning-end-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 48%;
	background-color: var(--gray);
	margin-bottom: 5px;
	padding: 15px 30px;
}
.warning-end-item:hover {
	text-decoration: none;
}
.warning-end-item p {
	margin: 0px;
	color: var(--dark);
}
.warning-end-item:hover p {
	color: var(--green);
	text-decoration: none;
}
@media(max-width: 767px) {
	.warning-end-item {
		width: 100%;
	}
}

.ospf-how-to-help-someone.ospf-swap-sections-inverted .swap-section-item:nth-child(even) > .swap-section-img-col:first-child {
	order: initial;
}
.ospf-how-to-help-someone.ospf-swap-sections-inverted .swap-section-item:nth-child(even) .swap-section-txt {
	margin-right: auto;
    margin-left: 0;
}
.ospf-how-to-help-someone .swap-section-item .swap-section-item-contained {
	margin-top: 30px;
}
.ospf-how-to-help-someone {
	padding: 90px 0;
	background-color: var(--gray);
}
.ospf-how-to-help-someone-title {
	margin-bottom: 90px;
}
.ospf-how-to-help-someone-title > h2 {
	margin: 0;
	font-size: 32px;
}
.help_cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 90px;
}
a.help_card,
a.help_card:hover {
	color: inherit;
}
.help_card {
  width: calc(25% - 20px);
  height: 315px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.help_card-cover > img {
	max-width: 130px;
    width: 100%;
    height: auto;
    margin: 10px auto 0;
}
.help_card-cover, .help_card-back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  backface-visibility: hidden;
  transition: transform .4s ease-in-out;
  padding: 20px 25px;
}
.help_card-back > h4 {
	color: var(--primary-btn_txt-color);
	line-height: 1.25;
	height: 40px;
  overflow: hidden;
}
.help_card-back > p:not(.help_card-arrow-l) {
	color: var(--primary-btn_txt-color);
	font-size: 13px;
	height: 174.5px;
  overflow: hidden;
}
.help_card-cover {
  background-color: var(--primary-btn_txt-color);
  transform: rotateY(0deg);
  text-align: center;
  box-shadow: 0 0 15px #ccc;
}
.help_card:hover .help_card-cover {
  transform: rotateY(180deg);
}
.help_card-back {
  background-color: var(--green);
  transform: rotateY(-180deg);
  text-align: left;
}
.help_card:hover .help_card-back {
  transform: rotateY(0);
}
.help_card-cover-text{
	margin: 0px;
}
.help_card-cover-text{
	font-weight: bold;
	width: 85%;
}
.help_card-arrow-r{
	align-self: flex-end;
	margin: 0px;
	color: var(--green);
	font-size: 25px;
}
.help_card-arrow-l{
	align-self: flex-start;
	margin: 0px;
	color: var(--primary-btn_txt-color);
	font-size: 25px;
}
.help_card-back-text{
	color: var(--primary-btn_txt-color);
	font-size: 13px;
}
@media(max-width: 1199px) {
	.ospf-how-to-help-someone, 
	.ospf-how-to-help-yourself {
		padding: 75px 0;
	}
	.ospf-how-to-help-someone-title {
		margin-bottom: 75px;
	}
}
@media(max-width: 991px) {
	.help_card {
	  width: calc(50% - 20px);
	  margin-bottom: 15px;
	}

	.ospf-how-to-help-someone-title > h2, 
	.ospf-how-to-help-yourself-title > h2 {
		font-size: 24px;
	}
}
@media(max-width: 767px) {
	.ospf-how-to-help-someone, 
	.ospf-how-to-help-yourself {
		padding: 45px 0;
	}	
	.ospf-how-to-help-someone-title {
		margin-bottom: 45px;
	}
	.ospf-how-to-help-someone-title > h2, 
	.ospf-how-to-help-yourself-title > h2 {
		font-size: 22px;
	}
}
@media(max-width: 575px) {
	.help_card {
	  width: 100%;
	}
}

.ospf-tips-for-survivors {
	background-color: var(--primary-btn_txt-color);
}