/*
    Load More
*/
.btn-load-more {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    padding: 12px 0;
    text-align: center;
    background: white;
    border: 1px solid #202020;
    border-radius: 0;
    color: #202020;
    font-size: 12px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    font-family: "oswald_regular", Arial, Helvetica, sans-serif;
    line-height: 16px;
    cursor: pointer;
    margin-top: -84px;
    margin-bottom: 60px;
}

.btn-load-more:hover {
    color: #FFFFFF;
    background-color: #202020;
}

.load-more {
    margin-top: 0;
}

.load-more svg {
    width: 1.75rem;
    height: 0.7em;
    margin-right: 15px;
    display: none;
}

/*
    Search form
*/
.search {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #979797;
    padding-bottom: 10px;
}

.search-news {
    border: none;
    outline: none;
    width: 100%;
}

.searchButton {
    border: none;
    background: transparent;
    cursor: pointer;
}

/*
    News
*/
.news-content-details__content {
    overflow: hidden;
    max-height: 700px; /* assets/js/script.js line 35 */
    transition: max-height 1s ease-in-out 0s;
    -webkit-mask-image: -webkit-gradient(linear, left 70%, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    
}

.news-content-details__content.no-mask {
    -webkit-mask-image: none;
}

.btn-text {
    color: #202020;
    font-weight: 500;
    position: relative;
    text-align: right;
    text-transform: uppercase;
    padding-right: 15px;
    margin: 21px 0;
    cursor: pointer;
}

.news-content-details > div:last-child {
    margin-bottom: 0;
}

.btn-text:hover {
    color: #202020;
}

.btn-text::before  {
    content: '';
    position: absolute;
    right: 20px;
    top: 10px;
    display: block;
    border-right: 1px solid #202020;
    border-bottom: 1px solid #202020;
    width: 5px;
    height: 5px;
    transform: translate(-50%, -50%) rotate(45deg);
}


.btn-text.read-less::before {
    top: 12px;
    transform: translate(-50%, -50%) rotate(225deg);
}


/*
    News files
*/

.newsposts-section .files-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.newsposts-section .news-content-details__file {
    flex: 0 1 47%;
    height: auto;
    position: relative;
    margin-bottom: 6%;
}

.newsposts-section .news-content-details__file::before {
    content: "";
    padding-top: 100%;
    float: left;
}
.newsposts-section .background-img {
    height: 100%;
    width: 100%;
}


.newsposts-section .news-content-details__file .options {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.newsposts-section .news-content-details__file .options .download {
	margin-right: 18px;
}
.newsposts-section .news-content-details__file:hover .options {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.7);
}

.newsposts-section .news-content .video-wrapper {
    padding: 0 40px 40px;
}

.newsposts-section .news-content .news-content-details__video.aspect-ratio {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.5% !important;
}
.newsposts-section .news-content .news-content-details__video.aspect-ratio iframe {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	left: 0;
	top: 0;
}
