hr{
	margin-top:0;
	height:2px;
	background-color:rgba(51,0,251,0.06);
}

h2{
	display:inline-block;
	font-size:2.2rem;
	line-height:3rem;
	font-weight:800;
	color:var(--global-darker-blue);
	margin:10px 0;
}
@media(max-width:768px){
	h2{
		font-size:1.8rem;
	}
}

/* container 1 START ------------------------------- */
.container-1{
	margin-bottom:100px;
}
.container-1-heading{
	display:flex;
	align-items:center;
}
.container-1-heading>img{
	margin-right:5px;
}

.container-1-post-list{

	display:grid;
	box-sizing:border-box;
	grid-template-columns: 60% 40%;
	grid-template-areas:
		"first-post second-post"
		"first-post third-post"
		"first-post fourth-post"
		"first-post more";
}
@media(max-width:768px){
	.container-1-post-list{

		grid-template-columns: 100%;
		grid-template-areas:
			"first-post"
			"second-post"
			"third-post"
			"fourth-post"
			"more";
	}
}

.post-body{
	grid-area: first-post;
	margin-right:10px;
	flex-direction:column;
}
@media(max-width:768px){
	.post-body{
		margin-bottom:40px;
		margin-right:0;
	}
}

.post-list-image{
	width:100%;
	border-radius:20px;
	aspect-ratio:3 / 2;
	object-fit: cover;
}

.post-body-meta{
	background-color: #fff;
    border-radius: 20px;
    margin-top: -100px;
    margin-left: 30px;
    margin-right: 30px;
    z-index: 2000000;
    position: relative;
	-moz-box-shadow: 0px 4px 20px 2px rgba(141,136,136,0.25);
	-webkit-box-shadow: 0px 4px 20px 2px rgba(141,136,136,0.25);
    box-shadow: 0px 4px 20px 2px rgba(141,136,136,0.25);
	padding: 2rem;
	padding-top: 1rem;
}
@media(max-width:768px){
	.post-body-meta{
		margin-left: 10px;
    	margin-right: 10px;
		padding:1.5rem;
		padding-top: 5px;
		margin-top:-60px;
	}
}

.post-list-title{
	margin-top:10px;
	font-size:3.2rem;
}
@media(max-width:768px){
	.post-list-title{
		font-size:2.2rem;
	}
}

.post-list-title>a{
	font-size:inherit;
	font-weight:800;
	line-height: 3rem;
}
.post-list-title>a:hover{
	text-decoration: underline;
}
.post-list-excerpt>p{
	font-size:1.6rem;
	color:#797979;
}
@media(max-width:768px){
	.post-list-excerpt>p{
		font-size:1.3rem;
		line-height: 2.3rem;
	}
}

.arrow{
	width:1.8rem;
	height:1.8rem;
	padding: 5px;
    border-radius: 20px;
	margin-right:5px;
	background-color:#ECECFC;
}
.post-list-button-link{
	font-size:1.4rem;
	color: var(--global-darker-blue);
	font-weight:800;
	display: inline-flex;
    align-items: center;
	transition:0.7s;
}
@media(max-width:768px){
	.post-list-button-link{
		font-size:1.3rem;
	}
}

.post-list-button-link:hover{
	background-color:#ECECFC;
	padding:0 10px 0 0;
	border-radius:20px;
	transition:0.7s;
}

.right-post-body{
	display:flex;
	margin:0 0 10px 10px;
}
@media(max-width:768px){
	.right-post-body{
		margin:0 0 20px 0;
	}
}

.right-post-body:nth-child(1){
	grid-area: second-post;
	margin:0 0;
}

.right-post-body:nth-child(2){
	grid-area: second-post;
}

.right-post-body:nth-child(3){
	grid-area: third-post;
}

.right-post-body:nth-child(4){
	grid-area: fourth-post;
}

.right-post-body:nth-child(5){
	grid-area: more;
}

.right-post-body-image-link{
	width:50%;
	max-width: 220px;
	aspect-ratio:3 / 2;
	height: 150px;
	margin-right: 20px;
}
@media(max-width:768px){
	.right-post-body-image-link{
		margin-right:10px;
		max-width: 160px;
   	    /*max-height: 120px;*/
	}
}

.right-post-list-image{
	width:100%;
	height:100%;
	object-fit: cover;
	border-radius:20px;
}
.right-post-body-meta>.post-categories
{
	margin: 0px 0px 10px 0px;
}
.post-author
{
	font-size: 1.1rem;
    font-weight: 600;
    color:var(--global-light-gray);
}

.right-post-body-meta{
	width:auto;
}
@media(max-width:768px){
	.right-post-body-meta{
		width:100%;
	}
}

.right-post-list-title{
	margin-top:5px;
	font-size:1.8rem;
}
@media(max-width:1024px){
	.right-post-list-title{
		font-size:1.5rem;
	}
}

.right-post-list-title>a{
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight:700;
	display: block;
}
.right-post-list-title>a:hover{
	text-decoration: underline;
}
.more{
	grid-area: more;
	border:2px dashed #E5F1FF;
	border-radius:20px;
	padding:20px;
}

.more>p{
	padding:0;
	margin:0 0 15px 0;
	font-size:1.8rem;
	font-weight:800;
}

.newsletter-form{
	display:flex;
}

.newsletter-form>input{
	width:calc(100% - 100px);
	outline:none;
	border:2px solid #ececfc;
	padding:10px;
	border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
	border-right:none;
}

.newsletter-form>button{
	width:100px;
	font-weight:800;
	color:var(--global-darker-blue);
	outline:none;
	border:none;
	padding:10px 8px;
	text-align:center;
	border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
	outline:none;
	background-color:#ececfc;
	cursor:pointer;
}
@media(max-width: 1024px)
{

}

