.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container:before,
.container:after,
.row:before,
.row:after{
	display: table;
    content: " ";
}

.container:after,
.row:after{
	clear:both;
}

.main-color{
	color:var(--main-color);
}

.accent-color{
	color:var(--accent-color);
}

.gray-color{
	color:var(--gray-2-color);
}

.text-center{
	text-align:center;
}

.btn{
	display:inline-block;
	font-size:20px;
	font-weight:400;
	line-height:1.1;
	color:#fff;
	background:var(--black-2-color);
	text-align:center;
	height:48px;
	border:0px;
	outline:none;
	transition:.3s;
	padding: 12px 20px;
	white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
	font-family: 'Outfit', sans-serif;
	min-width:100px;
}
.btn:focus,
.btn:hover{
	background-color:var(--main-black-color);
}

.btn-hover-red:hover{
	color:#fff;
	background-color:var(--accent-color);
}

.btn-light{
	color:var(--main-black-color);
	background:var(--gray-3-color);
}
.btn-light:focus,
.btn-light:hover{
	color:#fff;
	background-color:var(--accent-color);
}
.btn-block{
	width:100%;
}

.btn-dark{
	background:var(--main-black-color);
}
.btn-dark:hover{
	background:var(--black-2-color);
}

.a-link span,
.btn span{
	position:relative;
	display:inline-block;
}

.a-link span:before,
.btn span:before{
	content:"";
	display:block;
	position:absolute;
	top:100%;
	left:0;
	width:0px;
	height:2px;
	background-color:var(--accent-color);
	transition:.3s;
}

.a-link:hover span:before,
.btn:hover span:before{
	width:100%;
}
.tablet-visible{
	display:none;
}
.mobile-visible{
	display:none !important;
}
.form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 12px;
	font-weight:400;
    font-size: 16px;
    line-height: 20px;
    color:var(--gray-3-color);
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
textarea.form-control{
	height:124px;
}

.form-control:focus {
    outline: 0;
	border-color:var(--accent-color);
}

.form-control::placeholder {
  color:var(--gray-3-color);
  opacity:.36;
  font-weight:400;
}

.form-control:focus::placeholder{
	opacity:0;
}

.form-group{
	margin:0 0 20px;
}
.d-flex{
	display:flex;
}
.flex-center{
	align-items:center;
}
.flex-space-between{
	justify-content:space-between
}
.flex-column{
	flex-direction:column;
}

.flex-wrap{
	flex-wrap:wrap;
}



nav.navbar{
	border-radius:0;
	padding:24px 0;
	font-size:20px;
	margin:0;
	border:0;
	position:fixed;
	width:100%;
	top:0px;
	left:0px;
	z-index:999;
	background:rgba(13, 4, 2, 0.6);
	-webkit-backdrop-filter: blur(30px);
    -moz-backdrop-filter: blur(30px);
    -ms- backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
	will-change: backdrop-filter;
}

body.admin-bar nav.navbar{
	top:32px;
}

footer{
	background: #000;
}

nav.navbar .h-block{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
}

.logo-brand{
	padding:0;
	height:auto;
	margin:0
}

.h-block .logo-brand{
	margin-right:15px;
}

.logo-brand img{
	height:48px;
	width:auto;
}

.navbar-inverse ul.d-flex{
	display:flex;
	flex-wrap:wrap;
	list-style-type:none;
	padding:0;
	margin:0 0 0 auto;
}

.navbar-inverse ul.d-flex a{
	color:#fff;
}
nav.navbar .h-email{
	border-left: 2px solid var(--black-2-color);
	border-right: 2px solid var(--black-2-color);
    margin-right: 24px;
	padding-right: 24px;
	padding-left: 24px;
	height: 36px;
    display: inline-flex;
    align-items: center;
}

.dropdown{
	position:relative;
}

.lang-chooser{
	font-size:20px;
	padding:0;
}
.lang-chooser ul{
	border:0px;
	border-radius:0;
	margin: 0 -10px;
    padding:0;
	list-style-type:none;
    text-align: center;
	-webkit-box-shadow: none;
    box-shadow: none;
	display:flex;
}
.lang-chooser ul li{
	padding:0 10px;
	
}

.lang-chooser ul a,
#qtranslate-chooser li.active span,
.lang-chooser .dropdown-toggle{
	color:#fff;
	padding:13px 0 !important;
	height:48px;
	line-height:1.1;
	background-color: transparent;
	display:block;
	text-align:center;
	transition:.3s;
	text-transform:uppercase;
	line-height:22px;
	white-space:nowrap;
}

