/*
	Theme Name: News
	Theme URI: https://www.freepixel.dev/
	Description: The theme for WordPress. 
	Author: Freepixel
	Version: 1.a
*/

/* --- RESET ---------------------------------------------------------------------------------------------------------------------------------------------------------- */

* { 
	border:0; 
	margin:0; 
	padding:0; 
	outline: none; 
	border-collapse: collapse; 
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: transparent;
}

:focus {
	outline:none;
	box-shadow:none;
	border-color:transparent;
}

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td { background: transparent; border: 0; margin: 0; padding: 0; vertical-align: baseline; }

body { line-height: 1; }

h1, h2, h3, h4, h5, h6 { clear: both; font-weight: normal; }

ol, ul {  }

blockquote { quotes: none; }

blockquote:before, blockquote:after { content: ''; content: none; }

del { text-decoration: line-through; }

table { border-collapse: collapse; border-spacing: 0; }

a img { border: none; }

input, textarea{
	-webkit-appearance: none;
	font-family: 'Roboto', sans-serif;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

html,
body { 
	padding:0;
	margin:0;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: normal; 
	font-style: normal; 
	font-size:12px;
	line-height:19px;
	position:relative;
	height:100%; 
	width:100%;
	min-width:330px;
	background: #FFF;
	-webkit-text-size-adjust: 100%;
	text-size-adjust:100%;
	color:#000;
	transition: all 0.5s;
}

html { overflow-x:hidden; }

html.hidden {
	overflow: hidden;
}
.description_row  {
	display: flex;
	justify-content: space-between;
}
.description_row_left  {
	width: 70%;
	margin-right: 5%;
}
.description_row_right  {
	width: max-content;
	flex-shrink: 0;
}
.description_row_right ul {
list-style-type: none;
}
.description_row_right ul li{
	margin-bottom: 7px;
	}
.main {
	width:100%;
	height:100%;
	overflow:hidden;
	transition: all 1s;
}

.main.hides::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	bottom:0px;
	top:0px;
	background:rgba(78,78,78, 0.8);
	z-index:199;
	transition: all 0.5s;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.block {
	clear:both;
	width:100%;
	display:block;
	position:relative;
	text-align:center;
}

.center { 
	clear:both;
	float:none;
	width:100%;
	max-width:1240px;
	min-width:300px;
	padding:0;
	margin:0 auto;
	text-align:left;
	box-sizing: border-box;
	position:relative;
}

.clear {
	clear:both;
	width:100%;
	height:0px;
}

.animate__animated {
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 * 100);
	filter: alpha(opacity=0 * 100);
	animation-timing-function: ease-in;
	-webkit-animation-timing-function: ease-in;
}

.animates { 
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 * 100);
	filter: alpha(opacity=0 * 100);
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.header {
	background: #b17a7a;
    box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
}

.header .cell {
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding:28px 0;
}

.header .logo a {
	display:block;
	width:240px;
	height:80px;
	text-indent:-9999px;
	background:url("images/logo.png") no-repeat center center;
	background-size:100% auto;
}

.header .right {
	display: flex;
    align-items: center;	
}

.header .right .menus ul {
	display: flex;
    align-items: center;
	position:relative;
	margin:0 -12px;
}

.header .right .menus ul li {
	margin:0 12px;
	display:block;
	list-style:none;
}

.header .right .menus ul li a {
	font-size:12px;
	color:#FFF;
	text-decoration:none;
	transition: all 0.5s;
    font-weight: 700;
    text-transform: uppercase;
}

.header .right .menus ul li.current-menu-parent a,
.header .right .menus ul li.current-menu-item a,
.header .right .menus ul li a:hover {
	color: #ee0000;
}

.header .mobile-menu { display:none; }

