:root {
	--primary-color: #BC2026;
	--secondary-color: #F5F5F5;
}

#header-menu-desktop {
	position: relative;
	z-index: 9;
	width: calc(100% - 32px);
	max-width: 1200px;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	background: #ffffff;
	border: 1px solid #C1C1C18C;
	box-shadow: 0 4px 74px 0 #00000014;
	border-radius: 104px;
	height: 104px;
	justify-content: space-between;
	align-items: center;
	padding: 0 48px;
	transition: top 0.3s ease;
	display: none;
	margin: 0 0 24px;
}

.home #header-menu-desktop {
	position: absolute;
	top: 72px;
}

.menu-desktop {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	gap:8px;
}

.menu-desktop > li {
	position: relative;
	height: 104px;
	display: flex;
	align-items: center;
}

.menu-desktop > li > .sub-menu {
	position: absolute;
	padding: 16px 0;
	list-style: none;
	background: #ffffff;
	width: 340px;
	border-radius: 0 0 16px 16px;
	transition: all 0.3s ease;
	opacity: 0;
	top: calc(100% - 1px);
	pointer-events: none;
}

.menu-desktop > li.menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	top: calc(100% - 16px);
	pointer-events: auto;
}

.menu-desktop > li > .sub-menu > li {
	position: relative;
	padding: 0 16px;
}

.menu-desktop .sub-menu .menu-item-has-children > .sub-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	left: 100%;
	top: 16px;
	transition: all 0.3s ease;
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
}

.menu-desktop .sub-menu .menu-item-has-children > .sub-menu li {
	position: relative;
}

.menu-desktop .sub-menu .menu-item-has-children:hover > .sub-menu {
	top: 0;
	opacity: 1;
	pointer-events: auto;
}

.menu-desktop > li > a {
	font-size: 16px;
	color: #000000;
	transition: all 0.3s ease;
	text-decoration: none;
	height: 44px;
	display: flex;
	align-items: center;
	line-height: 1.3;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 44px;
}

.menu-desktop > li:hover > a {
	border-color: #A71D21;
	background: #FFEFF0;
}

.menu-desktop > li > .sub-menu > li > a,
.menu-desktop .sub-menu .menu-item-has-children > .sub-menu a {
	font-family: "futura-pt";
	font-size: 15px;
	text-decoration: none;
	height: 44px;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	border-radius: 44px;
	color: #000000;
	padding: 0;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.menu-desktop .sub-menu .menu-item-has-children > .sub-menu {
	border-left: 1px solid #9F9F9F;
	min-width: 160px;
	border-radius: 0 15px 15px 0;
	background: #ffffff;
}

.menu-desktop .sub-menu .menu-item-has-children > .sub-menu a {
	border-radius: 0;
	padding: 0 16px;
	background: none;
}

.menu-desktop .sub-menu .menu-item-has-children > .sub-menu a:hover {
	color: #BC2026;
}

.menu-desktop > li > .sub-menu > li.menu-item-has-children > a {
	background-image: url(/wp-content/uploads/2025/03/icon-menu-red.svg);
	background-position: calc(100% - 16px) center;
	background-repeat: no-repeat;
}

.menu-desktop > li > .sub-menu > li.menu-item-has-children:hover > a {
	background-image: url(/wp-content/uploads/2025/03/icon-menu-white.svg);
}

.menu-desktop > li > .sub-menu > li:hover > a {
	padding: 0 16px;
	background-color: #BC2026;
	color: #ffffff;
}

.menu-desktop > li > .sub-menu > li.menu-btn-secondary-zm {
	margin-top: 24px;
}

.btn-primary-zm,.btn-secondary-zm, 
.menu-desktop > li > .sub-menu > li.menu-btn-secondary-zm > a, 
.menu-desktop > li.menu-btn-secondary-zm > a,
.menu-desktop > li.menu-btn-primary-zm > a,
.menu-mobile li.menu-btn-secondary-zm > a,
.menu-mobile li.menu-btn-primary-zm > a{
	height: 52px;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	color: #000000;
	border: 1px solid #E8E8E8;
	border-radius: 52px;
	padding: 0 16px;
	display: flex;
	justify-content: center;
	background: #ffffff;
	gap: 8px;
	position: relative;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.menu-desktop > li.menu-btn-primary-zm > a,.menu-mobile > li.menu-btn-primary-zm > a, .btn-primary-zm {
	background-color: #BC2026;
	border-color: #BC2026;
	color: #ffffff;
}

.menu-mobile .sub-menu li.menu-btn-secondary-zm {
	margin-top: 24px;
}

.menu-desktop > li > .sub-menu > li.menu-btn-secondary-zm.btn-arrow-icon > a:after,
.btn-secondary-zm.icon-arrow-right:after,
.btn-primary-zm.icon-gears-left:before,
.menu-mobile li.menu-btn-secondary-zm > a:after {
	content: "";
	position: relative;
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/2025/03/arrow-up.svg) no-repeat center;
}

.btn-primary-zm.icon-gears-left:before {
	background: url(/wp-content/uploads/2025/03/gears-white.svg) no-repeat center;
}

.btn-secondary-zm:hover, 
.menu-desktop > li > .sub-menu > li.menu-btn-secondary-zm > a:hover,
.menu-desktop > li.menu-btn-secondary-zm > a:hover {
	background-color: #BC2026;
	border-color: #BC2026;
	color: #ffffff;
}

.menu-desktop > li.menu-btn-primary-zm > a:hover,
.btn-primary-zm:hover {
	border-color: #E8E8E8;
	color: #000000;
	background: #ffffff;
}

.menu-desktop > li > .sub-menu > li.menu-btn-secondary-zm.btn-arrow-icon > a:hover:after,
.btn-secondary-zm.icon-arrow-right:hover:after {
	background: url(/wp-content/uploads/2025/03/arrow-up-white.svg) no-repeat center;
}

.menu-desktop > li.btn-user-icon > a:before,
.menu-desktop > li.btn-phone-icon > a:before,
.menu-mobile > li.btn-user-icon > a:before,
.menu-mobile > li.btn-phone-icon > a:before{
	content: "";
	position: relative;
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/2025/03/icon-user.svg) no-repeat center;
}

