﻿body {
	font-size: 16px;
	color: var(--gray);
	background: var(--gray);
	font-family: "din-2014", sans-serif;
	font-style: normal;
}

* {
	box-sizing: border-box;
}

a {
	color: var(--gray);
	display: inline-block;
	-webkit-transition: background-color .3s linear;
    transition: background-color .3s linear;
}

a:focus,
button:focus {
	outline: none !important;
	text-decoration-style: none;
	text-decoration-skip-ink: none;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img {
	outline: 0 !important;
}

select:focus {
	outline: none !important;
}

p {
	font-size: 20px;
	font-family: "din-2014", sans-serif;
}

section {
	margin-top: 0px !important;
	margin-bottom: 0 !important;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

h1,
.h1-heading {
	font-size: 4rem;
	font-family: "din-2014", sans-serif;
}

h2,
.h2-heading {
	font-size: 3rem;
	font-family: "din-2014", sans-serif;
}

h3,
.h3-heading {
	font-size: 2rem;
	font-family: "din-2014", sans-serif;
}

h4,
.h4-heading {
	font-size: 1rem;
	font-family: "din-2014", sans-serif;
}

h5,
.h5-heading {
	font-size: .5rem;
	font-family: "din-2014", sans-serif;
}

h6,
.h6-heading {
	font-size: .2rem;
	font-family: "din-2014", sans-serif;
}

.space-between {
	justify-content: space-between;
}

.site-main {
	padding-top: 0;
	padding-bottom: 0;
}


/* Header CSS Start */

header {
	/*margin-right: 30px;
padding-top: 24px;
background: #afafaf;*/
}

header>.layout {
	position: relative;
	z-index: 999;
}

header>.layout:after,
header>.layout::before {
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

header>.layout:after {
	background: var(--off-red);
	clip-path: polygon(56% 0, 100% 0%, 45% 100%, 9% 100%);
	right: -14px;
	width: 50px;
}

header>.layout::before {
	background: var(--red);
	clip-path: polygon(56% 0, 100% 0%, 60% 100%, 10% 100%);
	z-index: 1;
	right: 5px;
	width: 65px;
}

header>div {
	display: flex;
	background: var(--white);
    justify-content: space-between;
}



.logo {
	margin-left: 76px;
}

nav {
	display: flex;
	margin-left: auto;
	align-items: center;
}

.menu-list {
	display: flex;
	margin-right: 26px;
	align-items: center;
}

.menu-list>li:not(:last-of-type) {
	margin-right: 30px;
}

.menu-list>li:last-of-type>a {
	color: var(--white);
	padding: 15px 30px;
	border-radius: 5px;
	background: var(--red);
}

.menu-list>li:last-of-type>a:hover, .menu-list>li:last-of-type>a:focus {
	background: #b51a0f !important;
	color:#fff !important;
}

.menu-list>li:last-of-type:hover>a:before,
.menu-list>li.current-menu-item:last-of-type>a:before {
	display: none;
}

.menu-list>li>a {
	position: relative;
	font-family: "din-2014", sans-serif;
	text-decoration: none;
	font-size: 22px;
	line-height: 31px;
	text-transform: uppercase;
	font-weight: 700;
    letter-spacing: -0.5px;
}

.menu-list>li>a:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 5px;
	/* transition-delay: 150ms; */
	background-color: transparent;
}

.menu-list>li:hover>a:before {
	background-color: var(--red);
}

.menu-list>li.current-menu-item>a:before {
	background-color: var(--red);
}

.menu-list>li>a:focus {
	color: #707372 !important;
	background: transparent !important;
	text-decoration: none !important;
}

.search-icon {
	display: inline-block;
	width: 34px;
	height: 34px;
	background: url(../image/Search-Icon.svg) center center no-repeat;
}

.language-icon {
	display: inline-block;
	width: 58px;
	height: 34px;
	background: url(../image/icon-language.svg) center center no-repeat;
	margin-left: 26px;
}

/* Header CSS Close */


/* Footer CSS Start */

footer {
	border-top: 10px solid var(--gray-shade6);
	background: var(--white);
}

footer a:hover {
	text-decoration: none;
}

.contact-us-link, .footer-right a{
font-size:18px;
}

.copy-wright-text a{
font-size:20px;
}

.social-icon-list,
.privacy-terms-list {
	display: flex;
	justify-content: end;
}

.social-icon-list li {
	margin-left: 17px;
	margin-top: 34px;
}

.privacy-terms-list a:not(:last-of-type) {
	border-right: 2px solid var(--gray);
	margin-right: 12px;
	padding-right: 12px;
}

.layout {
	width: 100%;
}

.cta-btn {
	font-size: 25px;
	text-decoration: none;
	border: 2px solid var(--red);
	padding: 15px 30px;
	border-radius: 5px;
}


.cta-btn:hover {
	background:var(--red);
	color:var(--white);
}
.contact-us-link {
	margin-left: 20px;
	margin-bottom: 20px;
}

.copy-wright-text {
	display: block;
	font-size: 20px;
	margin-top: 26px;
	margin-left: 20px;
    margin-right: 20px;
}

	.copy-wright-text img{
	height: 90px;
    width: auto;
    margin-bottom: 10px;}

.copy-wright-text p {
	margin-bottom: 1rem;
}


@media(min-width:1200px) {
	.footer-container {
		padding: 33px 42px 33px 31px;
	}
}


/* Footer CSS Close */


/* Button CSS global */

.solid {
	padding: 15px 25px;
	border-radius: 4px;
	font-family: "din-2014", sans-serif;
	text-decoration: none;
	font-size: 24px;
	background: var(--red);
	color: var(--white);
}

.outline {
	padding: 15px 25px;
	border-radius: 4px;
	font-family: "din-2014", sans-serif;
	text-decoration: none;
	font-size: 24px;
	border: 2px solid var(--red);
	color: var(--gray);
}

.outline:hover{
color: var(--white);
background:var(--red);
}


/* Button CSS global */


/* 404 page styling START */

.error404 .page-header {
	border-bottom: 0 none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.error404 .page-title {
	text-align: center;
}

.error404 h1.page-title {
	margin: 0;
}

.error-404.not-found {
	margin-top: 0;
}

.error-404.not-found h3,
.error-404.not-found p {
	text-align: center;
}
.error404 .overview button{
    margin-bottom: 2rem;
}

/* 404 page styling END */


/* Header styleing START */

.masthead_inn {
	margin-top: 20px;
	position: fixed;
	z-index: 10;
	width: 96%;
	background-color: var(--white) !important;
	box-shadow: 0 10px 10px -10px #0001;
	top: -170px;
	transition: all 0.3s ease-in-out;
}

.masthead_inn.active {
	top: 0;
}

.site-branding {
	margin-left: 50px;
}

.header-bar {
	height: 100%;
	width: 55px;
	margin-left: 30px;
	background: #da291c;
	border-right: 22px solid #da6f68;
	transform: skew(-12deg, 0deg);
	position: absolute;
	right: -16px;
	display:none;
}


/* Header styling END */


/* Header Search styleing START */

div#search-toggle {
	cursor: pointer;
    padding-right: 16px;
}

.search-box {
	position: absolute;
	bottom: -70px;
	right: 75px;
	min-height: 70px;
	padding: 11px 15px;
	box-shadow: 0 0 10px #0005;
	z-index: 99;
	background-color: var(--white) !important;
}

#searchBox form#searchform {
	position: relative;
}

.language-box {
	position: absolute;
	bottom: -70px;
	right: 0;
	min-height: 70px;
	padding: 11px 15px;
	box-shadow: 0 0 10px #0005;
	z-index: 99;
	background-color: var(--white) !important;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal!important;
}

#searchBox label.screen-reader-text {
	position: absolute;
	left: 32px;
}

