@charset "UTF-8";
 

* {
  box-sizing: border-box;
}
a{
    	text-decoration: none;
}
header {
	width: 100%;
}
.logo {
	font-family:'Cormorant Garamond', serif;
	color: #361029;
	font-weight: bold;
	font-size: 1.35em;
	margin-top: 1.33em;
	margin-bottom: 1.33em;
	padding-bottom: 1.2em;
	letter-spacing: 8px;
}
.top-nav {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #dfd1d1;
  font-weight: 500;
	letter-spacing: 3px;
	font-size: 0.76em;
  height: 10em;
  padding: 0em 0em 2em 0em;
  border-bottom: 2px solid #FFFFFF;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding-top: 0px;
}
ul{
	padding-left: 0;
}
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px; 
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #361029;
  position: absolute;
  height: 2px;
  width:  28px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
}

@media (max-width: 500px) {	
	.top-nav {
 	flex-direction: row;
	padding: 1em; 
	}
	
	.menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 60px; /*raksin näkyminen ja toimiminen*/
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border-bottom: 0; 
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
	/*aukeavan ikkunan alkioden ominaisuudet*/
  #menu-toggle:checked ~ .menu li {
    /*border-bottom: 3px solid #FFFFFF;*/
    height: 3.5em; /*aukeavan ikkunen linkkien korkeusväli */
    padding:  1em 0em 3em 0em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0em 0;
    width: 100%;
    color: #361029;
    background-color: #F1EDEA;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid;
  }
}
/* Body */
body {
	font-family: 'Montserrat', sans-serif;
	background-color: #FFFFFF;
	margin: 0px;
	font-weight: 500;
}
/* Container */
.container {
	width: 100%; /*ei sivureunoja */
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	background-color: #F1EDEA;
}
nav {
	float: center;
	width: 65%; /*navibarin sijainti */
	/*text-align:  center; 
	/*overflow: hidden;
	position: fixed; */
}

nav ul li {
	float: left; /*navigoinnin nimien järjestys vas-->oikea*/
	color: #FFFFFF;
	font-size: 16px;
	text-align: left;
	margin-left: 25px;
	letter-spacing: 2px;
	padding-left: 45px;
	font-weight: bold;
	transition: all 0.3s linear; 
	
} 
ul li a {
	color: #361029; /*#361029; */
	text-decoration: none;
}
ul li:hover a {
	color: #B6899E;
}
/*InfoBanner{
	background-color: #D5D3D3;
	background-image: url("TietoaMeistäBanner.jpg");
	height: 400px;
	width: 100%;
	background-attachment: scroll;
	background-size: cover;
	background-repeat: no-repeat;
}*/
.InfoBanner_2{
	background-color: #D5D3D3;
	background-image: url("JournalBanner.jpg");
	height: 400px;
	width: 100%;
	background-attachment: scroll;
	background-size: cover;
	background-repeat: no-repeat;
}
/*.InfoBanner_22{
	background-color: #D5D3D3;
	background-image: url("JournalBanner23.jpg");
	height: 670px;
	width: 100%;
	background-attachment: scroll;
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	border-top: 4px solid #dfd1d1;
}*/
/* Hero section */
.hero_header {
	font-family: 'Cormorant Garamond', serif;
	color: #FFFFFF;
	text-align: center;
	font-size: 65px;
	padding-top: 100px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 5px;
}
.hero_header_2 {
	font-family: 'Cormorant Garamond', serif;
	color: #FFFFFF;
	text-align: center;
	font-size: 60px;
	padding-top: 155px;
	margin: 0px;
	letter-spacing: 4px;
}
.hero {
	background-color: #E3DCD6;
	padding-top: 0px;
	padding-bottom: 0px;
	height: 500px;
}
.light {
	font-weight: lighter;
	color: #FFFFFF;
}
.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: -10px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.tagline_2 {
	text-align: center;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*Blog Section*/
.blog{
		background-color: #FFFFFF;
	}
.blog hr{
	width: 30%;
	text-align: center;
	color: #ECE9E9;
	height: 1px;
	}
/*Fonttien määrittelyt&kovan määrittelyt*/
.blog p{
	hypens:auto;
	width: 100%;
	font-family: 'Baskervville', sans-serif;
	font-weight: 400;
	line-height: 1.8em;
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 20px;
	font-size: 1.07em;
	text-align: left;
}
.blog ul{
	list-style-type: none;
	padding-left: 10px;
	padding-bottom: 10px;
	font-style:italic;
	font-family: 'Cormorant Garamond', sans-serif;
	font-weight: 400;
	font-size: 1.08em;
	line-height: 1.6em;
	letter-spacing: 1px;
}
.blog H3{
	padding-left: 10px;
	padding-bottom: 15px;
	font-family: 'Cormorant Garamond', sans-serif;
	font-weight: 500;
	font-size: 1.4em;
	letter-spacing: 3px;
	line-height: 1.6em;
	text-transform: uppercase;
}
.blog H4{
	padding-left: 10px;
	padding-bottom: 0px;
	font-family: 'Cormorant Garamond', sans-serif;
	font-weight: 500;
	font-size: 1.2em;
	letter-spacing: 2px;
	line-height: 1.6em;
}
.blog_image{
	height: auto;
	max-height: 300px;
	max-width: 350px;
	padding: 1px;
}
.blog_image22{
	height: auto;
	max-width: 350px;
	padding: 1px;
}

/*First post*/
.about_blog {
	width: 100%;
	padding-left:0px;
	padding-bottom: 20px;
	padding-top: 10%;
	background-color: #FFFFFF;
	justify-content: center;
	display: flex;
}
#text_column_blog{
	width: 120%;
	margin-bottom: 70px;
}

