@font-face{
	font-family: 'Roboto';
	src: url(Roboto.ttf);
}

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: Roboto;
	color: #555;
}

.cont {
	margin: 0px auto;
	padding-left: 1%;
	padding-right: 1%;
	max-width: 1400px;
	width: 100%;
}

img {
	max-width: 100%;
	opacity: 0; 
	/* Начальное состояние - скрыто */
	transition: opacity 1.5s ease-in-out;
	/* Плавное появление */
}

img.loaded {
	opacity: 1; 
	/* Показываем изображение */
}

img.fade {
	display: block;
	opacity: 1;
	width: 60%;
	margin: 0 auto;
	padding-top: 3em;
}




a {
	text-decoration: none;
	text-transform: uppercase;
	color: #555;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}

li {
	list-style-type: none;
}

.tire {
	list-style-type: circle;
}

a:hover {
	color: #F00;
}



p, .label, .input-field {
	color: #777;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.2;
	width: 90%;

}




h1 {
	text-transform: uppercase;
	color: #f00;
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 64px;
	letter-spacing: -2px;
	word-spacing: 0.1em;
}



h2, .send h2 {
	text-transform: uppercase;
	color: #444;
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: 32px;
	
}

.ar_h2 {
	text-transform: uppercase;
	color: #f00;
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	
}

h3 {
	text-transform: uppercase;
	color: #555;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 22px;
}		


/* отступы сайта */


.verh8 {
	padding-top: 8em;
}

.verh6 {
	padding-top: 6em;
}

.verh4 {
	padding-top: 4em;
}

.verh2 {
	padding-top: 2em;
}

.verh1 {
	padding-top: 1em;
}

.verh0 {
	padding-top: 0px;
}

.niz08 {
	padding-bottom: 8em;
}

.niz06 {
	padding-bottom: 6em;
}

.niz04 {
	padding-bottom: 4em;
}

.niz02 {
	padding-bottom: 2em;
}

.niz01 {
	padding-bottom: 1em;
}


.niz4 {
	margin-bottom: 4em;
}

.niz2 {
	margin-bottom: 3em;
}

.niz1  {
	margin-bottom: 1em;
}

.r1 {
	margin-right: 1em;
}

.r2 {
	margin-right: 4em;
}

.l1 {
	padding-left: 1em;
}

.red2 {
	color: #FF3434;
	display: inline;
	font-weight: 300;
}

.ser {
	color: #555;
}

.red_2 {
	color: #f00;
}

.cherta {
	border-bottom: 1px solid #555;
}


/* меню */

.menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: left 0.3s ease;
}
.menu.active {
	left: 0;	
}
.menu a {
	color: #555;
	text-decoration: none;
	font-size: 36px;
	margin: 1vh 0;
	font-weight: 400;
}

.menu a:hover {
	color: #F00;
}	

.burger {
	/*position: fixed;*/
	width: 28px;
	height: 20px;
	cursor: pointer;
}
.burger div {
	width: 100%;
	height: 2px;
	background-color: #555;
	margin: 6px 0;
	transition: all 0.3s ease;
}
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	font-size: 40px;
	color: #555;
}

/* КНОПКА */

.knopka a, .zak_button {
	display: block;
	width: 180px;
	text-align: center;
	padding: 12px 22px;
	border: 1px solid #555;
	font-size: 16px;
}

.knopka a:hover, .zak_button {
	border: 1px solid #f00;
}

/* MODAL OKNO */

.modal {
	display: none; /* Скрыто по умолчанию */
	position: fixed; /* Окно фиксируется относительно окна браузера */
	z-index: 1; /* На переднем плане */
	left: 0;
	top: 0;
	width: 100%; /* Полная ширина */
	height: 100%; /* Полная высота */
	overflow: auto; /* Прокрутка, если нужно */
	/*background-color: rgb(0,0,0); *//* Черный фон */
	background-color: rgba(100,100,100,0.4); /* Полупрозрачный черный фон */
}

