/* common css Start */

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	color:#324549;
	font-family: "Poppins", Sans-serif;
    font-size: 14px;
}

h1{
	font-family: "DM Serif Display", Sans-serif;
    font-size: 48px;
    font-weight: 500;
	line-height: 50px;
}

h2{
	font-family: "DM Serif Display", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
}

h3{
	font-family: "DM Serif Display", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 20px;
}

h4{
	font-family: "DM Serif Display", Sans-serif;
    font-size: 20px;
    font-weight: 500;
}

p{
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Header CSS */

header.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0 auto;
    background-color: #FFFFFF;
    max-width: 100%;
}

header .header-container {
	padding: 20px 10px;
	max-width: 1240px;
	margin: auto;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

header img.custom-logo {
    width: 150px;
}

header .info-right{
	display: flex;
    align-items: center;
}

header .info-right a {
    text-decoration: none;
}

header .info-right .icon-list{
	list-style-type:none;
	display:flex;
	column-gap: 16px;
}

header span.dashicons {
	font-size:22px;
}

header span.cart-items {
    color: #FFF;
    border: 1px solid #699cb2;
    border-radius: 50%;
    padding: 2px 6px;
    margin-left: -5px;
    background-color: #699cb2;
	font-size: 11px;
}

header .info-right span.dashicons.dashicons-search:hover {
    cursor: pointer;
}

.page-container {
    padding: 80px 10px 0px 10px;
}

.page-header .entry-title {
	font-weight:500;
	font-size:48px;
	line-height:48px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.page-content ul.wp-block-list {
    padding-left: 40px;
}

.page-content ul.wp-block-list li{
    margin-bottom: 10px;
}

main{
    max-width: 1240px;
    margin: auto;
	line-height:22px;
	margin-top:105px;
}

.page-content strong {
	font-weight: 700;
}

.page-header {
	border-bottom:1px solid #d8d8d8;
    margin-bottom: 20px;
}

.page-content {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.full-width-img img {
    height: auto;
	width: 100%;
}

ul.wp-block-list.pdf-list-icon {
	list-style-image: url(/wp-content/uploads/2024/07/pdf-icon-48x48-1.webp);
}

/* Search popup CSS */

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: rgba(0,0,0,.87);
}

.modal-content {
	display: flex;
}

.close {
	color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
	height:44px;
    width: 44px;
    text-align: center;
    position: fixed;
    top: 30px;
    right: 35px;
	font-size:26px;
	font-weight:400;
	padding:2px;
}
	
.close:hover{
	background-color:#000;
}

.close:hover,
.close:focus {
	color: #fff;
	cursor: pointer;
}

.search-form-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    vertical-align: middle;
	width: 100%;
}
	
.modal {
	animation: menu-animation 0.9s ease-out forwards;
}

.searchform {
	animation: slide-down 1s forwards;
    -webkit-animation: slide-down 2s forwards;
	background: white;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #324549;
    width: 800px;
    padding: 0px 20px;
}
	
.searchform input{
	width:94%;
	border:none;
	outline:none;
}
	
.searchform input:focus {
	border:none;
}
	
.searchform button{
	background-color:white;
	border:none;
	cursor:pointer;
	height:66px;
	width:34px;
}
	
.searchform button:hover i {
	color:#6EC1E4;
}
 
@keyframes slide-down {
	0% {
        -webkit-transform: translateY(-300%);
        -webkit-transition: ease-out;
        transition: ease-out
	}
    50% {
        -webkit-transform: translateY(-200%);
        -webkit-transition: ease-out;
        transition: ease-out
    }
	100% {
        -webkit-transform: translateY(300%);
        -webkit-transition: ease-out;
        transition: ease-out;
	}
}

@-webkit-keyframes slide-down {
	0% {
        -webkit-transform: translateY(300%);
        -webkit-transition: ease-out;
        transition: ease-out
	}
    50% {
        -webkit-transform: translateY(-200%);
        -webkit-transition: ease-out;
        transition: ease-out
    }
	100% {
        -webkit-transform: translateY(300%);
        -webkit-transition: ease-out;
        transition: ease-out ;
	} 
}

@keyframes menu-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(.04) translateY(300%);
    }

    40% {
        -webkit-transform: scale(.04) translateY(0);
        -webkit-transition: ease-out;
        transition: ease-out
    }

    40% {
        -webkit-transform: scale(.04) translateY(0);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.02) translateY(0);
    }

    61% {
        opacity: 1;
        -webkit-transform: scale(.04) translateY(0);
    }

    99.9% {
        opacity: 1;
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%
    }

    100% {
        opacity: 1;
        border-radius: 0
    } 
}