.lang-chooser ul a:hover{
	color:var(--white-color);
	background-color:var(--main-gray-color);
}

#qtranslate-chooser li.active a,
#qtranslate-chooser li.active span,
.lang-chooser .dropdown-toggle{
	color:var(--accent-color);
	background-color:var(--black-2-color);
	
}

nav.navbar .lang-chooser + .h-phone{
	margin-left:24px;
}

#menu{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.75);
	z-index:-9999;
	cursor:pointer;
	visibility:hidden;
	opacity:0;
	transition:.3s;
}
#menu.is-active{
	opacity:1;
	z-index:9999;
	visibility:visible;
}
#menu .close{
	background: none;
    display: block;
    position: absolute;
    right: -3px;
    top: -47px;
    color: #fff;
    font-weight: 100;
    font-size: 55px;
    transform: rotate(45deg);
    font-family: serif;
    width: 30px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border: 0 !important;
    outline: none;
    -webkit-appearance: none;
    background: none;
    transition: .3s;
    padding: 0;
}
#menu .close:hover{
	color:var(--accent-color);
}
#menu .menu-wrap{
	position:absolute;
	background:var(--black-2-color);
	padding:60px;
	min-width:548px;
	font-size:24px;
	font-weight:500;
	line-height:1;
	left:200%;
	top:50%;
	transform:translate(-50%, -50%);
	transition:.5s;
}
#menu.is-active .menu-wrap{
	left:50%;
}
#menu a{
	color:#fff;
}
#menu ul{
	list-style-type:none;
	margin:0;
	padding:0;
}
#menu ul li{
	border-bottom:2px solid var(--gray-2-color);
}
#menu ul li a{
	display:block;
	padding:26px 30px;
	text-decoration:none;
	transition:.3s;
}
#menu ul li a:hover{
	color:var(--main-black-color);
	background:var(--gray-3-color);
}

.menu-toggler{
	height:48px;
	width:66px;
	border: 0px;
	position:relative;
	margin-left:24px;
	background:var(--black-2-color);
	cursor:pointer;
	display:block;
}

.menu-toggler span,
.menu-toggler span:before,
.menu-toggler span:after{
	content:"";
	display:block;
	position:absolute;
	height:2px;
	width:42px;
	left:12px;
	background:var(--accent-color);
	transition:.3s;
}
.menu-toggler span{
	top:50%;
	margin-top:-1px;
}

.menu-toggler span:before{
	top:-8px;
	left:0;
}
.menu-toggler span:after{
	bottom:-8px;
	left:0;
}
.menu-toggler:hover span,
.menu-toggler.is-active  span{
	width:36px;
}
.menu-toggler:hover span:after,
.menu-toggler.is-active span:after{
	width:28px;
}
#menu .h-email a{
	padding: 15px 30px;
	border-bottom: 2px solid var(--gray-2-color);
	display:block;
}

#menu .h-phone .btn{
	padding: 15px 30px;
	border-bottom: 2px solid var(--gray-2-color);
	display:block;
	text-align:left;
	line-height:1;
	font-size:20px;
	font-weight:500;
}
/* Home */
.jumbotron{
	position:relative;
	z-index:1;
}
.jumbotron:before{
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:-1;
background:rgba(13, 4, 2, 0.5);
}

.jumbotron video{
	position:absolute;
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	z-index:-2;
}

.jump-inner{
	display:flex;
flex-direction:column;
	align-items:center;
	justify-content:center;
	min-height:700px;
}

.jumbotron .jump-title{
font-size:64px;
font-weight:bold;
text-transform:uppercase;
margin:0 0 20px;
line-height:1;
}

.jumbotron .jump-text{
	font-weight:700;
	font-size:48px;
	line-height:2;
	margin-bottom:20px;
}

