/*
Theme Name: MBTheme
Theme URI: https://mbtmedia.pl/
Author: MBT MEDIA SP. Z O.O.
Author URI: https://mbtmedia.pl/
Version: 2.0.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: mbtheme

*/

body, body p{
	font-family: 'Inter';
}
a {
	transition: all .2s ease-in-out; 
}
div[role=main]{
	padding-top: 168px;
}
.header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transition: all .2s ease-in-out;
    height: 168px;
	box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.15);
}
.header--hidden {
	transform: translateY(-100%);
}
.header--scrolled {
	height: 110px;
}
.header--scrolled .header__group{
	margin-top: 20px;
}
.header__top{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	padding-top: 12px;
}
.header__top-links{
	display: flex;
	gap: 36px;
	align-items: center;
}
.header__top-links a,
.header-mobile__bottom-links a{
	display: flex;
	gap: 8px;
	align-items: center;
	font-family: 'Inter';
	font-weight: 400;
	font-size: 18px;
	color: #0A1D43;
	text-decoration: none;
}
.header__top-links a:hover,
.header-mobile__bottom-links a:hover{
	color: #FF5E15;
}
.header__top-socials,
.header-mobile__bottom-socials{
	display: flex;
	gap: 4px;
	align-items: center;
}
.header__top-socials a img,
.header-mobile__bottom-socials a img{
	width: 22px;
	height: 22px;
}
.header__top-socials a,
.header-mobile__bottom-socials a{
	display: flex;
	border-radius: 50%;
	padding: 2px;
}
.header__top-socials a:hover,
.header-mobile__bottom-socials a:hover{
	background: #FF5E15;
}
.header-mobile__bottom{
	padding-top: 32px;
	margin-top: 32px;
	border-top: 1px solid #dedede;
}
.header-mobile__bottom-column{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
	margin-top: 32px;
	border-top: 1px solid #dedede;
}
.header-mobile__bottom-column .lang-switch a{
	font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    color: #0A1D43;
    text-decoration: none;
}
.header__group{
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 12px;
}
.header__content{
	display: flex;
	gap: 78px;
	align-items: center;
}
.header__navigation ul{
	display: flex;
	gap: 36px;
}
.header__navigation .sub-menu{
	flex-direction: column;
    gap: 12px;
    position: absolute;
    background: #fff;
    box-shadow: 1px 1px 10px rgba(49, 49, 49, .2);
    padding: 24px;
    border-radius: 16px;
	transition: all .2s ease-in-out;
	transform: translateY(-10px);
	opacity: 0;
	visibility: hidden;
	align-items: flex-start;
}
li.menu-item-has-children:hover .sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.header__navigation ul li{
	padding: 5px 0;
}
.header__navigation ul li a{
	font-family: 'Inter';
	font-weight: 500;
	font-size: 16px;
	color: #0A1D43;
	position: relative;
	text-decoration: none;
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: center;
}
.header-mobile__navigation ul li a{
	font-family: 'Inter';
	font-weight: 500;
	font-size: 16px;
	color: #0A1D43;
	position: relative;
	text-decoration: none;
	display: flex;
	gap: 4px;
	align-items: center;
}

.header-mobile__navigation .sub-menu{
	display: none;
	flex-direction: column;
	gap: 4px;
	padding-top: 12px;
}
.header__navigation ul li a svg{
	transition: all .2s ease-in-out;
}
.header__navigation ul li a:hover,
.header__navigation ul li.current-menu-item a
{
	color: #FF5E15;
}
.header__navigation ul li:hover svg{
	transform: rotate(180deg);
}
.link-underline{
	position: relative;
}
.link-underline:hover{
	color: #FF5E15;
}
.header__navigation ul li a::after,
.link-underline::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #FF5E15;
    transform-origin: bottom right;
    transition: transform .25s ease-out;
}
.header__navigation ul li a:hover::after,
.header__navigation ul li.current-menu-item a::after,
.link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.header__hamburger{
	width: 32px;
    height: 32px;
    position: relative;
    z-index: 10;
	display: none;
}