#searchBox input#search {
	background: #fff 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 4px;
	width: 100%;
	height: 45px;
	width: 420px;
	padding: 1rem 2rem 1rem 1rem;
	position: relative;
	z-index: 1;
	border: 1px solid #ccc;
}

#searchBox input#search:focus {
	outline: 0;
}

#searchBox input#submit {
	position: absolute;
	right: 15px;
	top: 12px;
	z-index: 5;
	width: 20px;
}

#languageBox select#language {
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 4px;
	width: 100%;
	height: 45px;
	width: 268px;
	position: relative;
	z-index: 1;
	border: 1px solid #ccc;
}

/* Header Search styleing END */


/* Mega menu styleing START */

.menu-list>li {
	/*position:relative;*/
	list-style: none;
}

.menu-list>li>.mega-menu {
	position: absolute;
	width: 100%;
	left: 0;
	padding-top: 53px;
	z-index: 999;
    box-shadow: 3px 5px 5px #0001;
}

/* .menu-list>li:hover>.mega-menu {
	display: flex;
} */

/* .menu-list>li.find-service>.mega-menu {
	display: flex;
} */

.mm-left-panel,
.mm-right-panel {
	flex: 1;
	background-color: #fff;
}

.mm-left-panel {
	max-width: 389px;
	background-color: var(--gray-shade1);
	box-shadow: 2px 0px 3px #00000029;
	padding-bottom: 1rem;
}