html.hidden {
	overflow: hidden;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.dropdown {
	position:fixed;
	right:0px;
	top:0px;
	bottom:0px;
	height:100vh;
	width:430px;
	background:#FFF;
	z-index:200;
	display:flex;
	align-items:center;
	box-sizing: border-box;
	padding:70px;
	transition: all 1s;
	right:-460px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.dropdown.active {
	right:0px;
}

.dropdown .menu ul li {
	display:block;
	list-style:none;
	padding:12px 0;
}

.dropdown .menu ul li a {
	font-size:16px;
	line-height:20px;
	color:#282727;
	font-weight:600;
	text-decoration:none;
	transition: all 0.5s;
	position:relative;
}

.dropdown .menu li.current-menu-parent a,
.dropdown .menu li.current-menu-item a {
	color:#ee0000;
}

.dropdown .mobile-menu {
	position:absolute;
	right:40px;
	top:40px;
}

.dropdown .mobile-menu .nav-icon span {
	background:#ee0000;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.pages {
	margin:60px 0 0 0;
}

.twos {
	display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.twos > .left {
	width:calc(100% - 350px - 80px);
}

.twos > .right {
	width:350px;
	position:relative;
}

.twos > .right::before {
	content:'';
	display:block;
	position:absolute;
	left:-40px;
	top:0px;
	bottom:0px;
	width:1px;
	background:#e8e8e8;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.sidebar h2 {
	position:relative;
}

.sidebar h2::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	height:1px;
	background: #e8e8e8;
	top:50%;
	z-index:1;
}

.sidebar h2 span {
	position:relative;
	background:#FFF;
	z-index:2;
	padding:0 30px 0 0;
	color: #1a1a1a;
	font-weight: 700;
    text-transform: uppercase;
	font-size:14px;
}

.sidebar .list .item {
	display: flex;
    justify-content: space-between;
    align-items: center;	
	position:relative;
	margin:30px 0 0 0;
}

.sidebar .list .item .left {
	width:90px;
}

.sidebar .list .item .right {
	width:calc(100% - 90px - 30px);
}

.sidebar .list .item .right::before { display:none; }

.sidebar .list .item .left .thumb {
	width:100%;
	padding-bottom:100%;
	position:relative;
	overflow:hidden;
}

.sidebar .list .item i {
	display:flex;
	position:absolute;
	z-index:2;
	width:30px;
	height:30px;
	justify-content:center;
    align-items: center;
	background: #ee0000;
    color: #ffffff;
	font-size:14px;
	left:-15px;
	top:50%;
	margin:-15px 0 0 0;
	font-style:normal;
}

.sidebar .list .item .left .thumb img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.sidebar .list .item:hover .left .thumb img  {
	transform: scale(1.05);
}

.sidebar .list .item h3 {
	font-size:18px;
	color:#1A1A1A;
	line-height:120%;	
	padding:15px 0 0 0;
}

.sidebar .list .item:hover h3 {
	text-decoration:underline;
}

.sidebar .list .item time {
	display:block;
	padding:15px 0 0 0;
	font-size:12px;
	line-height:100%;
	color:#999;	
}

.sidebar .list .item span.category {
	background: #ffc000;
	color: #000;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
}

.sidebar .list .item span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffc000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.sidebar .list .item a {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:10;
	opacity:0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.last-news {
	padding:40px 0 0 0;
}

.last-news h2 {
	position:relative;
	text-align:center;
	margin:0 0 30px 0;
}

.last-news h2::before {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    height: 1px;
    background: #ffc000;
    top: 50%;
    z-index: 1;
}

.last-news h2 span {
	padding:0 30px;
	font-weight: 700;
    text-transform: uppercase;
	font-size:14px;
	background:#FFF;
	display:inline-block;
	position:relative;
	z-index:2;
}

.last-news .list {
	display:flex;
	flex-wrap: wrap;
	position:relative;
	margin:-15px;
}

.last-news .list .big-item {
	width:calc(50% - 30px);
	margin:15px;
}

.last-news .list .big-item .thumb {
	display:block;
	width:100%;
	padding-bottom:66.66666666666667%;
	position:relative;
	overflow:hidden;	
}

.last-news .list .big-item .thumb::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	background: url("images/last-news-mask.png") no-repeat 100% 0px;
    background-size: 100% 100%;
	z-index:2;
}

.last-news .list .big-item .thumb img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.last-news .list .big-item:hover .thumb img {
	transform: scale(1.05);
}

.last-news .list .big-item .info {
	position:absolute;
	left:30px;
	right:30px;
	bottom:30px;
	z-index:3;
}

.last-news .list .big-item .info span.category {
	background: #ee0000;
	color: #ffffff;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
}

.last-news .list .big-item .info span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ee0000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.last-news .list .big-item h3 {
	display:block;
	font-size:18px;
	color:#FFF;
	line-height:120%;	
	padding:20px 0 0 0;
}

.last-news .list .big-item:hover h3 {
	text-decoration:underline;
}

.last-news .list .big-item time {
	display:block;
	padding:20px 0 0 0;
	font-size:12px;
	line-height:100%;
	color:#FFF;
}

.last-news .list .big-item a {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:10;
	opacity:0;
}

.last-news .list .item {
	width:calc(25% - 30px);
	margin:15px;
	position:relative;
}

.last-news .list .item .thumb {
	display:block;
	width:100%;
	padding-bottom:66.66666666666667%;
	position:relative;
	overflow:hidden;
}

.last-news .list .item .thumb img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.last-news .list .item:hover .thumb img {
	transform: scale(1.05);
}

.last-news .list .item h3 {
	display:block;
	font-size:18px;
	color:#1A1A1A;
	line-height:120%;	
	padding:10px 0 0 0;
}

.last-news .list .item:hover h3 {
	text-decoration:underline;
}

.last-news .list .item time {
	display:block;
	padding:20px 0 0 0;
	font-size:12px;
	line-height:100%;
	color:#999;
}

.last-news .list .item span.category {
	background: #ffc000;
	color: #000;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
	top:-10px;
	z-index:1;
}

.last-news .list .item span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffc000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.last-news .list .item a {
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:10;
	opacity:0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.bigs {
	padding:0 0 60px 0;
}

.bigs .list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.bigs .list .item:nth-child(1) { 
	grid-area: 1 / 1 / 3 / 3; 
	height:720px;
}

.bigs .list .item:nth-child(2) { grid-area: 1 / 3 / 2 / 5; }
.bigs .list .item:nth-child(3) { grid-area: 2 / 3 / 3 / 4; }
.bigs .list .item:nth-child(4) { grid-area: 2 / 4 / 3 / 5; }

.bigs .list .item {
	position:relative;
	height:360px;
}

.bigs .list .item .elem {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;	
	overflow:hidden;
}

.bigs .list .item .elem img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.bigs .list .item:hover .elem img {
	transform: scale(1.05);
}

.bigs .list .item .elem::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	background: url("images/last-news-mask.png") no-repeat 100% 0px;
    background-size: 100% 100%;
	z-index:2;
}

.bigs .list .item .elem .info {
	position:absolute;
	left:30px;
	right:30px;
	bottom:30px;
	z-index:3;
}

.bigs .list .item .elem .info span.category {
	background: #ee0000;
	color: #ffffff;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
}

.bigs .list .item .elem .info span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ee0000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.bigs .list .item .elem .info b {
	display:block;
	font-size:18px;
	color:#FFF;
	line-height:120%;	
	font-weight:normal;
	padding:20px 0 0 0;
}

.bigs .list .item:hover .elem .info b {
	text-decoration:underline;
}

.bigs .list .item .elem .info time {
	display:block;
	padding:20px 0 0 0;
	font-size:12px;
	line-height:100%;
	color:#FFF;
}

.bigs .list .item .elem a {
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:10;
	opacity:0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.slider-wrap {
	position:relative;
	margin:0 -15px;
	padding:0 0 60px 0;
}

.sliders {
	position:relative;
}

.sliders .item {
	margin:0 15px;
	position:relative;
}

.sliders .item .thumb {
	display:block;
	width:100%;
	padding-bottom:66.66666666666667%;
	position:relative;
	overflow:hidden;
}

.sliders .item .thumb img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.sliders .item:hover .thumb img {
	transform: scale(1.05);
}

.sliders .item b {
	display:block;
	font-size:18px;
	color:#1A1A1A;
	line-height:120%;	
	padding:10px 0 0 0;
	font-weight:normal;
}

.sliders .item:hover b {
	text-decoration:underline;
}

.sliders .item time {
	display:block;
	padding:20px 0 0 0;
	font-size:12px;
	line-height:100%;
	color:#999;
}

.sliders .item span.category {
	background: #ee0000;
	color: #ffffff;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
	top:-10px;
	z-index:1;
}

.sliders .item span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ee0000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.sliders .item a {
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:10;
	opacity:0;
}

.sliders .slick-arrow {
	display:block;
	width:50px;
	height:50px;
	position:absolute;
	top:75px;
	text-indent:-9999px;
	border:1px solid #e8e8e8;
	z-index:5;
	transition: all 0.5s;
	cursor:pointer;
	background:#e8e8e8;
}

.sliders .slick-arrow:hover {
	border:1px solid #ee0000;
	background:#FFF;
}

.sliders .slick-arrow::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	background:url("images/arrow.svg") no-repeat center center;
	transition: all 0.5s;
}

.sliders .slick-arrow:hover::before {
	background:url("images/arrow-hover.svg") no-repeat center center;
}

.sliders .slick-arrow.slick-prev {
	left:-12px;
	transform: rotate(180deg);	
}

.sliders .slick-arrow.slick-next {
	right:-12px;	
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

#loadmore {
	padding:40px 0 0 0;
}

#loadmore a {
	height: 50px;
    text-align: center;
    display: flex;
    color: #ffffff;
    background: #151515;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    position: relative;
	height: 50px;
	text-align: center;	
}

#loadmore a:hover {
	background:#2f2f2f;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.searchbox-button {
	margin-left:25px;
}

