body,html{
	margin:0;
	padding:0;
}
.outer{
width:100%;
height:100vh;
background:#000;
position: relative;
}
.outer .inner{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	right:0;
	margin:0 auto;
	max-width:500px;
	color:white;
}
.outer .inner img{
	width:300px;
	margin:0 auto;
	display:block;
}
#pass-form{
	margin:0 auto;
	width:300px;
}
#pass-form input{
	padding:8px;
	width:100%;
	font-size:14px;
	box-sizing: border-box;
	border:none;
	box-shadow: none;
}
#pass-form button{
	background:none;
	border:none;
	box-shadow: none;
	color:white;
	text-align: center;
	width:100%;
	box-sizing: border-box;
	font-size:14px;
	cursor: pointer
	margin-top:15px;
	position: relative;
	top:15px;
	outline:none;
	font-family: sans-serif;
	font-weight:200;
}
#pass-form button:hover{
	cursor: pointer;
	text-decoration: underline;
}
.blog{
	min-height: calc(100vh - 220px) !important;
}

.logo__area{
    background-color: #f8f8f8;  
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__area img{
    width: 100%;
    max-width: 160px;
}

.blog .layout1 .layout:nth-child(5n+1){
	height:calc(100vh - 220px);
	width:33.333%;
}
.blog .layout1 .layout:nth-child(5n+2){
	height:calc((100vh - 220px) / 2);
	float:right;
	width:66.666%;
}
.blog .layout1 .layout:nth-child(5n+3){
	height:calc((100vh - 220px)/2);
	width:33.333%;
}
.blog .layout1 .layout:nth-child(5n+4){
	height:calc((100vh - 220px)/2);
	width:33.333%;
}

.blog .layout1 .layout:nth-child(5n+5){
	height:calc((100vh - 220px)/2);
	width:33.333%;
}


.blog-listing__category {
    display: inline-block;
    padding: .3em .75em;
    border: 1px solid;
    margin: .3em;
    cursor: pointer;
    transition: all .25s ease;
    font-size: 1rem;
    line-height: 1.35;
    color: #000;
}

.blog-listing__category.active,.blog-listing__category:hover {
    background: #000;
    color: #FFF
}

.language__area .cats{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.language__area__wrapper{
    width: 50%;
}

@media only screen and (max-width: 1100px) {
    .logo__area{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .logo__area img{
        max-width: 80px;
    }
}

@media only screen and (max-width: 768px) {
    
    .language__area{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .language__area .cats{
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .language__area__wrapper,
    .language__area .cats{
        width: 100%;
    }
}