.menu-desktop > li.btn-phone-icon > a:before,
.menu-mobile > li.btn-phone-icon > a:before {
	background: url(/wp-content/uploads/2025/03/icon-phone-white.svg) no-repeat center;
}

.menu-desktop > li.btn-user-icon > a:hover:before {
	background: url(/wp-content/uploads/2025/03/icon-user-white.svg) no-repeat center;
}

.menu-desktop > li.btn-phone-icon > a:hover:before {
	background: url(/wp-content/uploads/2025/03/icon-phone.svg) no-repeat center;
}
.icon-gears-left:hover:before {
	background: url(/wp-content/uploads/2025/03/gears.svg) no-repeat center;
}

.swiper-hero-slider .btn-primary-zm, 
.swiper-hero-slider .btn-secondary-zm {
	border-color: var(--primary-color);
}

li.btn-user-icon.hide-btnlogin {
	display: none;
}

#header-menu-mobile {
	position: relative;
	z-index: 9;
	width: calc(100% - 32px);
	max-width: 1200px;
	background: #ffffff;
	border: 1px solid #C1C1C18C;
	box-shadow: 0 4px 74px 0 #00000014;
	border-radius: 104px;
	height: 120px;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	transition: top 0.3s ease;
	margin: 0 auto 24px;
	display: flex;
}

.home #header-menu-mobile {
	position: absolute;
	left: 16px;
	top: 72px;
}

.container-trp {
	max-width: 1232px;
	width: 100%;
	padding: 0 16px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	position: relative;
}

.header-sections-trp.layout-horizontal {
	align-items: flex-start;
	gap: 24px;
}

.header-sections-trp {
	padding-top: 80px;
	padding-bottom: 24px;
}

.header-sections-trp .btn-secondary-zm {
	border-color: #BC2026;
	width: 100%;
}

.header-sections-trp .pull-content {
	display: flex;
	gap: 8px;
	flex-direction: column;
}

.header-sections-trp h5 {
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #BC2026;
	font-weight: 400;
}

.header-sections-trp h2 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	color: #000000;
}

.header-sections-trp p {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
}

.container-trp.layout-vertical {
	align-items: center;
	text-align: center;    
	gap: 24px;
}

.header-sections-trp .btn-secondary-zm.hide-on-mobile {
	display: none;
}

.card-image-overlay-trp {
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	padding: 24px;
	justify-content: flex-end;
	min-height: 230px;
	gap: 4px;
}

.card-image-overlay-trp:before {
	content: "";
	width: 24px;
	height: 24px;
	right: 16px;
	top: 16px;
	background: url(/wp-content/uploads/2025/03/arrow-up.svg) no-repeat center;
	position: absolute;
	z-index: 1;
}

