

*{
	box-sizing: border-box;
}

body{
	margin:0;
	font-family: Arial, Helvetica, sans-serif;

}

.header{
	overflow: hidden;
	background-color: #3C4E58;
	padding: 20px 10px;
}

.header a{
	float: left;
	color:#fff;
	text-align: center;
	padding: 12px;
	text-decoration: none;
	font-size: 18px;
	line-height: 25px;
	border-radius: 4px;

}

.header a.logo{
	font-size: 25px;
	font-weight: bold;
}

.header a:hover{
	background-color: #ddd;
	color:black;
}

.header a.active {
  background-color: green;
  color: white;
}

.header-right {
  float: right;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}
.container{
	width: 100%;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding-top: 3%;
}

.row{
	width: 80%;
	max-width: 1170px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px 30px;

}
.row .left{
	overflow: hidden;
}
.row .left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.row .right{
	display: flex;
	align-items: center;
}
.row .right .content{
	padding-left: 20px;
}
.row .right .content p{
	font-size: 20px;
	line-height: 26px;
	padding-bottom: 15px;
}
@media (max-width: 991px){
	.row .right .content{
		padding-left: 0;
	}
}
@media(max-width: 768px){
	.row{
		width: 90%;
		grid-template-columns:1fr;
	}
}
/*.container{
	display: flex;
	align-items: center;
	justify-content: center;
}

img{
	max-width: 100%;
	max-height: 100%;
}

.text{
	font-size: 20px;
	padding-left: 20px;
}

.slide_row{
	padding: 40px 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.photo_newspaper{
	padding:25px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: block;
	margin-bottom: 1px;
}

.photo_newspaper p{
	text-decoration: none;
	color: #000;
	font-size: 18px;
	font-style: italic;
}
hr.dashed{
	border-top: 1px dashed #000;
	text-decoration: none;

}
/*.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 50%;
}
.cursor {
  cursor: pointer;
}
img {
  margin-bottom: -4px;
  
}
img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
*/
/*.footer {
  background-color: #3C4E58;
  text-align: center;
  font-size: 18px;
  padding: 15px;
}

.footer a{
	color: #fff;
	text-decoration: none;

}

.footer{
	display: flex;   
   background-color: #3C4E58;
	padding: 20px 10px;
}

.footer a{
	text-align: center;
	text-decoration: none;
	color: #000;
	font-size: 18px;
	left: 0;
  	bottom: 0;
  	width: 100%;
}
/*.slide_column{
	margin:10px;
	cursor: pointer;
}
.slide_column img{
	position: relative;
	flex:0 0 240px;
	width: 640px;
	height: 720px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow:
    	rgba(black, 0.66) 0 30px 60px 0,
    	inset #333 0 0 0 5px,
    	inset rgba(white, 0.5) 0 0 0 6px;
}
.slide_row > .slide_column {
  padding: 5em 2em;
}
.slide_row:after {
  content: "";
  display: table;
  clear: both;
}

.slide_column {
  float: left;
  width: 25%;
}