.header__hamburger-line{
	height: 4px;
    background-color: #0A1D43;
    border-radius: 16px;
    display: block;
    position: absolute;
    right: 0;
    transition: all .3s ease-in-out;
	width: 32px;
}
.header__hamburger-line.line-1 {
    top: 5px;
}
.header__hamburger-line.line-2,
.header__hamburger-line.line-4 {
    top: 15px;
}
.header__hamburger-line.line-3 {
    top: 25px;
}
.header__hamburger.opened .line-2 {
	transform: rotate(-225deg);
	background: #FF5E15;
}
.header__hamburger.opened .line-4 {
    transform: rotate(225deg);
	background: #FF5E15;
}
.header__hamburger.opened .line-1 {
    transform: translateY(-50px);
    opacity: 0;
    pointer-events: none;
}
.header__hamburger.opened .line-3 {
    transform: translateY(50px);
    opacity: 0;
    pointer-events: none;
}
.mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #f5f5f5;
    padding: 90px 30px;
    overflow-y: auto;
	text-align: center;
}
.mobile-menu__top{
	display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #fff;
}
.header-mobile__navigation .menu{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.button-double{
	padding: 8px;
	border-radius: 1000px;
	height: 72px;
	display: flex;
	gap: 8px;
	background: #0A1D431A;
	align-items: center;
	text-decoration: none;
	position: relative;
	z-index: 1;
}
.button-double::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 1000px;
	background: #ffffff44;
	z-index: -1;
}
.button-double .button-double-text{
	font-family: 'Inter';
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	display: flex;
	align-items: center;
	height: 56px;
	padding: 0 32px;
	color: #fff;
	background: #FF5E15;
	border-radius: 1000px;
	transition: all .2s ease-in-out;
}
.button-double .button-double-icon{
	width: 56px;
	height: 56px;
	background: #0A1D43;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease-in-out;
}
.button-double:hover{
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.button-double:hover .button-double-icon {
	transform: translateX(4px);
}

.button-double:hover svg {
	transform: translateX(2px);
}
.cf-submit {
    border: none;
    cursor: pointer;
	transition: all .2s ease-in-out;
}
.footer{
	background: #0A1D43;
	padding-top: 74px;
}
.footer__top{
	display: none;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	padding-bottom: 50px;
	border-bottom: 1px solid #ffffff1a;
}
.footer__header{
	font-family: 'Inter';
	font-weight: 600;
	font-size: 48px;
	line-height: 58px;
	color: #fff;
}
.footer__header p{
	line-height: 58px;
	margin: 0;
}
.footer__wrapper{
	display: flex;
	gap: 20px;
	padding-top: 50px;
	padding-bottom: 50px;
	justify-content: space-between;
}
.footer__info{
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.footer__text{
	font-family: Inter;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
}
.footer__text p:last-child{
	margin: 0;
}
.footer__socials{
	display: flex;
	gap: 12px;
	align-items: center;
}
.footer__socials a{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #FFFFFF21;
}
.footer__socials a img{
	width:31px;
	height: 31px;
}
.footer__socials a:hover{
	background: #FF5E15;
}
.footer__row{
	background: #FF5E15;
	padding: 25px 0;
}
.footer__copyright-wrapper{
	display: flex;
	gap: 20px;
	justify-content: space-between;
	max-width: 1168px;
	margin: 0 auto;
}
.footer__copyright{
	font-family: 'Inter';
	font-weight: 400;
	font-size: 20px;
	color: #fff;
}
.footer__links-add{
	display: flex;
	gap: 8px;
}
.footer__links-add li{
	padding-right: 8px;
	border-right: 1px solid #fff;
}
.footer__links-add li:last-child{
	padding: 0;
	border: 0;
}
.footer__links-add li a{
	font-family: 'Inter';
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}
.footer__links-add li a:hover{
	color: #0A1D43;
}
.footer__menu{
	display: flex;
	flex-direction: column;
	gap: 22px; 
}
.footer__menu-link{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	position: relative;
	text-decoration: none;
}
.footer__column{
	font-family: 'Inter';
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
}
.footer__column p{
	margin-bottom: 30px;
}
.footer__column p:last-child{
	margin-bottom: 0px;
}
.footer__column a{
	text-decoration: none;
	color: #fff;
}
.footer__column a:hover{
	color: #FF5E15;
}
.footer__newsletter{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.footer__newsletter-title{
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
	color: #fff;
}
.footer__newsletter-form .tnp-subscription{
	margin: 0;
}
.footer__newsletter-form .tnp-field-email{
	position: relative;
}
.footer__newsletter-form .tnp-field-email label{
	display: none;
}
.footer__newsletter-form button.tnp-submit{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FF5E15;
	border-radius: 50%;
	border: none;
	position: absolute;
	top: 4px;
	right: 4px;
	cursor: pointer;
	z-index: 1;
	transition: all .2s ease-in-out;
	border: 1px solid #FF5E15;
}
.footer__newsletter-form button.tnp-submit svg path,
.footer__newsletter-form button.tnp-submit svg{
	transition: all .2s ease-in-out;
}
.footer__newsletter-form button.tnp-submit:hover{
	background: transparent;
}
.footer__newsletter-form button.tnp-submit:hover svg path{
	stroke: #FF5E15;
}
.footer__newsletter-form button.tnp-submit:hover svg{
	transform: translateX(2px);
}
.footer__newsletter-form .tnp-email{
	background: #FFFFFF1A!important;
	border: none!important;
	border-radius: 1000px;
	font-weight: 400;
	font-size: 14px!important;
	line-height: 20px;
	color: #fff!important;
	padding: 10px 48px 10px 28px!important;
	min-width: 345px;
	height: 48px;
}
.footer__newsletter-form .tnp-email:placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}
.footer__newsletter-form .tnp-privacy-field label{
	display: flex;
	gap: 10px;
}
.footer__newsletter-form .tnp-privacy-field a,
.footer__newsletter-form .tnp-privacy-field{
	font-weight: 400;
    font-size: 14px;
    color: #fff;
}
.footer__newsletter-form .tnp-privacy-field a:hover{
	color: #FF5E15;
}
input[type=checkbox]{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    margin: 0;
    border: 1px solid #0A1D43;
    width: 17px;
    height: 17px;
    display: grid!important;
    place-content: center;
	padding: 0;
	border-radius: 2px;
	max-width: 100%!important;
	margin: 0!important;
}
input[type=checkbox]::before {
    content: "";
    font-family: "FontAwesome";
    font-size: 17px;
    padding-left: 1px;
    color: #FF5E15;
    transform: scale(0);
    transition: all .2s ease-in-out;
}
input[type=checkbox]:checked::before{
	transform: scale(1);
}
.section-subtitle{
	font-family: 'Inter';
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #0A1D43;
	position: relative;
	padding-left: 48px;
	margin-bottom: 16px;
}
.section-subtitle::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 2px;
	background: #FF5E15;
}
h1.section-title{
	font-family: 'Inter';
	font-weight: 700;
	font-size: 64px;
	color: #0A1D43;
	line-height: 76px;
}
h2.section-title{
	font-family: 'Inter';
	font-weight: 700;
	font-size: 48px;
	color: #0A1D43;
	line-height: 58px;
}
h1.section-title p{
	line-height: 76px;
}
h2.section-title p{
	line-height: 58px;
}
.section-title p:last-child{
	margin-bottom: 0;
}
.section-text{
	font-family: 'Inter';
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
	color: #343E5F;
	opacity: 80%;
}
.section-text p:last-child{
	margin-bottom: 0;
}
.button-primary{
	font-family: 'Inter';
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	gap: 48px;
	padding: 16px 16px 16px 32px;
	text-decoration: none;
	color: #fff;
	background: #0A1D43;
	border-radius: 1000px;
	align-items: center;
}
.button-primary svg,
.button-primary path{
	transition: all .2s ease-in-out;
}
.button-primary:hover{
	background: #F2F3F5;
	color: #0A1D43;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
.button-primary:hover svg{
	transform: translateX(5px);
}
.button-primary:hover path{
	stroke: #0A1D43;
}
.button-read-more{
	font-family: 'Inter';
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #0A1D43;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
.button-read-more:hover{
	color: #FF5E15; 
}
.button-read-more svg,
.button-read-more path{
	transition: all .2s ease-in-out;
}
.button-read-more:hover svg{
	transform: translateX(4px);
}
.button-read-more:hover path{
	stroke: #FF5E15;
}
.button-read-more::after,
.button-read-more::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #FF5E15, #0A1D43);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.button-read-more::before {
  top: -5px;
  transform-origin: left;
}

.button-read-more:hover::after,
.button-read-more:hover::before {
  transform: scaleX(1);
}
.image-cut-left{
	-webkit-clip-path: polygon(110px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 110px);
	clip-path: polygon(110px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 110px);
}

@media screen and (max-width: 1300px){
	.header__content{
		gap: 30px;
	}
	.header__navigation ul{
		gap: 20px;
	}
}
@media screen and (max-width: 1200px){
	.header__navigation,
	.header__button{
		display: none;
	}
	.header__hamburger{
		display: block;
	}
	.header-mobile__additional{
		margin-top: 50px;
	}
	.header-mobile__additional .header__button{
		display: inline-flex;
	}
	.footer__wrapper{
		flex-wrap: wrap;
	}
	.footer__newsletter{
		width: 100%;
	}
}
@media screen and (max-width: 1024px) {
	.footer__top{
		flex-direction: column;
		gap: 30px;
		align-items: flex-start;
	}
	.footer__wrapper{
		gap: 40px;
	}
	.footer__copyright-wrapper{
		flex-direction: column;
		gap: 5px;
	}
}
@media screen and (max-width: 768px){
	.footer__wrapper{
		flex-direction: column;
		gap: 20px;
	}
	.header__top{
		display: none!important;
	}
	.header{
		height: 130px;
	}
	div[role=main]{
		padding-top: 130px;
	}
}
@media screen and (max-width: 600px){
	
	h1.section-title, h1.section-title p{
		font-size: 40px;
		line-height: 48px;
	}
}
.category__titles{
	margin-bottom: 50px;
	text-align: center;
}
.category__subtitle{
	display: inline-block;
}
.category__content{
	display: flex;
	gap: 76px;
	align-items: flex-start;
}
.category__list{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 76px;
}
.category__sidebar{
	max-width: 375px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.category__sidebar-title{
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	color: #0A1D43;
	padding: 2px 2px 2px 12px;
	position: relative;
	margin-bottom: 24px;
}
.category__sidebar-title span{
	color: #FF5E15;
}
.category__sidebar-title::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: #FF5E15;
	border-radius: 10px;
}
.search-form__content{
	position: relative;
}
.category__search .search-form__content input[type=text]{
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
	color: #343E5F;
	opacity: 80%;
	padding: 12px 50px 12px 12px;
	background: transparent;
	border: 1px solid #DEDEDE;
	border-radius: 12px;
}
.category__search .search-form__content input[type=submit]{
	display: none;
}
.category__search .search-form__content label{
	margin: 0;
}
.category__search .search-form__content .search-form__submit{
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	display: flex;
}
.category__search .search-form__content .search-form__submit path{
	transition: all .2s ease-in-out;
}
.category__search .search-form__content .search-form__submit:hover path{
	stroke: #FF5E15;
}
.search__results-text{
	margin-top: 30px;
}
.search__results.category__search{
	margin-top: 50px;
	border-bottom: 0px;
}
.category__search,
.category__categories,
.category__latest{
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(1, 14, 55, 0.1);
}
.category__categories ul{
	display: flex;
	gap: 12px;
	flex-direction: column;
}
.category__categories ul a{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #DEDEDE;
	color: #0A1D43;
	opacity: 80%;
	background: transparent;
	display: block;
}
.category__categories ul a:hover{
	color: #fff;
	background: #0A1D43;
	border-color: #0A1D43;
}
.category__latest ul{
	display: flex;
	gap: 18px;
	flex-direction: column;
}
.category__latest ul li{
	display: flex;
	gap: 12px;
	align-items: center;
}
.category__latest-img{
	width: 85px;
	height: 85px;
	overflow: hidden;
	border-radius: 50%;
}
.category__latest-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.category__latest-content{
	flex: 1;
}
.category__latest-content a{
	font-weight: 700;
	font-size: 16px;
	line-height: 28px;
	color: #0A1D43;
	margin-bottom: 8px;
	display: block;
	text-decoration: none;
}
.category__latest-content a:hover{
	color: #FF5E15;
}
.category__latest-content span{
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #343E5F;
	opacity: 80%;
}
.category__cta{
	-webkit-clip-path: polygon(100px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 100px);
    clip-path: polygon(100px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 100px);
	border-radius: 125px 24px 24px 24px;
	overflow: hidden;
	height: 620px;
	position: relative;
}
.category__cta-background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.category__cta-background::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	background: linear-gradient(360deg, rgba(2, 6, 38, 0.6) 0%, rgba(2, 6, 38, 0) 100%);

}
.category__cta-background img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.category__cta-content{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	height: 100%;
	position: relative;
	z-index: 3;
	padding: 60px 40px;
}
.category__cta-title{
	font-weight: 700;
	font-size: 36px;
	line-height: 46px;
	color: #fff;
	margin-bottom: 30px;
}
.category__cta-subtitle{
	color: #FF5E15;
	margin-bottom: 8px;
}
.category__cta-button .button-double-text{
	font-size: 12px;
	line-height: 20px;
}
.category__cta-button.button-double::before{
	background: #fff;
}
.category__item-wrapper{
	height: 100%;
	overflow: hidden;
	-webkit-clip-path: polygon(100px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 100px);
	clip-path: polygon(100px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 100px);
}
.category__item{
	height: 100%;
	border-radius: 125px 24px 24px 24px;
}
.category__item-image{
	height: 420px;
	max-height: 420px;
	position: relative;
}
.category__item-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
	border-radius: 125px 24px 0px 0px;
}
.category__item-category{
	position: absolute;
	z-index: 2;
	bottom: -20px;
	left: 0px;
	background: #0A1D43;
	border-radius: 8px 115px 115px 0;
	padding: 10px 20px;
	font-weight: 500;
	font-size: 18px;
	line-height: 25.85px;
	color: #fff;
	text-decoration: none;
}
.category__item-category:hover{
	color: #FF5E15;
}
.category__item-content{
	padding: 48px 0px 27px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.category__item-date{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #343E5F;
	opacity: 80%;
	margin-bottom: 16px;
	display: flex;
	gap: 4px;
	align-items: center;
}
.category__item-title{
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	color: #0A1D43;
	margin-bottom: 12px;
	text-decoration: none;
}
.category__item-title:hover{
	color: #FF5E15;
}
.category__item-text{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #343E5F;
	opacity: 80%;
	margin-bottom: 16px;
}
.category__pagination{
	display: flex;
	gap: 6px;
	align-items: center;
	margin-top: 48px;
}
.category__pagination .page-numbers{
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #001659;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.category__pagination a.page-numbers:hover{
	color: #FF5E15;
}
.category__pagination .next.page-numbers{
	margin-left: 18px;
}
.category__pagination .prev.page-numbers{
	margin-right: 18px;
}
.category__pagination .page-numbers.current{
	background: #FF5E15;
	border-radius: 50%;
	color: #fff;
}
.category__pagination path{
	transition: all .2s ease-in-out;
}
.category__pagination .next.page-numbers:hover path,
.category__pagination .prev.page-numbers:hover path{
	stroke: #FF5E15;
}
.category-section{
	padding-top: 96px;
	padding-bottom: 96px;
}
.category__list-wrapper{
	width: 100%;
}
@media screen and (max-width: 768px){ 
	.category__content{
		flex-direction: column;
	}
	.category__sidebar{
		max-width: 100%;
	}
	.category-section{
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
.catbreadcrumbs-section{
	background: #F2F3F5;
	position: relative;
	padding-top: 96px;
	padding-bottom: 96px;
}
.catbreadcrumbs-section::before{
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: #0A1D43;
}
.catbreadcrumbs__title {
	text-align: center;
	margin-bottom: 16px;
}

.catbreadcrumbs__list .catbreadcrumbs{
	margin-top: 0px;
}
.catbreadcrumbs__list ol{
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}
.catbreadcrumbs__list ol li{
	padding-right: 15px;
	position: relative;
}
.catbreadcrumbs__list ol li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1.5px;
	transform: rotate(20deg);
	background: #0A1D43;
	height: 100%;
}
.catbreadcrumbs__list ol li:last-child::before{
	content: none;
}
.catbreadcrumbs__list ol li a{
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #0A1D43;
	text-decoration: none;
}
.catbreadcrumbs__list ol li a:hover{
	color: #FF5E15;
}
.catbreadcrumbs__list ol li span{
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #FF5E15;
}
.p404__content{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 224px 0;
}
.p404__icon{
	position: relative;
	margin-bottom: 32px;
}
h1.not-found__heading{
	margin-bottom: 14px;
	font-size: 36px;
	line-height: 45px;
}
h1.not-found__heading span{
	color: #FF5E15;
}
.not-found__text{
	max-width: 480px;
	margin: 0 auto 48px;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
}
.not-found__button{
	font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 32px;
    color: #fff;
    background: #FF5E15;
    border-radius: 1000px;
    transition: all .2s ease-in-out;
	border: 1px solid #FF5E15;
}
.not-found__button:hover{
	background: transparent;
	color: #FF5E15;
}
.posthero-section{
	padding-top: 192px;
	padding-bottom: 96px;
}
.posthero__image{
	text-align: center;
	-webkit-clip-path: polygon(110px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 110px);
    clip-path: polygon(110px 0%, 80% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 80%, 0% 110px);
    overflow: hidden;
	width: 100%;
	position: relative;
	border-radius: 130px 24px 24px 24px;
	max-width: 1200px;
	max-height: 586px;
	margin: 0 auto;
}
.posthero__image-fullsize{
	max-height: 100%!important;
}
.posthero__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.postmodule__about{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 50px;
}
.postmodule__about-img{
	display: flex;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	overflow: hidden;
}
.postmodule__about-content{
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.postmodule__about-name{
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #001659;
}
.postmodule__about-name span{
	font-weight: 500;
	color: #FF5E15;
}
.postmodule__about-info{
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #343E5F;
	opacity: 80%;
}
@media screen and (max-width: 768px){
	.posthero-section{
		padding-top: 120px;
		padding-bottom: 60px;
	}
}
.header__top-column{
	display: flex;
	align-items: center;
	gap: 12px;
}
.lang-switch select {
    background-color: #0A1D43;
	color: #fff;
    text-transform: uppercase;
	border: 0px;
	cursor: pointer;
	padding: 6px 20px 6px 14px;
	background-position-x: 87%;
    background-position-y: 12px;
	border-radius: 10px;
}
.arrl-parent{
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}
#menu-mobile div>ul>li.menu-item-has-children>.arrl-parent>.arr-after {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: url(includes/img/arrow-down.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border: 0;
	transition: all .2s ease-in-out;
}
#menu-mobile div>ul>li.menu-item-has-children>.arrl-parent>.arr-after.collapsed{
	transform: rotate(180deg);
}
@media screen and (max-width: 500px){
	h2.section-title {
		font-size: 34px;
		line-height: 42px;
	}
	h2.section-title p {
		line-height: 41px;
	}
}
.header__group-logo-nav .logo-group__logo{
	max-height: 80px;
}
.footer__logo img{
	max-height: 80px;
}
.footer__cd{
	background: #F2F3F5;
	padding: 60px 0;
	border-top: 1px solid #0A1D4344;
}
.footer__cd-item{
	font-family: 'Inter';
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #0A1D43;
	width: 100%;
	max-width: 270px;
}
.footer__cd-heading{
	font-family: 'Inter';
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #0A1D43;
	margin-bottom: 35px;
}
.footer__cd-item p:last-child{
	margin-bottom: 0px;
}
.footer__cd-list{
	gap: 35px;
	display: flex;
	flex-wrap: wrap;
}

.postmodule__list ul {
	width: 100%;
}