.card-image-overlay-trp a {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.card-image-overlay-trp picture {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.card-image-overlay-trp picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-image-overlay-trp picture:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
}

.card-image-overlay-trp b {
	background: url(/wp-content/uploads/2025/03/calendar-clock.svg) no-repeat left center;
	position: relative;
	color: #ffffff;
	font-weight: 400;
	padding-left: 24px;
	font-size: 14px;
}
.card-image-overlay-trp h3 {
	position: relative;
	margin: 0;
	color: #ffffff;
	font-size: 20px;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	letter-spacing: 0.2px;
}
.card-image-overlay-trp p {
	position: relative;
	color: #ffffff;
	margin: 0;
	line-height: 1.5;
	font-size: 16px;
}
.card-image-overlay-trp > span {
	color: var(--primary-color);
	position: relative;
	display: inline-flex;
	text-decoration: underline;
	font-family: 'futura-pt';
	font-size: 16px;
}

.swiper-on-2 .swiper-slide {
	width: 80%;
}

.container-trp.container-slider-mobile-trp {
	max-width: none;
	padding-right: 0;
}

.container-trp.container-slider-mobile-trp.row-blog-post {
	padding-bottom: 32px;
}

.grid-custom-posts-trp .swiper-off .swiper-wrapper {
	display: grid;
	grid-gap: 24px;
}

.card-image-overlay-trp.card-layout-large {
	min-height: 482px;
}

.card-image-overlay-trp.card-layout-large h3 {
	font-size: 24px;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
}

.swiper-on-2.swiper-initialized {
	padding-bottom: 40px;
}

body .swiper-pagination-bullet-active {
	background: var(--primary-color);
}

.only-mobile-gcp {
	margin-top: 24px;
	border-color: var(--primary-color);
}

.hero-item-trp {
    position: relative;
    height: auto;
    display: flex;
    align-items: flex-end;
    padding: 224px 24px 90px;
    min-height: 85vh;
}

.section-hero-container .swiper-hero-slider .swiper-pagination {
	bottom: 65px;
}

.video-bg-trp {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; 
}

.image-bg-trp {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-container {
	position: absolute;
	inset: 0;
}

.media-container:after {
	content: "";
	position: absolute;
	inset: 0;
	background: #000000;
	opacity: 0.5;
}

body .swiper-button-next, body .swiper-button-prev {
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/2025/03/arrow-alt-circle-left-2.svg) no-repeat center;
}

body .swiper-button-prev {
	background: url(/wp-content/uploads/2025/03/arrow-alt-circle-left-1.svg) no-repeat center;
}

.swiper-button-next:after, .swiper-button-prev:after {
	display: none;
}

.content-hero {
	display: flex;
	position: relative;
	flex-direction: column;
	gap: 45px;
}

.content-hero h1, .content-hero p {
	margin:0;
	padding:0;
	color:#ffffff;
	text-align: center;
	font-size: 16px;
}

.content-hero h1 {
	font-size: 32px;
}

.hero-btns {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.media-grid-trp > picture {
	border: 1px solid #D6D7DC;
	border-radius: 24px;
	overflow: hidden;
	font-size: 0;
	display: block;
}

.media-grid-trp > picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-grid-trp > div {
	border: 1px solid #D6D7DC;
	border-radius: 24px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
	padding: 32px;
}

.media-grid-trp {
	display: grid;
	gap: 48px;
	margin-top: 32px;
}

.media-grid-trp > div h2 {
	margin: 0 0 16px;
	font-size: 48px;
	line-height: 1;
}

.media-grid-trp > div p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.5;
}

.nav-links-trp {
	margin: 24px 0 0;
	padding: 0;
	list-style-position: inside;
	display: grid;
	grid-gap: 24px;
	color: var(--primary-color);
}

.nav-links-trp a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.card-standard {
	border: 1px solid #D6D7DC;
	background: #ffffff;
	padding: 24px;
	border-radius: 24px;
	position: relative;
}

.card-standard a {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.card-standard h4 {
	margin: 0 0 12px;
	font-size: 18px;
	background: url(/wp-content/uploads/2025/03/arrow-up.svg) no-repeat right center;
}

.card-standard p {
	margin: 0!important;
}

.home #page {
	padding: 0;
}

.grid-card-standard {
	display: grid;
	grid-gap: 16px;
	padding-top: 32px;
}

#content-menu-mobile {
	position: fixed;
	z-index: 99;
	background: #ffffff;
	width: calc(100% - 16px);
	right: -100%;
	top: 0;
	bottom: 0;
	transition: all 0.3s ease;
	padding: 24px;
	padding-right: 0;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}

#content-menu-mobile.open {
	right:0;
}

#content-menu-mobile > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 24px;
	padding-right:24px;
}

.trigger-menu-mobile {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
}

.nav-menu-mobile {
	height: calc(100% - 86px);
	position: relative;
}