.article_blog_left{
  float: left;
  width: 35%;
  padding-left: 0px;
  padding_right: 0px;
}
.article_blog_right{
  float: left;
  width: 350px;
  padding-left: 0px;
  padding_right: 0px;
  padding-top: 4%;
}


/*Post Two*/
.header_h3_2{
	padding-left: 0px;
	margin-bottom: -95px;
	padding-top: 8%;
	text-align: center;
}
#article_blog_left_2{
	width: 350px;
	float:left;
}
#article_blog_right_2{
	width: 40%;
	padding-top:10px;
	margin-top:-40px;
	padding-left: 4%;
}
.article_blog_right H4{
	padding-left: 10px;
	padding-bottom: 0px;
	font-family: 'Cormorant Garamond', sans-serif;
	font-weight: 500;
	font-size: 1.2em;
	letter-spacing: 2px;
	line-height: 1.6em;
}
#article_blog_right_2 ul{
	list-style: '- ';
	padding-left: 20px;
	padding-bottom: 10px;
}
#article_blog_left_2{
text-align: center;
}

#text_column_blog_3{
	text-align: center;
	padding-left: 20px;
	margin-top: 0px;
	font-size: 0.9em;
}
#hr_bottom{
	padding-top: 20px;
	margin-top: 0px;
}

/* Stats Gallery */
.stats {
	color: #717070;
	margin-bottom: 5px;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #F000F2;

	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}
.thumbnail {
	width: 25%;
	text-align: center;
	float: left;
	margin-top: 35px;
}
.gallery .thumbnail h4 {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #CC9D2A;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A0;
}
/* Parallax Section */
/*.banner {
	background-color: #D5D3D3;
	background-image: url("https://www.designforware.fi/KevatBanner.jpg");
	height: 600px;
	width: 100%;
	background-attachment: scroll;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}*/
.parallax {
	color: #FFFFFF;
	text-align: right;
	padding-right: 210px;
	padding-top: 400px;
	letter-spacing: 1px;
	margin-top: 0px;
	font-size: 2.5em;
	font-weight: bold;
	text-decoration: none;
}
.parallax_description {
	color: #FFFFFF;
	text-align: right;
	padding-right: 425px;
	padding-top: 0;
	width: 30%;
	float: right;
	font-weight: lighter;
	font-size: 1.7em;
	line-height: 0.5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-decoration: none;
}