.modal-content {
	background-color: #fefefe;
	margin: 10% auto; /* 15% сверху и одинаковые отступы слева и справа */
	padding: 2em;
	padding-bottom: 7em;
	max-width: 400px;
	width: 85%; /* Ширина модального окна */
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.modal-content p {
	color: #555;
	font-family: Roboto;
	font-size: 1.5em;
	font-style: normal;
	font-weight: 500;
	line-height: 1.3;
}

.mod_label {
	color: #333;
	font-family: Roboto;
	font-size: 1em;
	font-style: normal;
	line-height: 1.3;
	font-weight: 300;
}

.mod_label, .mod_input {
	display: block;
	margin-bottom: 0.6em;
}


.mod_input {
	border: 0;
	border-bottom: 1px solid #555;
	outline: none;
	width: 100%;
	color: #777;
	font-family: Roboto;
	font-size: 1em;
	font-style: normal;
	font-weight: 300;
	line-height: 1.3;
}

.p-top {
	padding-top: 1em;
}

.m-bot {
	margin-bottom: 2em;
}

input[type="checkbox"] {
	transform: scale(1.3);

}

.mod_a {
	display: inline-block;
	padding-left: 1.5em;
	margin-top: -30px;
}



.mod_button {
	display: block;
	margin-top: 1em;
	float: right;
	padding: 12px 24px;
	width: 200px;
	color: #f00;
	font-family: Roboto;
	font-size: 1em;
	font-style: normal;
	font-weight: 300;
	line-height: 1.3;
	background-color: #fff;
	border: 1px solid #f00;
	cursor: pointer;

}

.mod_button1 {
	display: block;
	padding: 12px 24px;
	width: 200px;
	color: #F00;
	font-family: Roboto;
	font-size: 1em;
	font-style: normal;
	font-weight: 300;
	line-height: 1.3;
	background-color: #fff;
	border: 1px solid #F00;
	cursor: pointer;
}

.mod_button:hover, .mod_button1:hover {
	border: 1px solid #FF5C5C;
	color: #FF5C5C;
}

.close {
	color: #555;
	float: right; /* По правому краю */
	font-size: 3px;
	font-weight: normal;
}

.close:hover,
.close:focus {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}




/* ПОДРОБНЕЕ */

.podrobnee a {
	/*text-decoration: underline;*/
	font-size: 22px;
	color: #f00;
}

.podrobnee a:hover {
	color: #FF5C5C;
}


/* niznyaya forma */

.forma_niz1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.forma_niz2, .forma_niz3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.forma_niz002 {
	align-self: end;
}


.forma_niz002 img {
	width: 50%;
	
}

.forma_niz3 {
	gap: 30px;
}

.forma_niz03 label, .forma_niz03 input,
.forma_niz4 label, .forma_niz4 textarea,
.forma_niz5 label {
	display: block;
}

.forma_niz03 label, .forma_niz4 label, 
.forma_niz6 label {
	color: #555;
	font-family: Roboto;
	font-size: 1em;
	font-style: normal;
	font-weight: 300;
	line-height: 1.3;
	padding-bottom: 0.5em;
}

.forma_niz03 input, .forma_niz4 textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #555;
	outline: none;
}

.forma_niz5 {
	border-bottom: 1px solid #555;
	padding-left: 0.5em;
}

.forma_niz6  {
	padding-top: 4em;
}


/* ОТПРАВКА ПИСЬМА */