.menu-mobile:before {
	content: "";
	position: fixed;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
	height: 200px;
	left: 100%;
	width: 100%;
	bottom: 24px;
	z-index: 1;
	transition: left 0.3s ease;
}

.open .menu-mobile:before {
	left: 24px;
}

.menu-mobile {
	padding: 0 24px 200px 0;
	margin: 0;
	list-style: none;
	height: 100%;
	overflow: auto;
	position: relative;
}

.menu-mobile > li.menu-btn-secondary-zm,
.menu-mobile > li.menu-btn-primary-zm {
	bottom: 24px;
	position: fixed;
	left: 100%;
	z-index: 2;
	transition: left 0.3s ease;
	width: calc(100% - 64px);
} 

.menu-mobile > li.menu-btn-primary-zm {
	bottom: 50px;
}

.open .menu-mobile > li.menu-btn-primary-zm, .open .menu-mobile > li.menu-btn-secondary-zm {
	left:40px;
}

.menu-mobile > li {
	margin: 0;
}

.menu-mobile > li > a {
	text-decoration: none;
	font-size: 16px;
	color: #000000;
	line-height: 1;
	height: 48px;
	display: flex;
	align-items: center;
}

.menu-mobile > li.menu-item-has-children > a {
	background: url(/wp-content/uploads/2025/03/icon-arrow.svg) no-repeat right center;
}

.menu-mobile > li.menu-item-has-children .sub-menu {
	padding: 0;
	list-style: none;
	display: none;
}

.menu-mobile .sub-menu li:not(.sub-head-menu):not(.menu-btn-secondary-zm) a {
	text-decoration: none;
	font-size: 14px;
	font-family: 'futura-pt';
	font-weight: 500;
	padding: 6px 0;
	display: block;
	color: #000000;
}

.sub-head-menu > a {
	pointer-events: none;
	text-decoration: none;
	font-size: 14px;
	font-family: 'futura-pt';
	font-weight: 500;
	display: inline-block;
	color: #000000;
	width: 100%;
	max-width: 170px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 0 0 8px;
	margin: 8px 0;
}

.sub-head-menu ~ .sub-head-menu {
	margin-top: 16px;
}

#page {
	padding-top: 72px;
}

.nav-menu-mobile-contact{
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
	margin-right: 10px;
}

#menu-mobile-contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 8px;
	font-size: 0;
}

#menu-mobile-contact a {
	display: flex;
	height: 54px;
	width: 54px;
	border-radius: 54px;
	border: 1px solid var(--primary-color);
	background: url(/wp-content/uploads/2025/03/icon-phone-white.svg) no-repeat center;
	background-color: var(--primary-color);
}

#menu-mobile-contact .account-icon-mobile a {
	border-color: #E8E8E8;
	background: url(/wp-content/uploads/2025/03/icon-user.svg) no-repeat center;
	background-color: var(--secondary-color);
	display: none;
}

.blog-archive {
	padding: 16px;
	max-width: 1232px;
	margin: auto;
}

.post-card-trp {}

.post-card-trp .link-perma {
	display: flex;
}