.mm-right-panel {
	padding-top: 1rem;
    box-shadow: inset 7px 0 6px -7px #00000053;
}

.mm-left-panel .image {
	height: 12.5rem;
	position: relative;
	overflow: hidden;
	display: flex;
}

.mm-left-panel .image img {
	flex: 1;
	object-fit: cover;
}

.mm-left-panel .info {
	margin-left: 1rem;
}

.mm-left-panel .info .description {
	margin: 1.125rem .625rem;
}

.mm-left-panel .info a.secondary {
	padding: .4375rem 1.5rem;
    font-size: 1.5rem;
    border-radius: .25rem;
}

.mm-right-panel .mrp-menu-block-section .mrp-menu-block .category .cta a {
	padding: .25rem 0 .25rem .6875rem;
}

.info .description {
	display: block;
	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
	margin: 26px 10px;
}

button.solid {
	margin: 0 10px;
	border: 2px solid var(--red);
	border-radius: 5px;
	background-color: var(--red) !important;
	overflow: hidden;
}

button.solid a {
	font-family: "din-2014", sans-serif;
	text-decoration: none;
	font-size: 25px;
	line-height: 31px;
	font-weight: 400;
	color: var(--white);
	display: inline-block;
}

button.solid a:focus {
	background-color: transparent !important;
	color: var(--white) !important;
}

a.secondary {
	margin: 0 10px;
	
	border-radius: 5px;
	
	overflow: hidden;
	color: var(--gray);
}

a.secondary{
	font-family: "din-2014", sans-serif;
	text-decoration: none;
	font-size: 25px;
	line-height: 31px;
	font-weight: 400;
	border: 2px solid var(--red);
	display: inline-block;
	background-color: #fff !important;
	padding:14px 25px;
}

a.secondary:hover, a.secondary:focus{
background-color: var(--red) !important;
	color: var(--white) !important;
}

a.secondary a:hover{
color: var(--white);
}
a.secondary a:focus {
	background-color: transparent !important;
	color: var(--gray) !important;
}

.mrp-menu-block-section {
	display: flex;
	flex-wrap: wrap;
	column-gap: 5%;
	padding-left: 3rem;
}

.bottom-banner {
	display: flex;
	justify-content: center;
	font-size: 20px;
	padding-bottom: 1rem;
}

.bottom-banner a:hover, .bottom-banner a:focus{
text-decoration:none !important;
background:transparent !important;
color: var(--gray) !important;;
}


.mrp-menu-block {
	margin-bottom: 1.4rem;
}

.mrp-menu-block.block-size-2 {
	width: 45%;
}

.mrp-menu-block.block-size-3 {
	width: 30%;
}

.mrp-menu-block h3,
.mrp-menu-block .heading {
	margin-bottom: 12px;
	font-family: "din-2014", sans-serif;
	font-size: 24px;
	line-height: 31px;
	font-weight: 700;
}

.mrp-menu-block p {
	display: block;
	margin-bottom: 12px;
	padding: 0 0 0 0px;
	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
}

.accent-green.mrp-menu-block a {
	border-left: 2px solid var(--bggreen);
}

.accent-green.mrp-menu-block a:hover, .accent-green.mrp-menu-block a.ap-link, .accent-green.mrp-menu-block a:focus{
color:var(--bggreen) !important;
} 

.accent-blue.mrp-menu-block a {
	border-left: 2px solid var(--bgblue);
}

.accent-blue.mrp-menu-block a:hover, .accent-blue.mrp-menu-block a.ap-link, .accent-blue.mrp-menu-block a:focus {
color:var(--bgblue) !important;
}