.send {
	background-image: url(../ris/as350.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: 30%;
}	

/* АККОРДЕОН*/

.accordion {
	margin: 20px auto;
	/*border-bottom: 1px solid #555;*/

}

.accordion-item {
	border-bottom: 1px solid #555;
}

.accordion-header {
	padding: 15px 0px;
	cursor: pointer;
	background-color: #fff;

}

.accordion-header h3 {
	color: #333;
}

.accordion-header h3:hover {
	color: #F00
}

.accordion-header:visited {
	color: #ff7070;
}

.accordion-content {
	display: none;
	padding: 15px;
	background-color: #fff;
}

.accordion-content p {
	padding-top: 0.7em;
}

.active1 {
	display: block;
}

/*BLOCK PASSAGIRAM*/




/*   KNOPKA NA VERH   */

.scroll-to-top {
	position: fixed;
	bottom: 40px;
	right: 20px;
	width: 40px; /* Увеличил размер для лучшей доступности */
	height: 40px; /* Увеличил размер для лучшей доступности */
	background-color: 
	rgba(255, 255, 255, 0.5);
	color: #777;
	border: 1px solid#999;
	border-radius: 10px;
	cursor: pointer;
	font-size: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.scroll-to-top::before {
	content: '↑';
	font-size: 18px; /* Увеличил размер стрелки */
}

/*.header {
	border-bottom: 1px solid #555;
}*/
.shapka {
	display: grid;
	grid-template-columns: 1fr 2.3fr 2.2fr 0.5fr;
	align-items: center;
	/*border-bottom: 1px solid #555;*/
	border-bottom: 1px solid #555;
}

.shapka2 {
	justify-self: end;
	align-items: center;
}

.phone-link {
	display: flex;
	align-items: center; /* Выравнивание по вертикали */
	gap: 8px; /* Расстояние между иконкой и текстом */
}

.phone-link img {
	width: 20px; /* Задайте нужный размер иконки */
	height: 20px;
}

.shapka4 {
	justify-self: end;
	align-items: end;
}

.shapka4 a img {
	padding-top: 0.5em;
}

.shapka3 {
	justify-self: end;
}

.header_h1 h1 {
	text-transform: uppercase;
	color: #444;
	font-family: Roboto;
	font-size: 96px;
	font-style: normal;
	font-weight: 500;
	line-height: 96px;
	letter-spacing: -3px;
}


/* FOOTER */

.foot3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	font-size: 12px;
}

.foot03{
	text-align: left;
}

.foot003{
	text-align: right;
}

.foot003 a {
	text-transform: none;
	font-size: 12px;
}

.footer1 {
	display: grid;
	grid-template-columns: 1fr 5fr;
}

.footer010 {
	text-align: left;
}

.footer01 {
	display: flex;
	justify-content: space-between;
}

.footer02 ul li a, .footer020 ul li a {
	font-size: 0.7em;
} 

.footer020 ul li {
	text-align: right;
}

/*   АРЕНДА    */

.arenda5 {
	border-bottom: 1px solid #555;
}

.arenda01, .ar1 {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 40px;
}

.red1 {
	display: block;
}

.arenda02, .arenda03, .marsh, .arenda5 {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 40px;
	border-bottom: 1px solid #555;
}



.arenda004 {
	width: 280px;
}

.arenda004 a h1:hover{
	color: #f00;
}


.marsh01 {
	align-self: center;
}

.marsh02 {
	justify-self: end;
}

.arenda0005, .ar002, .komp002, 
.komp003, .auc002 {
	align-self: end;
}

.arenda005, .to002, .baza003 {
	justify-self: end;
	align-self: end;

}

.arenda05 img {

	max-width: 500px;
	width: 100%;
}

.arenda005 img {
	max-width: 500px;
	width: 100%;
}


/* aviaraboti */

.avia_rab {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.avia_rab01 h2 {
	text-indent: -50%;
}

.avia_rab1 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.avia_rab1_03 img, .avia_rab1_02 img {
	max-width: 250px;
	width: 100%;
}

.avia_rab1_03 {
	position: relative; /* Устанавливаем родительский контейнер как относительный */
}

.avia_rab1_03 img {
	position: absolute; /* Абсолютное позиционирование внутри родителя */
	bottom: 0; /* Прижимаем изображение к нижней части блока */
	right: 0; /* Прижимаем изображение к правой части блока */
}

.avia_rab2_01 {
	display: grid;
	grid-template-columns: 1fr 3fr;
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
}

.avia_rab2_03 {
	display: grid;
	grid-template-columns: 1fr 3fr;
	border-bottom: 1px solid #777;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
}

.avia_rab2_01 img {
	position: absolute;
	top: -50px;
	left: 85%;
	transform: translateX(-50%) scale(0.95);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1;
	max-width: 250px;
	width: 100%;
}

.avia_rab2_01:hover img {
	opacity: 1;
	visibility: visible;
	top: -50px;
	transform: translateX(-50%) scale(1);
}

.avia_rab2_03 img {
	position: absolute;
	top: -50px;
	left: 85%;
	transform: translateX(-50%) scale(0.95);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1;
	max-width: 250px;
	width: 100%;
}

.avia_rab2_03:hover img {
	opacity: 1;
	visibility: visible;
	top: -50px;
	transform: translateX(-50%) scale(1);
}

.avia_rab2_02 h3 {
	transition: color 0.3s ease;
}

.avia_rab2_01:hover .avia_rab2_02 h3,
.avia_rab2_03:hover .avia_rab2_02 h3 {
	color: #F00; /* Красный цвет при наведении */
}

.ar2 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	border-bottom: 1px solid #555;
}

.tx_center {
	text-align: center;
}

.avia_rab3 {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
}

.avia_rab3_012 {
	align-self: end;
}

.avia_rab4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.avia_rab4_01 h3, .avia_rab4_011 h3 {
	color: #333;
	font-weight: 400;
	width: 80%;
}

.avia_rab4_01 img {
	justify-self: end;
}

.avia_rab4_011 {
	align-self: end;
}

.avia_rab5 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	place-items: center;
}