.jumbotron .btn{
min-width:260px;
height:64px;
font-size:24px;
line-height:40px;
font-weight:500;
color:#E4DAD7;}


footer{
padding:0;
margin-top:56px;
}

footer a,
footer{
color:var(--gray-3-color);
font-size:15px;
line-height:1.333}

footer .d-flex{
padding:20px 0;
margin-left:-20px;
margin-right:-20px;
border-top:1px solid rgba(182, 152, 145, 0.16);}

footer .d-flex .col{
padding:20px;
min-width:16.667%;
}

footer .d-flex .col-100{
flex:1;
width:auto;}

footer .footer-title{
	font-weight:500;
}

footer ul{
	list-style-type:none;
	margin:0;
	padding:0;
	font-weight:500;
}



footer .col ul li{
	margin-top:12px;
}

footer .col ul li a:not(:hover),
footer .foot-bottom ul li a:not(:hover),
.social-links a:not(:hover){
	opacity:.6;
}


footer .footer-text{
	margin:6px 0 24px;
	
}

footer .wpcf7-form{
	display:flex;
	flex-wrap:wrap;
}

footer .wpcf7-form .wpcf7-form-control-wrap{
	flex:1;
	margin-right:16px;
}

footer .wpcf7-form  .wpcf7-submit{
	height:44px;
	font-size:15px;
	background-color:transparent;
	border:1px solid rgba(182, 152, 145, 0.16);
}
footer .wpcf7-form  .wpcf7-submit:hover{
	background-color:var(--accent-color);
	border-color:var(--accent-color);
}

footer .wpcf7-form .form-control:not(:focus){
	border-color:rgba(229, 121, 97, 0.16);
}
footer .wpcf7 form .wpcf7-response-output{
	min-width:100%;
}

.footer .foot-bottom ul.menu{
	display:flex;
	align-items:center;
	margin:0;
	padding:20px 0;
}
.footer .foot-bottom ul.menu li{
	padding:0 20px;
}


.social-links{
	list-style-type:none;
	margin:0 12px 0 auto;
	padding:20px 0;
}

.social-links:after{
	content:"";
	display:table;
	width:100%;
	clear:both;
}
.social-links li{
	padding:0 8px;
	float:left;
}
.social-links a{
	width: 24px;
    height: 24px;
    display: block;
    transition: .3s;
}
.social-links .ic{
	width: 100%;
    display: block;
    height: 100%;
    background-color: var(--gray-3-color);
    text-align: center;
    transition: .3s;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
   -webkit-mask-position: center;
	mask-position: center;
}

.social-links .ic-facebook{
	-webkit-mask-image: url(../img/ic-facebook.svg);
  mask-image: url(../img/ic-facebook.svg);
}

.social-links .ic-instagram{
	-webkit-mask-image: url(../img/ic-instagram.svg);
  mask-image: url(../img/ic-instagram.svg);
}

.social-links .ic-x{
	-webkit-mask-image: url(../img/ic-x.svg);
  mask-image: url(../img/ic-x.svg);
}

/* -------- Page ----------------*/
.head-content{
	padding:201px 0 105px;
	margin:0 0 80px;
	position:relative;
	z-index:1;
}

body.single .head-content:before{
	content:"";
	display:block;
	width:100%;
	height:100%;
	left:;
	top:0;
	position:absolute;
	z-index:-1;
	background: rgb(13,4,2);
background: linear-gradient(90deg, rgba(13,4,2,1) 0%, rgba(13,4,2,0) 94%);
}

.head-content h1{
	font-size:54px;
	text-transform:uppercase;
	font-weight:bold;
	line-height:1;
	margin:0;
}

.head-content .wp-post-image{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit:cover;
	z-index:-2;
}
/* contact block */
.contact-block{
	position:relative;
	z-index:1;
	height:698px;
	padding:40px 0;
	margin:120px 0 0;
}
.contact-block iframe{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:-1;
}

.contact-block .d-flex{
	margin-left:-10px;
	margin-right:-10px;
}
.contact-block .col{
	padding-left:10px;
	padding-right:10px;
	width:22.7%;
	margin-bottom:20px;
}
.contact-block .col-inner{
	background-color:var(--main-black-color);
	padding:20px;
	font-size:20px;
	color:var(--gray-3-color);
	transition:.3s;
	display:flex;
	flex-direction:column;
	min-height:216px;
	height:100%;
	align-items: flex-start;
}

.contact-block .col-inner:hover{
	background-color:var(--black-2-color);
}

.contact-block a{
	color:var(--gray-3-color);
}

.contact-block .col-title{
	font-size:24px;
	color:var(--accent-color);
	line-height:1;
	padding-bottom:14px;
	border-bottom:2px solid #4F4F4F;
	margin-bottom:14px;
	width:100%;
}

.contact-block .col-text{
	margin-bottom:auto;
}

.contact-block .col-inner .btn{
	margin-top:20px;
}

.contact-block .col-inner:hover .btn{
	background-color:var(--main-black-color);
}

.contact-block .col.col-wide{
	margin-left:auto;
	width:auto;
	max-width:30%;
}
.card{
	padding:40px 80px;
	background-color:var(--main-black-color);
	display:flex;
	flex-direction:column;
	min-height:216px;
	height:100%;
	width:100%;
	justify-content:center;
	align-items:center;
}

.card.card-text{
	align-items:flex-start;
}

.card-title{
	font-weight:500;
	font-size:48px;
	margin:20px 0;
	line-height:1;
}
.card .card-text{color:var(--gray-3-color);font-size:20px;opacity:.8;line-height:1.25}
.card .card-text p:not(:last-child){margin:0 0 10px;}


.content-inner{
	padding:120px 56px;
	background:var(--black-2-color);
}
.content-inner > .d-flex{
	margin-left:-28px;
	margin-right:-28px;
}
.content-inner > .d-flex > .col{
	padding-left:28px;
	padding-right:28px;
}

.content-inner > .d-flex > .col.col-wide{
	flex:1;
}

.content-inner .entry-content{
	font-size:24px;
}

.content-inner .entry-content + .btn{
	min-width:187px;
	margin-top:20px;
}

/* Form Block */
.form-block{
	margin-top:80px;
}

.contact-block + .form-block{
	margin-top:120px;
}

.form-block .content-inner > .d-flex > .col{
	width:46.5%;
}

.wpcf7-spinner{
	display:none;
}
.use-floating-validation-tip .wpcf7-not-valid-tip{
	position: absolute;
	left:0;
	top:90%;
	width:100%;
	font-size:12px;
	background: var(--black-2-color);
}

.wpcf7 form .wpcf7-response-output{
		margin:30px auto 0;
		padding:15px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
}

.form-block .wpcf7 .row{
	display:flex;
	flex-wrap:wrap;
	margin-left:-8px;
	margin-right:-8px;
}
.form-block .wpcf7 .row .col-6{
	padding-left:8px;
	padding-right:8px;
}
.form-block .wpcf7 .wpcf7-form-control-wrap{
	margin-bottom:16px;
	display:block;
}
.form-block .wpcf7 .d-flex .wpcf7-form-control-wrap{
	margin:0;
	flex:1;
}
.form-block .wpcf7-list-item{
	margin:0 0 0 20px;
}
.wpcf7-acceptance input[type="checkbox"]{
	opacity:0;
	visibility:hidden;
	position:absolute;
}
.wpcf7-acceptance .wpcf7-list-item-label{
	font-size:14px;
	color:rgba(228, 218, 215, 0.24);
	position:relative;
	padding-left:40px;
	display:block;
	line-height:20px;
}

.wpcf7-acceptance .wpcf7-list-item-label a{
	color:inherit;
	text-decoration:underline;
}
.wpcf7-acceptance input[type="checkbox"] + .wpcf7-list-item-label:before{
	content:"";
	display:inline-block;
	position:absolute;
	width:20px;
	height:20px;
	border:1px solid rgba(182, 152, 145, 0.16);
	left:0;
	top:0;
}
.wpcf7-acceptance input[type="checkbox"] + .wpcf7-list-item-label:after{
	content: "";
    display: inline-block;
    position: absolute;
    left: 7px;
    top: 0;
    width: 7px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
	opacity:0;
}
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:before{
	border-color:var(--accent-color);
}
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after{
	opacity:1;
}


/*about years */
.block-years{
	margin:80px 0;
}

.years-list {
	padding:0 156px;
	position:relative;
}

.years-list .year-item{
	display:flex;
	flex-wrap:wrap;
	position:relative;
	align-items:flex-start;
	padding-bottom:100px;
}
.years-list .year-item:last-child{
	padding-bottom:0;
}

.years-list .year-item:not(:last-child):after{
	content:"";
	display:inline-block;
	width:1px;
	height:100%;
	background:var(--gray-4-color);
	position:absolute;
	left:50%;
	top:48px;
}

.years-list .year-item:before{
	content:"";
	display:inline-block;
	width:50%;
	height:1px;
	background:var(--gray-3-color);
	position:absolute;
	left:0;
	top:63px;
}
.years-list .year-item:nth-of-type(2n):before{
	left:unset;
	right:0;
}
.years-list .year-number{
	background-color:var(--black-2-color);
	font-size:48px;
	font-weight:500;
	padding:28px 40px;
	min-width:193px;
	position:relative;
	z-index:2;
	text-align:center;
}
.years-list .year-text{
	padding:48px 0 0 50px;
	font-size:21px;
	width:50%;
	margin-left:auto;
	position:relative;
}

.years-list .year-text:before{
	content:"";
	display:inline-block;
	width:30px;
	height:30px;
	background-color:var(--gray-4-color);
	position:absolute;
	z-index:2;
	left:-15px;
	top:47px;
	border-radius:50%;
}

.years-list .year-item:nth-of-type(2n) .year-text{
	order:-1;
	text-align:right;
	padding:48px 50px 0 0;
	margin-left:unset;
	margin-right:auto;
}
.years-list .year-item:nth-of-type(2n) .year-text:before{
	left:unset;
	right:-15px;
}


.entry-site-main{
	margin-top:96px;
}

.entry-page-content{
	font-size:24px;
}


.entry-title{
	font-size:48px;
	font-weight:500;
	margin:0 0 30px;
	color:#fff;
	text-transform:none;
}

.entry-flex{
	display:flex;
	flex-wrap:wrap;
}
.entry-images{
	width:540px;
}
.entry-images,
.entry-body{
	padding:15px;
}

.entry-body{
	color:#fff;
	flex:1;
}
.entry-body{
	flex:1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: 15% auto;
    padding: 45px;
    border: 2px solid var(--gray-color);
    width: 80%;
	max-width:1370px;
    position: relative;
	z-index:2;
    border-radius: 48px;
    color: #fff;
    background: #000;
    text-align: center;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.modal-content:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.40));
    z-index: -1;
	    border-radius: 48px;
}