.post-category-trp {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.post-category-trp a {
	display: inline-flex;
	padding: 8px 16px;
	border-radius: 40px;
	border: 1px solid var(--primary-color);
	text-decoration: none;
	line-height: 1;
	font-size: 16px;
	color: #000000;
}

.post-card-trp img.blog-image-trp {
	aspect-ratio: 16 / 9;
	max-width: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.title-post-trp {
	margin: 0;
}

.title-post-trp a {
	font-size: 20px;
	text-decoration: none;
	color: #000000;
	display: flex;
	line-height: 1.3;
}

.excerpt-post-trp {
	margin: 0;
	line-height: 1.3;
	color: #000000;
	font-size: 16px;
}

.post-meta-trp {
	display: flex;
	align-items: center;
	gap: 8px;
}

.post-meta-trp figure {
	margin: 0;
	border-radius: 48px;
	height: 48px;
	width: 48px;
	overflow: hidden;
	border: 1px solid #C9C9C9;
}

.post-meta-trp > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-meta-trp > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.post-meta-trp > div a {
	text-decoration: none;
	font-size: 16px;
	color: #000000;
}

.post-meta-trp > div a+span {
	display: flex;
	gap: 10px;
}

.post-meta-trp > div b {
	font-size: 16px;
	font-weight: normal;
	color: #000000;
	display: flex;
	position: relative;
	align-items: center;
	gap: 6px;
}

.post-content-trp {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px 0;
}

.posts-list-trp {
	display: grid;
	grid-gap: 48px;
	padding-top: 48px;
}

.head-archive-page > div:first-child {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-title {
	margin: 0;
	font-size: 24px;
	color: var(--primary-color);
}

.breadcrumb-trp {
	display: flex;
	gap: 6px;
	align-items: center;
}

.breadcrumb-trp a {
	font-family: "futura-pt";
	color: #000000;
	font-size: 16px;
	text-decoration: none;
}

.breadcrumb-trp span {
	font-family: "futura-pt";
	color: #000000;
	font-size: 16px;
	border: 1px solid #D4D4D4;
	display: inline-block;
	padding: 4px 16px;
	border-radius: 30px;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-tabs-trp h4 {
	margin: 0;
	font-size: 18px;
	background-color: #1E1E1E;
	background-image: url(/wp-content/uploads/2025/03/arrow-white-filter.svg);
	color: #ffffff;
	font-weight: 500;
	padding: 8px 16px;
	line-height: 1.5;
	border-radius: 8px 8px 0 0;
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) center;
}

.blog-tabs-trp ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #E8E8E8;
	border-top: none;
	border-bottom-color: #000000;
	background: #ffffff;
}

.blog-tabs-trp ul a {
	margin: 0;
	font-size: 16px;
	padding: 8px 16px;
	line-height: 1.5;
	display: block;
	text-decoration: none;
	color: #000000;
	transition: all 0.3s ease;
	background: transparent;
}

.blog-tabs-trp ul a.active {
	background: #FFEFF0;
}

#info-sorting {
	display: none;
}

.results-count {
	margin: 16px 0 0;
	font-size: 16px;
	text-align: center;
	padding: 0;
	color: #000000;
}

.pagination-trp > ul {
	margin: 32px 0 16px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.pagination-trp > ul .page-numbers {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	justify-content: center;
	align-items: center;
	border: 1px solid #E6E6E6;
	text-decoration: none;
	font-size: 14px;
	color: #9b9b9b;
	transition: all 0.3s ease;
	background: transparent;
}

.pagination-trp > ul .page-numbers.current {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #ffffff;
}

.blog-tabs-trp.close h4 {
	border-radius: 8px;
}

.sorting-form-trp {
	width: 50%;
	max-width: 320px;
}

[name="orderby"] {
	appearance: none;
	border: 1px solid #D6D7DC;
	background: url(/wp-content/uploads/2025/03/icon-arrow.svg) no-repeat calc(100% - 24px) center;
	background-color: #ffffff;
	box-shadow: 0 4px 27px 0 rgba(0, 0, 0, 0.08);
	height: 58px;
	font-size: 16px;
	padding: 0 24px;
	border-radius: 58px;
	outline: none;
	cursor: pointer;
	width: 100%;
}

.card-header-single .breadcrumb-trp, 
.card-header-single .breadcrumb-trp * {
	color: #ffffff;
}

.card-header-single  .breadcrumb-trp span {
	background: rgba(255, 255, 255, 8%);
	border: none;
}

.container-blog-trp {
	max-width: 832px;
	padding-top: 32px;
	padding-bottom: 32px;
}

.container-blog-trp * {
	margin: 0;
	padding: 0;
	color: #070707;
}

.container-blog-trp img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 24px;
}

.container-blog-trp p {
	font-size: 16px;
	line-height: 1.5;
}

.container-blog-trp > *:not(:last-child) {
	margin-bottom: 32px;
}

.card-header-single .date-info {
	flex-wrap: wrap;
}
.date-info > p {
	width: 100%;
	margin: 0;
}
.date-info > p a {
	color: #ffffff;
	text-decoration: none;
}

#copyMessage {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #28a745;
	color: white;
	font-size: 14px;
	padding: 8px 16px;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	pointer-events: none;
	z-index: 999;
}
#copyMessage.show {
	opacity: 1;
}

.grid-2-trp {
	display: grid;
	grid-gap: 16px;
	grid-template-columns: repeat(1, calc(100% - 8px));
}

.box-filter-trp {
	border: 1px solid #C4C4C4;
	padding: 48px;
	border-radius: 12px;
}

.box-filter-trp h3, .box-filter-trp p, .box-table-trp h3, .box-table-trp p {
	margin: 0;
	font-size: 32px;
	color: #000000;
	line-height: 37px;
}

.box-filter-trp p, .box-table-trp p {
	line-height: 1.5;
	font-size: 16px;
	margin-bottom: 24px;
}

.combo-form-trp {
	display: flex;
}

.combo-form-trp select {
	font-size: 16px;
	padding: 13px;
	border-radius: 8px 0 0 8px;
	width: 50%;
	outline: none;
	appearance: none;
	border: 1px solid #D6D7DC;
	background: url(/wp-content/uploads/2025/03/icon-arrow.svg) no-repeat calc(100% - 13px) center;
	background-color: #ffffff;
}

