/*Custom css*/
:root {
    --primary-color: #003B71;
    --brand-color: #FFDA31;
    --hover-link:#FFDA31;
    --body-text-color: #323232;
    --body-text-color2: #1C1F27;
    --body-text-color3: #4D4D4F;
    --gray-text: #4D4D4F;
    --black			: #000000;
	--white			: #ffffff;
    --base-fontfamily: 'Helvetica Neue';
    --base-font-size: 1.6rem;
    --base-line-height: 1.5;
    --fontweight300 	: 300;
	--fontweightNormal 	: normal;
	--fontweight500 	: 500;
	--fontweightBold 	: bold;
	--additional-font:'Museo Slab';
	--bg-grey:#F7F7F7;

    /*Override theme*/
    --maincolor: #003B71;
    --copper: #003B71;
    --darkcopper: #9D4B24;
}


@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Thin.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('../fonts/MuseoSlab-500.woff2') format('woff2'),
        url('../fonts/MuseoSlab-500.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('../fonts/MuseoSlab-700.woff2') format('woff2'),
        url('../fonts/MuseoSlab-700.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('../fonts/MuseoSlab-300.woff2') format('woff2'),
        url('../fonts/MuseoSlab-300.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 62.5%;
}

*{
    box-sizing:border-box;
}


body {
    font-family: var(--base-fontfamily);
    color: var(--body-text-color);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-weight: normal;
    background-color:#fff;
    letter-spacing:0;
}

a{
	transition: all 0.3s ease 0s;
    color: var(--primary-color);
}
a:hover{
	text-decoration: none;
}

p {
    letter-spacing:0;
}


h1,
h2,
h3{
    margin-top:0;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing:0;
}


h1,.h1 {
	font-size: 56px; 
    line-height: 1.20;
}

h2,.h2 {
	font-size: 42px;
    line-height: 1.20;
}

h3,.h3 {
	font-size: 28px;
}

h3.text-lg {
	font-size: 32px;
}

h4,.h4 {
	font-size: 24px;
}

h5,.h5 {
	font-size: 16px;
}

h6,.h6 {
	font-size: 14px;
}

p {
	margin: 0 0 20px;
}
p:last-child {
	margin: 0;
}


/*Global*/
.bg-section-grey{
    position: relative;
}
body .bg-section-grey:after{
    content: "";
    background: var(--bg-grey);
    width: 500%;
    left: -100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 0;
    display: block !important;
}
.btn{
    letter-spacing: 0.01em;
    font-size: 13px;
    font-weight:400;
}
.button,
.request-btn .vc_btn3{
	font-family: var(--base-font-family);
	font-size: 13px;
	font-weight: var(--fontweight300);;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: none;
	border: 1px solid;
	padding: 14px 76px 14px 32px;
	border-radius: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease 0s;
}
.button.primary{
    color: var(--primary-color);
}
.button::after,
.request-btn .vc_btn3:after,
.btn-outline > .vc_btn3 > i:before{
	font-family: "himmel";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	speak: none;
	line-height: 1;
	content: "\62";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	z-index: 0;
	
	transition: all 0.3s ease 0s;
}
button:focus,
button:focus-visible{
    outline: none;
}

.button:hover:after,
.request-btn .vc_btn3:hover:after,
.button:focus:after{
	right: 20px;
}
.button:hover, .button:focus,
.request-btn .vc_btn3:hover,
.request-btn .vc_btn3:focus{
	background-color: var(--white);
    color: var(--primary-color);
	border-color: var(--white);
}
.button:focus{
    outline: none;
}


button.button-primary {
    border:1px solid #ccc;
    padding:14px 45px 14px 14px;
}


.button.button-flat:after {
    display: none;
}

.button.button-flat {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 400;
    
    font-size: 16px;
    letter-spacing: 0;
}
.button.button-flat.primary {
    background: #003b71;
    color: #fff;
}


.mt-40{
    margin-top: 4rem ;
}
.lg-spcing-btn-bottom .vc_btn3-container{
    padding-bottom: 3rem;
    margin-bottom: 0;
}

.button.dark-hover:hover{
    background-color: var(--primary-color);
    color: var(--white);
	border-color: var(--white);
}

/* Button Thick Text */
.button.button-thick{
	font-weight: var(--fontweightBold);
}
.button.button-thick::after{
	content: "\69";
	font-size: 28px;
}
.button.button-simple {
    border: none;
    padding-left: unset;
    padding-right: 46px;
    color: #323232;
    font-weight: 400;
}
.button.button-simple::after{
	right: 0px;
}
.button.button-simple:hover, 
.button.button-simple:focus{
	background-color: unset;
	color: var(--primary-color);
}
.button.button-simple:hover::after, 
.button.button-simple:focus::after{
	right: -10px;
}

.button.no-arrow{
	padding-right: 32px;
}
.button.no-arrow::after{
	display: none;
}
.btn-outline > .vc_btn3  {
    background: transparent !important;
    border: 1px solid !important;
    color: inherit !important;
    border-radius: 30px !important;
    font-size:13px !important;
    text-transform: uppercase !important;
    padding: 14px 76px 14px 32px !important;
    letter-spacing: 0.1em !important;
}
.btn-outline.primary > .vc_btn3 {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline.white > .vc_btn3  {
    color: #fff !important;
    border-color: #fff !important;
}

.btn-outline.white > .vc_btn3:hover {
    background: #fff !important;
    color: #003b71 !important;
}
.btn-outline > .vc_btn3{
    display: flex !important;
    align-items:center;
    padding-right: 68px !important;
}
.btn-outline > .vc_btn3 > i {
    transition: all 0.3s;
    right: -14px !important;
    position: absolute !important;
    right: 0px !important;
}
.btn-outline > .vc_btn3:hover > i {
    right: -5px !important;
}

.border-bottom{
    position: relative;
    border: 0 !important;
}
.border-bottom:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 15px);
    height: 1px;
    border-bottom:1px solid #EEEDEC;
    z-index: 4;
    pointer-events: none;
}


/*-------------------------
# Header
---------------------------*/
header.main-header {
    background-color: var(--primary-color);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 80px;
}
header.main-header .main-header-box{
	width: 100%;
    display: flex;
    position: relative;
    align-items: center;
	transition: all 0.3s ease 0s;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
}
.main-header-block {
    height: 100%;
}

header.main-header.no-banner .main-header-box{
	background-color: var(--primary-color);
}

header.main-header:not(.no-banner) .main-header-block::after{
	opacity: 1;
}
header.main-header.sticky:not(.no-banner) .main-header-block::after{
	opacity: 0;
}
body.mobile-menu-open header.main-header .main-header-block::after{
	opacity: 0;
}
header.main-header .main-navigation > ul > li > ul.sub-menu:after {
    content: "";
    opacity: 0;
    position: fixed;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s;
    pointer-events: none;
    background: #000;
}

header.main-header .main-navigation > ul > li:hover > ul.sub-menu:after {
    opacity: 0.8;
}
header.main-header .container {
    max-width: 1920px;
    height: 100%;
}

header.main-header .header-left {
    display: flex;
    width: calc(100% - 240px);
    height: 100%;
}
header.main-header .header-right {
    display: flex;
    margin-left: auto;
    position: absolute;
    left: auto;
    right: 0;
    height: 100%;
    top: 0;
    justify-content: flex-end;
}
.header-icons {
    display: flex;
    cursor: pointer;
}
.header-icons > .header-link-icon {
    width: 80px;
    flex-shrink: 0;
    height: 100%;
    background: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.header-icons .account-avatar{
    background-color:#ba1001;
    text-align: center;
}
.header-icons .account-avatar .icon-user{
    background: url('../images/icon-user-white.svg') no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin:0;
}
.header-icons .account-avatar >span > span {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    color: #fff;
    letter-spacing: 0.05em;
}
.header-search {
    position: absolute;
    top: 100%;
    left: auto;
    right: 160px;
    width: 350px;
    background: #ebebeb;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
}

.search-open .header-search {
    opacity: 1;
    visibility: visible;
}
.header-search input {
    margin: 0;
}

.header-search .search-form .search-field {
    margin: 0;
    height: 50px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.header-search .search-form .search-submit {
    margin: 0;
    font-size: 0;
    background: url('../images/icon-search-n.svg') no-repeat center center;
    background-size: auto 20px;
    width: 40px;
    height: 48px;
    background-color: #fff;
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 0;
    border: none;
    border-radius: 0;
}

.header-search .search-form {
    margin: 0;
}

/*Menu*/
header.main-header .navigation{
	display: flex;
    padding-left: 40px;
}
header.main-header .main-navigation{
	display: flex;
	opacity: 1;
	transition: opacity 0.3s ease 0s;
}
header.main-header .navigation.search-open .main-navigation{
	opacity: 0;
	pointer-events: none;
}
header.main-header .main-navigation > ul{
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content:center;
	flex-wrap: nowrap;
}
header.main-header .main-navigation > ul > li{
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 10px;
	transition: all 0.3s ease 0s;
}
.main-navigation > ul > li.menu-item-has-children > a{
    position: relative;
}
.main-navigation > ul > li.menu-item-has-children > a:after{
    content: "";
    background: url('../images/icon-down-yellow.svg') no-repeat center center;
    width: 10px;
    height: 10px;
    background-size: contain;
    position: absolute;
    left: auto;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}
header.main-header .main-navigation > ul > li > a:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-color);
    opacity: 0;
    visibility: hidden;
}
header.main-header .main-navigation > ul > li:hover > a:before{
    visibility: visible;
    opacity: 1;
}
header.main-header .main-navigation > ul > li > a{
	color: var(--white);
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 2px;
	padding: 8px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
    position: relative;
}
header.main-header .main-navigation > ul > li > ul{
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	top: 100%;
	padding: 26px 30px 30px 30px;
	width: 100%;
	background: var(--white);
	right: 9999px;
	opacity: 1;
	transition: right 0s ease 0.1s, opacity 0.3s ease 0s;
    color: #505364;
}
header.main-header .main-navigation > ul > li.one-col-sub.menu-size-medium{
	position: relative;
}
header.main-header .main-navigation > ul > li.one-col-sub.menu-size-medium > ul{
	width: 300px;
	right: unset;
	left: 9999px;
	transition: unset;
	transition: left 0s ease 0.1s, opacity 0.3s ease 0s;
}
header.main-header .main-navigation > ul > li:hover > ul{
	right: 0;
	opacity: 1;
	transition: right 0s ease 0s, opacity 0.3s ease 0s;
}
header.main-header .main-navigation > ul > li.one-col-sub.menu-size-medium:hover > ul{
	right: unset;
	left: 0;
	transform: unset;
	transition: left 0s ease 0s, opacity 0.3s ease 0s;
    width: 300px;
}
header.main-header .main-navigation > ul > li > ul a{
	color: #505364;
	padding: 2px 16px 2px 0;
	display: block;
}
header.main-header .main-navigation > ul > li > ul a[href]:hover {
    color: #000000;
    font-weight: 500;
}
header.main-header .main-navigation > ul > li > ul h2 a{
	color: #003b71;
	padding: 2px 16px 2px 0;
	display: block;
}
header.main-header .main-navigation > ul > li > ul h2 a:hover {
    color: #000000;
    font-weight: 500;
}

header.main-header .main-navigation > ul > li.three-col-sub > ul > li{
	width: 33%;
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li.two-col-sub > ul > li{
	width: 50%;
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li.one-col-sub > ul > li{
	width: 100%;
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li.three-col-sub > ul > li.full-width,
header.main-header .main-navigation > ul > li.two-col-sub > ul > li.full-width,
header.main-header .main-navigation > ul > li.one-col-sub > ul > li.full-width{
	width: 100%;
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li > ul > li.full-width{
	border-top: 1px solid var(--charcoal_5);
	padding-top: 16px;
	margin-top: 4px;
}
header.main-header .main-navigation > ul > li > ul > li.full-width > ul > li{
	padding-bottom: 0;
}
header.main-header .main-navigation > ul > li > ul > li.full-width > ul > li > a{
	padding: 0;
}
header.main-header .main-navigation span.menu-desc{
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;
}
header.main-header .main-navigation > ul > li.one-col-sub.menu-size-medium span.menu-desc{
	flex-direction: column;
	align-items: flex-start;
}
header.main-header .main-navigation span.menu-desc span:not(.button){
	font-weight: var(--fontweight300);
	width: 100%;
	max-width: 380px;
	font-size: 14px;
}
header.main-header .main-navigation span.menu-desc span.button{
	white-space: nowrap;
	color: #ffffff;
    border-color: #ffffff;
	margin-top: 20px;
}
header.main-header .main-navigation span.menu-desc span.button:hover{
    color: var(--primary-color) !important;
    border-color: #ffffff;
}
header.main-header .main-navigation span.menu-sub-col-desc.multiple span:not(.button) {
    font-weight: var(--fontweight300);
    width: 100%;
    max-width: 380px;
    font-size: 14px;
}
header.main-header .main-navigation span.menu-sub-col-desc.multiple span.button{
    white-space: nowrap;
    color: #ffffff;
    border-color: #ffffff;
    margin-top: 20px;
    transform: scale(0.9);
    transform-origin: left;
}
header.main-header .main-navigation span.menu-sub-col-desc.multiple span.button:hover {
    color: var(--primary-color) !important;
    border-color: #ffffff;
}
header.main-header .main-navigation > ul > li.one-col-sub.menu-size-medium span.menu-desc span.button{
	margin-left: unset;
	margin-top: 20px;
}
header.main-header .main-navigation span.menu-desc span.button:hover{
	color: var(--white);
}
/*header.main-header .main-navigation > ul > li.three-col-sub > ul > li > a,*/
/*header.main-header .main-navigation > ul > li.two-col-sub > ul > li > a,*/
/*header.main-header .main-navigation > ul > li.one-col-sub > ul > li > a{*/
/*	display: none;*/
/*}*/
header.main-header .main-navigation > ul > li > ul > li > ul{
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li > ul > li > ul > li{
	display: flex;
	flex-direction: column;
	padding-bottom: 20px;
}
header.main-header .main-navigation > ul > li > ul > li > ul > li > a{
	font-weight: var(--fontweightBold);
	color: var(--charcoal);
	font-size: 16px;
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li > ul > li:not(.full-width) > ul > li > a:hover{
	color: var(--copper);
}
header.main-header .main-navigation > ul > li > ul > li > ul > li > ul{
	display: flex;
	flex-direction: column;
}
header.main-header .main-navigation > ul > li > ul > li > ul > li > ul > li{
	display: flex;
	flex-direction: column;
	padding: 2px 0;
}
header.main-header .main-navigation > ul > li > ul > li > ul > li > ul > li > a{
	display: flex;
	flex-direction: column;
	font-size: 14px;
}
header.main-header .main-navigation > ul > li > ul > li > ul > li > ul > li > a:hover{
	color: var(--copper);
}
header.main-header .main-navigation > ul > li:hover > a{
	background-color: transparent;
}





/*Side link panel menu*/
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) > ul {
    max-width: 470px;
    margin-left: auto;
    width: 100%;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) {
    width: 35%;
    background: #003b71;
    padding: 35px 35px 35px 35px;
    max-height: 89vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: clamp(300px, 300px + 300*(100vw - 1200px) / 240, 450px);
    padding: 4rem 2.5rem .5rem 10.3125rem !important;
}

.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) {
    width: calc(100% - clamp(300px, 300px + 300 * (100vw - 1200px) / 240, 450px));
    padding: 40px 60px 40px 60px;
    max-height: 89vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.main-navigation > ul > li.left-link-panel > .sub-menu {
    padding: 0;
    max-height: 100vh;
}

.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .sub-menu li > a {
    color: #fff;
    font-weight: 400;
    line-height: 1.62;
}
.main-navigation ul.products_wrap > li > a {
    color: #505364;
    margin-bottom: 10px;
    padding: 0 !important;
}
.main-navigation .application_wrap:not(:last-child) {
    margin-bottom: 30px;
}
.main-navigation .application_wrap  h6{
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    margin-bottom: 10px;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li .sub-menu li > a{
    position: relative;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .sub-menu li:not(.no-menu-link) > a:after{
    content: "";
    background: url('../images/icon-down-yellow.svg') no-repeat center center;
    width: 10px;
    height: 10px;
    background-size: contain;
    position: absolute;
    left: auto;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li h2 {
    color: #003b71;
    text-transform: capitalize;
    font-size: 32px;
    margin-bottom: 25px;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .sub-menu li:not(.no-menu-link):hover > a {
    color: #FFDA31;
   
}

.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .sub-menu li:not(.no-menu-link) > a:before {
    content: "";
    background: #FFDA31;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10px;
    opacity: 0;
    visibility: hidden;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .sub-menu li:not(.no-menu-link):hover > a:before{
    opacity: 1;
    visibility: visible;
}

.main-navigation > ul > li.left-link-panel > .sub-menu > li .sub-menu li > a {
    position: relative;
}

.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .sub-menu li:not(.no-menu-link) > a {
    padding-left: 0;
}

.left-link-panel > ul > li > a {
    display: block;
    font-size: 0;
}

.left-link-panel > ul > li > a .menu-heading {
    font-size: 42px;
    color: #fff;
    display: block;
    margin-bottom: 24px;
    line-height: 1;
    max-width: 470px;
    margin-left: auto;
}

.cms-side-panel.left-link-panel > ul > li > a .menu-desc .button{
    display:none;
}
.cms-side-panel.left-link-panel > ul > li > a .menu-desc {
    border-top: none;
    color: #fff;
    padding: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #fff;
    margin-bottom: 0;
    max-width: 470px;
    margin-left: auto;
}
.cms-side-panel.left-link-panel > ul > li > ul.sub-menu > li > a {font-size: 0;}

.cms-side-panel.left-link-panel > ul > li > ul.sub-menu > li > a .menu-desc {
    border: none;
    max-width: 100%;
    margin-left: auto;
    width:100%;
}
.products_wrapper {
    margin: 0 -15px;
}
.products_wrapper .application_wrap{
    padding:0 15px;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li,
.products_wrapper .application_wrap{
    width: 33.33%;
    float: left;
    clear: none;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li:nth-child(2),
.products_wrapper .application_wrap:nth-child(2){
    float: left;
    clear: right;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li:nth-child(3),
.products_wrapper .application_wrap:nth-child(3){
    float: right;
    clear: right;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu {
    flex-direction: row;
    flex-wrap: wrap;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) > a {
    padding-right: 0;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li > .sub-menu > li {
    margin-bottom: 20px;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li > .sub-menu > li > a {
    color: #003b71;
    margin-bottom: 10px;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li > .sub-menu > li > a h6 {
    margin: 0;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu {
    display: block;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li > .sub-menu > li .sub-menu > li {
    margin-bottom: 10px;
}
.cms-side-panel.left-link-panel > ul > li > ul.sub-menu > li.link-menu-image > a {
    font-weight: 400;
    padding-right: 0;
    
}

.cms-side-panel.left-link-panel > ul > li > ul.sub-menu > li.link-menu-image img {
    width: 100%;
}

.cms-side-panel.left-link-panel > ul > li > ul.sub-menu > li > a span.menu-sub-col-desc {
    margin-top: 10px;
    font-size: 16px;
}

.sub-menu ul.brand-categories {
    max-height: 400px;
    column-count: 2;
    column-gap: 15px;
    column-fill: auto;
}
.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .no-menu-link span.menu-desc {
    font-size: 16px;
}

.main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1) .no-menu-link > a {
    font-size: 0;
}




/*-------------------------
# Header
---------------------------*/
footer.main-footer{
	width: 100%;
}
footer.main-footer .main-footer-box{
	background-color: var(--black);
	color: var(--white);
}

span.slogan-text {
    color: #EEEDEC;
    font-style: italic;
    font-size: 18px;
    font-family: var(--additional-font);
}

.footer-strip {
    background: #003b71;
    padding: 15px 0;
}

.footer-strip .flex-row {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.footer-strip .footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 16px;
}

.footer-strip .footer-social-icons a {
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink:0;
}

nav.footer-navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0 30px;
    flex-wrap: wrap;
    justify-content: center;
}

nav.footer-navigation ul > li {
    margin: 0;
}
nav.footer-navigation ul > li > a{
    font-weight: 500;
    font-size: 13px;
    color:#EEEDEC;
    text-transform: uppercase;
    display: block;
}

.footer-middle {
    padding-top: 95px;
    padding-bottom: 70px;
}
.footer-strip .row .footer-logo {
    width: 20%;
}

.footer-strip .row .footer-navigation {
    width: 60%;
    padding: 0 20px;
}

.footer-strip .row .footer-social-icons {
    width: 20%
}

.footer-strip .row .footer-navigation .footer-menu {
    margin: 0;
}
.footer-connect .flex-row {
    justify-content: space-between;
    align-items: center;
}

.footer-connect p {
    margin: 0;
}
.footer-connect .csr-message {
    display: flex;
    align-items: center;
    gap: 0 24px;
    font-size: 18px;
    color: #fff;
}
.footer-connect .csr-message p > span{
    color:#939598;
}
.footer-connect .csr-btn > a {
    background: #BA1001;
    color: #fff;
    width: 136px;
    height: 50px;
    display: inline-block;
    border-radius: 4px;
    padding: 14px 8px;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
}
.footer-connect .csr-btn > a:hover {
    opacity: 0.8;
}

.footer-separator {
    border-top: 1px solid #58595B;
}

.footer-bottom {
    padding: 40px 0;
}
.footer-middle{
    padding-top: 95px;
    padding-bottom: 70px;
}
.footer-separator {
    border-top: 1px solid #58595B;
}

.footer-bottom {
    padding: 40px 0;
    font-size: 12px;
    color: #58595B;
}
.footer-bottom strong {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.footer-links-row {
    padding: 24px 0;
    align-items: flex-start;
}
.footer-links-row > .footer-middle-left {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
   gap: 0 4%;
}

.footer-links-row > .footer-middle-right {
    width: 45%;
    max-width: 370px;
    margin-left: auto;
    text-align: right;
}


.footer-middle-right .footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 0 16px;
}
.footer-middle-right .footer-social-icons > a {
    background: #9C9898;
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}
.footer-middle-right .footer-social-icons > a > span {
    display: inline-block;
    line-height: 10px;
}

.footer-btm-links {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 10px;
    flex-wrap: wrap;
}

.footer-btm-links a {
    color: #D1D3D4;
    background: transparent;
    text-decoration: none;
    width: auto;
    height: auto;
    position: relative;
    font-size: 13px;
}

.footer-btm-links a:not(:last-child):after {
    content: "";
    background: #D1D3D4;
    width: 1px;
    height: 16px;
    position: absolute;
    left: auto;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-middle-right > p {
    color: #58595B;
    font-size: 14px;
    margin-top: 6px;
}

.footer-middle-left .footer-left-links {
    width: 100%;
}
.brand-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 5%;
}

.brand-menu-list ul > li {
    margin: 0 0 12px 0;
    width: 22%;
}

.brand-menu-list ul > li > a {
    color: #D1D3D4;
    text-decoration: none;
    display: block;
    position: relative;
    padding-right: 20px;
}
.brand-menu-list ul > li > a:after{
    content:"";
    background: url('../images/arrow-sm-red.svg') no-repeat center center;
    background-size: contain;
    width:12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left:auto;
    right: 5px;
}

.footer-left-links {
    width: 100%;
}



/*-------------------------
# Layout
---------------------------*/
.container{
    margin:0 auto;
    padding-left: 15px;
    padding-right:15px;
    width:100%;
    float:none;
}

.flex-row{
    display: flex;
}

.py-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt-100{
    padding-top:100px;
}
.pb-100{
    padding-bottom:100px;
}
.py-80{
    padding-top: 80px;
    padding-bottom: 80px;
}
.mx-0{
    margin-left:0 !important;
    margin-right:0 !important;
}
.pt-80 {
    padding-top: 80px;
}
.pb-130 {
    padding-bottom: 130px;
}

.py-100 > div > .vc_column-inner,
.py-80 > div > .vc_column-inner,
.pt-80 > div > .vc_column-inner{
    padding-top:0 !important;
}

.section-head{
    text-align:center;
    padding-left:15px;
    padding-right:15px;
    margin-bottom: 35px !important;
}
.section-head h2{
    color: var(--primary-color);
}

.section-head p{
    font-size: 1.8rem;
    line-height: 1.55;
     max-width: 392px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray-text);
}


/*-------------------------
# Main content
---------------------------*/
.main-content{
	width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.home-hero-banner-slide{
    position: relative;
    min-height: 600px;
    z-index: 1;
}
.single  .home-hero-banner-slide{
    min-height: 620px;
}
.home-hero-banner-slider .slick-track{
    display: flex;
}
.home-hero-banner-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
}

.home-hero-banner-slider:not(.slick-initialized) > div {
   width: 100vw;
    min-width: 100vw;
}
.home-hero-banner .home-hero-banner-slide{
    background-size: cover;
}
.home-hero-banner-slider ul.slick-dots {
    position: absolute;
    top: auto;
    bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0 17px;
}

.home-hero-banner-slider ul.slick-dots > li {
    width: 98px;
    background: #FFFFFF80;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    height: 9px;
}

.home-hero-banner-slider ul.slick-dots > li > button {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0;
    height: 8px;
}

.home-hero-banner-slider ul.slick-dots > li.slick-active {
    background: var(--brand-color);
    border-color: var(--brand-color);
}

.home-hero-banner-slider .home-hero-banner-slide:after,
.home-hero-banner .home-hero-banner-slide:after{
    content: "";
    position: absolute;
    display: block;
    content: "";
    background: linear-gradient(90deg, rgba(23, 23, 23, 0.75) 17.96%, rgba(23, 23, 23, 0) 82.15%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container.home-hero-banner-container {
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.home-hero-slide-left {
    max-width: 550px;
    width: 100%;
}

.home-hero-slide-left h2 {
    color: #fff;
    margin-bottom: 15px;
}
.home-hero-banner-nav-caption {
    font-family: inherit;
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}
.home .home-hero-banner-nav-caption{
       font-size: 32px;
}
.download-section .vc_gitem_row {
    background: #fff;
}
.potter-leading-banner + .vc_row-full-width.vc_clearfix {
    height: 0;
    overflow: hidden;
}

/*Welcome section*/
.card-list-row.over-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 10px;
}

.card-list-row.over-content > div {
    padding: 0 15px;
}
.card-list-row.over-content .col-item > div {
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.card-list-row.over-content .col-item > div:after {
    background: rgba(0, 59, 113, 0.9);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.card-list-row.over-content .col-item > div:before{
    content:"";
    background: url('../images/card-object1.png') no-repeat center bottom;
    position:absolute;
    top: auto;
    bottom: 0;
    pointer-events:none;
    width:100%;
    height:100%;
    background-size: contain;
    z-index:2;
    display: block;
}

.product-files li.file-item label {
    order: 1;
    margin-left: 1rem;
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid #231f2047;
    border-radius: 2px;
    cursor: pointer;
}
.product-files li.file-item input.file-checkbox{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}
.product-files li.file-item label::after{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    background: transparent;
    transform: translate(-50%, -50%);
}
.product-files li.file-item input:checked~label::after{
    background: var(--primary-color);
}

/* Brand List */
.brand-list,
.potter-product-category {
    position: relative;
    z-index: 1;
    display: flex;
}
.potter-product-category{
    display: flex;
}
.brand-list::after,
.potter-product-category:after{
    content: "";
    background: #F7F7F7;
    width: 500%;
    left: -100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 0;
}
.potter-product-category:after{
    background: var(--primary-color);
}
.brand-list .brand-list-title{
	margin-bottom: 16px;
}
.brand-list h4{
	color: var(--copper);
}
.brand-list .brand-list-desc{
	margin-bottom: 28px;
	max-width: 392px;
}
.brand-list .brand-list-box{
	display: flex;
	flex-wrap: wrap;
}
.brand-list .brand-list-box .brand-box{
	width: 100%;
	max-width: 25%;
	height: 280px;
	display: flex;
}
.brand-list .brand-list-box .brand-box a{
	display: flex;
	width: 100%;
}
.brand-list .brand-list-box .brand-bg{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.brand-list .brand-list-box .brand-bg img{
	position: relative;
	z-index: 1;
	max-width: 80%;
	max-height: 80%;
	transition: all 0.3s ease 0s;
}
.brand-list .brand-list-box .brand-box a:hover .brand-bg img{
	transform: scale(0.9);
}
.brand-list .brand-list-box .brand-bg::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%); 
	z-index: 0;
}
.brand-list .section-head.half-container {
    max-width: 450px;
    margin: 0 auto 40px auto !important;
}

.brand-list .section-head p {
    font-size: 16px;
    line-height: 1.375;
}
.brand-list .section-head h2{
    line-height: 1;
}
/*Resources and Download*/
.download-section .vc-gitem-zone-height-mode-auto:before{
    padding-top: 77.145%;
}
.download-section .vc_gitem-post-data-source-post_title h4 {
    font-size: 18px;
    color: #323232;
}

.download-section .vc_gitem-post-data-source-post_title {
    margin-bottom: 8px;
}

.download-section .vc_gitem-post-data-source-post_excerpt > p:empty {
    display: none;
}

.download-section .vc_gitem-post-data-source-post_excerpt p {
    color: #323232;
}
.download-section  .vc_gitem-col {
    background: #fff;
    padding: 30px 0 0 !important;
}

.download-section .vc_general.vc_btn3 {
    padding: 0 35px 0 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #323232 !important;
    display: inline-block;
    margin-top: 15px;
    background: transparent !important;
    width: auto;
}
.download-section .vc_general.vc_btn3:after{
    font-family: "himmel";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    line-height: 1;
    content: "\62";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    z-index: 0;
    transition: all 0.3s ease 0s;
}
.download-section .vc_general.vc_btn3:hover{
    background: transparent;
}

/*Inspiration*/
.home-inspiration-list.inspiration-list{
	position: relative;
    display: table;
    width:100%;
}

.home-inspiration-list.inspiration-list .inspirations-list-box {
    display: inline-block;
}
.home-inspiration-list .inspirations-list-box.row .inspirations-col{
    float: left;
}
.home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(1) {
    max-width: 66.5%;
    float: left;
    height: 730px;
}

.home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(2),
.home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3) {
    max-width: 33.422%;
    float: right;
    height: 350px;
}
.home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3) {
    margin-top: 30px;
}

.home-inspiration-list.inspiration-list .inspirations-thumb {
    height: 100%;
}
.home-inspiration-list.inspiration-list .inspirations-content {
    position: absolute;
    top: 0;
    padding: 30px;
    color: #fff;
    pointer-events: none;
}
.home-inspiration-list.inspiration-list .inspirations-content .inspirations-title{
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-top: 0;
}
.cate-name > span {
    font-size: 16px;
    display: block;
    padding-bottom: 4px;
}
.home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(2) .inspirations-title,
.home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3) .inspirations-title{
    font-size: 24px;
}

.home-inspiration-list.inspiration-list .inspirations-content .inspirations-cta{
    padding: 0;
}
.home-inspiration-list.inspiration-list .inspirations-content .inspirations-cta .button{
    color: #fff;
    font-weight: 400;
    padding: 0 40px 0 0;
}

.home-inspiration-list.inspiration-list .inspirations-box{
    padding: 0;
}

.home-inspiration-list.inspiration-list .inspirations-thumb a img {
    height: 100%;
    object-fit: cover;
}

.inspiration-list .inspiration-list-title {
	width: 100%;
	max-width: 530px;
	padding-bottom: 12px;
}
.inspiration-list .inspiration-list-title h4{
	color: var(--copper);
}
.inspiration-list .inspiration-list-content{
	width: 100%;
	max-width: 392px;
	padding-bottom: 32px;
}
.inspiration-list .inspirations-list-box{
	display: flex;
	padding-bottom: 10px;
}
.inspiration-list .inspirations-col{
	display: flex;
}
.inspiration-list .inspirations-box{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding-bottom: 14px;
    position: relative;
}
.inspiration-list .inspirations-thumb{
	display: flex;
	width: 100%;
    position: relative;
    overflow: hidden;
}
.inspiration-list .inspirations-thumb:after{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.4s ease;
}
.inspiration-list .inspirations-thumb a > img {
    transform: scale(1);
    transition: transform 0.5s;
}

.inspiration-list .inspirations-thumb:hover a > img {
    transform: scale(1.1);
}

.inspiration-list .inspirations-thumb:hover:after {
    background-color: rgba(0,0,0,0.4);
}
.inspiration-list .inspirations-thumb a{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.inspiration-list .inspirations-thumb a img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.inspiration-list .inspirations-content{
	display: flex;
	flex-direction: column;
	width: 100%;
	flex-grow: 1;
}
.inspiration-list .inspirations-title{
	padding-top: 28px;
	font-size: 18px;
	font-weight: var(--fontweightBold);
    line-height: 1.25;
}
.inspiration-list .inspirations-desc{
	padding-top: 8px;
	flex-grow: 1;
}
.inspiration-list .inspirations-cta{
	padding-top: 6px;
}
.inspiration-list .inspirations-list-more-cta{
	border-top: 1px solid var(--charcoal_5);
	padding-top: 4px;
}

.product-category-row .col-left{
    flex: 0 0 50%;
    max-width: 50%;
    color:#fff;
    padding-right: 111px;
}
.product-category-row .col-right{
    flex: 0 0 50%;
    max-width: 50%;
}

.product-category-row .col-left .btn{
    min-width: 238px;
    
}

.cat-nav-tabs{
    list-style:none;
    padding:0;
    margin:0 0 20px 0;
}
.cat-nav-tabs li > a{
        color: #fff;
    display: block;
    padding: 14px 25px 14px 14px;
    font-size: 1.8rem;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1px solid #CCCCCC;
    position: relative;
}
.cat-nav-tabs li > a.active,
.cat-nav-tabs li > a:hover{
    background: rgba(255, 255, 255, .10);
}
.cat-nav-tabs li > a:after{
    content:"";
    background: url('../images/caret-icon-right-yellow.svg') no-repeat center center;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: absolute;
    left: auto;
    right:20px;
    top: 52%;
    transform: translateY(-50%);
    
}

.product-category-row .title{
    margin-bottom: 28px;
    color: #fff;
}
.product-category-row .title > span{
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}
.product-category-row .col-left .nav > li {
    margin: 0;
}

.product-category-row .col-left .nav li:first-child > a {
    border-top: 1px solid #ccc;
}
.product-category-row  .category-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category-row .category-image {
    position: relative;
    padding-bottom: 94%;
}
.category-image .no-data {
    height: 100%;
    color: #fff;
    text-align: center;
    font-size: 20px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.potter-leading-banner{
    min-height: 650px;
}
.potter-leading-banner .content-inner {
    max-width: 465px;
}
.potter-leading-banner{
    display: flex;
    align-items:center;
}
.potter-leading-banner .content-inner p{
    font-size: 15px;
    text-transform: uppercase
}
.potter-leading-banner .image-with-text-slider  .content-inner .overlay-content h2 {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 36px;
    letter-spacing:0.04em;
}
.potter-leading-banner .content-inner p.description {
    font-family: var(--base-fontfamily);
}
.potter-leading-banner {
    margin: 0;
}
.product-list .product-list-right .short_description {
    padding-top: 0px;
}
.product-list .filter_checkboxes a{
    font-weight:700;
}
/*Product listing*/
.product-list .product_search h4{
    margin-bottom: 10px;
}
.product-list .content-section .short_description{
  margin-bottom:2px;
}
.product-list .product-list-right .img-section,
.product-list .product-list-right .img-section img {
    width: 100%;
    height: 210px;
}

.product-list .content-section .short_description p {

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
.product-list .product{
    padding-bottom: 50px !important;
}
.product-list .product .button {
    position: absolute;
    top: auto;
    bottom: 0;
}


.product-list  .wpb-content-wrapper .shop-extra-downlad{
    background:#F7F7F7;
}

.product-list .product-list-right ul.products.columns-3 li.product, .product-list .product-list-right ul.products.columns-3 li.product{
    margin-bottom:10px;
}
.product-list .product-list-main-col {
    padding-bottom: 80px;
}

.product-list .download-section .vc_gitem-col{
    background:unset;
}
.product-list .product-list-right .custom_load_more{
    margin-top:20px;
}


.shop-extra-leading-banner{
    position:relative;
}
.shop-extra-leading-banner .vc_col-sm-12{
    position:unset;
}
.shop-extra-leading-banner .full-bg-cover-image{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.shop-extra-leading-banner .wpb_single_image img{
    width:100%;
}
.shop-extra-leading-banner .wpb_single_image   .vc_single_image-wrapper,
.shop-extra-leading-banner .wpb_single_image  .vc_figure{
    display:block;
}
.potter-leading-banner .content-inner h2{
     position: relative;
}
.product-list .filter_checkboxes h6{
    font-weight:700;
}

.shop-extra-leading-banner .full-bg-cover-image .vc_column-inner .wpb_wrapper  .vc_custom_heading {
    position:relative;
}
.shop-extra-leading-banner .vc_column-inner .wpb_wrapper .full-bg-cover-image + .vc_custom_heading {
    position:relative;
    color: #EEEDEC !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    margin-bottom: 12px;
}
.product-list .section-head p{
    font-size:16px;
}
..product-list .product-list-right .woocommerce-result-count{
    margin-bottom:20px;
}
/*  */
body:not(.home) .home-hero-banner-container .home-hero-slide-left {
    background: #003B71BF;
    text-align: left;
    padding: 40px;
}

body:not(.home) .home-hero-banner-slider ul.slick-dots{
    display:none  !important;
}

body:not(.home) .container.home-hero-banner-container {
    align-items: flex-end;
    padding-bottom: 24px;
}
body:not(.home) .home-hero-slide-left h2{
    color:var(--white);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.02;
    margin-bottom: 0;
}

body:not(.home) .home-hero-banner-nav-caption {
    color: var(--white);
    font-weight:400;
    font-family:var(--additional-font);
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1.25;
    
}
body:not(.home) .home-hero-banner-container .home-hero-slide-left:has(.home-hero-slide-title+.home-hero-banner-nav-caption) h2{
    margin-bottom: 15px;
}
    
/* --14/11/2023-- */
/*.home-hero-banner.inner-banner{*/
/*    margin-bottom: 30px;*/
/*}*/
.home-hero-banner.slider .slick-arrow{
    display: none;
}
.home-hero-banner.slider .inner-page-banner .slick-arrow{
    display: block;
}
.home-hero-banner.slider .slick-arrow{
    position: absolute;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--white);
    opacity: 0.9;
    border-radius: 10px;
    bottom: 4rem;
    font-size: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.home-hero-banner.slider .slick-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: rotate(44deg);
    border-color: #003B71;
    border-block-start-width: 2px;
    border-inline-end-width: 2px;
    position: relative;
    display: block;
    border-style: solid;
    border-left-width: 0;
    transition: all .3s;
    border-bottom-width: 0;
    left: -2px;
}
.home-hero-banner.slider .slick-prev.slick-arrow::before {
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-block-start-width: 0;
    border-inline-end-width: 0;
    left: 2px;
}
.home-hero-banner.slider .slick-next {
    right: calc(-100vh / 2 + 100% / 2);
}
.home-hero-banner.slider .slick-prev {
    right: calc(-100vh / 2 + 111% / 2);
}

.productzoom-icon.wpb_gallery .wpb_flexslider .flex-direction-nav a:before::before{
    border-color: #F7F7F7;
    width: 25px;
    height: 25px;
    border-block-start-width: 3px;
    border-inline-end-width: 3px;
}

.single-product  .product-detail .product-detail-main-col .product-detail-right {
    display: none;
}

.single-product .product-detail .product-detail-left{
    max-width: 100%;
}
.single-product h2{
    color: var(--primary-color);
}
.cta-scroll.links-center ul{
    text-align:center;
}
.cta-scroll ul li.product-item {
    display: inline-block;
    margin: .5rem 1.5rem;

}
.cta-scroll ul .product-item:first-child {
    margin-left: 0;
}
.cta-scroll ul .product-item .nav-link {
    color:var(--body-text-color2);
    font-size: 1.8rem;
    position: relative;
    padding: 1.2rem 0;

}
.cta-scroll ul .product-item .nav-link:after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    border-bottom: 3px solid;
    height: 100%;
    bottom: 0;
    border-color: transparent;  
}
.product-detail .product-detail-box{
    padding-top: 2.1rem;
}
.cta-scroll ul .product-item .nav-link.active:after {
  border-color: var(--brand-color);  
}
.cta-scroll {
    display: flex;
     align-items: center;
    margin-bottom:15px;
}
.cta-scroll .contact-wrapper-btn,
.cta-scroll .wpb_wrapper  .wpb_content_element{
    margin-bottom: 0;
}
/*.cta-scroll ul .product-item .nav-link.active{*/
/*    font-weight: var(--fontweightBold);*/
/*}*/
.cta-scroll .contact-wrapper-btn .vc_btn3.vc_btn3-size-lg {
    font-size: 1.8rem;
}
.cta-scroll .contact-wrapper-btn .vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
    padding-right: 70px;
}
.cta-scroll .contact-wrapper-btn .vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{
    font-size: 12px;
}
.properties-section .wpb_single_image img,
.properties-section .vc_single_image-wrapper,
.properties-section .wpb_single_image .vc_figure{
    width: 100%;   
}

.overview .wpb_gallery .wpb_gallery_slides .flex-control-paging{
    text-align: right;
}
.overview .wpb_text_column{
    font-size: 18px;
}
.overview{
   align-items: flex-start;
}
.overview .wpb_gallery .wpb_gallery_slides .flex-control-paging li{
    margin: 0 8px;
}
.overview .wpb_gallery .wpb_gallery_slides .flex-control-paging li a{
    width: 40px;
    height: 6px;
    font-size: 0;
    background-color: #D6D6D6;
}
.overview .wpb_gallery .wpb_gallery_slides .flex-control-paging li a.flex-active{
    background-color: var(--brand-color);
}

.overview .wpb_wrapper .flexslider{
    border: 0;
}
.overview .wpb_wrapper h2 {
   margin-bottom: 32px;
   line-height: 1.142858;
}
.releated_products p {
    font-size: 18px;
    line-height: 1.555555;
}
.single-product h2,.single-product h2{
  line-height: 1.142858;  
}
.properties-section .image-width-text-content h2 {
    margin-bottom: 16px;
}
.image-width-text-content p,.properties-section .image-width-text-content ul li{
        line-height: 1.625;
}
#overview .wpb_wrapper p {
    line-height: 1.555555;
}
#overview .gutter-spcing-6 {
    padding-right: 36px;
}
.overview .wpb_wrapper .wpb_gallery.wpb_content_element{
    margin-bottom: 0;
}
.overview .wpb_gallery_slides .flexslider{
    margin: 0 0 37px;
}
.properties-section .wpb_single_image.wpb_content_element{
    margin-bottom: 8px;
    padding: 0;
}
.properties-section .wpb_single_image+.wpb_text_column {
    text-align: left;
    padding-left: 0;
}
.installation .wpb_wrapper {
    width: 100%;
}
.related-products .profile_option_section img {
    width: 100%;
}
.properties-section .image-width-text-content ul,
.properties-section .image-width-text-content ul li {
    list-style: disc;
}
.properties-section .image-width-text-content ul {
    padding-left: 1.5rem;
}
.properties-section .image-width-text-content ul li {
    line-height: 1.5;
}

.properties-section .image-width-text-content{
    color: var(--gray-text) ;
}
body.home .home-hero-banner.slider .slick-arrow{
   display: none !important;
}

.releated_products .related-products{
    margin-top: 4rem;
}

.product-pdf-wrapper .select-multiple-files {
    text-align: right;
    padding-bottom: 1rem;
    border-bottom: 1px solid #231F201A;
}
.product-files li.file-item,
.product-files .download-buttons-li-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 21px 12px;
    border-bottom: 1px solid #231F201A;
    position: relative;
}
.product-files li.file-item .file-label{
    order: -1;
}
.product-files  .pdf-files{
    background-color: var(--primary-color);
    padding: 3px 10px 0;
    display: inline-block;
    color: var(--white);
    margin-right: 1rem;
}
.product-files .download-link.pdf-download-btn{
    flex-direction: row-reverse;
}
.product-files .pdf-download-btn{
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 11px;
    height: 48px;
    line-height: 1.555558;
    font-size: 18px;
    min-width: 129px;
    margin-left: 16px;
}
.product-files .pdf-download-btn.active {
    background: #808285;
}
 .pdf-download-btn.preview-link{
     position:relative;
 }
 .pdf-download-btn.preview-link:before{
     content: "";
     background: url('../images/icon-preview.svg') no-repeat center center;
     background-size: contain;
     width: 24px;
     height: 24px;
 }
.product-files .pdf-download-btn.preview-link{
    background: transparent;
    flex-direction: row-reverse;
    color: var(--primary-color);
}
.product-files .file-item .file-name{
    flex: 1;
    text-align: left;
    color: var(--body-text-color2);
    line-height: 1.555558;
    font-size: 18px;
}
.product-files .file-item .file-name > span {
    color: #999999;
}

.properties-section .image-width-text-content{
    margin-top: 48px;
}

.product-files .download-buttons-li-wrapper {
    border: 0;
    padding-bottom: 0;
}

.product-files .download-buttons-li-wrapper>div:first-child {
    flex: 1;
    text-align: left;
}
.product-files .pdf-link-btn{
    color: #4D8BCA;
}
.product-files .pdf-link-btn button {
    background: transparent;
    border: 0;
    color: inherit;
    font-weight: 500;
}

.slider-section .slick-prev.slick-arrow::before {
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-block-start-width: 0;
    border-inline-end-width: 0;
    left: 1px;
}

.slider-section .slick-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: rotate(44deg);
    border-color: #003B71;
    border-block-start-width: 2px;
    border-inline-end-width: 2px;
    position: relative;
    display: block;
    border-style: solid;
    border-left-width: 0;
    transition: all .3s;
    border-bottom-width: 0;
    left: -1px;
}
.slider-section .slick-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: rotate(44deg);
    border-color: #011c23;
    border-block-start-width: 2px;
    border-inline-end-width: 2px;
    position: relative;
    display: block;
    border-style: solid;
    border-left-width: 0;
    transition: all .3s;
    border-bottom-width: 0;
    left: -1px;
}
.slider-section .slick-dots{
    display: none;
}

.slider-section .slick-arrow{
    position: absolute;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--white, 0.9);
    border-radius: 10px;
    bottom: 4rem;
    font-size: 0;
    border: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    align-items: center;
}

.slider-section .slick-prev {
    right: calc(-100vh / 2 + 110% / 2);
}
.slider-section .slick-next{
    right: calc(-100vh / 2 + 100% / 2);
}
.slider-section {
    width: 100vw ;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
}
.slider-section .slide,
.slider-section.single-image{
    min-height: 670px;
    
}
.slider-section.slider,
.potter-leading-banner .vc_column-inner:has(.slider-section),
.slider-section.single-image{
    padding-bottom:0;
    padding-top: 0;
}
.slider-section.single-image{
    display: flex;
    align-items: center;
}
.image-with-text-slider .content-inner .overlay-content h2,
.slider-section.single-image .overlay-content h2{
    color: var(--white);
    font-weight: 400;
    margin-bottom:1.2rem;
}
.image-with-text-slider .overlay-content .btn-wrapper {
    margin-top: 3rem;
}


.slider-section .content-inner .overlay-content{
    text-align: left;
}

.single-product .product-detail .product-detail-box{
    padding-bottom: 0;
}
.slider-section.single-image .content-inner {
    max-width: 465px;
}

.slider-section.single-image .content-inner .overlay-content p:first-of-type {
    text-transform: uppercase;
    font-family: var(--additional-font);
    margin-bottom: 0;
    font-weight:700;
}

.sustainability-page-banner .slider-section.single-image .content-inner .overlay-content p:first-of-type{
    font-weight:500;
}

.slider-section.single-image .content-inner .overlay-content h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

/*--------- 18/11/2024----------------------*/
.brand-list .section-head .wpb_wrapper p ,
.potter-welcome-section .section-head .wpb_wrapper p {
  max-width: 435px;
}
.section-head.half-container p,
.brand-list .section-head.half-container p{
    max-width: 765px;
}
.home-inspiration-list.inspiration-list {
    width: inherit;
}
.pdp-content-wrapper {
    background: var(--white);
    display: flex;
    padding: 1rem 1rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--primary-color);
}

.productzoom-icon.wpb_gallery .wpb_flexslider .flex-direction-nav a:before{
    content: "";
    width: 12px;
    height: 12px;
    transform: rotate(44deg);
    border-color: #003B71;
    border-block-start-width: 2px;
    border-inline-end-width: 2px;
    position: relative;
    display: block;
    border-style: solid;
    border-left-width: 0;
    transition: all .3s;
    border-bottom-width: 0;
    left: -2px;
}
.productzoom-icon.wpb_gallery .wpb_flexslider .flex-direction-nav a{
    position: absolute;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--white);
    border-radius: 10px;
    bottom: 4rem;
    font-size: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.productzoom-icon.wpb_gallery .wpb_flexslider .flex-direction-nav a.flex-prev:before{
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-block-start-width: 0;
    border-inline-end-width: 0;
    left: 2px;
}

.pdp-content-wrapper .pdp-title h3{
    display: inline-block;
    padding-top:1rem;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.pdp-content-wrapper .left-content-wrapper .read-more-button{
    border-top: 1px solid var(--primary-color) ;
    display: inline-block;
    padding-top: 1rem;
    color: var(--text);
    text-transform: uppercase;
}
.pdp-content-wrapper .left-content-wrapper {
    flex:1;
}

.pdp-content-wrapper .right-pdp-image {
    flex: 0 0 90px;
    padding-left: 1rem;
    padding-top: 1rem;
}

.request-btn button.vc_general.vc_btn3 {
    border: 1px solid #323232;
    font-size: 13px;
    font-weight: 400;
    height: 48px;
    line-height: 2.46154;
    color: #323232;

}

.request-btn.vc_btn3-right .vc_btn3{
    text-align:right;
    margin-left: auto;

}
.wpb_wrapper .wpb_content_element:has(.slider-section){
    margin-bottom: 0;
} 

.request-btn button.vc_general.vc_btn3:hover{
    background-color:var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}
.product-pdf-wrapper .section-head p{
    max-width: 710px;
}
.product-pdf-wrapper .section-head p a {
    text-decoration: underline;
    font-weight: var(--fontweightBold );
}
.product-pdf-wrapper h2 {
    letter-spacing: -0.42px;
    margin-bottom: 32px;
    line-height: 1.190477;
}
.product-pdf-wrapper .section-head,
.download-section .section-head{
    padding: 0;
}
.section-head.half-container .product-pdf-wrapper p {
    font-size: 18px;
    line-height: 1.555555;
}

.related-products .profile_option_section a{
    display: block;
}
.related-products .profile_option_section .aspect-ratio {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 75%;
}
.related-products .profile_option_section .aspect-ratio img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-products .row .profile_option_section.col-md-3{
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}
.related-products .row .profile_option_section .pdp-content-wrapper{
    flex: 1;
}
.related-products .row .profile_option_section .left-content-wrapper{
    display: flex;
    flex-direction: column;
}
.related-products .row .profile_option_section .pdp-content-wrapper .pdp-title{
    flex: 1;
}
.productzoom-icon {
    position: relative;
}
.productzoom-icon:after {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='11.9141' y1='6' x2='11.9141' y2='17' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='17.0547' y1='11.7773' x2='6.1982' y2='11.7773' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M22 11.5C22 17.3095 17.3454 22 11.627 22C5.90851 22 1.25391 17.3095 1.25391 11.5C1.25391 5.69052 5.90851 1 11.627 1C17.3454 1 22 5.69052 22 11.5Z' stroke='white' stroke-width='2'/%3E%3Cline x1='1.25' y1='-1.25' x2='10.0014' y2='-1.25' transform='matrix(-0.703171 -0.711021 0.703171 -0.711021 27.9453 26)' stroke='white' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    top: 23px;
    right: 18px;
    pointer-events: none;
}
/*.overview .productzoom-icon .flexslider .slides img {*/
/*    height: 360px;*/
/*    object-fit: cover;*/
/*}*/
.overview .productzoom-icon .flexslider .slides a {
    position: relative;
    height: 0;
    display: block;
    padding-bottom: 72.225%;
    width: 100%;
}
.overview .productzoom-icon .flexslider .slides img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* gallery page */
.gallery-page .gallery-grid {
    margin-top: 48px;
    overflow:hidden;
}
.gallery-page  .gallery-filters {
    margin-bottom: 45px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 0 16px;
}
.gallery-header .wpb_content_element{
    margin-bottom: 0;
}
.gallery-filters .filter-button{
    background: transparent;
    color: #4B4C51;
    border: 1px solid;
    border-color: #DCDCDE;
    border-radius: 40px;
    padding: 0 16px;
    font-size: 16px;
    height: 41px;
}
.gallery-filters .filter-button.active{
    background: #DCDCDE;
    color: var(--body-text-color2);
    outline:none;
}
.gallery-filters .filter-button{
    outline: none;
    box-shadow: none;
}
.gallery-header .section-head h2 {
    margin-bottom: 20px;
}

.gallery-header .section-head h2 + p {
    margin-bottom: 20px;
}
.gallery-page .gallery-grid{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.gallery-grid .gallery-item{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    width: 100%;
    padding: 15px;
}
.gallery-grid .gallery-item a{
    display: block;
}
.gallery-grid .image-wrapper.aspect-ratio{
    position: relative;
    height: 0;
    padding-bottom: 100%;
}
.gallery-grid .gallery-item img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body .product-list {
    padding-bottom: 0;
}


.gallery-grid .gallery-item{
    position: relative;
    transition: all 0.5s ease;
}
.gallery-grid .gallery-item .gallery-grid-content{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gallery-grid .gallery-item:hover .gallery-grid-content{
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: scale(1.05);
}
.gallery-grid .gallery-item:hover .image-wrapper::after{
    opacity: 1;
} 
.gallery-grid .image-wrapper::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    opacity: 0;
    pointer-events: none;
}
.gallery-grid .gallery-item:hover{
    transform: scale(1.05);
}

.gallery-grid .gallery-item .grid-label{
    width: 45px;
    height: 25px;
    display: block;
}
.gallery-grid .gallery-item .grid-label img{
    width: 45px;
    height: 22px;
    position: static;
}
.gallery-grid .gallery-item .grid-button {
    display: block;
    text-align: end;
    color: #EEEDEC;
    font-size: 15px;
    position: relative;
    padding-right: 20px;
}

.gallery-grid .gallery-item .grid-button a{
    color: #EEEDEC;
    position: relative;
    padding-right: 5px; 
}
.gallery-grid .gallery-item .grid-button a::after{
    content: "";
    width: 9px;
    height: 9px;
    transform: rotate(44deg);
    border-color: #fff;
    border-block-start-width: 2px;
    border-inline-end-width: 2px;
    position: relative;
    display: inline-block;
    border-style: solid;
    border-left-width: 0;
    transition: all .3s;
    border-bottom-width: 0;
    right: -5px;
}
.gallery-page .load-more-container{
    margin-top: 50px;
    padding-bottom: 20px;
    text-align: center;
}
.gallery-page .load-more-container button {
    background: transparent;
    color: var(--body-text-color2);
    border: 1px solid #9E9FA2;
    border-radius: 4px;
    padding: 10px 0;
    max-width: 300px;
    width: 100%;
}
.wpb_content_element:has(.gallery-page) {
    margin-bottom: 2px;
}
.footer-connect .cdr-logo-info {
    order: -1;
    flex: 1;
    font-size: 18px;
    line-height: 1.555555;
    margin-left: 24px;
}
.footer-connect .csr-message {
        order: -2;
}
/*.section-head.half-container{*/
/*    margin-bottom : 0!important;*/
/*}*/

.fancybox__backdrop {
    background: #000;
}
button.f-button {
    color: #9E9FA2;
}
.potter-leading-banner .slider-section,
.potter-leading-banner .slider-section .slide,
.slider-section:has(.overlay-content){
    position: relative;
}
.potter-leading-banner .slider-section.single-image:after,
.potter-leading-banner .slider-section .slide:after,
.slider-section:has(.overlay-content):after{
    content:"";
    background: url(../images/overlay-content.png) no-repeat;
    background-size: 100% 100%;
    opacity: 0.7;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
}
.slider-section:has(.overlay-content).image-with-text-slider:after {
    opacity: 0;
}
/* ARTICLE PAGE */
.project-detail h2{
    color: var(--maincolor);
    line-height: 1.142858;  
    letter-spacing: -0.03em;
}
.article-content-section p {
    line-height: 1.5;
    margin-bottom: 30px;
}
.article-content-section a{
    text-decoration:underline;
}
.inspiration-gallery-slider{
    width: 100vw;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
}
.inspiration-gallery-slider .slick-list {
    padding: 0 12% !important;
}
.inspiration-gallery-slider .slick-slide {
    transition: all 0.3s;
}
.inspiration-gallery-slider .slick-arrow {
    position: absolute;
    width: 4.8rem;
    height: 4.8rem;
    background: transparent;
    opacity: 0.9;
    bottom: 4rem;
    font-size: 0;
    border:1px solid #9E9FA2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    top: -63px;
}
.inspiration-gallery-slider .slick-prev.slick-arrow::before {
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-block-start-width: 0;
    border-inline-end-width: 0;
    left: 2px;
}
.inspiration-gallery-slider .slick-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: rotate(44deg);
    border-color: #003B71;
    border-block-start-width: 2px;
    border-inline-end-width: 2px;
    position: relative;
    display: block;
    border-style: solid;
    border-left-width: 0;
    transition: all .3s;
    border-bottom-width: 0;
    left: -2px;
}
.image-slider-inspiration{
    padding: 0 9px;
}
.image-slider-inspiration img {
    width: 100%;
}
.image-slider-inspiration .image-ratio {
    position: relative;
    height: 0;
    padding-bottom: 94.12%;
}

.image-slider-inspiration .image-ratio img {
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-slider-inspiration .content-wrapper {
    margin-top: 16px;
}

.image-slider-inspiration .content-wrapper p {
    line-height: 1.625;
}
.project-with-text h2 {
    margin-bottom: 4.5rem;
}
.project-with-text p{
      line-height: 1.625;
}
.project-with-text .image-ratio {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    margin-bottom: 0;
}
.project-with-text .image-ratio img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-with-text > div > div > div {
    display: flex;
    align-items: center;
}
.project-with-text .half-contaner {
    max-width: 435px;
    width: 100%;
}
.image-with-text-slider p {
    font-family: var(--additional-font);
    color: #EEEDEC;
    font-size: 13px;
    margin-bottom:6px;
}
.contact-us-banner-section {
    min-height: 670px;
    max-height: 670px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
}
.contact-us-banner-section{
    position: relative;
}
.contact-us-banner-section .content-inner > div > div{
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.contact-us-banner-section::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(23, 23, 23, 0.75) 17.96%, rgba(23, 23, 23, 0) 82.15%);
    height: 100%;
}
.contact-us-banner-section h2{
    font-weight: 700 !important;
    font-size:48px;
    line-height:1;
}
.contact-us-banner-section .btn-outline > .vc_btn3 {
    min-width: 200px;
}
.contact-us-banner-section .button-wrapper {
    margin-top: 15px;
    display: flex;
    gap: 7px;
    font-family: var(--base-fontfamily);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    align-items:center;
}


/* Style accordion container */
.accordion {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
}

/* Style accordion title */
.accordion-title {
    cursor: pointer;
    font-weight: bold;
    margin: 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    display: flex; /* Align items horizontally */
    justify-content: space-between; /* Push items to opposite ends */
    align-items: center; /* Vertically center items */
}

/* Active title styling */
.accordion-title.active {
    background-color: #e9e9e9;
    color: #333;
}

/* Content inside accordion */
.accordion-content {
    display: none;
    padding: 10px;
    background-color: #fff;
}

/* File information aligned in one line */
.accordion-file {
    display: flex;
    justify-content: space-between; /* Align content to opposite ends */
    align-items: center; /* Vertically center content */
    margin: 5px 0;
}

/* Style links and file details */
.accordion-file a {
    color: #0073aa;
    text-decoration: none;
    margin-left: 10px;
}


/*Inspiration Page*/
.inspiration-top-content  .section-head p {
    max-width: 800px;
}
.theme-filter.ilf .ilf-box {
    border: none;
}

.theme-filter.ilf .ilf-cat-filter ul li > span {
    border: 1px solid #B3B4B6;
    border-radius: 30px;
    display: block;
}

.theme-filter.ilf .ilf-cat-filter ul li > span label {
    font-size: 16px;
    padding: 9px 26px;
    display: block;
}

.theme-filter.ilf .ilf-cat-filter ul {
    gap: 16px;
    justify-content: center;
    padding:0;
}
.theme-filter.ilf .ilf-cat-filter ul li > span label:after,
.theme-filter.ilf .ilf-cat-filter ul li > span label:before,
.theme-filter.ilf .ilf-cat-filter ul li > span:before{
    opacity:0;
    display:none;
}
.theme-filter.ilf .ilf-cat-filter ul li > span input:checked + label,
.theme-filter.ilf .ilf-cat-filter ul li > span label:hover{
    background-color: #DCDCDE;
    color: var(--body-text-color2);
}
.ilf .ilf-post-box-thumb > a {
    position: relative;
    padding-bottom: 72.86%;
}

.ilf .ilf-post-box-thumb > a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ilf .ilf-post-box:hover .ilf-post-box-thumb > a > img {
    transform: scale(1.1);
}

.ilf .ilf-post-box .ilf-post-box-thumb > a > img {
    transform: scale(1);
    transition: all 0.5s;
}

.ilf .ilf-post-box .ilf-post-box-thumb {
    position: relative;
    overflow: hidden;
}
.ilf .ilf-list {
    padding-top: 15px;
}
.inspirations-result > div,
.inspirations-result > div:last-child{
    margin-bottom: 48px !important;
}

.ilf .ilf-post-box {
    background: #EAEAEA;
    padding: 0;
    height: 100%;
    position: relative;
    padding-bottom: 40px;
}

.ilf .ilf-post-box-cta {
    position: absolute;
    top: auto;
    bottom: 17px;
}

.ilf .ilf-post-box-cta .button{
    padding: 0 25px 0 0;
    color: var(--body-text-color2);
    text-transform: none;
    font-size: 18px;
}

.ilf .ilf-post-box-cta .button:after {
    background-image: url(../images/short-arrow.svg);
    background-repeat: no-repeat;
    font-size: 0;
    width: 14px;
    height: 12px;
}

.ilf .ilf-post-box-content {
    padding: 24px;
}
.ilf .ilf-post-box-title h6 {
    font-size: 24px;
    color: var(--body-text-color2);
    font-weight: 500;
}
.ilf .ilf-post-box-title h6 a{
    color: var(--body-text-color2);
}

.ilf .ilf-post-box-title {
    padding-bottom: 16px;
}

.ilf-post-box-desc p {
    color: #808285;
}

/*News page*/
.container.wpb_column.vc_column_container {
    float: none;
}
.featured-news-section .news-title {
    max-width: 340px;
    width: 100%;
}
.featured-news-section .news-title p {
    margin-bottom: 5px;
    color: var(--body-text-color2);
    font-size: 14px;
}
.featured-news-section .news-title h2 {
    font-size: 24px;
}
.featured-news-section .news-content {
    display: flex;
    padding-top: 48px;
}

.featured-news-section .featured-image img {
    width: 100%;
    object-fit: cover;
}

/*White papaer Page */
.whitepaper-row {
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
}
.whitepaper-left {
    flex: 1; 
    max-width: 48%;
    gap: 20px; 
}
.whitepaper-left h3 {
    font-size: 22px; 
    color: #000000; 
    line-height: 1.4; 
}
.whitepaper-left .content-inner {
    max-width: 466px;
    width: 100%;
}
.whitepaper-left h3 a {
    text-decoration: none;
    color: #000; 
    transition: color 0.3s ease; 
}
.whitepaper-left p {
    color: var(--body-text-color2); 
    line-height: 1.6; 
}
.whitepaper-right {
    flex: 1; 
    max-width: 51%; 
    display: flex;
    justify-content: center; 
    align-items: center; 
}
.whitepaper-right a{
    display: block;
    width: 100%;
}
.whitepaper-right img {
    width: 100%; 
    max-width: 540px; 
    object-fit: cover; 
    margin-left: auto;
    display: block;
}
.whitepaper-left .button {
    margin-top: 16px;
}

.single-whitepare-content .content-inner {
    max-width: 466px;
    margin: 0 auto;
    width: 100%;
}
.section-inner-content .wpb_column:first-of-type{
    margin-bottom: 30px;
}

/*Contact page*/
.section-scroll-link{
    padding-top: 100px;
    position: relative;
}
.section-scroll-link .vc_column_container{
    position: static;
}
.vc_row.container {
    margin: 0 auto;
}
.contact-info-row{
    color:#fff;
}
.contact-info-row h2 {
    margin-bottom: 10px;
    line-height: 1;
}
.contact-info-row a{
    color:#fff;
}

.contact-info-columns .col-action .content {
    background: transparent !important;
    padding: 0;
    border: none;
    color: #fff;
}
.col-action .content h2 {
    font-size: 24px;
}

.col-action .content .vc_btn3-container{
    max-width: 170px;
    width: 100%;
}
.col-action .content .vc_btn3-container .vc_btn3 {
    background:#fff;
    color: var(--primary-color);
    padding: 12px 36px;
    border-radius: 4px;
    font-size:16px;
}
.col-action .content .vc_btn3-container .vc_btn3:hover{
    background:#fff;
}
.col-action .content .vc_cta3-icons{
    text-align: left !important;
}
.vc_cta3-icons .fa-phone-alt:before,
.vc_cta3-icons .fa-city:before,
.vc_cta3-icons .fa-user:before,
.vc_cta3-icons .fa-book:before{
    background-repeat: no-repeat;
    background-position: center center;
    width: 48px !important;
    height: 48px !important;
    background-size: contain;
    content: "";
}
.vc_cta3-icons .fa-phone-alt:before {
    background-image: url('../images/icon-phone.svg');
}
.vc_cta3-icons .fa-city:before {
     background-image: url('../images/icon-house.svg');
}
.vc_cta3-icons .fa-user:before {
    background-image: url('../images/Icon-persons.svg');
}
.vc_cta3-icons .fa-book:before {
    background-image: url('../images/icon-trade.svg');
}

.contact-info-columns.vc_row.container{
    padding:13px 0 0 0;
}
.col-action .content .vc_cta3-content{
    margin-bottom: 24px !important;
    max-width: 190px;
}


.contact-form-wrapper{
    max-width: 730px;
    width: 100%;
}

.contact-page-title p {
    color: #5B595B;
}


.wpcf7-form .row > div {
    margin-bottom: 24px;
}
.wpcf7-form .row > div .wpcf7-form-control-wrap{
    display:block;
    margin-top: 5px;
}
.contact-page-title p {
    color: #5B595B;
}

.wpcf7-form input[type=text], 
.wpcf7-form input[type=url], 
.wpcf7-form input[type=email], 
.wpcf7-form input[type=tel], 
.wpcf7-form textarea,
.wpcf7-form select{
    height: 56px;
    background: #fff;
    border-radius: 4px;
    border-color: #9E9FA2;
}

.wpcf7-form .row > div {
    margin-bottom: 24px;
}

.wpcf7-form .row > div .wpcf7-form-control-wrap{
    display:block;
    margin-top: 5px;
    width: 100%;
}

.wpcf7-form .row > div p > label {
    display: block;
}
.wpcf7-form .select2-container{
    width: 100% !important;
}

.wpcf7-form .wpcf7-form-control.wpcf7-submit {
    background: #003B71;
    border-radius: 4px;
    padding: 18px 30px 20px 30px;
    font-size: 18px;
    line-height: 1;
    max-width: 350px;
    width: 100%;
    text-transform: none;
}

.wpcf7-form .wpcf7-form-control.wpcf7-submit:after {
    display: none;
}

.select2-container--default .select2-selection--single {
    height: 56px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 56px;
    padding: 13px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px;
    right: 5px;
}
.wpcf7-not-valid-tip{
    font-size: 13px;
    color: #921C2C;
    position: relative;
    padding-left: 20px;
}

.wpcf7-not-valid-tip:before {
    content: "";
    background: url('../images/icon-warning.svg') no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    left:0;
    top:2px;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
    color: #fff;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0;
    border: none;
}
.wpcf7-form textarea {
    height: 118px;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit:focus{
    color:#fff;
}
.wpcf7-form .row > div p > label > span.req {
    color: #ED1C24;
    margin-left: 3px;
}
span.wpcf7-form-control.wpcf7-radio input[type="radio"]{
    display:none;
}
span.wpcf7-form-control.wpcf7-radio {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-start;
    cursor: default;
}

span.wpcf7-form-control.wpcf7-radio input + span::before,
span.wpcf7-form-control.wpcf7-radio input + span::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 1px solid #9E9FA2;
    border-radius: 50%;
    margin-right: 8px;
    background: white;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}

span.wpcf7-form-control.wpcf7-radio input:checked + span::before {
    border: 6px solid #000;
    z-index: 1;
    top: 0;
    left: 0;
}


span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    padding-top: 4px;
}

span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    margin: 0;
    padding: 10px 0;
}
span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-form .acceptance-check .wpcf7-form-control-wrap + span{
    cursor: pointer;
}


.wpcf7-form .acceptance-check label {
    display: flex !important;
}

.wpcf7-form .acceptance-check .wpcf7-form-control-wrap {
    width: auto !important;
    margin: 0 !important;
}

.wpcf7-form .acceptance-check .wpcf7-list-item {
    margin: 0;
}

.wpcf7-form .acceptance-check label span {
    line-height: 1;
}

.wpcf7-form .acceptance-check .wpcf7-form-control-wrap input {
    display: none;
}

.wpcf7-form .acceptance-check .wpcf7-form-control-wrap + span:after,
.wpcf7-form .acceptance-check .wpcf7-form-control-wrap + span:before {
    content: "";
    width: 24px;
    height: 24px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #939598;
    border-radius: 4px;
}

.wpcf7-form .acceptance-check .wpcf7-form-control-wrap + span {
    padding-left: 30px;
    position: relative;
    padding-top: 4px;
}

.wpcf7-form .acceptance-check .wpcf7-form-control-wrap:has(input:checked) + span:after {
    background: #231F20;
    border-color: #231F20;
}

.wpcf7-form .acceptance-check .wpcf7-form-control-wrap + span:before {
    background: url(../images/icon-check.svg) no-repeat;
    width: 16px;
    height: 16px;
    border: none;
    top: 6px;
    left: 5px;
    z-index: 1;
    background-size: contain;
}
.wpcf7-form input.wpcf7-not-valid, .wpcf7-form textarea.wpcf7-not-valid {
    border-color: red;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: var(--primary-color);
}



.section-title h2 {
    color: #003B71;
    margin-bottom: 20px;
}


.col-location {
    margin: 24px 0;
}

.col-location .location-image {
    margin-bottom: 0;
    position: relative;
    max-height: 187px;
}

.col-location .location-image h2 {
    position: absolute;
    top: auto;
    left: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    padding: 20px 25px;
    bottom: 0;
    margin: 0;
}

.col-location .location-image h2.wpb_singleimage_heading:before {
    content: "";
    background: url(../images/icon-house.svg) no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    display: block;
    margin-bottom: 5px;
}

.col-location .location-image img {
    max-height: 187px;
    min-height: 187px;
    object-fit: cover;
}

.col-location .location-image:before {
    content: "";
    background: rgb(0 59 113 / 80%);
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
}

.col-location  .content-address {
    padding: 25px 0;
    margin: 0;
}

.col-location  .opening-hours {
    margin: 0;
    padding: 25px;
    background: #EEEDEC;
}
.col-location  .content-address h3,
.col-location  .opening-hours h3{
    font-size: 24px;
}
.col-location  .opening-hours h3{
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.col-location .content-address h3 {
    margin-bottom: 4px;
}

.col-location .content-address .flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin: 10px 0;
    line-height: 1;
}

.contact-info p img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-info p > a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}
.col-location .opening-hours p {
    line-height: 1.63;
}
.location-more-links {
    padding-top: 24px;
}
.product-details .vc_column-inner {
    padding: 0 !important;
}
/*.download-section.card-transparent .vc_gitem-zone {*/
/*    background: transparent !important;*/
/*}*/

.download-section.card-transparent .vc_gitem-col {
    background: transparent;
}

.technical-resources .technical-resources-accordion .accordion {
    padding: 0;
    border: none;
    flex-wrap: wrap;
}
.alternative-files {
    padding: 0 12px;
}
.alternative-files ul > li {
    display: block;
    padding: 13px;
    margin: 10px 0;
    font-size: 18px;
}
.product-files {
    width: 100%;
}
.alternative-files ul > li a {
    color: #1C1F27;
    text-decoration: underline;
}

span.file-label {
    background: #003B71;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    min-width: 45px;
    text-align: center;
    display: inline-block;
    line-height: 1;
    min-height: 34px;
    padding: 8px 0;
    margin-right: 8px;
}

.file-download-cat-wrap > ul {
    display: flex;
    justify-content: center;
    gap: 0 40px;
}

.file-download-cat-wrap {
    width: 100%;
}

.file-download-cat-wrap ul {
    display: flex;
    justify-content: center;
    gap: 0 40px;
}

.file-download-cat-wrap ul > li > span input {
     display: none; 
}

.file-download-cat-wrap ul > li > span label:after,
.file-download-cat-wrap ul > li > span label:before {
    content: "";
    width: 28px;
    height: 28px;
    border: 3px solid #808285;
    position: absolute;
    left: 0;
    border-radius: 4px;
    top: 0;
    background-color:#fff;
}

.file-download-cat-wrap ul > li span label{
    position: relative;
    padding-left: 42px;
    padding-top: 4px;
    font-size: 16px;
    color: #4D4D4F;
}
.row.file-download-result.product-files {
    padding-top: 0;
    margin:0;
}
ul.file-download-list {
    width: 100%;
    
}
.resource-result {
    font-size: 22px;
    color: #4D4D4F;
    padding-top:60px;
}
.file-download-cat-wrap ul > li span {
    display: block;
    padding:12px;
}

.file-download-cat-wrap ul > li > span input:checked + label:before {
    background: url('../images/icon-check-gray-check.svg') no-repeat center center;
    background-size: contain;
    top: 4px;
    border: none;
    width: 21px;
    height: 21px;
    left: 4px;
    z-index:1;
}
.pdf-link-btn.select-multiple-files button {
    border: none;
    background: transparent;
    padding: 0;
    color: #4D8BCA;
    font-weight: 500;
}

.pdf-link-btn.select-multiple-files {
    text-align: right;
    margin-bottom: 10px;
}
li.download-buttons-li-wrapper {
    display: flex;
}

.accordion > ul > li.download-buttons-li-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 25px;
}

.accordion > ul > li.download-buttons-li-wrapper .pdf-link-btn {
    margin-right: 0;
    margin-left: auto;
}

.accordion > ul > li.download-buttons-li-wrapper .pdf-link-btn:first-child {
    margin-left: 0;
}

.accordion > ul > li.download-buttons-li-wrapper .pdf-link-btn:nth-child(3) {
    margin: 0;
}

.accordion > ul > li.download-buttons-li-wrapper .pdf-link-btn button {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 500;
    color: #4D8BCA;
}
.technical-resources .technical-resources-search .search-title h3 {
    font-weight: normal;
    color:#4D4D4F;
}

.whitepaper-section .wpb_content_element {
    margin-bottom: 0;
}
.single-product .product-detail .product-detail-left > section > div.product-details > div {
    padding-top: 100px;
}

.product-list .product-list-left .panel-btn{
    top: 50%;
    transform: translateY(-50%);
}

/*Responsive css*/
@media (min-width:768px){
    .product-category-row .title.mobile{
        display:none;
    }
    .section-title ul {
        display: flex;
        gap: 0 10px;
        justify-content:center;
    }
    
    .section-title ul > li {
        border-right: 1px solid #979797;
        line-height: 1;
        padding-right: 10px;
    }
    
    .section-title ul > li:last-child {
        border: none;
        padding: 0;
    }
}

@media (min-width:768px) and (max-width:1199px){
    .related-products .row .profile_option_section.col-md-3{
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}
@media (min-width:1101px){
    header.main-header .mb-navigation{
        display:none;
    }
}

@media (min-width: 1200px){
    .container{
        max-width: 1140px;
    }
    .container.home-hero-banner-container,
    body:not(.home) .container.home-hero-banner-container  {
        padding-bottom: 40px;
    }
    body:is(.home) .container.home-hero-banner-container{
        padding-bottom: 20px;
    }
   .home-hero-banner.slider .slick-next,
   .inspiration-gallery-slider .slick-next {
        right: calc(-1110px / 2 + 100% / 2);
    }
    body:not(.home) .home-hero-banner.slider .slick-prev,
    .inspiration-gallery-slider .slick-prev {
        right:calc(-985px / 2 + 100% / 2);
    }
    .properties-section .wpb_text_column {
        padding-left: 96px;
    }
    
    .properties-section .wpb_single_image {
        padding-right: 4rem;
    }
    .slider-section .slick-next{
        right: calc(-1110px / 2 + 100% / 2);
    }
    .slider-section .slick-prev {
        right: calc(-985px / 2 + 100% / 2);
    }
}

@media (max-width:1260px){
    header.main-header .csr-logo,
    header.main-header .account-avatar{
        display: none;
     }
     header.main-header .header-left{
        width: calc(100% - 105px);
     }
     header.main-header .navigation{
        padding-left: 30px;
    }
     .header-search{
        right:0;
    }
}

@media (max-width: 1200px){
     h1,.h1{
        font-size: 44px; 
     }
     
     h2,.h2{
         font-size: 34px;
     }

     h3,.h3 {
         font-size: 24px;
     }
     
     h3.text-lg {
    	font-size: 28px;
    }

     h4,.h4 {
        font-size: 20px;
     }
    
     h5,.h5 {
        font-size: 16px;
     }
    
     h6,.h6 {
        font-size: 14px;
     }

     /*Menu*/
     .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1){
        padding-left: 60px;
     }

     .section-head h2,
     .potter-leading-banner .content-inner h2 {
        font-size: 34px;
     }

     .home-hero-slide-left{
         max-width: 430px;
     }
     .home-hero-banner-nav-caption,.home .home-hero-banner-nav-caption{
         font-size: 24px;
     }
     body:not(.home) .home-hero-slide-left{
         max-width: 410px; 
     }
     body:not(.home) .home-hero-banner-nav-caption{
         font-size: 22px;
     }
     body:not(.home) .home-hero-slide-left h2{
         font-size: 42px;
     }
     .slider-section .slick-prev, .home-hero-banner.slider .slick-prev,.inspiration-gallery-slider .slick-prev{
         right: 85px;
     }
    .slider-section .slick-next,.inspiration-gallery-slider .slick-next{
        right:24px;
    }
    .home-hero-banner.slider .slick-next{
         right:24px;
    }
    
    .contact-us-banner-section h2 {
        font-size: 36px;
    }
    .col-location .location-image h2{
        font-size: 28px;
    }
    
    .cta-scroll{
        padding-left: 15px;
        padding-right: 15px
    }
    .single-product .vc_row-fluid{
        padding-left: 30px;
        padding-right: 30px
    }
     
}

@media (max-width:1120px){
    header.main-header .navigation{
        padding-left: 15px;
    }
}

@media (max-width:1100px){
    header.main-header .navigation {
        display: none;
    }
    .footer-middle{
        padding-top: 75px;
        padding-bottom: 55px;
    }
    .py-100 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .pb-100 {
        padding-bottom: 70px;
    }
    .pt-100 {
        padding-top: 70px;
    }
    .py-80{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pt-80 {
        padding-top: 80px;
    }
    .pb-130 {
        padding-bottom: 80px;
    }
      header.main-header .header-right{
        left: 0;
        width: 100%;
        top: 0;
        justify-content: space-between;
    }
    header.main-header .header-left {
        margin-left: 70px;
        position: relative;
        z-index: 1;
    }
    header.main-header .mb-navigation{
        order: -1;
    }
    header.main-header .header-left{
       width: calc(100% - 135px);
       justify-content: center;  
    }
    header.main-header .mb-navigation:has(.is-open) {
        order: 1;
    }
   
    body:not(.home) .home-hero-banner-container .home-hero-slide-left{
        padding: 20px;
    }
    .ilf .ilf-post-box-title h6{
        font-size: 20px;
    }
    .featured-news-section .news-content {
        padding-top: 32px;
        gap: 0 20px;
    }
    .featured-news-section .news-title h2 {
        font-size: 18px;
    }
}

@media (max-width:991px){
    .button.button-simple {
        padding-right: 36px;
    }
    .button.button-simple::after {
        right: 0px;
    }
     h1,.h1{
        font-size: 40px; 
     }
     
     h2,.h2{
         font-size: 32px;
     }
     
      h3.text-lg {
    	font-size: 26px;
    }

     h3,.h3 {
         font-size: 24px;
     }

     .py-100 {
         padding-top: 60px;
         padding-bottom: 60px;
     }
     .pb-100 {
         padding-bottom: 60px;
     }
     .pt-100 {
         padding-top: 60px;
     }
     .py-80{
         padding-top: 50px;
         padding-bottom: 50px;
     }
     .section-head h2,
     .potter-leading-banner .content-inner h2{
        font-size: 30px;
     }
     .section-head p{
         font-size: 1.6rem;
         max-width: 340px;
     }

     nav.footer-navigation ul{
        gap: 10px;
     }

     .brand-list .brand-list-box .brand-box{
        height: 190px;
     }
    .section-head h2
     .home-hero-banner-nav-caption,.home .home-hero-banner-nav-caption{
        font-size: 20px;
     }
     .home-hero-banner-slider ul.slick-dots > li{
        width: 40px;
        height: 5px;
     }
     .home-hero-banner-slider ul.slick-dots{
        gap: 0 10px;
     }
      body:not(.home) .home-hero-slide-left h2{
        font-size: 38px;
     }
      body:not(.home) .home-hero-banner-nav-caption{
        font-size: 20px ;
     }
    
     .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(1){
        height: 480px;
     }
     .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(2), .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3){
        height: 225px;
     }
     .home-inspiration-list.inspiration-list .inspirations-content{
        padding: 15px;
     }
     .home-inspiration-list.inspiration-list .inspirations-content .inspirations-title{
        font-size: 28px;
     }
     .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(2) .inspirations-title, 
     .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3) .inspirations-title {
        font-size: 20px;
    }
    .product-category-row .col-left{
        padding-right: 15px;
    }
    .product-category-row .col-left .title > span{
        margin-bottom: 10px;
    }
    .potter-leading-banner {
        min-height: 500px;
    }
    
    .home-hero-banner.slider .slick-next{
        right: 15px;
    }
    .home-hero-banner.slider .slick-prev {
        right: 75px;
    }
   .slider-section .slide,
   .slider-section.single-image{
      min-height:500px;
      padding-top: 40px;
      align-items: flex-start;
    }
    .potter-leading-banner .content-inner{
        margin:0 auto;
    }
    .slider-section .content-inner .overlay-content{
        text-align:center;
    }
    .gallery-grid .gallery-item{
        flex: 0 0 50%;
        max-width: 50%;
    }
    .potter-leading-banner .slider-section.single-image:after,
    .potter-leading-banner .slider-section .slide:after{
        width: 100%;
    }
    
    .col-location .content-address .flex-row{
        padding: 0 15px;
    }
    .contact-info-columns .col-action {
        width: 50%;
    }
    .contact-info .button.button-flat {
        font-size: 14px;
        padding: 10px 12px;
        min-width: 130px;
    }
    .col-location .content-address .flex-row{
        padding:0 15px;
    }
    
   .col-location .button.button-flat {
        font-size: 14px;
        padding: 10px 12px;
        min-width: 130px;
    }
    
    .cta-scroll ul li.product-item{
        padding:.5rem 8px;
        margin: .5rem 0;
    }
    .properties-section > div:first-child {
        padding-right: 15px;
    }
 
    
}

@media (max-width: 767px) {
    body,
    .section-head p {
        font-size: 16px;
    }
     h1,.h1{
        font-size: 36px; 
     }
     
     h2,.h2{
         font-size: 32px;
     }
    h3.text-lg {
    	font-size: 26px;
    }
     h3,.h3 {
         font-size: 24px;
     }
     h4,.h4 {
        font-size: 18px;
     }
     h5,.h5 {
        font-size: 16px;
     }
     h6,.h6 {
        font-size: 14px;
     }
    .product-category-row .title > span{
        font-size:15px;
    }
    .ilf .ilf-post-box-title h6{
        font-size: 24px;
    }
     nav.footer-navigation ul > li > a{
          font-size: 13px;
          margin: 12px 0;
     }
     .footer-btm-links a,
     .footer-middle-right > p{
        font-size: 14px;
     }
   
     .footer-bottom{
        font-size: 11px;
     }

     .button {
        padding: 12px 70px 12px 20px;
        font-size: 12px;
    }

     .section-head{
        margin-bottom: 20px !important;
        padding: 0 50px;
     }
     .section-head h2, 
     .potter-leading-banner .content-inner h2{
        font-size: 26px;
     }
     
     .section-head h2 {
        font-size: 32px;
    }
    
    .section-head p {
        font-size: 18px;
    }
     
     .header-search{
        right:0;
        width:100vw;
        height:60px;
     }

     .header-icons > .header-link-icon{
        width: 60px;
     }
     .header-link-icon.csr-logo {
        display: none;
    }
     header.main-header{
        height: 60px;
     }
     header.main-header .header-left{
        width:calc(100% - 180px);
     }
     .main-content{
        padding-top: 60px;
     }

     .header-icons > .header-link-icon >img {
        max-width: 75%;
    }
   
    header.main-header .header-right .header-icons {
        order: 1;
    }
    .mbnav .mbnav__state{
        left: unset;
        right: 100%;
    }
    .mbnav.is-open .mbnav__state{
        right: 0;
        left: unset;
    }

     .potter-leading-banner .content-inner h2{
        font-size: 28px;
     }
    body:not(.home) .home-hero-slide-left h2{
        font-size: 36px;
        margin-bottom: 8px;
        line-height: 1.166668;
        letter-spacing: -1.2px;
    }
     body:not(.home) .home-hero-banner-nav-caption{
        font-size: 16px;
        line-height: 1.25;
    }
    
    .home-hero-banner .home-hero-banner-slide {
        background-position: center center;
    }
     .home-hero-banner-container .home-hero-slide-left,body:not(.home) .home-hero-banner-container .home-hero-slide-left{
       padding: 24px;
       max-width:100%;
       width:100%;
    }
    
    .product-category-row .title.desktop{
        display:none;
    }
    
    .product-category-row .col-right,
    .product-category-row .col-left{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .product-category-row .col-right{
        order: -1;      
    }
    .product-category-row .col-left{
        padding-top: 30px;
    }
    .download-section .vc_gitem-col{
        padding-top: 10px !important;
    }
    .download-section .vc_general.vc_btn3{
        margin-top: 0;
    }
    .slider-section .content-inner .overlay-content{
        text-align : center;
    }
    .brand-list .brand-list-box .brand-box {
        width: 100%;
        max-width: 50%;
    }
    .potter-leading-banner .content-inner{
        max-width: 100%;
    }
    .cat-nav-tabs li > a {
        font-size: 18px;
    }
    .potter-product-category {
        background: #003B71;
    }
    .potter-product-category:after {
        background: #003B71;
        top: 0;
        left: 0;
        position: absolute;
        z-index:1;
        width: 100%;
    }
    .potter-product-category > div {
        z-index:2;
    }

    .home-hero-slide-left{
        max-width: 300px;
    }
    .home-hero-banner-nav-caption,.home .home-hero-banner-nav-caption {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .home-inspiration-list .inspirations-list-box.row .inspirations-col{
        margin: 10px 0;
    }
    .home-inspiration-list.inspiration-list .inspirations-content .inspirations-title,
    .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(2) .inspirations-title, .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3) .inspirations-title{
        font-size: 20px;
    }
    .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(2),
    .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(3),
    .home-inspiration-list .inspirations-list-box.row .inspirations-col:nth-child(1) {
        max-width: 100%;
        margin: 10px 0;
        height: 250px;
    }
      
    .home-hero-banner.slider .slick-next{
        right: 10px;
    }
    .home-hero-banner.slider .slick-prev {
        right: unset;
        left: 10px;
    }
     .productzoom-icon.wpb_gallery .wpb_flexslider .flex-direction-nav a{
        background:transparent;

    }
    .productzoom-icon.wpb_gallery .wpb_flexslider .flex-direction-nav a::before{
        border-color: #F7F7F7;
        width: 25px;
        height: 25px;
        border-block-start-width: 3px;
        border-inline-end-width: 3px;
    }
    
    .home-hero-banner.slider .slick-arrow {
       background: transparent;
       top: 45%;
       transform: translateY(-50%);
    }
    .home-hero-banner.slider .slick-arrow::before{
        border-color: #F7F7F7;
        width: 25px;
        height: 25px;
        border-block-start-width: 3px;
        border-inline-end-width: 3px;
    }
    .overview{
        flex-direction: row-reverse;
        padding-top: 178px;
    }
    
    .single-product .home-hero-slide-title h2 {
        text-align: left;
    }
    .card-list-row.over-content > div {
        margin: 10px 0;
    }
    .card-list-row.over-content .col-item > div > div {
        max-width: 270px;
    }
    .inspiration-list .inspirations-list-more-cta p {
        text-align: center !important;
    }
    .cta-scroll{
        flex-direction: column;
        margin-bottom: 0;
    }
    .cta-scroll ul {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        position: relative;
    }
    .cta-scroll .vc_column_container:first-child .wpb_text_column .wpb_wrapper{
       position: relative
    }
    .cta-scroll ul {
        margin: 0 -15px;
    }
    .cta-scroll ul .product-item:first-child{
        margin-left: 1.5rem;
    }
   .cta-scroll .vc_column_container:first-child .wpb_text_column .wpb_wrapper:before {
        position: absolute;
        content: "";
        left: -20px;
        top: 0;
        height: 100%;
        background: linear-gradient(270deg, #fff 2.63%, rgba(255, 255, 255, 0) 75.21%);
        width: 78px;
        z-index: 1;
        pointer-events: none;
        transform: rotate(180deg);
    }
   .cta-scroll .vc_column_container:first-child .wpb_text_column .wpb_wrapper:after {
        position: absolute;
        content: "";
        right: -16px;
        top: 0;
        height: 100%;
        background: linear-gradient(270deg, #FFFFFF 2.63%, rgba(255, 255, 255, 0) 75.21%);
        width: 78px;
        z-index: 1;
        pointer-events: none;
    }
    .cta-scroll .wpb_text_column.wpb_content_element {
        margin-bottom: 0;
    }
    .cta-scroll .contact-wrapper-btn .vc_btn3.vc_btn3-size-lg{
        width: 100%;
        text-align: left;
    }
    .cta-scroll .contact-wrapper-btn:after{
        content: "";
        background: var(--bg-grey);
        width: 500%;
        left: -100%;
        z-index: -1;
        position: absolute;
        height: 100%;
        top: 0;
        display: block !important;
    }
    .cta-scroll ul::-webkit-scrollbar{
        display: none;
    }
    .cta-scroll .contact-wrapper-btn {
        padding-top: 6.4rem;
    }
    .cta-scroll ul li{
        flex: 0 0 auto;
    }
    .product-files .pdf-download-btn {
        font-size: 0;
    }
    .product-pdf-wrapper .product-files{
        margin-top: 32px;
    }
    .product-files .file-item .file-name{
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom:1.2rem ;
    }
    .product-files .pdf-download-btn{
        width: 42px;
        height: 38px;
        display: grid;
        place-items: center;
        padding: 5px;
        gap: unset;
    }
    .product-files .download-buttons-li-wrapper .pdf-link-btn {
        margin: 0 1.3rem;
    }
    .product-files .pdf-link-btn button{
        line-height: 1.714287;
    }
    .product-files .download-buttons-li-wrapper>div:first-child {
        display: none;
    }
    /*.product-files .pdf-download-btn.preview-link{*/
    /*    margin-right: 1rem;*/
    /*}*/
    .product-files li.file-item, .product-files .download-buttons-li-wrapper{
        justify-content: end;
    }
    .product-files li.file-item .file-label{
        order: 0;
    }
    .overview .vc_col-sm-6.gutter-spcing-6{
        padding-right: 0;
    }
    .product-files .file-item .file-name{
      text-align: left;
      font-size: 14px;
      line-height: 1.714287;
    }
     #overview .gutter-spcing-6{
        padding-right: 0;
        order: 1;
        padding-top: 48px;
    }
    .section-head.half-container{
        padding: 0;
    }
    .overview .productzoom-icon .flexslider .slides a {
       padding-bottom: 85.298%;
    }
 
    .product-files .pdf-files{
        padding: 8px 10px 5px;
    }
    .single-product h2,
    .download-section h2{
       text-align: center;
       font-size: 32px ;
    }
    .product-pdf-wrapper .section-head p{
        font-size: 18px;
    }
    .gallery-grid .gallery-item{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 3px 15px 24px 15px;
    }
    .gallery-page .load-more-container{
        margin-top: 24px;
    }
    .footer-strip {
        padding: 20px 0 40px;
    }
    .footer-strip .flex-row{
        flex-direction: column !important;
        gap: 15px 0;
    }
    .footer-strip .flex-row .footer-social-icons {
        width: 100%;
        text-align: center;
        justify-content: flex-start;
    }
    .footer-strip .flex-row .footer-navigation {
        width: 100%;
        padding: 20px 0;
    }
    .footer-middle {
        padding-top: 40px;
        padding-bottom: 0;
    }
    .footer-connect .flex-row {
        justify-content: center;
        gap: 15px 0;
    }
    .footer-connect .csr-message{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 100%;
        gap: 10px 0;
        font-size: 14px;
    }
    .footer-connect .flex-row {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-connect .cdr-logo-info{
        width: 100%;
        order: 1;
        flex: 0 0 100%;
        margin: 32px 0 0;
    }
    .flex-row.footer-links-row {
        flex-direction: column !important;
    }
    .footer-links-row > .footer-middle-left{
        width: 100%;
        gap: 0;
        margin-top: 8px;
    }
    nav.footer-navigation ul > li {
        width: calc(50% - 5px);
    }
    .footer-links-row > .footer-middle-right{
        max-width: 100%;
        width: 100%;
        margin-top: 8px;
        text-align: left;
    }
    .footer-strip .brand-menu-list ul > li > a{
        font-size: 16px;
    }
    
    nav.footer-navigation ul {
        gap: 5px 10px;
    }
    .footer-strip .flex-row .footer-logo{
        width: 100%;
    }
    .brand-menu-list ul {
        flex-direction: row;
    }
    .brand-menu-list ul > li {
        width: calc(50% - 5%);
        margin: 6px 0;
    }
    .brand-menu-list ul > li > a:after{
        display: none;
    }
    .container.home-hero-banner-container{
        padding-left: 15px;
        padding-right: 15px;
    }
    .properties-section .wpb_single_image+.wpb_text_column{
        display: none;
    }
    .footer-middle-left {
        justify-content: center;
        padding: 20px 0;
        margin: 20px 0;
    }
    .footer-btm-links,
    .footer-middle-right .footer-social-icons{
        justify-content: left;
    }
    .footer.main-footer .footer-bottom {
        padding-top: 40px;
        font-size: 12px;
        line-height: 1.75;
    }
    .footer-middle-right .footer-social-icons {
        margin-bottom: 18px;
    }
    .footer-bottom {
        padding: 20px 0;
    }
    
    .gallery-page .gallery-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 16px;
        overflow: auto;
    }
    .gallery-page .gallery-filters::-webkit-scrollbar{
        display: none;
    }
    .gallery-filters .filter-button{
        flex: 0 0 auto;
    }
    .gallery-header .section-head h2 + p{
        margin-bottom: 0;
    }
    .gallery-filters .filter-button {
        font-size: 13px;
        padding: 2px 15px;
        line-height: 1;
        height: 28px;
        background: #F4F4F4;
    }
    .potter-product-category .wpb_text_column {
        margin-bottom: 0;
    }
    .product-category-row .title {
        text-align: center;
    }
    .gallery-grid .gallery-item:hover{
        transform: scale(1);
    }
    .inspiration-gallery-section h2{
        text-align: center;
        max-width: 340px;
        margin: 0 auto 30px auto;
    }
    .image-slider-inspiration {
        padding: 0 15px;
    }
    .inspiration-gallery-slider{
        padding-bottom: 68px;
    }
    .inspiration-gallery-slider .slick-list {
        padding: 0 !important;
    }
    .inspiration-gallery-slider .slick-arrow {
        top: auto;
        bottom: -20px;
    }
    
    .inspiration-gallery-slider .slick-arrow.slick-prev {
        left: 15px;
    }
    
    .inspiration-gallery-slider .slick-arrow.slick-next {
        left: auto;
        right: 15px;
    }
    .project-with-text > div > div > div{
        flex-wrap: wrap;
    }
    .project-with-text .col-content h2{
        text-align:center;
        margin-bottom: 30px;
    }
    .project-with-text .col-image {
        order: -1;
        margin-bottom: 40px;
    }
    .contact-us-banner-section{
        min-height: 600px;
        max-height: 600px;
    }
    .contact-us-banner-section {
        align-items: flex-start;
        text-align: center;
        justify-content: center;
    }
    .contact-us-banner-section .button-wrapper {
        justify-content: center;
    }
    .contact-us-banner-section .content-inner p + h2 {
        margin: 28px 0 !important;
    }
    .contact-us-banner-section .content-inner .vc_column-inner{
        padding-top: 60px !important;
    }
    .ilf .ilf-header {
        padding-bottom: 60px;
    }
    .ilf .ilf-post-box {
        flex-direction: column;
    }
    
    .ilf .ilf-post-box .ilf-post-box-thumb {
        width: 100%;
        max-width: 100%;
    }
    
    .ilf .ilf-post-box-content {
        max-width: 100%;
    }
    .inspirations-result > div{
        margin-bottom: 30px;
    }
    .ilf .inspiration-loadmore-btn{
        padding-top:0;
    }
    .featured-news-section .news-content{
        flex-direction: column;
    }
    .featured-news-section .news-title h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .whitepaper-row {
        flex-direction: column;
    }
    
    .whitepaper-row > div {
        max-width: 100%;
        width: 100%;
    }
    
    .whitepaper-right img {
        max-width: 100%;
    }
    
    .whitepaper-row > div.whitepaper-right {
        order: -1;
    }
    .potter-leading-banner .slider-section.single-image:after, .potter-leading-banner .slider-section .slide:after, .slider-section:has(.overlay-content):after {
        width: 100%;
        height: 100%;
        transform: rotate(90deg);
        top: -50px;
    }
    .contact-info-row {
        text-align: center;
    }
    
    .contact-info-columns > div {
        width: 100%;
    }
    
    .contact-info-columns .col-action {
        width: 100%;
        text-align: center;
    }
    
    .col-action .content .vc_cta3-icons {
        text-align: center !important;
    }
    
    .col-action .content .vc_cta3-content {
        text-align: center !important;
        margin: 0 auto;
    }
    .col-action .content .vc_btn3-container{
        margin:0;
    }
    .wpcf7-form span.button-wrap{
        width: 100%;
        display: block;
    }
    .wpcf7-form .wpcf7-form-control.wpcf7-submit{
        max-width:100%;
    }
    .section-title {
        text-align: center;
    }
    .col-location .location-image:before{
        width:100%;
    }
    .col-location .content-address {
        text-align: center;
    }
    
    .col-location .content-address h3 {
        font-size: 20px;
    }
    
    .col-location .content-address .flex-row {
        flex-direction: column !important;
        position: relative;
    }
    
    .col-location .content-address .contact-info p:nth-child(2) {
        order: -1;
    }
    
    .col-location .content-address .flex-row .contact-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .col-location .content-address .contact-info p:nth-child(3) {
        background: #F6F6F6;
        margin-bottom: 15px;
    }
    
    .col-location .content-address .contact-info p {
        width: 100%;
        justify-content: center;
        height: 56px;
    }
    
    
    .col-location .content-address .contact-info p:nth-child(1) {
        order: 3;
        width: 50%;
        margin-left: 0;
        margin-right: auto;
        background: #F6F6F6;
    }
    
    .col-location .content-address .button.button-flat {
        position: absolute;
        top: auto;
        bottom: 10px;
        width: 44%;
        margin-left: auto;
        left: auto;
        right: 10px;
        height: 56px;
    }
    
    .col-location .content-address .button.button-flat:before {
        content: "";
        background: url('../images/icon-envelope-white.svg') no-repeat;
        background-size: contain;
        width: 20px;
        height: 15px;
        margin-right: 5px;
    }
    .col-location .content-address .flex-row{
        padding:0;
    }
    .col-location .content-address .contact-info p:nth-child(3) a,
    .col-location .content-address .contact-info p:nth-child(1) a {
        color: #5B595B;
    }
    
    .technical-resources-accordion .product-files .pdf-download-btn.show-format-btn {
        font-size: 14px;
        width: auto;
    }
    .alternative-files ul > li{
        font-size:14px;
    }
    .product-files .pdf-download-btn{
        min-width: inherit;
    }
    span.file-label {
        font-size: 14px;
        min-width: 38px;
        min-height: 30px;
    }

    
    .file-download-result.product-files li.file-item .file-label {order: -2;}
    
    .file-download-result.product-files li.file-item {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .file-download-result .product-files li.file-item span.file-name {
        width: auto;
        flex: inherit;
        margin: 0;
    }
    
    .technical-resources-accordion .file-download-result.product-files .download-link.pdf-download-btn {
        margin-left: auto;
    }
    
    .technical-resources-accordion .product-files .pdf-download-btn {
        width: 42px;
        min-width: inherit;
        margin-left: 10px;
        margin-right: 0;
    }
    .accordion > ul > li > .accordion-title:hover{
        background-color: #4D4D4F;
    }
    .file-download-cat-wrap ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    
    .file-download-cat-wrap ul > li {
        width: 100%;
    }
    
    .technical-resources .technical-resources-search .search-wrap {
        margin: 0 0 10px 0;
    }
    
    .technical-resources .technical-resources-search .search-wrap button {
        font-size: 16px;
    }
    
    .technical-resources .technical-resources-search .search-wrap .clear-search {
        top: 25px;
        right: 85px;
    }
    .file-download-result.product-files li.file-item span.file-name {
        width: auto;
        flex: inherit;
        margin: 0;
        max-width: 69%;
        line-height: 1.35;
        word-break: break-word;
        padding-right: 10px;
    }
    
    .file-download-result.product-files li.file-item .pdf-download-btn {min-width: inherit;margin-left: auto;}
    .resource-result{font-size:18px; padding-top: 30px;}
    .technical-resources .technical-resources-search .search-wrap .clear-search::after, .technical-resources .technical-resources-search .search-wrap .clear-search::before{
        width: 18px;
    }
    .technical-resources .technical-resources-search .search-title h3{font-size: 20px;}
    .properties-section > div:first-child {
        padding-right: 0;
    }
    
}

@media (min-width: 1100px) and (max-height: 800px){
    header.main-header .main-navigation > ul > li > ul > li > ul > li {
        padding: 5px 0;
    }
    
    header.main-header .main-navigation span.menu-desc span.button {
        margin-top: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}


@media (min-width: 1100px) and (max-height: 740px){
    .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1){
            padding: 3rem 2.5rem 2rem 10.3125rem !important;
    }
    .left-link-panel > ul > li > a .menu-heading {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .main-navigation ul.products_wrap > li > a,
    header.main-header .main-navigation ul.brand-categories a{
         font-size: 14px;
    }
    .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2) > .sub-menu > li > .sub-menu > li .sub-menu > li {
        margin-bottom: 5px;
        font-size: 14px;
    }
}

@media (min-width: 1100px) and (max-height: 900px){
    header.main-header .main-navigation span.menu-desc span:not(.button){
        display: none;
    }
}

@media (min-width: 1100px) and (max-height: 640px){
    header.main-header .main-navigation span.menu-desc span.button {
        margin-top: 9px;
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1){
        padding-top: 2rem !important;
    }
    header.main-header .main-navigation > ul > li > ul > li > ul > li > a{
        font-size: 14px;
    }
    .left-link-panel > ul > li > a .menu-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(2){
        padding-top: 25px;
    }
    .sub-menu ul.brand-categories{
        max-height: 60vh;
    }
    
}

@media (min-width: 1100px){
    .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1){
        padding-left: 2rem !important;
    }
    .products_wrapper.single-item .application_wrap {
        column-fill: auto;
        height: 400px;
        column-count: 3;
        width: 100%;
    }
}

@media (min-width: 1280px){
    .main-navigation > ul > li.left-link-panel > .sub-menu > li:nth-child(1){
        padding-left: 10.3125rem !important;
    }
}