.product-category-list li.wc-block-product-categories-list-item {
    margin-left: 40px;
	line-height: 30px;
}

/* Woocommerce CSS */

.woocommerce-Tabs-panel li {
	margin-left: 40px;
}

.woocommerce-error a {
	color: #00CCCB;
}

body.archive.woocommerce nav.woocommerce-breadcrumb {
    /* display: none; */
	padding-top: 20px;
}

body.archive.woocommerce .site-main {
	margin-bottom: 50px;
}

body.archive.woocommerce header.woocommerce-products-header {
	padding: 40px 0px;
}

body.woocommerce.product-template-default .site-main {
	padding: 50px 10px;
}

body.woocommerce.product-template-default form.comment-form {
    width: 50%;
}

body.woocommerce.product-template-default form.comment-form input#author, body.woocommerce.product-template-default form.comment-form input#email {
    width: 100%;
	padding: 5px;
}

body.woocommerce.product-template-default p.price {
    padding: 20px 0px;
}

body.woocommerce.product-template-default .summary span.woocommerce-Price-amount.amount bdi, body.woocommerce.product-template-default .summary span.woocommerce-Price-amount.amount span {
    font-size: 30px !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
	font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6em;
    letter-spacing: 1.4px;
    color: #FFFFFF;
    background-color: #699CB2;
    border-radius: 30px;
    padding: 12px 24px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
	background-color: #508399;
	color: #FFFFFF;
}

body.woocommerce.product-template-default form.comment-form textarea {
	padding: 5px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
	font-size: 20px;
	line-height: 26px;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: #E4E5E9;
    color: #324549;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	padding: 15px;
}