.combo-form-trp button {
	border: none;
	width: 50%;
	border-radius: 0 8px 8px 0;
	background: var(--primary-color);
	color: #ffffff;
	font-size: 16px;
	cursor: pointer;
}

.section-table-filter-trp {
	background: #ffffff;
	padding: 80px 0;
}

.box-table-trp h3 {
	padding: 16px 16px 0;
}

.box-table-trp p {
	margin: 0;
	padding: 0 16px 16px;
}

.box-table-trp {
	border: 1px solid #C4C4C4;
	border-radius: 12px 0 0 12px;
	border-right: none;
	margin: 16px 0;
}

.box-table-trp table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	min-width: 800px;
}

.box-table-trp table th {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	text-align: left;
	padding: 20px 10px;
	vertical-align: middle;
	white-space: nowrap;
}

.box-table-trp table th img {
	vertical-align: middle;
}

.box-table-trp table td {
	padding: 20px 10px;
	border-top: 1px solid #DBDBDB;
	/*white-space: nowrap;*/
}
.box-table-trp table tr td:first-of-type, .box-table-trp table tr td:last-of-type{
	padding: 20px 20px;
}

.box-table-trp table td:last-child {
	width: 164px;
}

.btn-download {
	border-radius: 8px;
	background-color: var(--primary-color);
	border: none;
	color: #ffffff;
	font-size: 16px;
	padding: 12px 14px;
	display: inline-flex;
	gap: 8px;
	position: relative;
	cursor: pointer;
	text-decoration: none;
}

.btn-download:after {
	content: "";
	background: url(/wp-content/uploads/2025/03/download.svg) no-repeat center;
	width: 16px;
	height: 16px;
	background-size: contain;
}

.foot-table-trp {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	padding-right: 16px;
}

.foot-table-trp button {
	order: 2;
	width: calc(50% - 8px);
	font-size: 16px;
	padding: 8px 20px;
	display: flex;
	justify-content: space-between;
	background: #ffffff;
	border: 1px solid #DBDBDB;
	border-radius: 60px;
	cursor: pointer;
	max-width: 126px;
	height: 40px;
	align-items: center;
	color: #000000;
}

.foot-table-trp button:disabled, .foot-table-trp button[disabled] {
	color: #c1c1c1;
}

.foot-table-trp nav {
	width: 100%;
	order: 1;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.foot-table-trp nav .page-number-table {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	justify-content: center;
	align-items: center;
	border: 1px solid #E6E6E6;
	text-decoration: none;
	font-size: 14px;
	color: #9b9b9b;
	transition: all 0.3s ease;
	background: transparent;
	cursor: pointer;
}

.foot-table-trp nav .page-number-table.current, .foot-table-trp nav .page-number-table:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #ffffff;
}

.section-table-filter-trp .container-trp {
	padding-right: 0;
}

.scroll-table {
	overflow-x: auto;
}

.card-zm-box {
	border: 1px solid #D9D9D9;
	border-radius: 12px;
	padding: 16px;
	overflow: hidden;
}

.card-zm-box p {
	margin: 16px 0 0;
	line-height: 1.5;
	color: #000000;
	font-size: 16px;
	text-align: center;
}

.card-zm-box h4 {
	margin: -16px -16px 0;
	padding: 16px;
	color: #ffffff;
	background: #1E1E1E;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

.grid-zm-box-trp {
	display: grid;
	grid-gap: 16px;
}

#title-search-result {
	margin: 0;
	font-size: 24px;
	text-align: center;
	padding: 48px 16px 16px;
}

#title-search-result span {
	color: var(--primary-color);
}