.button {
	font-family: 'Montserrat', sans-serif;
	/*font-weight: 700;*/
	font-size: 1em;
	width: 200px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 12px;
	padding-right: 10px;
	padding-bottom: 12px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	border: 3px solid #FFFFFF;
	color: #A3A3A0;
	background-color: #F0F0F2;
	transition: all 0.3s linear;
}
.button:hover {
	background-color: #f2e5e3;
	color: #FFFFFF;
	cursor: pointer;
}
.button a{
	color:#A3A3A0;
}
.insta {
	margin: 1em;
}
.copyright {
	text-align: center;
	padding-top: 12px;
	padding-bottom: 9px;
	background-color: #dfd1d1;
	color: #FFFFFF;
	/*text-transform: uppercase; */
	font-weight: lighter;
	letter-spacing: 2px;
	/*border-top: 1px solid #D1C7BE;*/
}
.footer_banner_1{
	background-color: #FFFFFF;
	font-weight: 100;
	letter-spacing: 4px;
	font-size: 0.5em;
	padding-top: 60px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
	/*background-image: url(http://www.designforware.fi/); */
	background-repeat: repeat;
	
}
.column {
  float: left;
  padding: 0px;

}

.left {
  width: 60%;
  padding-left: 0px;
}

.right {
  width: 30%;
  padding-right: 30px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.footer_banner {
	background-color: #f2e5e3;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 0px;
	/*background-image: url(http://www.designforware.fi/); */
	background-repeat: repeat;
}
.left nav ul { 
		list-style: none;
		display:grid;
		font-size: 9px;
	}
.left nav ul li{
	text-align: left;
	padding-bottom: 6px;
	
}
.left nav a{
	font-family: 'Montserrat', sans-serif;
	list-style: none;
	display:grid;
	font-weight: 500;
	letter-spacing: 3px;
	font-size: 0.75em;
	line-height: 2.5em;
	color: #A3A3A0;
	}
.left ul li:hover a {
	color: #A3A3A0;
} 
footer {
	display: inline-block;
}
.hidden {
	display: none;
}

/* Mobile*/
@media (max-width: 320px) {

.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	display: none;
}
header nav ul {
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 40px;
	width: 100%;
	text-align: center;
}
	
.banner {
	background-color: #D5D3D3;
	background-size: auto 100%;
	background-position: top;
	height: 190px;
	
}
/*.InfoBanner{
			background-position: center;
	}*/

.InfoBanner_2{
			background-position: center;
	}
/*Fontti ja kuva määrittelyt*/
.blog p{
	font-size: 0.77em;
	text-align: center;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	padding-bottom: 0px;
	}	
.blog li{
	font-size: 0.77em;
	text-align: left;
	line-height: 1.7em;
	letter-spacing: 0.04em;
	padding-bottom: 0px;
	}	
.blog h3{
	font-size: 1.2em;
	text-align: left;
	line-height: 1.7em;
	letter-spacing: 0.08em;
	padding-top: 10px;
	}		
.blog h4{
	font-size: 1.1em;
	text-align: left;
	line-height: 1.7em;
	letter-spacing: 0.06em;
	padding-bottom: 0px;
	}	
.blog_image{
	max-height: 150px;
	max-width: 150px;
	}	
	
.about_blog {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 30px;
	padding-bottom: 50px;
	display:block;
}
	/*Blog post 1*/
.article_blog_left{
  width: 100%;
  padding-bottom: 0px;
	margin-bottom: -40px;
}
.text_column_blog{
	margin-bottom: 30px;
	}	
#text_column_blog{
	width: 100%;
	margin-bottom: 70px;
}


.article_blog_right{
	padding:1px;
	width: 100%;
	/*text-align: center;*/
	
	}
.blog_image{
		display:block;
		margin: auto;
		padding: 1px;
	margin-bottom: 30px;
	}
.blog hr{
	width: 60%;
	text-align: center;
		margin-bottom: 40px;
}	
	/*Blog post 2*/
#header_h3_2{
  width: 100%;
  padding-bottom: 40px;
	}
#article_blog_left_2{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: -40px;
  margin-top: 90px;
	display: block;
	}
#article_blog_left_2 h4{
  font-size: 0.9em;
	text-align: center;
	}
#text_column_blog_3{
  font-size: 0.7em;
	text-align: center;
	padding-top: 10px;
	}
	