.modal .close {
	border: 3px solid var(--gray-color-2);
    color: var(--gray-color-2);
    font-size: 33px;
    font-weight: 900;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 100%;
    position: absolute;
    background: #fff;
    text-align: center;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.modal .close:hover,
.modal .close:focus {
    color: var(--main-color);
    text-decoration: none;
    cursor: pointer;
}

.breadcrumbs{
	list-style-type:none;
	margin:0 -7px 20px;
	padding:0;
	color:#fff;
}
.breadcrumbs:after{
	content:"";
	display:table;
	width:100%;
}

.breadcrumbs li{
	display:inline-block;
	position:relative;
	padding:0 7px;
	float:left;
	margin-bottom:10px;
}

.breadcrumbs li + li:before{
	content: "/";
    left: -5px;
    display: inline-block;
    position: relative;
    opacity: .5;
}
.breadcrumbs a,
.rank-math-breadcrumb a{
	color:#fff;
}
.breadcrumbs span,
.rank-math-breadcrumb span{
	opacity:.6;
}


.post-block{
	padding:120px 0 60px;
}

.post-block .block-inner{
	position:relative;
	z-index:1;
	padding:60px 60px 0;
}

.post-block .block-inner:before{
	content:"";
	display:block;
	position:absolute;
	z-index:-1;
	left:0;
	top:0;
	width:100%;
	height:262px;
	background:var(--black-2-color);
}

.post-block .block-head{
	text-align:right;
	line-height:1;
}

.post-block .block-head .subtitle{
	color:var(--gray-3-color);
	font-size:24px;
}

.post-block .block-head .title{
	font-weight:500;
	font-size:48px;
	margin-top:4px;
	margin-bottom:30px;
}

.post-grid{
	display:flex;
	flex-wrap:wrap;
    justify-content: center;
	margin-left:-30px;
	margin-right:-30px;
}

.post-grid .item{
	width:33.3333%;
	padding-left:30px;
	padding-right:30px;
	margin-bottom:60px;
}

.post-grid .item-inner{
	position:relative;
	z-index:1;
	width:100%;
	height:100%;
}

.post-grid .item-inner > img{
	width:100%;
	height:100%;
	object-fit:cover;
	position:absolute;
	left:0;
	top:0;
}

.post-grid .item-title{
	position:absolute;
	width:100%;
	bottom:0;
	left:0;
	background:#2E2E2E;
	padding:22px;
	font-size:22px;
	transition:.5s;
}

.post-grid .item-inner:hover .item-title{
	opacity:0;
}

.post-grid .on-hover{
	position:relative;
	z-index:2;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(46, 46, 46, 0.7);
	-webkit-backdrop-filter: blur(30px);
    -moz-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    will-change: backdrop-filter;
	display:flex;
	flex-direction:column;
	transition:.5s;
	opacity:0;
}

.post-grid .item-inner:hover .on-hover{
	opacity:1;
}

.post-grid .on-hover .h-title{
	width:100%;
	background:var(--main-black-color);
	padding:22px 24px;
	font-size:22px;
}

.post-grid .on-hover .h-text{
	padding:20px 24px;
	flex:1;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
}
.post-grid .on-hover .h-text .h-excerpt{
	font-size:18px;
	margin-bottom:auto;
	flex:1;
	overflow-y:auto;
}
.post-grid .on-hover .h-text .btn{
	margin-top:20px;
	min-width:166px;
}

.post-list{
	margin-top:80px;
	margin-bottom:-40px;
}
.post-list .item{
	margin-bottom:40px;
	background:var(--black-2-color);
	cursor:pointer;
}

.post-list .item-header {
	position:relative;
	z-index:1;
	height:200px;
	display:flex;
	flex-wrap:wrap;
	overflow:hidden;
}
.post-list .item-img{
	flex:1;
	position:relative;
	height:100%;
}
.post-list .item-img img{
	position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
    max-width: unset;
	min-width:100%;
}

.post-list .item-header:after{
	content:"";
	display:block;
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	z-index:2;
	background:rgba(0, 0, 0, 0.3);
	transition:.3s;
}
.post-list .item.open .item-header:after,
.post-list .item:hover .item-header:after{
	opacity:0;
}

.post-list .item-title{
	position:relative;
	z-index:3;
	height:100%;
	display:flex;
	align-items:center;
	padding:20px 60px;
	background:var(--black-2-color) url(../img/star.svg) no-repeat -174px -174px;
	font-size:48px;
	font-weight:500;
	line-height:1;
	order:-1;
}
.post-list .item:nth-of-type(2n+1) .item-title{
	order:2;
}

.post-list .item.open .item-title,
.post-list .item:hover .item-title{
	background-position: right -174px top -174px !important;
	color:var(--accent-color);
}

.post-list .item.open .item-title .accent-color,
.post-list .item:hover .item-title .accent-color{
	color:#fff;
}

.post-list .item-title:after{
	content:"";
	width: 84px;
    display: block;
    height: 30px;
    background-color: #fff;
	
    text-align: center;
    transition: .3s;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-position: center;
    mask-position: center;
	position:absolute;
	left:60px;
	bottom:25px;
	-webkit-mask-image: url(../img/post-arrow.svg);
    mask-image: url(../img/post-arrow.svg);
}
.post-list .item.open .item-title:after,
.post-list .item:hover .item-title:after{
	background-color:var(--accent-color);
	left: initial;
	right:60px;
}
.post-list .item-body{
	padding:56px;
	font-size:24px;
	line-height:1.5;
	border-top:2px solid var(--accent-color);
	display:none;
}


body.category-2 .post-list .item-title{
	order:2;
	padding-left:90px;
	padding-right:90px;
}
body.category-2 .post-list .item:nth-of-type(2n+1) .item-title{
	order:-1;
}

body.category-2 .post-list .item-title:after{
background-color:var(--accent-color);
left:90px;
}

body.category-2 .post-list .item.open .item-title:after,
body.category-2 .post-list .item:hover .item-title:after{
	background-color:#fff;
	right:90px;
}


.partners-block{
padding:120px 0 100px;
}

.partners-block .block-inner{
	padding:60px 60px 250px;
background:var(--black-2-color);
}

.partners-block .block-head{
text-align:right;}

.partners-block .block-head .title {
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 30px;
}

.partners-block .block-text{
font-size:24px;
line-height:1.5;
}

.partners-list{
height:130px;
margin:-190px 0 0;
}

.partners-list .item{
	height:130px;
	width:230px;
	background:var(--main-black-color);
	border:1px solid var(--gray-4-color);
	border-left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:20px;
	transition:.3s;
	box-sizing: border-box;
}

.partners-list .item:hover{
	background:var(--accent-color);
}

.partners-list .item .icon{
	width: 100%;
    display: block;
    height: 100%;
    background-color: var(--gray-2-color);
    text-align: center;
    transition: .3s;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto;
    mask-size: auto;
    -webkit-mask-position: center;
    mask-position: center;
}

.partners-list .item:hover .icon{
	background-color:#fff;
}