@media(max-width: 768px)
{

}

@media(max-width: 320px)
{

}
/* container 1 END ------------------------------- */

/* container 2 START ------------------------------- */
.container-2{
	padding:0 var(--left-right-padding);
	position:relative;
}
@media(max-width:768px){
	.container-2{
		padding:0 0;
	}
}

.container-2-heading{
	display:flex;
	align-items:center;
}
.container-2-heading>img{
	margin-right:5px;
}

.category-posts-wrapper{
	overflow-x: scroll;
	scroll-behavior: smooth;
}
.category-posts-wrapper::-webkit-scrollbar-track {
	border-left: 1px solid rgba(194, 194, 194, 0);
	border-top: 1px solid #e2e2e2;
	background-color: #e2e2e2;
	margin: 0 3px 0 3px!important;
}
.category-posts-wrapper::-webkit-scrollbar-thumb {
    background: #a8a8a8;
    -webkit-box-shadow: inset 0 0 5px #a8a8a8;
    border-radius: 4px;
}
.category-posts-wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.category-posts{
	width:100%;
	display:flex;
	gap:20px;
	padding-bottom:20px;
	margin:0 20px;
}

.category-post-body{
	width: calc((100% - 40px) / 3);
}

.category-post-list-image{
	width:100%;
	border-radius:20px;
	aspect-ratio:3 / 2;
	position: relative;
    z-index: 20;
}

.category-post-body-meta{
	background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -20px;
    z-index: 0;
    position: relative;
    box-shadow: 0 4px 30px 0 rgba(141,136,136,0.25);
	padding: 3.5rem 1.5rem 1.5rem 1.5rem;
	padding-top: 2rem;
	min-height: 160px;
}

.category-post-list-title{
	margin-top:10px;
	font-size:1.8rem;
}

.category-post-list-title>a{
	font-size:inherit;
	font-weight:800;
}
.category-post-list-title>a:hover{
	text-decoration: underline;
}
.category-post-list-button-link{
	font-size:1.4rem;
	color: var(--global-darker-blue);
	font-weight:800;
	display: inline-flex;
    align-items: center;
	transition:0.5s;
}

.category-post-list-button-link:hover{
	background-color:#ECECFC;
	padding:0 10px 0 0;
	border-radius:20px;
	transition:0.5s;
}
.category-post-body-excerpt>p{
	font-size:1.4rem;
	line-height:2.1rem;
	color:#797979;
}

/* ----navigarion arrows */

.posts-grid-arrow-wrapper{
    width:100%;
    height:50px;
    top: 150px;
}
@media(max-width:768px){
    .posts-grid-arrow-wrapper{
        display:none!important;
    }
}

.posts-grid-arrow-left, .posts-grid-arrow-right{
    width: 50px;
    height: 50px;
    border-radius: 28px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
    box-shadow: 0px 0px 10px 0px rgba(186, 186, 186, 1);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #fbfbfb;
}

.posts-grid-arrow-left{
    left: 20px;
    z-index:1000;
    display:none;
}


.posts-grid-arrow-right{
    right: 20px;
    z-index:1000;
}

.posts-grid-arrow-left>.icon-down-open:before{
    font-size: 20px;
    position: relative;
    top: 2px;
}
.posts-grid-arrow-right>.icon-down-open:before{
    font-size: 20px;
    position: relative;
    top: 2px;
}
@media(max-width:768px){
    .posts-grid-arrow-left, .posts-grid-arrow-right{
        display:none;
    }
}

/* container 2 END ------------------------------- */


/* container 3 START ------------------------------- */
.container-3{
	border:2px dashed #E5F1FF;
	width:100%;
	padding:20px 30px 30px 30px;
	border-radius:20px;
	margin-top:40px;
	box-sizing:border-box;
}

.container-3-heading{
	display:inline-flex;
	align-items: center;
}

.container-3-heading{
	background-color:#ECECFC;
}

.job-offers{
	display:flex;
	flex-wrap:wrap;
	box-sizing:border-box;
	gap:20px;
	margin-top:20px;
}

.job-offer-body{
	width:calc(50% - 10px);
	box-shadow: 0 0 4px 1px rgba(141,136,136,0.25);
	padding:10px;
	box-sizing:border-box;
	display:flex;
}

.job-offer-image{
	width:100px;
	height:100px;
	object-fit:cover;
	border-radius:10px;
	margin-right:10px;
}

.job-offer-meta{
	width:calc(100% - 100px);
}

.job-offer-title{
	font-size:1.8rem;
	font-weight:800;
	margin:0 0 10px 0;
}

.job-offer-company-location{
	display:flex;
	align-items:center;
}
.icon-company{
	width:15px;
	height:auto;
	margin-right:5px;
}
.icon-location{
	width:12px;
	height:auto;
	margin-right:5px;
	margin-left:20px;
}

/* container 3 END ------------------------------- */


/* container 4 START ------------------------------- */
.container-4{
	margin-top:40px;
	padding:20px 30px 30px 30px;
}
@media(max-width:768px){
	.container-4{
		padding:20px 0 30px 0;
	}
}

.job-cities{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	gap:20px;
	margin-top:20px;
}

.job-cities>a{
	padding:10px 15px;
	/*color:var(--global-light-sea);*/
	color:var(--global-light-brown-2);
	font-size:1.5rem;
	font-weight:700;
	border:2px dashed rgba(227,206,180);
	border-radius:10px;
	transition:0.3s;
}

.job-cities>a:hover{
	background-color: rgba(227,206,180,0.13);
	transition:0.3s;
}

@media(max-width:768px){
	.job-cities>a{
		font-size:1.3rem;
		padding:8px 12px;
	}
}
/* container 4 END ------------------------------- */