.searchbox-button a {
	display:block;
	width:24px;
	height:24px;
	background:url("images/search-ico.svg") no-repeat center center;
}

.searchbox-block {
	padding:30px 0;
	display:none;
}

.searchbox-block form {
	display:flex;
	align-items: center;
}

.searchbox-block label {
	font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
	color:#222;
}

.searchbox-block input[type="text"] {
	width:100%;
	padding:10px 15px;
	color:#000;
	text-transform: uppercase;
    font-size: 14px;
	margin:0 20px;
	border:1px solid #e8e8e8;
}

.searchbox-block input[type="submit"] {
	padding:10px 30px;
	background: #ee0000;
    color: #ffffff;
	text-transform: uppercase;
    font-size: 14px;
}

.scrolltop {
	position:fixed;
	width:50px;
	height:50px;
	right:30px;
	bottom:-100px;
	transition: all 0.5s;
	background:#000 url("images/arrow-white.svg") no-repeat center center;
	transform: rotate(-90deg);	
	z-index:15;
}

.scrolltop.show {
	bottom:30px;
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.any-news {
	padding:60px 0 0 0;
}

.any-news .cell {
	display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.any-news .cell > .left {
	width:calc(100% - 350px - 80px);
}

.any-news .cell > .right {
	width:350px;
	position:relative;
}

.any-news .cell > .right::before {
	content:'';
	display:block;
	position:absolute;
	left:-40px;
	top:0px;
	bottom:0px;
	width:1px;
	background:#e8e8e8;
}

.any-news h2 {
	position:relative;
	margin:0 0 40px 0;
}

.any-news h2::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	height:1px;
	background: #ffc000;
	top:50%;
	z-index:1;
}

.any-news h2 span {
	position:relative;
	background:#FFF;
	z-index:2;
	padding:0 30px 0 0;
	color: #1a1a1a;
	font-weight: 700;
    text-transform: uppercase;
	font-size:14px;
}

.any-news .list .elem {
	margin:40px 0;
	border-top:1px solid #e8e8e8;
	display:flex;
	justify-content: space-between;
	position:relative;
}

.any-news .list .elem:first-child { margin:0; }

.any-news .list .elem .pic {
	width:254px;
}

.any-news .list .elem  .thumb {
	position:relative;
	display:block;
	width:100%;
	padding-bottom:66.92913385826772%;
	overflow:hidden;
}

.any-news .list .elem .thumb img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.any-news .list .elem:hover .thumb img {
	transform: scale(1.05);
}

.any-news .list .elem .info {
	width:calc(100% - 254px);
	padding:30px 0 0 30px;
	box-sizing: border-box;
}

.any-news .list .elem h3 {
	display:block;
	font-size:18px;
	color:#1A1A1A;
	line-height:120%;	
	padding:10px 0 0 0;
}

.any-news .list .elem:hover h3 {
	text-decoration:underline;
}

.any-news .list .elem time {
	display:block;
	padding:20px 0 0 0;
	font-size:12px;
	line-height:100%;
	color:#999;
}

.any-news .list .elem span.category {
	color: #ee0000;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	z-index:1;
}

.any-news .list .elem .excerpt {
	font-size:16px;
	line-height:135%;
	color:#555;	
	padding:15px 0 0 0;
}

.any-news .list .elem a {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:5;
	opacity:0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.single-news time {
	display:block;
	padding:0 0 20px 0;
	font-size:12px;
	line-height:100%;
	color:#999;
}

.single-news h1 {
	display:block;
	padding:0 0 20px 0;
	font-size:36px;
	color:#1A1A1A;
	line-height:120%;	
}

.single-news h1 a {
	color:#1A1A1A;
	text-decoration:none;
}

.single-news .content img {
	max-width:100%!important;
	height:auto!important;
}

.single-news .thumbnail img {
	width:100%;
	height:auto;
	border:none;
	vertical-align:bottom;
	padding:0 0 20px 0;
}

.single-news .content {
	font-size:16px;
	line-height:135%;
	color:#555;
	position:relative;
	margin:-10px 0;
}

.single-news .content .quote {
	padding:15px;
	background:#EEE8AA;
	margin:0 0 10px 0;
}

.single-news .content p {
	padding:10px 0;
}

.single-news .content a {
	color: #ee0000;
	text-decoration:none;
}

.single-news .content a:hover {
	text-decoration:underline;
}

.next-prev {
	position:relative;
	margin:40px 0 0 0;
	padding:40px 0 0 0;
	display:flex;
	justify-content: space-between;
}

.next-prev::before {
	content:'';
	display:block;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	height:1px;
	background:#e8e8e8;
}

.next-prev a {
	width:calc(50% - 10px);
	display:block;
	height:50px;
	text-align:center;
	display:flex;
	color: #ffffff;
	background:#151515;
	text-decoration:none;
	justify-content: center;
    align-items: center;
	transition: all 0.5s;
	position:relative;
}

.next-prev span {
	width:calc(50% - 10px);
	display:block;
	height:50px;
	text-align:center;
	display:flex;
	color: #ffffff;
	background:#676767;
	text-decoration:none;
	justify-content: center;
    align-items: center;
	transition: all 0.5s;
	position:relative;	
}

.next-prev a:hover {
	background:#2f2f2f;
}

.next-prev a i {
	position:absolute;
	left:0px;
	right:0px;
	bottom:calc(100% + 15px);
	background:#000;
	color:#FFF;
	font-size:11px;
	line-height:135%;
	padding:7px 7px;
	font-style:normal;
	opacity:0;
	z-index:-1;
	bottom:100%;
	transition: all 0.3s;
}

.next-prev a i::before {
	content:'';
	position:absolute;
	left:calc(50% - 3px);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #000;
	bottom:-6px;
}

.next-prev a:hover i {
	z-index:2;
	opacity:1;
	bottom:calc(100% + 15px);
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.archive h1 {
	display:block;
	padding:0 0 40px 0;
	border-bottom:1px solid #e8e8e8;
	margin:0 0 40px 0;
	font-size:36px;
	color:#1A1A1A;
	line-height:100%;	
}

.list-news .item {
	margin:40px 0 0 0;
}

.list-news .item:first-child { margin:0; }

.list-news .item time {
	display:block;
	padding:0 0 20px 0;
	font-size:12px;
	line-height:100%;
	color:#999;	
}

.list-news .item h2 {
	font-size:24px;
	color:#1A1A1A;
	line-height:120%;	
	padding:0 0 20px 0;
}

.list-news .item h2 a {
	color:#1A1A1A;
	text-decoration:none;
}

.list-news .item h2 a:hover {
	text-decoration:underline;
}

.list-news .item .excerpt {
	font-size:16px;
	line-height:135%;
	color:#555;	
}

.list-news .item span.category {
	display:none;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.list-nonews .two {
	display:flex;
	justify-content: space-between;
    align-items: stretch;
	position:relative;
}

.list-nonews .two .left {
	width:520px;
}

.list-nonews .two .right {
	width:calc(100% - 520px - 30px);
}

.list-nonews .two .left .thumb {
	display:block;
	width:100%;
	padding-bottom:66.92307692307692%;
	position:relative;
	overflow:hidden;
}

.list-nonews .two .left .thumb img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;	
}

.list-nonews .two:hover .left .thumb img {
	transform: scale(1.05);
}

.list-nonews .two h2 {
	font-size:24px;
	color:#1A1A1A;
	line-height:120%;	
	padding:0 0 15px 0;
}

.list-nonews .two:hover h2 {
	text-decoration:underline;
}

.list-nonews .two time {
	display:block;
	padding:15px 0 20px 0;
	font-size:12px;
	line-height:100%;
	color:#999;	
}

.list-nonews .two span.category {
	background: #ffc000;
	color: #000;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
}

.list-nonews .two span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffc000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.list-nonews .two .excerpt {
	font-size:16px;
	line-height:135%;
	color:#555;	
}

.list-nonews .item {
	position:relative;
	width:100%;
	padding-bottom:73.22335025380711%;
	overflow:hidden;
	margin:40px 0 0 0;
}

.list-nonews .item img {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
	z-index:1;
}

.list-nonews .item:hover img {
	transform: scale(1.05);
}

.list-nonews .item .info {
	position:absolute;
	left:0px;
	right:0px;
	bottom:0px;
	background: rgba(0,0,0,0.5);
	box-sizing: border-box;
	padding:30px;
	z-index:2;
}

.list-nonews .two a,
.list-nonews .item a {
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:10;
	opacity:0;
}

.list-nonews .item time {
	margin:0 0 0 15px;
	font-size:12px;
	line-height:100%;
	color:#FFF;		
}

.list-nonews .item h2 {
	font-size:24px;
	color:#FFF;
	line-height:120%;	
	padding:20px 0 15px 0;
}

.list-nonews .item:hover h2 {
	text-decoration:underline;
}

.list-nonews .item .excerpt {
	font-size:16px;
	line-height:135%;
	color:#FFF;	
}

.list-nonews .item span.category {
	background: #ffc000;
	color: #000;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 400;
	text-transform: uppercase;
	position:relative;
}

.list-nonews .item span.category::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffc000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer {
    box-shadow: 10px 10px 3px 10px rgb(0 0 0 / 5%);
	background: #1a1a1a;
	padding:40px 0;
	margin:60px 0 0 0;
	color:#555;
}

.footer .description {
	position:relative;
	margin:-10px 0;
}

.footer .description p {
	padding:10px 0;
}

.footer .description a {
	border-bottom: 1px dotted #555555;
	color:#555;
	text-decoration:none;
}

.footer .description a:hover {
	border-bottom: 1px solid #555555;
}
body > div.block.pages > div > div > div.left > div > article > div.content > p:nth-child(2) > img {
	display: none;
	}