#blog_image22{
		align-content: center;
		padding: 1px;
		max-width: 150px;
		margin-top: -20px;
	
	}
#article_blog_right_2{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
	margin-top: 7px;
	}
#text_column_blog_2{
	width: 100%;
	padding: 2px;
	}
#text_column_blog_3{
	padding: 2px;
	margin-top:-20px;
	}
#bottom_h4{
	diplay: flex;
	text-align: center;
	margin-bottom: -10px;
	padding-bottom: 20px;
	width: 100%;
	}
#hr_bottom hr{
	margin-bottom: -50px;
	width: 60%;
	}
.tagline {
	margin-top: 2px;
	line-height: 22px;
}
.hero_header {
	font-size: 30px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 200px;
	text-align: center;
}
.hero_header_2 {
	font-size: 30px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 200px;
	text-align: center;
}
.footer_banner_1{
	padding-top: 40px;
	padding-bottom: 40px;
}
	.left{
		width: 100%;
	}
.right{
		width: 100%;
		margin-top:-10px;
	}
.insta{
		text-align: center;
	}
}
/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
	.container{
		width: auto;
	}

.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float:none;
	overflow: auto; /*säätää kuinka paljon kuvan päälle*/
	display: inline-block;
}
header nav ul {
	padding: 0px;
	float:none;
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 40px;
	padding-right: 3%;
	font-size: 14px;
}

.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 5%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 80%;
	text-align: right;
}
.thumbnail {
	width: 50%;
}
.parallax {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 35%;
}
.parallax_description {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 35px;
	font-size: 1.3em;
} 
.banner {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 30px;
	background-color: #D5D3D3;
	background-size: 150% auto;
	background-position: center;
	height: 300px;
	
	
}
.hero_header_2{
			padding-top: 200px;
			font-size: 36px;
	}
.hero_header{
			padding-top: 200px;	
			font-size: 36px;
	}
/*.InfoBanner{
			background-position: center;
	}*/
.InfoBanner_2{
			background-position: center;
	}	
/*.InfoBanner_22{
	height: 200px;
	}	*/
.footer_column {
	width: 100%;
}
.column{
		float: center;
	}
.row{
	width: 100%;
	}
.button{
		width: 140px;
		height: 50px;
	}
.left {
  width: 57%;
  padding-left: 0px;
	}
.right{
  padding-left: 20px;
	padding-right: 0px;
	}
}
/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px){
.logo {
	width: 100%;
	text-align: center;
}
header nav {
	float: center;
	width: 70%; /*navibarin sijainti */
	text-align:  center;
	margin-right: auto;
	/*position: fixed;*/
}
.hero_header_2{
			padding-top: 250px;
	}
.hero_header{
			padding-top: 250px;
	
	}

.banner {
	margin-top: 0px;
	padding-top: 0px;
}
	
.footer_banner_1{
	padding-top: 30px;
	padding-bottom: 30px;
	
}
.InfoBanner_22{
	height: 410px;
	}	
}
/*Keskitekstin käsittely*/
@media (min-width: 906px) and (max-width: 1096px){
	/*Blog post 1*/
#text_column_blog{
	width: 150%;
	margin-bottom: 70px;
}
	/*Blog post 2*/
.header_h3_2{
	padding-bottom: 10px;
	margin-bottom: -70px;
	text-align: center;
}
#article_blog_right_2{
	width: 40%;
	padding-top:10px;
	margin-top:-40px;
	padding-left: 4%;
}
	}
@media (min-width: 767px) and (max-width: 905px){
/*Blog post 1*/
.article_blog_left{
  width: 45%;
}
#text_column_blog{
	width: 120%;
	margin-bottom: 70px;
}
#article_blog_right{
  padding-left: 2px;
	padding-top: 40px;
}
#blog_image{
  padding: 10px;
}
	/*Blog post2 */
.header_h3_2{
	padding-bottom: 10px;
	padding-top: 30px;
	margin-bottom: -60px;
	text-align: center;
	
}
#article_blog_right_2{
	width: 45%;
	padding-top:10px;
	margin-top:-40px;
	padding-left: 1.5%;
}
	#blog_image22{
  padding: 10px;
}
	}