.combo-search-trp {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.combo-search-trp select {
	appearance: none;
	border: 1px solid #A5A5A5;
	background: url(/wp-content/uploads/2025/03/icon-arrow.svg) no-repeat calc(100% - 24px) center;
	background-color: #ffffff;
	height: 48px;
	font-size: 16px;
	padding: 0 24px;
	border-radius: 48px;
	outline: none;
	cursor: pointer;
	width: 100%;
}

.combo-search-trp button {
	padding: 8px 16px;
	font-size: 16px;
	color: #ffffff;
	background: var(--primary-color);
	border: none;
	border-radius: 48px;
	height: 48px;
	cursor: pointer;
}

.desktop-box-border-trp h3 {
	font-size: 24px;
	color: #000000;
	margin: 0;
	padding: 0 0 24px;
}

.swiper-slide.double-card-container {
	display: grid;
	grid-gap: 24px;
}

@media screen and (min-width:1024px) {
	
	.header-sections-trp .btn-secondary-zm {
		width: auto;
	}
	
	.header-sections-trp h2 {
		font-size: 40px;
	}
	
	#header-menu-mobile {
		display: none;
	}
	#header-menu-desktop {
		display: flex;
	}

	.hero-item-trp {
		height: 90vh;
		padding-bottom: 128px;
		padding-top: 24px;
		max-height: 718px;
		min-height: 640px;
	}

	.swiper-hero-slider .swiper-pagination {
		bottom: 72px;
	}

	.section-hero-container {
		position: relative;
	}

	.section-hero-container:after {
		content: "";
		width: 108px;
		height: 108px;
		background: url(/wp-content/uploads/2025/03/icon-arrow-down.svg);
		position: absolute;
		bottom: -54px;
		z-index: 1;
		left: 50%;
		transform: translateX(-50%);
	}
	.container-absolute-trp {
		position: absolute;
		top: 50%;
		width: 100%;
		max-width: 1200px;
		left: 50%;
		transform: translateX(-50%);
		height: 24px;
		z-index: 1;
	}
	.media-grid-trp {
		grid-template-columns: repeat(2, calc(50% - 8px));
		gap: 16px;
		margin-top: 96px;
	}
	.posts-list-trp {
		grid-template-columns: repeat(2, calc(50% - 12px));
		grid-gap: 64px 48px;
		padding-bottom: 48px;
	}
	.posts-list-trp > article:nth-child(2n) {
		position: relative;
		top: 48px;
	}
	.pagination-trp > ul .page-numbers:hover {
		border-color: var(--primary-color);
		background: var(--primary-color);
		color: #ffffff;
	}
	.page-title {
		font-size: 48px;
	}
	.head-archive-page {
		display: grid;
		grid-template-columns: 40% calc(60% - 32px);
		grid-gap: 32px;
	}
	.blog-tabs-trp ul {
		border-color: #C9C9C9;
		border-radius: 0 0 16px 16px;
		display: grid;
		padding: 24px 16px;
		grid-template-columns: repeat(5, 20%);
		gap: 12px 0;
	}
	.blog-tabs-trp ul li {
		padding: 0 8px;
	}
	.blog-tabs-trp ul a {
		color: #9b9b9b;
		background: #F4F4F4;
		border: 1px solid #F4F4F4;
		text-align: center;
		height: 44px;
		border-radius: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.blog-tabs-trp ul a.active, .blog-tabs-trp ul a:hover {
		background: #FFEFF0;
		border-color: var(--primary-color);
		color: #000000;
	}
	.blog-tabs-trp h4 {
		border-radius: 16px 16px 0 0;
		background-image: none;
		pointer-events: none;
	}
	.head-archive-page > div:first-child {
		padding: 0;
	}
	.blog-archive {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	#info-sorting {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 48px;
	}
	.results-count-top {
		margin: 0;
	}
	#featured_desktop {
		position: absolute;
		inset: 0;
		background-position: center;
		background-size: cover;
		border-radius: 24px;
	}
}
@media screen and (min-width:768px) {
	.foot-table-trp {
		padding-right: 0;
	}
	.foot-table-trp nav {
		margin: 0;
		width: auto;
		order: 2;
	}
	.section-table-filter-trp .container-trp {
		padding-right: 16px;
	}
	.box-table-trp {
		border: 1px solid #C4C4C4;
		border-radius: 12px;
	}
	.grid-2-trp {
		display: grid;
		grid-template-columns: repeat(2, calc(50% - 8px));
	}
	.header-sections-trp .btn-secondary-zm.hide-on-mobile {
		display: flex;
	}
	.header-sections-trp.layout-horizontal {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.swiper-on-2 .swiper-slide {
		width: 100%;
	}
	.container-trp.container-slider-mobile-trp {
		max-width: 1232px;
		padding-right: 16px;
	}
	.grid-custom-posts-trp.grid-3-trp .swiper-off .swiper-wrapper {
		grid-template-columns: repeat(3, calc(33.33% - 16px));
	}
	.card-image-overlay-trp {
		min-height: 387px;
	}
	.card-image-overlay-trp.card-layout-medium h3 {
		font-size: 26px;
	}	
	.card-image-overlay-trp.card-layout-large h3 {
		font-size: 32px;
	}
	.only-mobile-gcp {
		display: none;
	}
	.content-hero h1 {
		max-width: 858px;
		font-size: 48px;
		margin: auto;
	}
	.content-hero p {
		max-width: 384px;
		margin: auto;
	}
	.hero-btns {
		flex-direction: row;
		justify-content: center;
	}
	.hero-btns a {
		min-width: 250px;
	}
	.nav-links-trp {
		display: flex;
		gap: 32px;
	}
	.desktop-box-border-trp {
		padding: 32px;
		border-radius: 24px;
		border: 1px solid var(--primary-color);
	}
	.desktop-box-border-trp h3 {
		font-size: 32px;
	}
	.combo-search-trp {
		flex-direction: row;
	}
	.combo-search-trp button {
		min-width: 360px;
	}
	#title-search-result {
		text-align: left;
		padding: 48px 0 16px;
	}
	.grid-zm-box-trp {
		grid-template-columns: repeat(2, calc(50% - 8px));
	}
	.card-image-overlay-trp.double-card-item {
		min-height: calc((387px / 2) - 12px);
	}
}