.accent-red.mrp-menu-block a {
	border-left: 2px solid var(--bgblue);
}

.accent-red.mrp-menu-block a:hover, .accent-red.mrp-menu-block a.ap-link, .accent-red.mrp-menu-block a:focus {
color:var(--bgred) !important;
}

.accent-purple.mrp-menu-block a {
	border-left: 2px solid var(--bgpurple);
}

.accent-purple.mrp-menu-block a:hover, .accent-purple.mrp-menu-block a.ap-link, .accent-purple.mrp-menu-block a:focus {
color:var(--bgpurple) !important ;
}

.accent-yellow.mrp-menu-block a {
	border-left: 2px solid var(--bgyellow);
}

.accent-yellow.mrp-menu-block a:hover, .accent-yellow.mrp-menu-block a.ap-link, .accent-yellow.mrp-menu-block a:focus {
color:var(--bgyellow) !important;
}


.accent-yellow.mrp-menu-block .view-all-link a, .accent-blue.mrp-menu-block .view-all-link a, .accent-green.mrp-menu-block .view-all-link a {
	border-left: 0;
	text-decoration: underline;
	margin-top: .5rem;
}

.accent-green.block-size-2 h3,
.accent-green.block-size-2 .heading {
	color: var(--bggreen);
}

.accent-blue.block-size-2 h3,
.accent-blue.block-size-2 .heading {
	color: var(--bgblue);
}

.accent-red.mblock-size-2 h3,
.accent-red.mblock-size-2 .heading {
	color: var(--bgblue);
}

.accent-purple.block-size-2 h3,
.accent-purple.block-size-2 .heading {
	color: var(--bgpurple);
}

.accent-yellow.block-size-2 h3,
.accent-yellow.block-size-2 .heading {
	color: var(--bgyellow);
}

.submenu-support .block-size-2 h3,
.submenu-support .block-size-2 .heading {
	color: var(--gray);
}

.submenu-support .accent-green.mrp-menu-block a {
	border-left: 2px solid var(--bggreen);
}

.submenu-support .accent-blue.mrp-menu-block a {
	border-left: 2px solid var(--bgblue);
}

.submenu-support .accent-red.mrp-menu-block a {
	border-left: 2px solid var(--bgblue);
}

.submenu-support .accent-purple.mrp-menu-block a {
	border-left: 2px solid var(--bgpurple);
}

.submenu-support .accent-yellow.mrp-menu-block a {
	border-left: 2px solid var(--bgyellow);
}

.background-gray {
    background: var(--gray-shade1);
}

.mrp-menu-block a {
	display: block;
	padding: 0 0 15px 17px;
	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
	text-transform: none;
	text-decoration: none;
}

.mrp-menu-block a:hover,
.mrp-menu-block a:focus {
	text-decoration: none !important;
	background: none !important;
	color: var(--gray);
}

.mrp-menu-block-all-link {
	display: block;
	text-align: center;
}

.mrp-menu-block-all-link a {
	display: display-block;
	padding: 10px;
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
	text-transform: none;
	text-decoration: none;
}

.mrp-menu-block-all-link a:hover {
	text-decoration: none;
}

.submenu-programs p, .submenu-support p {
	padding-left: 0;
}

.bottom-banner.tools-banner {
	display: block;
	background-color: var(--gray-shade1);
	padding: 1rem 0;
    box-shadow: inset 7px 0 6px -7px #00000053;
}

.tools-banner .form {
	display: flex;
	justify-content: center;
	flex-direction: row;
	margin-top: 1rem;
}

.tools-banner .form .field {
	margin-right: 2rem;
}

.tools-banner .form .field:last-child {
	margin-right: 0rem;
}

.tools-banner .form .field input,
.tools-banner .form .field select {
	border: 1px solid #AAAAAA;
	border-radius: 5px;
	width: 100%;
	height: 50px;
}

.tools-banner .form .field input:focus {
	outline:0;
}

.tools-banner .form .error-message {
	font-family: "din-2014", sans-serif;
	font-size: var(--global--font-size-xs);
	color: red;
	margin-top: 0.5rem;
}