.avia_rab5_01 a img {
	max-width: 120px;
	width: 100%;
}

.avia_rab5_01 a:hover {
	opacity: 0.5;
	transition: opacity 0.4s ease;
}

.to1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.to001, .komp0002 {
	justify-self: end;
}

.to2 {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 40px;
	border-bottom: 1px solid #555;
}

.to002 img {
	padding-left: 20%;
}

/* bazirovanie */


.baza1 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
} 

.baza2 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

.baza3 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.baza4, .komp3, .obratka {
	border-bottom: 1px solid #555;
}

/* kompaniya */

.komp1, .auc1 {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 40px;
}

.komp2 {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 40px;
}

.komp3, .auc2 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.komp-block0020 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.auc02 img {
	width: 100%;
}

.licenzii {
	display: grid;
	grid-template-columns: 1fr 3fr;
}




.lic-block01, .lic-block010 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.lic-block02 a h3:hover {
	color: #f00;
}

.comp1 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);

}

.comp01 {
	width: 90%;
}

.comp2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid #555;
}



/* obratka */

.p_obr {
	
	width: 80%;
}

.obratka, .ob_n {
	display: grid;
	grid-template-columns: 1fr 1fr;
	
}



.obratka01 {
	width: 60%;
	align-self: end;
}

.obratka001 {
	order: -1;
}


/*srtanica ARENDA*/

.arenda-1 {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.arenda-01 h2 {
	text-indent: 33.3%;
	text-align: justify;
}

.arenda-3 {
	border-bottom: 1px solid #555;
}

.arenda-3 h2, .arenda-7 h2 {
	text-indent: 50%;
	text-align: justify;
}

.arenda-2 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
}

.arenda-4, .arenda-5 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.arenda-04 h2, .arenda-5 h2 {
	text-decoration: underline;
}

.arenda-004 {
	text-align: right;
}

.arenda-004 img {
	width: 50%;
}
/* str AVIARAB */

.aviar1 {
	display: grid;
	grid-template-columns: 1fr 3fr;
	
}

.aviar02 {
	display: grid;
	grid-template-columns: 4fr 1fr;
}

.aviar_002 {
	justify-self: end;
}

.avia_ar002 {
	align-self: end;
}

.aviar_02 h2 {
	text-transform: uppercase;
	color: #444;
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	
}