/* materials search */

.chemical-resistance-guide-block {
	max-width: 1232px;
	color: #333;
	padding: 80px 16px;
	margin: auto;
}

.chemical-guide-container {
	border-radius: 24px;
	border: 1px solid var(--primary-color);
	padding: 32px;
}

.chemical-guide-header {
	padding: 0 0 32px;
}

.chemical-guide-header h2 {
	margin: 0 0 18px 0;
	font-size: 32px;
	font-weight: 600;
}

.chemical-search-container {
	display: flex;
	gap: 10px;
	align-items: center;
}

.chemical-dropdown {
	flex-grow: 1;
}

.chemical-dropdown select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 30px;
	font-size: 16px;
	background-color: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0 L6 6 L12 0" fill="none" stroke="%23666" stroke-width="1.5"/></svg>');
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 30px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	height: 52px;
	outline: none;
	color: #000000;
}

.search-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 30px;
	padding: 12px 25px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
	height: 52px;
	outline: none;
	width: 360px;
}

.resistance-guide-title {
	padding: 16px 0 24px;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
}

.selected-chemical-name {
	color: #c32a2e;
}

.chemical-guide-content {
	display: flex;
	flex-direction: column;
}

.resistance-section .section-header {
	padding: 12px 15px;
	font-weight: 600;
	color: #fff;
}

.minor-effect .section-header {
	background-color: #222;
}

.moderate-effect .section-header,
.static-only .section-header,
.not-recommended .section-header,
.insufficient-data .section-header {
	background-color: #888;
}

.materials-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.material-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.material-item.active {
	background-color: #f0f0f0;
	border-color: var(--primary-color);
}

.material-item:not(.active) span {
	color: #999999;
}

.arrow-icon {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid rgba(188, 32, 38, 60%);
	border-right: 2px solid rgba(188, 32, 38, 60%);
	transform: rotate(45deg);
	transition: all 0.3s ease;
}

.material-item.active .arrow-icon {
	transform: rotate(226deg);
	border-color: var(--primary-color);
}

.material-details {
	background-color: #fff;
	padding: 24px;
	border: 1px solid #BC20264A;
	border-radius: 12px;
}

.material-title {
	margin: 0;
	padding: 0 0 8px;
	font-size: 24px;
	font-weight: 600;
}

.material-subtitle {
	padding: 0 0 16px;
	color: #c32a2e;
	font-size: 16px;
}

.material-info-section .section-header {
	padding: 10px 16px;
	background-color: #555;
	color: white;
	font-weight: 600;
	text-align: center;
}

.material-info-section .section-content {
	padding: 12px 16px;
	line-height: 1.5;
	border: 1px solid #D9D9D9;
	border-top: none;
	text-align: center;
}

.is-mobile .desktop-panel {
	display: none;
}

.is-mobile .chemical-search-container {
	flex-direction: column;
}

.is-mobile .search-btn {
	width: 100%;
}

.material-info-section {
	margin-top: 16px;
}

.resistance-section {
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.chemical-guide-content {
		flex-direction: row;
		gap: 32px;
	}

	.materials-list-panel {
		width: 55%;
	}

	.material-details-panel {
		width: 45%;
		background-color: #f9f9f9;
	}

	.mobile-material-details {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.desktop-panel {
		display: none;
	}
	.chemical-dropdown {
		width: 100%;
	}
	.chemical-guide-header h2 {
		font-size: 24px;
	}
	.chemical-guide-container {
		border: none;
		padding: 0;
	}
	.resistance-guide-title {
		font-size: 18px;
	}
	.material-details {
		border-radius: 0;
	}
	.material-title {
		font-size: 22px;
	}
	.arrow-icon {
		transform: rotate(135deg);
	}
	.material-item.active .arrow-icon {
		transform: rotate(316deg);
	}
	.material-item span {
		width: calc(100% - 16px);
	}
}