.tools-banner .form .field .find-btn {
	padding: 4px 25px 3px 25px;
	border-radius: 4px;
	font-family: "din-2014", sans-serif;
	text-decoration: none;
	font-size: 24px;
	background-color: var(--bgred);
	color: var(--white);
	border-color: var(--bgred);
}

.bottom-banner.tools-banner .heading {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}


/* Mega menu styleing END */

.heading {
	font-family: "din-2014", sans-serif;
}


/* Mobile toggle css Starts */

.navbar-toggler.toggle-menu.show svg.Hamburger_Menu_Icon,
.navbar-toggler.toggle-menu.show>span {
	display: none;
}

.navbar-toggler.toggle-menu svg.Hamburger_Close_Icon {
	display: none;
	margin: 11px;
}

.navbar-toggler.toggle-menu.show svg.Hamburger_Close_Icon {
	display: inline-block;
}

#breadcrumbs,
.block.breadcrumbs {
	font-size: 20px;
	font-family: "din-2014", sans-serif;
	margin-left: auto;
	margin-right: auto;
	margin-top: var(--global--spacing-vertical);
	margin-bottom: var(--global--spacing-vertical);
	line-height: 1.5;
	padding: 0rem 1rem 1rem 3rem;
    margin-left: 0;
	max-width: initial !important;
}
#breadcrumbs.category-crumbs {
	max-width: none !important;
}

@media only screen and (max-width: 767px) {
	p,
	li,
	.block.breadcrumbs,
	.type-tips {
		font-size: 18px;
		font-family: "din-2014", sans-serif;
	}
	.custom-hero.large,
	.interior-hero.alignfull {
		margin-top: 8rem;
	}
	.custom-hero .custom-hero-copy>h1,
	.interior-hero .interior-hero-copy>h1 {
		font-size: 2.2rem !important;
	}
}

.collapse:not(.show) {
	display: none;
}

.text-center {
	text-align: center;
}

.yoast-breadcrumbs {
	max-width: var(--responsive--alignwide-width) !important;
	margin-left: auto;
	margin-right: auto;
	font-size: 18px;
}

.yoast-breadcrumbs a {
	font-size: 18px;
}

@media(min-width:768px) {
	.navbar-toggler {
		display: none;
	}
	.navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
}


/* Extra css starts here */

.pt-1 {
	padding-top: .25rem!important
}

.pt-2 {
	padding-top: .5rem!important
}

.pt-3 {
	padding-top: 1rem!important
}

.pt-4 {
	padding-top: 1.5rem!important
}

.pt-5 {
	padding-top: 3rem!important
}

.pl-1 {
	padding-left: .25rem!important
}

.pl-2 {
	padding-left: .5rem!important
}

.pl-3 {
	padding-left: 1rem!important
}

.pl-4 {
	padding-left: 1.5rem!important
}

.pl-5 {
	padding-left: 3rem!important
}

.pr-1 {
	padding-right: .25rem!important
}

.pr-2 {
	padding-right: .5rem!important
}

.pr-3 {
	padding-right: 1rem!important
}

.pr-4 {
	padding-right: 1.5rem!important
}

.pr-5 {
	padding-right: 3rem!important
}

.mt-1 {
	margin-top: .25rem!important
}

.mt-2 {
	margin-top: .5rem!important
}

.mt-3 {
	margin-top: 1rem!important
}

.mt-4 {
	margin-top: 1.5rem!important
}

.mt-5 {
	margin-top: 3rem!important
}

.ml-1 {
	margin-left: .25rem!important
}

.ml-2 {
	margin-left: .5rem!important
}

.ml-3 {
	margin-left: 1rem!important
}

.ml-4 {
	margin-left: 1.5rem!important
}

.ml-5 {
	margin-left: 3rem!important
}

.p-tb {
	padding: var (--p-tb);
}

.font-bold {
	font-weight: 700;
}


/* Extra css starts here */


}

/* Mobile toggle css END */


.entry-content p {
	max-width: var(--responsive--alignwide-width) !important;
	margin-left: auto;
	margin-right: auto;
	line-height: 25px;
}