@media (min-width: 500px) and (max-width: 767px){
/*Fonttien ja kuvien määrittelyt*/
.blog p{
	font-size: 1.07em;
	text-align: center;
	line-height: 2em;
	letter-spacing: 0.03em;
	padding-bottom: 2px;
	margin-top: 12px;
	}	
/*blog post 1*/
#text_column_blog{
	width: 100%;
	margin-bottom: 70px;
}
.blog_image{
	max-height: 250px;
	max-width: 250px;
	}	
.about_blog {
	width: 100%;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 11%;
	display:block;
}
.article_blog_left{
  width: 100%;
  padding-bottom: 0px;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: -55px;
}

.text_column_blog{
	margin-bottom: 45px;
	}	

.article_blog_right{
	padding-bottom:40px;
	width: 100%;
	/*text-align: center;*/
	
	}
.blog_image{
		display:block;
		margin: auto;
		padding: 1px;
	}
.blog hr{
	width: 50%;
	text-align: center;
}
	/*Blog post 2*/
.header_h3_2{
	padding-bottom: 10px;
	margin-bottom: -80px;
	text-align: center;
}
#blog_image22{
	align-content: center;
	padding: 20px;
	hight:auto;
	}
	
#article_blog_left_2{
	width: 100%;
	text-align: center;
}
#article_blog_left_2 h4{
	margin-top: 0px;
	padding-bottom: 5px;
}
#article_blog_right_2{
	width: 100%;
	text-align: center;
	margin-top: 50px;
}
#article_blog_right_2 ul{
	width: 100%;
	text-align: left;
	margin-top: -10px;
}
#article_blog_right_2 h4{
	margin-top: 30px;
	text-align: left;
}
#text_column_blog_2{
	margin-top: -20px;
}
#text_column_blog_3{
	margin-top: -40px;
	margin-bottom: 5px;
}
#bottom_h4{
	diplay: inline-block;
	text-align-last: center;
	text-align: center;
	margin-bottom: -10px;
	width: 100%;
	}
.hr{
	width: 100%;
	text-align: center;
}
}	
@media (min-width: 321px) and (max-width: 499px){
/*Fonttein. ja kuvan määrittely*/	
.blog p{
	font-size: 0.95em;
	text-align: center;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	padding-bottom: 0px;
	}	
.blog li{
	font-size: 0.95em;
	text-align: left;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	padding-bottom: 0px;
	}	
.blog h3{
	padding-top: 10px;
	font-size: 1.2em;
	text-align: center; 
	}	
.blog_image{
	max-height: 250px;
	max-width: 250px;
	}	
	
.about_blog {
	width: 100%;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 30px;
	padding-bottom: 50px;
	display:block;
}
.blog hr{
	width: 60%;
	text-align: center;
		margin-bottom: 40px;
}
	/*Blog post 1*/
.article_blog_left{
  width: 100%;
  padding-bottom: 0px;
	margin-bottom: -40px;
}
.text_column_blog{
	margin-bottom: 30px;
	}	
#text_column_blog{
	width: 100%;
	margin-bottom: 70px;
}
.article_blog_right{
	padding:1px;
	width: 100%;
	/*text-align: center;*/
	
	}
.blog_image{
		display:flex;
		margin: auto;
		padding: 21px;
	}

	/*Blog post 2*/
	
#header_h3_2{
  width: 100%;
  padding-bottom: 50px;
	}
#article_blog_left_2{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: -40px;
  margin-top: 90px;
	}
#blog_image22{
		align-content: center;
		padding: 1px;
		max-width: 240px;
	
	}
#article_blog_right_2{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
	margin-top: 7px;
	}
#text_column_blog_2{
	width: 100%;
	padding: 2px;
	}
#text_column_blog_3{
	padding: 2px;
	margin-top:-20px;
	}
#bottom_h4{
	diplay: flex;
	text-align: center;
	margin-bottom: -10px;
	padding-bottom: 20px;
	width: 100%;
	}
#hr_bottom hr{
	margin-bottom: -50px;
	width: 100%;
	}
.left {
  width: 90%;
  padding-left: 0px;
	}
.right{
	width: auto;
	margin-left: -30%;

	}
}