.header-section {
	display: block;
	width: 100%;
	position: relative;
}

.header-section img {
	width: 100%;
	position: relative;
	height: auto;
}

.media-container h1 {
	position: absolute;
	left: 3%;
	top: 30%;
	width: 24%;
	z-index: 2;
	font-size: 60px;
}

.content-section {
	padding: 0 5%;
}

.small-screen {
	display: none;
}


.press-item-list {
	list-style-type: none;
	padding-left: 0;
}

.press-item-list.two-column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


.press-item-list.two-column .press-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.press-item {
	border-bottom: solid 1px #aaa;
	padding-bottom: 1%;
	margin-bottom: 1%;
}

.two-column .press-item {
	flex: 0 1 47%;
	border-bottom: none;
}

.press-date {
	margin-top: 1%;
	margin-bottom: 4%;
}

img.press-logo {
	height: 45px;
	width: auto;
	max-width: 80%;
}

.press-title {
	font-weight: bold;
	color: #000;
	text-decoration: none;
}

a.read-more-link {
	margin: 1% 0 3%;
	display: inline-block;
}

a.press-title:hover {
	cursor: pointer;
}


a.accordion-title {
	display: flex;
}

.accordion-title fd-icon {
	margin-right: 2%;
}

.accordion-title fd-icon svg {
	transform: rotate(0deg); 
	transition: transform 0.2s;
}

.accordion.open .accordion-title fd-icon svg {
	transform: rotate(90deg);
}

.accordion.closed .accordion-content {
	display: none;
}

.accordion.open .accordion-content {
	display: block;
}

.press-release-img {
	width: 30%;
	max-width: 500px;
	height: auto;
	margin: 2% auto;
	display: block;
}

#news a {
  border-bottom: 1px solid #000;
  transition: 0.2s ease-in-out;
  &:hover,
  &:focus {
    color: #298321;
  }
}

#contact,
#about,
#press-page .accordion-content {
  a {
    color: #298321;
    &:focus,
    &:hover {
      color: #21691a;
    }
  }
}

/*_______________ Responsive_______________*/
/* container width */
@media only screen and (max-width: 1368px) {
	.media-container h1 {
		font-size: 5vw;
	}
} 

/* medium/tablet width */
@media only screen and (max-width: 992px) {
	.press-release-img {
		width: 70%;
	}
	
	img.press-logo {
		height: 30%;
		width: auto;
		max-width: 80%;
	}
}

/* small/phone width */
@media only screen and (max-width: 568px) {
	.small-screen {
		display: block;
	}
	.large-screen {
		display: none;
	}
	
	.media-container h1 {
		font-size: 30px;
		position: relative;
		top: 0;
		left: 0;
		width: auto;
		padding: 0 5%;
	}
	
	.media-container h2 {
		font-size: 25px;
	}
	
	.press-item {
		padding-bottom: 3%;
		margin-bottom: 3%;
	}
	
	.press-item-list.two-column {
		display: block;
	}
	
	img.press-logo {
		height: auto;
		max-width: 80%;
	}
	
	.press-date {
		margin-top: 1%;
		margin-bottom: 2%;
	}
	
	
	a.press-title {
		font-weight: normal;
	}
	
	.accordion-title fd-icon {
		margin-right: 6%;
		margin-top: 1%;
	}
}