.pagination{
    color: #fff;
    background-color: var(--white-shade1);
    margin: 0 !important;
    max-width: 100%;
    padding-bottom: 3rem;
    padding-top: 3rem;

}
/* Tips page css */
article.tips .entry-content {
	line-height: 25px;
	font-family: "din-2014", sans-serif;
	max-width: 800px;
}
article.tips .entry-content p {
	margin: 20px 0;
	margin-left: 0 !important;
}
article.tips .entry-content ul, article.tips .entry-content ol {
	list-style: unset;
	margin-left: 20px !important;
}
article.tips .entry-content h2,
article.tips .entry-content h3,
article.tips .entry-content h4,
article.tips .entry-content h5,
article.tips .entry-content h6 {
	line-height: 1;
	margin: 30px 0 !important;
}

.tax-tips_category .pagination {
	text-align: center;
    border-top: 0;
}
.tax-tips_category .pagination a,
.tax-tips_category .pagination span {
	display: inline-block;
	height: 50px;
	width: 53px;
	margin: 0 4px;
	padding: 13px 10px;
	border-radius: 3px;
	border: 1px solid var(--bgred);
	text-decoration: none;
	font-size: 24px;
}
.tax-tips_category .pagination span.current {
	color: #fff;
	background-color: var(--bgred);
}
.tax-tips_category .pagination a:hover {
	text-decoration: underline;
}
.type-tips .entry-content h2 {
	max-width: 56rem !important;
	font-family: "din-2014", sans-serif;
}
.type-tips p {
	max-width: 56rem !important;
	font-family: "din-2014", sans-serif;
	font-size: 20px;
}
.type-tips ol li,
.type-tips ul li {
	font-size: 20px;
	list-style: disc;
	margin-bottom: 1rem;
	line-height: 25px;
	margin-left: 1.3rem;
}
.type-tips ol li {
	list-style: auto;
}
.entry-footer {
    display: none !important;
}

/* Tips page css */

/* search results page css */
.search-results article footer {
	display: none;
}
.search-results article:nth-child(even) {
	background: var(--gray-shade1);
}
.search-results article {
	padding-top: var(--global--spacing-vertical);
	padding-bottom: var(--global--spacing-vertical);
	margin: 0;
}
.search-results .entry-content,
.search-results article h2,
.search-results .page-header,
.search-no-results .page-header, 
.search-results .entry-content p 
{
	max-width: 60rem !important;
	border-bottom: 0;
}
.search-results article h2 {
	font-size: 32px;
	padding-top: 1rem;
}
.search-results article h2 a {
	color: var(--gray);
	font-weight: bold;
}
.search-results .page-header h2, .search-no-results .page-header h2 {
	font-size: 48px;
	text-align: center;
}
.search-results .search-result-count, .search-no-results .search-result-count {
	margin-top: 0;
	font-size: 20px;
	text-align: center;
	margin-bottom: 3rem;
}
.search-results .page-header, .search-no-results .page-header {
	padding-bottom: 0;
	margin-top: 1.7rem;
	margin-bottom: 2rem;
}
.search-results .yoast-breadcrumbs, .search-no-results .yoast-breadcrumbs {
	margin-bottom: 0;
	margin-top: 1.2rem;
}
.search-results .pagination {
	background: var(--white-shade1);
	max-width: 100%;
	margin: 0;
	padding-left: initial;
	padding-bottom: 3rem;
	border: 0;
	padding-top: 3rem;
}

.error404 main p {
	font-size: 18px;
}

.pagination a, .pagination span{
font-size:24px;
font-family: "din-2014", sans-serif;
padding:13px 10px !important;
}
.pagination span.dots{
color: var(--gray);  
}
/* search results page css */


/* fixed header message css */

.messages-container-fixed{
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--red);
    z-index: 10;
    color: #fff;
    text-align: center;
   
}

.messages-container-fixed p{
 padding: 1.1rem 1.875rem;
}

.messages-container-fixed a{
   color: #fff; 
}

.close-button-section {
    float: right;

}



.messages-container-fixed svg{
    height: 2.5rem;
    fill: var(--red);
    width: 2.5rem;
    margin-top: 0.5rem;
}

/* fixed header message css */
/* table css */
.landing-page-table {
border-collapse: separate;
border-radius: 10px;
font-family: din-2014, sans-serif;
float: none;
margin: auto;
margin-top: 60px;
font-size: 20px;
}
.landing-page-table td, .landing-page-table th {
border: none;
padding: 1em;
}
.landing-page-table td + td, .landing-page-table th + th {
border-left: 1px solid rgb(86, 100, 115);
}
.landing-page-table tr + tr > td {
border-top: 1px solid rgb(86, 100, 115);
}
/* table css */