select.orderby {
    display: block;
    width: 100%;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

select.orderby option {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.woocommerce ul.products li.product .button {
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6em;
    letter-spacing: 1.4px;
    color: #FFFFFF;
    background-color: #699CB2;
    border-radius: 30px;
    padding: 12px 24px;
}

.woocommerce ul.products li.product .button:hover {
	background-color: #508399;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6em;
    letter-spacing: 1.4px;
    color: #FFFFFF;
    background-color: #699CB2;
    border-radius: 30px;
    padding: 12px 24px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
	background-color: #508399;
}

.woocommerce .quantity .qty {
    border-radius: 30px;
    padding: 12px 24px;
    width: 90px;
	border: 1px solid #324549;
}

section.related.products h2 {
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: #E4E5E9;
    color: #324549;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover {
	background-color: #699CB2;
}

.woocommerce .quantity .qty {
    border-radius: 30px;
    padding: 12px 24px;
    width: 90px;
	border: 1px solid #324549;
}

section.related.products h2 {
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: #E4E5E9;
    color: #324549;
}

.woocommerce div.product form.cart .variations {
	margin-top: 1em;
}

.woocommerce div.product form.cart table.variations tr {
	text-align: justify;
}

.woocommerce div.product form.cart .variations select {
	padding: 5px;
    margin-bottom: 10px;
    line-height: 22px;
}

.wc-block-components-button:not(.is-link) {
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.4px;
    background-color: #699CB2;
    border-radius: 30px;
    padding: 12px;
	border: 1px solid #699CB2;
}

.woocommerce-notices-wrapper .woocommerce-message {
	line-height: 35px;
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
	color: #FFFFFF;
}

.wc-block-components-button:not(.is-link):hover {
	background-color: #508399;
}

body.woocommerce-account input {
    padding: 10px;
}


body.woocommerce-account .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: block;
    padding-bottom: 10px;
}

body.woocommerce-account .page-container {
	padding: 50px 0px;
}

li.woocommerce-MyAccount-navigation-link {
    list-style: none;
	margin-bottom: 5px;
}

li.woocommerce-MyAccount-navigation-link.is-active a {
	color: #00CCCB;
}

.woocommerce-MyAccount-navigation-link a {
    text-decoration: none;
	font-size: 16px;
}

.woocommerce-MyAccount-content a {
    color: #00CCCB;
}

body.woocommerce-account fieldset {
    border: none;
    margin: 25px 0px;
}

body.woocommerce-account legend {
    font-size: 26px;
    margin-bottom: 5px;
}

/* Home page css */

body.home .page-header {
	display: none;
}

body.home .page-container {
	padding-top: 20px;
}

body.home .wp-block-group.heading-border {
    margin-top: 40px;
}

.wp-block-columns.why-eclisse-block {
    border-top: 1px solid #D8D8D8;
    padding: 40px 20px 40px 20px;
}

.wp-block-columns.why-eclisse-block h2 {
	font-weight: 500;
}

.wp-block-columns.why-eclisse-block p {
	font-weight: 400;
	line-height: 29px;
}

.wp-block-columns.why-eclisse-block a.wp-element-button {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6em;
    letter-spacing: 1.4px;
}

.wp-block-columns.why-eclisse-block a.wp-element-button:hover {
	background-color: #508399 !important;
}

.why-eclisse-block.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

/* Guide to Pocket door - download  page css */

figure.wp-block-image.size-full.pocket-door-guide img {
    max-width: 25%;
    border: 1px solid #000000;
}

ul.wp-block-list.pocket-door-guide li h3 strong {
	font-size: 16px;
	font-weight: 600;
	line-height: 40px;
}

ul.wp-block-list.pocket-door-guide li h5 strong {
	font-size: 20px;
	font-weight: 600;
}

/* Book CPD Page CSS */

.color-orange strong {
	color: #FF6600;
}

/* Brochures page css */

.brochures .wp-block-image {
    border: 1px solid #000000;
	padding: 0px;
	margin-top: 20px;
}

/* FAQs Page Css */

.contact-sidebar .contact-info {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.contact-sidebar .contact-info figure {
    display: inline;
    width: auto;
}

.contact-sidebar .contact-info h3 {
    display: inline;
}

.contact-sidebar .wp-block-button.transparent-btn {
	margin: 20px 0px;
}

.contact-sidebar .contact-number span.dashicons-phone {
    color: #6EC1E4;
    margin-right: 10px;
}

.contact-sidebar .contact-us-btn {
	margin-top: 20px;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-weight: 500;
}

.contact-sidebar .contact-us-btn a:hover {
	background-color: #508399 !important;
}

.contact-sidebar a {
	text-decoration: none;
}

/* distributors page css start */
.distributors-list-icons{
	padding:10px;
}

.distributors-list-icons .wp-block-columns{
	gap:0px;
	margin-bottom:10px;
}

.distributors-list-icons .wp-block-columns h3{
	line-height:22px;
}

/* not-all-pocket-door-systems-are-the-same page css Start */

.main-pocket-door-systems-are-the-same .container-pocket-door-systems-are-the-same .wp-block-columns{
	gap:0px;
	margin-bottom:20px;
}

/* not-all-pocket-door-systems-are-the-same page css End */

.case-study{
	padding:10px;
}
 
.case-study .wp-block-columns{
	gap:0px;
}

.Discover-traditional small a{
	text-decoration:none;
}

.contect-container{
	padding:10px;
	border:2px solid black;
}

/* Contact page css */
.contact-form-container {
	margin: 30px 0px;
}

.contact-form-container .row {
	display: flex;
	column-gap: 20px;
	margin-bottom: 15px;
}

.contact-form-container .form-group {
    width: 100%;
}

.contact-form-container input.form-field, .contact-form-container textarea.form-field {
    width: 100%;
	background-color: #F6F6F6;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 10px 15px;
}

.contact-form-container input.submit-btn {
	float: right;
}

/* blog page css */

body.blog .page-content, body.search-results .page-content {
    display: flex;
	padding: 10px;
	flex-direction: row;
}

body.blog .archive-posts, body.search-results .archive-posts {
    width: 67%;
}

body.blog .post-container, body.search-results .post-container {
    display: flex;
    column-gap: 40px;
    padding: 20px;
}

body.blog article.post, body.search-results article.post {
    padding: 10px;
}

body.blog .info-block, body.search-results .info-block {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

body.blog .post-meta {
    display: flex;
    column-gap: 20px;
    font-size: 12px;
    line-height: 12px;
}

body.blog .post-meta a {
	color: #999999;
}

body.blog .post-description p, body.search-results .post-description p {
    color: #7A7A7A;
}

body.blog h2.entry-title a, body.search-results h2.entry-title a {
    font-size: 18px;
    font-weight: 500;
	text-decoration: none;
}

body.blog h2.entry-title, body.search-results h2.entry-title {
    line-height: 22px;
}

body.blog .archive-posts nav.pagination, body.search-results .archive-posts nav.pagination {
    display: flex;
	column-gap: 20px;
    justify-content: center;
}

body.blog .sidebar, body.search-results .sidebar {
    padding: 20px;
}

body.blog .sidebar-container, body.search-results .sidebar-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

body.blog .sidebar h2.wp-block-heading, body.search-results .sidebar h2.wp-block-heading {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

body.blog .sidebar li a.wp-block-latest-posts__post-title {
    text-decoration: none;
}

body.blog .sidebar ul.wp-block-latest-posts__list.wp-block-latest-posts {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

body.blog .sidebar select#wp-block-archives-1, body.blog .sidebar select option {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
}

body.single-post main.post p {
	color: #7a7a7a;
}

/* Newsletter-block CSS */

.newsletter-block-main {
    max-width: 1240px;
    margin: auto;
    background-color: #E4E5E9;
    z-index: 1;
    position: relative;
}

.newsletter-block-main .newsletter-container {
    margin: 0px 0px -133px 0px;
    padding: 4em;
}

.newsletter-block-main h2.wp-block-heading {
    margin-bottom: 20px;
}

.newsletter-block-main form p {
	display: flex;
}

.newsletter-block-main form span.wpcf7-form-control-wrap {
    padding-right: calc(16px / 2);
    margin-bottom: 16px;
}

input.email-field {
    padding: .5rem 1rem;
    background-color: #FFFFFF;
    border-radius: 30px;
    border: none;
    line-height: 1.4;
    min-height: 40px;
    font-size: 14px;
    font-weight: 400;
}

input.submit-btn {
    margin-left: calc(16px / 2);
    margin-bottom: 16px;
    padding: 8px 20px 8px 20px;
    background-color: #699CB2;
	border-radius: 30px;
	border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6em;
    letter-spacing: 1.4px;
}

input.submit-btn:hover {
    background-color: #508399;
	cursor: pointer;
}

/* Footer CSS */

.site-footer {
	background-color: #324549;
    padding: 176px 0px 0px 0px;
	color: #FFFFFF;
}

.site-footer a,.site-footer p {
	text-decoration: none;
	color: #FFFFFF;
	font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
}

.site-footer a:hover {
	color: #00CCCB;
}

.site-footer ul {
    list-style-type: none;
}

.footer-top-block .right-block ul li {
    margin-bottom: 5px;
}

.footer-column-1 {
    font-weight: 500;
    line-height: 21px;
}

.footer-top-block .block-container {
    display: flex;
	align-items: center;
	max-width: 1240px;
    margin: auto;
    padding: 10px;
	padding-bottom: 64px;
}

.footer-top-block .right-block {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-top-block .left-block {
    width: 30%;
}

.footer-top-block h2 {
    color: #fff;
	padding-bottom: 15px;
}

.footer-column-1 .column-container {
	margin-bottom: 16px;
}

.footer-column-1 .column-container a span.dashicons-phone {
	margin-right: 10px;
	font-size: 15px;
	color: #FFFFFF;
}

.footer-column-2 {
    margin: 0px 36px 0px 0px;
}

.footer-column-3 {
	padding: 0rem 2rem 0rem 0rem;
}

.footer-bottom-block {
	border-top: 1px solid #465157;
	padding: 16px 0px;
}

.footer-bottom-block .block-container {
    padding: 10px;
    display: flex;
	max-width: 1240px;
	margin: auto;
	align-items: flex-end;
}

.footer-bottom-block .left-block {
	width: 50%;
}

.footer-bottom-block .left-block li {
	display: inline;
    margin-left: 16px;
}

.footer-bottom-block .right-block {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.footer-bottom-block .right-block p {
	font-weight: 400;
}

.footer-bottom-block .right-block img {
    margin-left: 16px;
    padding: 16px 16px 16px 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {	
    .site-main {
        padding: 0px 25px;
    }
	
    .site-main .page-header h1.entry-title {
		font-size: 35px;
		line-height: 35px;
	}
	
	.footer-top-block .block-container {
		padding-left: 35px;
	}
	
	header .header-container {
		padding: 20px 35px;
	}
	
	.heading-border h2 {
		font-size: 35px !important;
	}
	
	body.woocommerce-checkout .site-main {
        padding: 40px 25px 0px 25px;
    }
	body.woocommerce-account .site-main {
        padding: 40px 25px 0px 25px;
    }
	
	body.blog .sidebar {
		width: 35%;
	}
	
	body.blog .archive-posts .image-block img, body.search-results .archive-posts .image-block img {
		width: 100%;
		height: auto;
	}
	
	body.blog .post-meta {
		flex-direction: column;
		row-gap: 10px;
	}
	
	body.blog .archive-posts, body.search-results .archive-posts {
		width: 100%;
	}
	
	figure.wp-block-image.size-full.pocket-door-guide img {
		max-width: 50%;
	}
	
	body.woocommerce-cart .page-container {
		padding-top: 10px;
	}
}

@media (max-width: 767px) {
	
	header.site-header {
		padding: 15px;
	}
	
    .site-main {
        padding: 0px 15px;
		margin-top: 150px;
    }
	
	.page-header h1.entry-title {
		font-size: 35px;
		line-height: 35px;
	}
	
	.heading-border h2.wp-block-heading	{
		font-size: 25px !important;
	}
	
	body .is-layout-flex {
		flex-direction: column;
	}
	
	.why-eclisse-block .wp-block-buttons {
		align-items: center;
	}
	
	.page-content .wp-block-heading {
		margin: 0px;
	}
	
	.newsletter-block-main h2.wp-block-heading {
		font-size: 22px;
        line-height: 26px;
	}
	
	.newsletter-block-main form p {
		flex-direction: column;
	    align-items: center;
	}
	
	.newsletter-block-main form span.wpcf7-form-control-wrap {
		margin-bottom: 0px;
	}
	
	.newsletter-block-main .newsletter-container {
		padding: 2em;
	}
	
	.footer-top-block .block-container {
		flex-direction: column;
		align-items: flex-start;
	    padding: 0px 20px;
	}
	
	.footer-top-block .left-block {
		width: 100%;
	}
	
	.footer-top-block .right-block {
		width: 100%;
	    flex-direction: column;	
	}
	
	.footer-top-block .footer-column-1 .wp-block-image img {
		max-width: 150px;
		height: auto;
	}
	
	.footer-top-block .right-block .column-container {
		margin-bottom: 15px;
	}
	
	.footer-bottom-block .block-container {
		align-items: center;
		flex-direction: column;
	}
	
	.footer-bottom-block .left-block {
		width: 100%;
	}
	
	.footer-bottom-block .right-block {
		width: 100%;
		align-items: center;
	}
	
	.footer-bottom-block .left-block li {
		margin-left: 10px;
	}
	
	.footer-bottom-block .right-block p {
		text-align: center;
	}
	
	.woocommerce div.product .woocommerce-tabs ul.tabs {
	    overflow: scroll;
	    display: flex;
	}
	
	body.woocommerce-checkout .page-header {
		margin-bottom: 0px;
	}
	
	body.woocommerce-checkout .page-header .entry-title {
		border: none;
		padding-bottom: 0px;
	}
	
	body.blog .page-content, body.search-results .page-content {
		flex-direction: column;
	}
	
	body.blog .archive-posts, body.search-results .archive-posts {
		width: 100%;
	}
	
	body.blog .post-container, body.search-results .post-container {
		display: flex;
		row-gap: 20px;
		flex-direction: column;
		padding: 0px;
	}
	
	body.blog .sidebar {
		padding: 10px;
	}
	
	figure.wp-block-image.size-full.pocket-door-guide img {
		max-width: 100%;
	}
	
	.classic-pocket-door-video{
		height:	315px;
		width:100%;
	}
	
	body.woocommerce-cart .page-container {
		padding-top: 0px;
	}
	
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
		width: 100%;
	}
	
	select.orderby {
		font-size: 14px;
		padding: 1px;
	}
	
	body.woocommerce-page h1 {
		font-size: 30px;
		line-height: 34px;
	}
	
	.woocommerce-notices-wrapper .woocommerce-message {
		line-height: 18px;
		font-size: 12px;
	}
	
	.row-container .column-container h2 {
		margin-bottom: 10px;
	}
	
	#mega-menu-wrap-header-menu #mega-menu-header-menu img.eclisse-logo {
		margin-bottom: 0px;
	}
	
	body.archive.woocommerce header.woocommerce-products-header {
		padding: 15px 0px;
	}
	
	body.archive.woocommerce nav.woocommerce-breadcrumb {
		padding: 0px;
		margin: 0px;
	}
}
	
@media (min-width: 767px) and (max-width: 820px) {
	.searchform {
	   width: 750px;
	}  
	
	.searchform input{
		width:94%;
	}
}
	
@media (min-width: 375px) and (max-width: 767px) {
	.searchform {
	   width: 365px;
	}  
	
	.searchform input{
		width:80%;
	}
	.searchform {
		padding: 0px 0px 0px 15px;
	}
	
	.searchform button {
		border-top-right-radius:25px;
		border-bottom-right-radius:25px;
	}
}
	
@media (min-width: 300px) and (max-width:375px) {
	.searchform {
		width: 325px;
	}
	
	.searchform input{
		width:85%;
	}
}