.avia_ar2 {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.aviar0002-link {
	display: block; /* Делаем ссылку блочным элементом */
	text-decoration: none; /* Убираем стандартное подчеркивание */
	color: inherit; /* Наследуем цвет текста от родителя */
	
}

.aviar0002 {
	display: grid;
	padding-top: 1.5em;
	grid-template-columns: 1fr 7fr;
	border-bottom: 1px solid #fff;
	transition: all 0.3s ease; /* Добавляем плавный переход */
}

.aviar0002 h2 {
	text-transform: uppercase;
	color: #444;
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: 32px;
	
}

/* Эффекты при наведении на всю ссылку */
.aviar0002-link:hover .aviar0002 {
	border-bottom-color: red;
}

.aviar0002-link:hover .aviar0002 h2 {
	color: red;
}

.aviar3, .aviar4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	
}

.aviar003 {
	align-self: end;
}

.aviar3 img {
	margin: 0 auto;
	width: 250px;
	padding-top: 1em;
}

.aviar003 img {
	width: 85%;
}

.aviar5 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.aviar6 {

}


/*plochatka*/

.bazaBlock1, .komp-block1 {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.bazaBlock2 {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
}

.bazaBlock02 img, .bazaBlock004 img,
.servis-bl03 img, .komp-block02 img, 
.obratka001 img, .komp-block041 img {
	width: 75%;
}

.bazaBlock4 {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
}

.bazaBlock004, .servis-bl03 {
	justify-self: end;
	text-align: right;
}

.pass {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

/*SERVIS in TO*/

.servis-block3 {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
}


/*KOMPANIYA*/


.komp-block2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid #555;

}

.komp-bl05 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}





.komp-block4, .komp-block04 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.komp-block05 {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
}

.komp-bl051 {
	justify-self: end;
	text-align: right;
}

.komp03 img {
	max-width: 450px;
}


.komp-block031 img {
	max-width: 30%;
}

.komp-bl051 img {
	max-width: 50%;
}

/*KONTAKTI*/

.kont_head1 h2 {
	text-indent: 25%;
}

.kont_vl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid #555;
}

.kont_vl02, .kont-shema {
	display: grid;
	grid-template-columns: repeat(2, 1fr);

}

.kont-vl002 p, .kont-vl003 p,
.kont-shema1 p {
	text-transform: uppercase;
}

.kont-vl003 p, .kont-vl003 p a {
	font-weight: 500;
	color: #333;
}

.kont-vl003 p a:hover {
	color: #f00;
}

/* OBRABOTKA PERSONALNIH DANNIH */

.opd {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

/* ohrana_truda */

.head_ohr {
	display: grid;
	grid-template-columns: 1fr 3fr;
}



.head_ohr1 p {
	width: 100%;
}

.head_ohr1 img {
	width: 50%;
}

.ohrana1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.ohrana01 a {
	display: block;
	font-size: 18px;
	padding-top: 0.75em;
	padding-bottom: 0.25em;
	border-bottom: 1px solid #555;
}

.ohrana01 a:hover {
	border-bottom: 1px solid #f00;
}



/*НОВОСТИ*/

.news1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	position: relative;
}

.news01_1 {
	min-height: 320px;
	position: relative;
}

.news01_1 img {
	width: 90%;
	height: 100%;
	object-fit: cover;
	display: block;
	text-align: center;

}

.news-card--large, .card-content {
	width: 90%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
	color: #fff;
}

.card-content h3 {
	color: #fff;
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: 400;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7em;
	color: #333;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.2s ease;
}

.read-more:hover {
	color: #FF0000;
}

.news01 {
	display: grid;
	grid-template-rows: 1f 1fr;
}

.news01 a {
	color: #555;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7rem;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.2s ease;
}

.news01 a:hover {
	color: #FF0000;
}

.news001 {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 40px;
}


.news001 h3 {
	font-weight: 400;
	color: #333;
	line-height: 20px;
}

.news001 img {
	width: 100%;
	height: 70%;
	object-fit: cover;
	display: block;
	text-align: center;
}

.dr_news {
	border-bottom: 1px solid #555;
	text-align: center;
	
}