/* ----------------- */
/* GTranslate Button */
/* ----------------- */
.nav-translation {
    position: relative;
    width: 150px;
    margin-right: 20px;
}
.nav-translation .gtranslate_wrapper {
    position: absolute;
    top: -24px;
    left: 0;
}
.nav-translation .gtranslate_wrapper .gt_float_switcher .gt-selected {
    width: 150px;
    text-align: left;
}
.nav-translation .gtranslate_wrapper .gt_float_switcher .gt_options a {
    font-size: 16px;
}
body > .gtranslate_wrapper {
    display: none;
}
@media (max-width: 767px) {
	body > .gtranslate_wrapper {
        display: block;
    }
    .nav-translation .gtranslate_wrapper {
        display: none;
    }
}
@media (min-width: 1025px) and (max-width: 1280px) {
    .nav-translation {
        width: 100px;
    }
    .nav-translation .gtranslate_wrapper .gt_float_switcher .gt-selected {
        width: 100px;
    }
    .nav-translation .gtranslate_wrapper .gt-lang-code  {
        display: none;
    }
    .nav-translation .gtranslate_wrapper .gt_options a {
        width: 50px;
        overflow: hidden;
        height: 36px;
    }
    .menu-list>li>a {
        font-size: 20px;
    }
    .menu-list>li:not(:last-of-type) {
        margin-right: 20px;
    }
}
@media (min-width: 861px) and (max-width: 1024px) {
    .nav-translation {
        width: 130px;
        margin-right: 10px;
    }
    .nav-translation .gtranslate_wrapper .gt_float_switcher .gt-selected {
        width: 130px;
    }
}
@media (min-width: 768px) and (max-width: 860px) {
    .nav-translation {
        width: 90px;
        margin-right: 10px;
    }
    .nav-translation .gtranslate_wrapper .gt_float_switcher .gt-selected {
        width: 90px;
    }
    .nav-translation .gtranslate_wrapper .gt-lang-code  {
        display: none;
    }
    .nav-translation .gtranslate_wrapper .gt_options a {
        width: 50px;
        overflow: hidden;
        height: 36px;
    }
}
/* ----------------- */


/* CSS breakpoints start */
@media(min-width: 992px) {
	.layout {
	}
}
@media(min-width: 1200px) {
	.layout {
		position: relative;
	}
	
	.footer-container {
		display: flex;
	}
}
@media(min-width: 1330px) {
	.layout {
		position: relative;
        margin-left: auto;
        margin-right: auto;
	}
	 .yoast-breadcrumbs{
        max-width: 1280px !important;
    }

}
@media(min-width: 1400px) {
	.layout {
		max-width: 1366px;
	}
	 .yoast-breadcrumbs{
        max-width: 1322px !important;
    }
}
@media (min-width: 1281px) and (max-width: 1500px) {
    .menu-list>li:last-of-type>a {
        padding: 10px 15px;
    }
    .menu-list>li:not(:last-of-type) {
        margin-right: 20px;
    }
}
@media(max-width:1200px) {
	.footer-right,
	.footer-left {
		margin-top: 35px;
	}
	
	.social-icon-list,
	.privacy-terms-list {
		justify-content: start;
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .site-branding{
        margin-left: 25px;
    }
    .menu-list>li:last-of-type>a {
        padding: 10px 15px;
    }
    .site-logo .custom-logo {
        width: 100px;
    }
    .menu-list>li:not(:last-of-type) {
        margin-right: 15px;
    }
    .menu-list {
        margin-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    h1, .h1-heading {
        font-size: 3rem;
    }

    h2, .h2-heading {
        font-size: 2rem;
    }
    
    .site-branding {
		margin-left: 20px;
	}

    .menu-list {
        margin-right: 10px;
    }
	
	.menu-list>li:not(:last-of-type) {
		margin-right: 10px;
	}
	
	.menu-list>li>a {
		font-size: 14px;
	}
	
	.menu-list>li:last-of-type>a {
		padding: 5px 15px;
	}
	
	.site-logo img {
		width: 100px !important;
	}
	
	.alignwide {
	    max-width:90%;
	}
	
	.cta-btn, .footer-right {
        margin-left: 20px;
	}
    
    .menu-list>li>.mega-menu{
        padding-top: 32px;
    }
    
    .mm-left-panel{
        max-width: 250px;
    }
    
    .mrp-menu-block-section{
        column-gap: 2%;
        padding-left: 2rem;   
    }
    
    .mm-right-panel{
        padding: 1rem 0rem 0rem 0rem;
    }
    
    .mrp-menu-block h3, .mrp-menu-block .heading{
        font-size: 18px;
    }
    
    .mrp-menu-block a, .mrp-menu-block p{
        font-size: 16px;
    }
    
    button.secondary a{
        font-size: 20px;
        line-height: 20px;
    }
    
    .search-icon{
        background-size: 70%;
    }
}
@media only screen and (max-width: 767px) {
	.cta-btn,
	.footer-right {
		margin-left: 20px;
	}

	.site-branding {
		margin-left: 20px;
		width: 100%;
	}

	nav {
		flex-wrap: wrap;
		align-items: center;
		position: absolute;
		width: 100%;
		top: 100%;
		background: var(--white);
		padding: 0 20px;
		box-shadow: 0px 3px 3px #0002;
	}

	.menu-list {
		display: block;
		margin-right: 0;
		padding-top: 74px;
	}

	.menu-list > li {
		border-top: 1px solid #EDEDED;
		margin-right: 0 !important;
		text-align: center;
	}

	.menu-list > li > a {
		line-height: 42px;
		font-weight: 500;
		font-size: 20px;
	}

	.menu-list > li:last-of-type > a {
		padding: 5px 20px;
	}

	.menu-list > li:last-child {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		padding: 8px;
	}

	button.toggle-menu {
		padding: 26px 30px;
	}

	.menu-list > li:last-of-type > a {
		padding: 5px 20px;
		font-size: 18px;
		letter-spacing: .04em;
	}

	.masthead_inn {
		margin-top: 0px;
		width: 100%;
	}

	.d-small-none {
		display: none;
	}

	button.toggle-menu {
		background-color: var(--red) !important;
		border-color: var(--red);
		color: var(--white);
	}

	h2,
	.h2-heading {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.site-logo .custom-logo {
		max-width: initial;
	}

	.site-branding {
		margin-right: 0;
	}

	.search-box {
		display: block !important;
		position: relative;
		bottom: 0;
		right: 0;
		width: 100%;
		min-height: 70px;
		padding: 11px 15px;
		box-shadow: 0 0 0;
		margin-bottom: 4px;
	}

	#searchBox input#search {
		height: 50px;
		font-size: 1.2rem;
		box-shadow: 0px 0px 0px #00000000;
		border: 1px solid #999;
	}

	#searchBox input#submit {
		top: 12px;
		width: 26px;
	}

	.yoast-breadcrumbs,
	.yoast-breadcrumbs a {
		font-size: 16px;
	}

	.menu-list > li > a:before {
		background-color: transparent;
		transition-delay: 1s;
	}

	.social-icon-list li:first-child {
		margin-left: 0;
	}

	.breadcrumbs span:last-child {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: flex;
		width: 52%;
		display: inline-block;
		line-height: 24px;
		transform: translateY(5px);
	}

	.search-results .page-header h2 {
		font-size: 28px !important;
		padding: 0 20px;
	}

	.search-results article {
		padding: 1rem 1.7rem 2rem 2rem;
	}

	.search-results article h2 a {
		font-weight: normal !important;
		font-size: 24px;
	}

	.search-results article h2 {
		padding-top: 0 !important;
	}

	article.tips .entry-content {
		max-width: 85%;
	}

	#breadcrumbs, .block.breadcrumbs {
		margin-bottom: 1.5rem;
		margin-top: 1rem;
	}

	.tax-tips_category .pagination a,
	.tax-tips_category .pagination span {
		font-size: 18px;
		width: 38px;
		height: 48px;
		background: #fff;
	}

	.post-listing .two-column {
		flex-direction: column;

	}

	.post-listing select, .post-listing .title .sort-box {
		width: 100% !important;
		margin-top: 15px;
	}

	.landing-page-table {
		font-size: 18px;
	}
}

.overflow-area {
	background: transparent;
	position: absolute;
	width: 820px;
	height: 150px;
}

/* CSS breakpoints close */
