/*
Theme Name: twenty twenty-one child
Theme URI: https://example.com
Description: A child theme for Twenty Twenty.
Author: Your Name
Author URI: https://example.com/
Template: twentytwentyone
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

:focus,
:active {
    outline: none !important;
}

/* Ubuntu Regular */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Ubuntu Italic */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Ubuntu Bold */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Ubuntu Bold Italic */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Ubuntu Light */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Ubuntu Light Italic */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Ubuntu Medium */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Ubuntu Medium Italic */
@font-face {
  font-family: 'Ubuntu';
  src: url('./assets/fonts/ubuntu/Ubuntu-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

:root {
    --color1: #CF4943;
    --color2: #606060;
    --color3: #FBFBFB;
    --color4: #18B1C7;
    --color5: #1D1D1D;
    --color6: #F1F1F1;
    --color7: #F5F5F5;
    --white: #ffffff;
    --primary-font: "Open Sans", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
    --h1: normal normal 700 54px/104% var(--primary-font);
    --h2: normal normal 700 36px/75% var(--primary-font);
    --h3: normal normal 700 30px/90% var(--primary-font);
    --h4: normal normal 600 26px/100% var(--secondary-font);
    --h5: normal normal 700 22px/108% var(--primary-font);
    --h6: normal normal 600 19px/273.684% var(--primary-font);

    --sh1: normal normal 400 15px/22px var(--primary-font);
    --sh2: normal normal 400 14px/160% var(--primary-font);
    --sh4: normal normal 500 14px/100% var(--secondary-font);
    --sh5: normal normal 300 13px/100% var(--secondary-font);
    --sh6: normal normal 700 18px/133.333% var(--primary-font);
    --sh7: normal normal 600 17px/158.824% var(--primary-font);
    --sh8: normal normal 600 18px/150% var(--primary-font);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
	color: #000;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    -webkit-text-size-adjust: 100%;
    outline: none;
    scroll-behavior: smooth;
}

body {
    color: var(--color1);
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
    background-color: var(--white);
    letter-spacing: normal;
}

body.active_menu {
    overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img,
svg {
    max-width: 100%;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

a,
a:hover,
a:focus,
button,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--color1);
}

table {
    border-collapse: collapse;
    width: 100%;
}

::selection {
    background: rgba(127, 131, 51, 0.2);
}

::-moz-selection {
    background: rgba(127, 131, 51, 0.2);
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.no-wrap {
    flex-wrap: nowrap;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.direction-column {
    flex-direction: column;
    -ms-flex-direction: column;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.text-uppercase {
    text-transform: uppercase;
}

.container {
    max-width: 1380px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

.h1,
h1 {
    font: var(--h1);
	color: white;
}

.h2,
h2 {
    font: var(--h2);
}

.h3,
h3 {
    font: var(--h3);
	color: black;
}

.h4,
h4 {
    font: var(--h4);
}

.h5,
h5 {
    font: var(--h5);
}

.h6,
h6 {
    font: var(--h6);
    color: #fff
}

.sh1 {
    font: var(--sh1);
	color: black;
	line-height: 1.4;
}

.sh2 {
    font: var(--sh2);
}

.sh4 {
    font: var(--sh4);
}

.sh5 {
    font: var(--sh5);
}

p.sh1w {
	font: var(--sh1);
	color: white;
}
p.sh1 {
	font: var(--sh1);
	color: black;
}

.btn,
.book-frm-cols input[type="submit"] {
    font: normal normal 600 14px/normal var(--secondary-font);
    color: var(--white);
    letter-spacing: -0.28px;
    background-color: #CF4943;
    padding: 13px 10px 13px;
    max-width: 200px;
    width: 100%;
    border-radius: 80px;
    cursor: pointer;
    border: 2px solid #CF4943;
	transition: all .2s ease-in-out;
}

.btn.back_to_top.text-center span {
	color: #fff
}

@media (max-width: 1200px) {
	.container {
		padding: 0 20px;
	}
    section.logos-section-section {
        display: none;
    }
    .left_side .top_title h3 {
        width: 100% !important; 
    }
}

@media (hover: hover) {

    .btn:hover,
    .form-field input[type="submit"]:hover {
        color: #CF4943;
        background-color: transparent;
        outline: #CF4943;
    }

    .back_to_top:hover a {
        color: var(--color4);
    }

    .back_to_top:hover path {
        stroke: var(--color4) !important;
    }
}


/* =================== START HEADER  SECTION =================== */
.header {
    position: sticky;
    top: 0;
    z-index: 9;
}

.header_wp {
    padding: 0px 0 12px;
    background: #fff;
    position: relative;
}

.header #mobile-menu {
    display: none;
}

.top_header {
    margin-bottom: 12px;
    padding: 0 100px;
    background: #F1F3F4;
    height: 38px;
}

.top_header_left ul li {
    margin-right: 20px;
}

.top_header_left ul li a {
    line-height: normal;
}

.top_header_left ul li a,
.top_header_right p {
    color: var(--color2);
    font: var(--sh5);
    letter-spacing: -0.26px;
}

.main_logo {
    max-width: 150px;
    width: 100%;
    margin-right: revert-layer;
}

.main_logo img {
	object-fit: contain;
	padding: 10px 4px 0 0
}

.main_info {
    margin-right: 20px;
    margin-left: 20px;
}

.main_info ul li a {
    color: #000;
    font: var(--sh4);
    letter-spacing: -0.28px;
    line-height: normal;
    transition: all .2s ease-in-out;
}

.main_info ul li {
    display: flex;
    align-items: center;
}

.main_info ul li:not(:last-child) {
    padding-right: 22px;
}

.main_info ul li svg {
    margin: 0 5px 0 0;

}

.main_info svg path {
    fill: none;
    stroke: #000;
}

.main_info ul li a:hover {
    color: var(--color1);
}

.main_info ul li a:hover path {
    stroke: var(--color1);
}

.search_wpr {
    flex: 1;
    position: relative;
    margin-right: 33px;
}

.search_wpr form {
    display: flex;
    align-items: center;
}

.search-field {
    background: var(--color3);
    border-radius: 50px;
    border: 1px solid #E7E7E7;
    width: 100%;
    padding: 9px 42px;
    font: var(--sh5);
    letter-spacing: -0.26px;

}

.search-field::placeholder {
    color: var(--color5);
}

.search-submit {
    background: transparent;
    border: none;
    position: absolute;
    left: 19px;
    top: 12px;
    padding: 0;
    padding: 0;
    border: unset;
    background: transparent;
    width: 13px;
    height: 13px;
}

.call_us_today {
    font: var(--sh4);
    letter-spacing: -0.28px;
    color: black;
    display: flex;
    flex-direction: column;
    line-height: normal;
}

.call_us_today span {
    color: #CF4943;
    display: block;
    line-height: 1;
}

.header_nav {
    background-color: #383838;
}

.menu_wpr li a {
    font: var(--sh4);
    letter-spacing: -0.28px;
    text-transform: uppercase;
    color: white;
    line-height: 22px;
    padding: 12px 16.5px;
}

.menu_wpr li a:hover {
    color: var(--color1);
}

.announcement_bar {
    background: var(--color1);
    padding: 11px 0 9px;
}

.announcement_bar p{
	color: #fff;
	font-size:13px;
}

.announcement_bar_slider {
    color: var(--white);
    font-family: var(--secondary-font);
}

.announcement_bar_slider strong {
    display: contents;
}

.announcement_bar_slider .small_icon {
    margin-right: 9px;
}

.announcement_bar .justify-center {
    align-items: center;
}

.small_icon svg,
.small_icon img {
    height: 23px;
    width: 23px;
}

.toggle_btn {
    width: 28px;
    height: 22px;
    position: relative;
    margin-left: 25px;
    cursor: pointer;
}

.toggle_btn span {
    display: flex;
    width: 100%;
    background: #000;
    height: 2px;
    transition: all 0.5s;
    position: absolute;
}

.toggle_btn span:nth-child(1) {
    top: 0;
}

.toggle_btn span:nth-child(2) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.toggle_btn span:nth-child(3) {
    bottom: 0;
}

.header.active_menu .toggle_btn span:nth-child(2) {
    width: 0%;
}

.header.active_menu .toggle_btn span:first-child {
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
}

.header.active_menu .toggle_btn span:last-child {
    transform: rotate(-45deg) translateY(50%);
    bottom: 50%;
}

.menu_overlay {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(27, 27, 27, 0.7);
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.header.active_menu .menu_overlay {
    opacity: 1;
    visibility: visible;
}

/* =================== END HEADER  SECTION =================== */

/* =================== START BANNER  SECTION =================== */
.hero_banner {
    background-image: url(../image/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* min-height: 526px;
    height: 100%; */
    padding: 50px 0px 50px;
    position: relative;
	/*margin-bottom: 75px 0 100px 0; */
}

.hero_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    pointer-events: none;
    z-index: 1;
}

.hero_banner > * {
    position: relative;
    z-index: 2;
}

.form-field {
    border-radius: 20px;
    background: #383838;
    padding: 30px 30px;
}

.hero_content {
	display:flex;
	position:relative;
}

.hero_content_wpr.right .form-field {
    position: absolute;
}

.hero_content_wpr {
/*     background-color: var(--color1); */
    color: var(--white);
	/*max-width: 764px;
    width: 100%; */
    border-radius: 8px;
	/*padding: 40px 0; */
    position: relative;
}

.hero_content_wpr.left {
	width:50%;
}

.hero_content_wpr.right {
	width:50%;
	padding: 0 10px;
}

.hero_content .btn_apply {
    margin-top: 20px;
}

.hero_content .btn:hover {
    color: #fff;
}

.hero_title p {
    max-width: 459px;
    width: 100%;
 	padding: 20px 0 0 0;
}

.hero_banner p.sh1{
	color: white;
}

.hero_title h1 {
    letter-spacing: -2px;
	color: white;
}

.start_from {
    position: absolute;
    /* right: -50px; */
    bottom: -21px;
    right: -107px;
    transform: rotate(15deg);
}

.start_from_wpr {
    background-color: var(--color4);
    color: var(--white);
    border-radius: 50%;
    width: 174px;
    height: 174px;
    flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
}

.start_from p {
    letter-spacing: -1px;
	font-size: 18px;
	line-height: 32px;
	margin: 0 0 6px;
}

.start_from h2 + p {
	font-size: 14px;
    line-height: 18px;
    margin: 8px 0 0;
	max-width: 130px;
    text-align: center;
}

.start_from h2 {
    font-size: 63px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -4px;
	width: 100%;
    text-align: center;
}

.start_form_mob {
    padding-top: 15px;
}

.start_form_mob p {
    font-size: 13px;
    line-height: 20px;
}

@media (max-width: 1200px) {
	.hero_content {
		flex-direction:column;
	}
	.hero_content_wpr.left {
    	width: 100%;
	}
	.hero_content_wpr.right {
		width:100%;
	}
	.hero_content_wpr.right .form-field {
    	position: relative;
	}
}

/* banner form */
.book-frm-wrap h3 {
    color: #FFF;
    margin: 0 0 20px 0;
}
.form-field .book-frm-wrap .book-frm-row {
    display: flex;
    flex-wrap: wrap;
	width:100%;
	padding-top:10px;
}

.book-frm-cols label {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.book-frm-row.submit .book-frm-cols {
    max-width: 100%;
}

.form-field .book-frm-cols {
    max-width: 285px;
    width: 100%;
    margin-right: 10px;
    margin-bottom: 14px;
    position: relative;
}

.form-field .book-frm-cols-text {
    max-width: 100%;
    width: 100%;
    margin-right: 10px;
    margin-bottom: 14px;
    position: relative;
}

.form-field .book-frm-cols:last-child {
    margin-right: 0;
}

.form-field input,
.book_appointment_frm input,
.full_width_appointment_frm input {
    width: 100%;
    border-radius: 5px;
    background: var(--white);
    padding: 10px 19px 10px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.form-field input::placeholder,
.book_appointment_frm input {
    color: #8D9095;
}

.form-field input[type="submit"] {
    max-width: 100%;
	border-radius:5px;
}

.book-frm-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.book-frm-row .wpcf7-list-item-label {
    text-align: left;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.book-frm-row .wpcf7-list-item {
    margin: 2px 0 0 !important;
}

.book-frm-row .wpcf7-list-item label {
    display: flex;
    align-items: center;
}

.wpcf7-spinner {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.wpcf7-not-valid-tip {
    padding-top: 5px;
    color: red;
}

.wpcf7 .wpcf7-response-output {
    display: inline-block;
}

/* Book An Appointment */
.book_appointment_frm .book-frm-cols {
    margin-bottom: 19px;
    text-align: left;
}

.book_appointment_frm input[type="submit"] {
    max-width: 230px;
    margin-top: 30px;
}

.book_appointment_frm .book-frm-wrap,
.full_width_appointment_frm .book-frm-wrap {
    position: relative;
}

.book_appointment_frm .wpcf7-list-item {
    margin: 0 !important;
}

/* full with form */
.full_width_appointment_frm .book-frm-row {
    display: flex;
}

.full_width_appointment_frm input {
    max-width: 251px !important;
}

.full_width_appointment_frm .book-frm-cols {
    margin-right: 14px;
    max-width: 251px;
    width: 100%;
}

.full_width_appointment_frm .book-frm-row:first-child {
    width: 60%;
}

.full_width_appointment_frm .book-frm-row:nth-child(2) {
    flex: 1;
}

.full_width_appointment_frm .book-frm-row:not(:last-child) {
    margin-bottom: 25px;
}

.full_width_appointment_frm .book-frm-row:last-child {
    position: relative;
    bottom: -14%;
}

.full_width_appointment_frm .book-frm-wrap {
    display: flex;
    flex-wrap: wrap;
}


.book-frm-row{
  display: flex;
  align-items: center;
  /*gap: 24px;*/          
}

.book-frm-row > p{
  margin: 0;              /* remove default <p> spacing */
}

.book-frm-row .submit{
  margin-left: auto;      /* pushes the submit block to the far right */
}


/* =================== END BANNER  SECTION =================== */

/* =================== START SUB MENU =================== */

/* =================== MOBILE MENU STYLES =================== */

/* Hide the mobile menu toggle text */
.menu-item .open-menu-text {
  display: none;
}

button.sub-menu-toggle {
    display: none !important;
}

/* Base menu item positioning */
#menu-main-menu > .menu-item,
.menu-item-has-children {
  position: relative;
}

/* Submenu toggle button - mobile first */
.menu-item-has-children > button,
.menu-item-has-children > .submenu-toggle {
  display: inline-block;
  background: transparent;
  border: none;
  color: inherit;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  vertical-align: middle;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}

.menu-item-has-children > button:focus,
.menu-item-has-children > .submenu-toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Submenu base styles - MOBILE FIRST */
#menu-main-menu .sub-menu,
.menu-item-has-children .sub-menu {
  /*display: none;*/
  /*position: static;*/
  width: 100%;
  background: #444;
  padding: 0;
  margin: 0;
  list-style: none;
  border-left: 3px solid #c9302c;
}








/* Show submenu when active class is added (via JavaScript) */
.menu-item-has-children.submenu-open > .sub-menu {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submenu item styles */
.sub-menu .menu-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sub-menu .menu-item:last-child {
  border-bottom: none;
}

.sub-menu .menu-item a {
  display: block;
  padding: 14px 20px 14px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
  min-height: 44px;
  line-height: 1.4;
}

.sub-menu .menu-item a:hover,
.sub-menu .menu-item a:focus {
  background: #555;
  padding-left: 35px;
}

/* Visual indicator for parent items with submenus */
.menu-item-has-children > a::after {
  content: url("/wp-content/uploads/2025/10/CaretDown.svg");
  font-size: 10px;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-item-has-children.submenu-open > a::after {
  transform: rotate(180deg);
}

/* =================== TABLET & DESKTOP =================== */

@media (min-width: 769px) {
  /* Hide mobile toggle buttons on desktop */
  .menu-item-has-children > button,
  .menu-item-has-children > .submenu-toggle {
    display: none;
  }

  /* Desktop dropdown positioning */
  #menu-main-menu .sub-menu,
  .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    width: auto;
    background: #333;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-left: none;
    border-top: 3px solid #c9302c;
  }

  /* Show submenu on hover for desktop */
  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu {
    display: block;
    animation: fadeIn 0.2s ease-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Reset mobile-specific styles */
  .sub-menu .menu-item a {
    padding: 12px 20px;
    white-space: nowrap;
  }

  .sub-menu .menu-item a:hover,
  .sub-menu .menu-item a:focus {
    background: #444;
    padding-left: 20px;
  }

  /* Remove active class styling on desktop (hover handles it) */
  .menu-item-has-children.submenu-open > .sub-menu {
    display: none;
  }

  .menu-item-has-children:hover.submenu-open > .sub-menu,
  .menu-item-has-children:focus-within.submenu-open > .sub-menu {
    display: block;
  }
}

/* =================== END SUB MENU =================== */

/* =================== START PAY THE EASI WAY  SECTION =================== */
.pay_easi_way {
    margin: 86px 0 50px;	
}

section.pay_easi_way .btn_apply .btn {
    background: #383838;
    border: 2px solid #383838;
    padding: 10px 20px;
}

section.pay_easi_way .btn_apply .btn:hover {
    background: transparent;
}

.pay_easi_way .button-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*.sub_col_wpr:hover .easi_way_icon svg,
.sub_col_wpr:hover .easi_way_icon img {
  filter: brightness(0) invert(1); 
}

.sub_col_wpr:hover .col_content p {
    color: #fff;
}

.sub_col_wpr:hover .col_content h5 {
    color: #fff;
}
*/
.top_title h2 {
    letter-spacing: -1px;
    padding-bottom: 15px;
	color: #000;
	line-height: 1;
}

.pay_easi_way .top_title {
    text-align: left;
}

.pay_easi_way .top_title p.sh2 {
    text-align: left;
}

.pay_easi_way .top_title span,
.left_side .top_title span {
    color: var(--color4);
}

.top_title P {
    width: 100%;
	text-align: center;
    color: black;
}

.pay_easi_content {
    padding-top: 52px;
}

.pay_content_wpr .swiper-wrapper {
    width: auto;
    margin: 0 -12.5px;
    padding-left: 40px;
    padding-right: 40px;
}

.sub_col {
    width: 25%;
    padding: 0 12.5px;
    height: auto;
}

.sub_col_wpr {
    border-radius: 20px;
    background: #F4F4F4;
    padding: 26px 27px 53px 30px;
    outline: 5px solid transparent;
    outline-offset: -5px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: all .3s ease-in-out;
    /*cursor: pointer;*/
    position: relative;
}
/*
.sub_col_wpr:hover {
    outline: 5px solid var(--color1);
	background-color: var(--color1);
}

.sub_col_wpr:hover .number_count {
    color: var(--color4);
}
*/
.sub_col h5 {
    padding: 0px 0 10px;
    letter-spacing: -1px;
	color: #000
}

.last_row {
    margin-top: 22px;
    height: 79px;
}

.number_count {
    /* display: list-item;
    list-style: decimal-leading-zero; */
    font-size: 102px;
    font-weight: 700;
    color: rgba(13, 27, 47, 0.06);
    line-height: 78px;
    display: inline-block;
}

.easi_way_icon svg,
.easi_way_icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
	margin-bottom:10px;
}

/* =================== END PAY THE EASI WAY  SECTION =================== */

/* =================== START SINGLE POST SECTION =================== */

.single-post main.site-main {
    padding: 60px 0;
}

.single-post .container {
    margin: 0 auto;
}

.single-post .content-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 42px;
    align-items: flex-start;
}

.single-post article.blog-post {
    flex: 0 1 70%;
    min-width: 0;
}

.single-post .entry-title {
    font-size: 2.4em;
    margin-bottom: 10px;
    padding: 0;
    color: #000;
}

.single-post .entry-meta-top {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 20px;
}

.single-post .meta-separator {
    margin: 0 6px;
}

.single-post .post-thumbnail {
    margin: 30px 0;
    text-align: center;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.single-post .entry-content {
    font-size: 1.05em;
    line-height: 1.8;
    padding: 0;
}

.single-post .entry-content p {
    color: #4D4D4D;
    font-size: 14px;
    margin: 20px 0;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.28px;
}

.single-post .entry-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.6em;
    color: #111;
}

.single-post .entry-content ul {
    padding-left: 20px;
    margin: 20px 0;
}

.single-post .entry-content li {
    color: #3B3B3B;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.single-post .entry-content li::before {
    content: url(/wp-content/uploads/2025/10/teenyicons_tick-circle-solid.svg);
    position: absolute;
    left: -25px;
    vertical-align: middle;
    top: 5px;
}

.single-post .entry-footer {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.single-post .entry-tags {
    font-size: 0.95em;
}

.single-post .entry-tags .tags-label {
    font-weight: bold;
    margin-right: 8px;
}

.single-post .entry-tags a {
    color: #0073aa;
    text-decoration: none;
    margin-right: 10px;
}

.single-post .entry-tags a:hover {
    text-decoration: underline;
}

.single-post aside.sidebar {
    flex: 0 1 30%;
    min-width: 0;
}

.single-post .widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 0px;
}

.widget.contact-form-widget {
    border-radius: 20px;
    background: #383838;
}

/* Widget title */
.single-post .widget-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #fff;
}

.single-post .widget-description {
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 0px;
    color: #fff;
}

/* Contact Form 7 (basic spacing) */
.single-post .contact-form-widget form {
    margin-top: 15px;
}

/* Recent posts list */
.single-post .recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-post .recent-post-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.single-post .recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.single-post .recent-post-item h4 {
    font-size: 1em;
    margin: 0 0 5px;
    color: #0073aa;
}

.single-post .recent-post-item h4:hover {
    text-decoration: underline;
}

.single-post .recent-post-meta {
    font-size: 0.85em;
    color: #999;
}

.single-post .recent-post-meta .meta-separator {
    margin: 0 6px;
}

/* Contact form layout using .quick-contact */
.single-post .contact-form-widget .quick-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-size: 0.95em;
}

/* Label styling */
.single-post .contact-form-widget .quick-contact label {
    font-weight: 600;
    color: #fff;
}

/* Input and textarea fields */
.single-post .contact-form-widget .quick-contact input[type="text"],
.single-post .contact-form-widget .quick-contact input[type="email"],
.single-post .contact-form-widget .quick-contact input[type="tel"],
.single-post .contact-form-widget .quick-contact select,
.single-post .contact-form-widget .quick-contact textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    box-sizing: border-box;
    background: #fff;
    font-family: "Open Sans", sans-serif;
    margin: 5px 0 0 0;
}

/* Checkbox styling */
.single-post .contact-form-widget .quick-contact .cf7-checkbox {
    font-size: 0.9em;
    color: #555;
}

.single-post .contact-form-widget .quick-contact .wpcf7-acceptance input {
    margin-right: 8px;
}

/* Submit button */
.single-post .contact-form-widget .quick-contact .cf7-submit-button {
    border-radius: 5px;
    border: 2px solid #CF4943;
    background: #CF4943;
    color: #fff;
    width: 100%;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.single-post .contact-form-widget .quick-contact .cf7-submit-button:hover {
    background: transparent;
}


/* === Responsive Design === */
@media (max-width: 992px) {
    .single-post .content-wrapper {
        flex-direction: column;
    }

    .single-post article.blog-post,
    .single-post aside.sidebar {
        flex: 1 1 100%;
    }
}


/* =================== END SINGLE POST SECTION =================== */

/* =================== START BLOG ARCHIVE SECTION =================== */

.blog_archive {
    padding: 60px 0;
}

.blog_archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.archive-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

/* Grid Layout */
.archive-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Post Card */
.archive-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-post:hover {
    transform: translateY(-5px);
}

/* Thumbnail */
.archive-post-thumbnail {
    position: relative;
    overflow: hidden;
    height: max-content;
}

.archive-post-thumbnail a {
    display: block;
    height: 100%;
}

.archive-post-thumbnail img {
    width: 100%;
    height: 192px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.archive-post:hover .archive-post-thumbnail img {
    transform: scale(1.05);
}

/* Content Area */
.archive-post-content {
    padding: 20px 0;
}

.archive-post-date {
    margin-bottom: 10px;
}

.archive-post-date p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.archive-post-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.archive-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-post-title a:hover {
    color: #e74c3c;
}

.archive-post-excerpt {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-post-excerpt p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Read More Link */
.read-more {
    display: inline-block;
    font-size: 14px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination h2 {
    display: none;
}

.page-numbers {
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .archive-posts-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog_archive {
        padding: 40px 0;
    }

    .archive-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .archive-posts-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .archive-post-thumbnail {
        height: max-content;
    }
}

@media (max-width: 480px) {
    .archive-title {
        font-size: 24px;
    }

    .archive-post-content {
        padding: 15px;
    }

    .archive-post-title {
        font-size: 18px;
    }
}

/* =================== END BLOG ARCHIVE SECTION =================== */

/* =================== START CALL TO ACTION  SECTION =================== */

.call_to_action {
    margin: 86px 0 86px;
}

.call_to_action .container {
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    position: relative;
    border-radius: 20px;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.cta-text {
	max-width: 664px;
}

.cta-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
	color: #fff;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 1.4;
	color: #fff;
}

.cta-button .btn {
    background: #e74c3c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 80px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button .btn:hover {
    background: transparent;
}

@media (max-width: 991px) {
	.call_to_action .container {
		background-image: url("/wp-content/uploads/2025/08/CTA-mobile-background.avif") !important;
		border-radius:10px;
	}
	.cta-content {
		flex-direction: column;	
		text-align:center;
		grid-gap: 20px;
	}
	.call_to_action {
		padding: 0 15px;	
	}
	.cta-title {
    	font-size: 24px;
    	font-style: normal;
    	font-weight: 700;
    	line-height: 30px;
    	letter-spacing: -2px;
	}
	.cta-subtitle {
    	font-size: 13px;
    	font-style: normal;
    	font-weight: 600;
    	line-height: 20px;
	}
}

/* =================== END CALL TO ACTION  SECTION =================== */

/* =================== START MEET THE TEAM  SECTION =================== */

.meet-the-team-section {
    padding: 50px 0;
}
.team-swiper {
    padding: 0 30px;
    margin-top: 20px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.team-member {
    text-align: center;
    background: #fff;
    padding: 15px;
}
.team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.team-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #b22222; 
	text-align:left;
}
.team-position {
    font-size: 14px;
    color: #333;
	text-align:left;
}

/* =================== END MEET THE TEAM  SECTION =================== */

/* =================== START CARPETING SPECIALISTS SECTION =================== */
.carpeting_specialists {
    margin: 50px 0 50px;
	background-color: #f4f4f4;
	padding: 50px 0;
}

.title_wpr {
    padding-bottom: 19px;
    letter-spacing: -1px;
    text-transform: capitalize;
	color: #383838;
}

.carpeting_item {
    padding-top: 27px;
}

.carpeting_item_wpr {
    margin: 0 -5px;
    width: auto;
}

.item_list {
    padding: 5px 5px;
    max-width: 25%;
    width: 100%;
}

.item_list_wpr {
    position: relative;
    padding-bottom: 62.2%;
    border-radius: 5px;
    overflow: hidden;
}

.carpeting_item_wpr .item_list_wpr {
    padding-bottom: 0;
}



.item_list_wpr img {
position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 322px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

/* =================== END CARPETING SPECIALISTS SECTION =================== */

/* =================== START REPAYMENT OPTIONS SECTION =================== */
.repayment_options {
    margin: 115px 0 120px;
}

.rp_options_wpr {
    /* align-items: flex-end; */
    padding-top: 20px;
}

.top_title_wpr {
    align-items: end;
}

.rp_left_side,
.rp_left_title {
    width: 29.4%;
}

.rp_center_side,
.rp_right_side,
.rp_center_title,
.rp_right_title {
    flex: 1;
}

.rp_left_side .main_options {
    margin: 0 0 0 -4px;
}

.rp_right_side .main_options {
    margin: 0px -4px 0 0;
}

.main_options ul li {
    padding: 4px;
}

.main_options ul li p {
    font: var(--sh7);
    padding: 19px 28px;
    background-color: var(--color7);
    border-radius: 5px;
    letter-spacing: -1px;
    text-transform: capitalize;
    min-height: 65px;
    height: 100%;
    display: flex;
    align-items: center;
}

.rp_center_side .main_options ul li p {
    background-color: #E6E9F0;
}

.rp_right_side .main_options ul li p {
    background-color: #E3F4E3;
}

/* =================== END REPAYMENT OPTIONS SECTION =================== */


/* =================== START REVIEWS  SECTION =================== */

.reviews-section {
    background: #383838;
    padding: 75px 0;
	overflow:hidden;
	margin: 50px 0 50px;
}

.reviews-section .swiper {
    margin: auto;
}

.reviews-section h3 {
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.client-icon {
    width: 40px;
}

.client-info {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

img.five-stars {
    padding: 5px 0;
    width: 100px;
}

.review-item {
    border-radius: 5px;
    background: #FBFBFB;
    height: auto;
    width: 315px !important;
    align-content: center;
    padding: 15px 15px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.review-item::after {
    content: url(/wp-content/uploads/2025/08/G-Logo.svg);
    position: absolute;
    top: 15px;
    right: 20px;
}

.client-name {
    font-family: 'Ubuntu', sans-serif;
    color: #211E56;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.42px;
}

.client-review {
	font-family: 'Ubuntu', sans-serif;
    color: #5F5F5F;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.36px;
}

.reviews-section .swiper {
    overflow: visible;
}

@media (max-width: 1200px) {
	.review-item {
		width:100% !important;
	}
}

/* =================== END REVIEWS  SECTION =================== */


/* =================== START FREQUENTLY ASKED QUESTIONS SECTION =================== */
.fq_section {
	margin: 86px 0 50px;
}

.fq_left_side {
    max-width: 296px;
    width: 100%;
}

.fq_section .title_wpr {
    line-height: 38px;
    text-transform: capitalize;
}

.fq_right_side {
    max-width: 65%;
    width: 100%;
}

.lists_col {
    border-bottom: 2px solid #E8E8E8;
}

.lists_col .questions {
    padding: 24px 0px 29px 0;
}

.lists_col:first-child .questions {
    padding: 0px 0px 29px 0;
}

.questions {
    display: flex;
    cursor: pointer;
}

.q_title {
    font: var(--sh6);
    max-width: 744px;
    width: 100%;
    letter-spacing: -1px;
	color: black;
}

.fq_ans {
    max-width: 744px;
    width: 100%;
    display: none;
    padding-bottom: 32px;
}

.fq_ans p {
    line-height: 24px;
}

.drop_down {
    margin: 0 22px;
}

.drop_down:before {
    content: '';
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border: solid var(--color1);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transition: all 0.5s;
}

.lists_col:first-child.active .questions {
    padding: 0px 0px 11px 0;
}

.lists_col.active .questions {
    padding: 24px 0px 11px 0;
}

.lists_col.active .drop_down:before {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}

.get_in_touch {
    line-height: 171.429%;
    color: var(--color4);
    text-decoration: underline;
    padding-top: 13px;
}

/* =================== END FREQUENTLY ASKED QUESTIONS SECTION =================== */
/* =================== START SEE OUR WORK SECTION =================== */
.see_our_work {
    margin-top: 50px;
}

.our_work_wpr {
    margin: 24px 4px 6px;
}

.work_item {
    width: 12.5%;
    padding: 6px;
    cursor: pointer;
}

.work_item_wpr {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 100%;
}

.work_item_wpr img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.see_our_work .top_title .title_wpr {
    padding-bottom: 14px;
}

/* =================== END SEE OUR WORK SECTION =================== */
/* =================== START FOOTER SECTION =================== */
.follow_us {
    background-color: #F8F8F8;
    padding: 17px 0 18px;
}

.btn.back_to_top.text-center span {
    color: #fff;
}

.follow_us ul li {
    padding: 0 10px;
    display: inherit;
}

.follow_us p {
    font: normal normal 400 17px/141.176% var(--primary-font);
    padding-right: 20px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.footer_wpr {
    background-color: #383838;
    padding: 58px 0 58px;
}

.top_footer.flex.justify-between.align-center {
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 40px;
}

.bottom_footer {
    padding-top: 30px;
}

.bottom_footer,
.relevant_pages a {
    color: var(--white);
}

.relevant_pages a:hover {
    color: var(--color1);
}

.about_us {
    width: 25%;
}

.about_us a {
    line-height: 34px;
    color: var(--white);
}

.about_us a:hover {
    color: var(--color1);
}

.relevant_pages {
    width: 25%;
}

.relevant_pages p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.relevant_pages img {
    padding: 10px 10px 0 0;
}

p.now-open {
    font-size: 14px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 0;
}

.bottom_footer h6 {
    font: var(--sh6);
    margin-bottom: 12px;
}

.back_to_top a {
    color: var(--white);
}

.about_us p {
    line-height: 25px;
    text-transform: capitalize;
    color: #fff
}

.relevant_pages ul {
    column-count: 1;
    column-gap: 164px;
}

.relevant_pages a {
    line-height: 34px;
    /* 242.857% */
}

/* =================== END FOOTER SECTION =================== */
section.content_with_image {
	margin: 86px 0 50px;	
}

.content_with_image + .content_with_image {
    margin: 0 0 50px;
}

section.content_with_image .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
	align-items:center;
}

.content_with_image.flipped .flex {
    flex-direction: row-reverse;
}

section.content_with_image .left_side,
section.content_with_image .right_side {
    flex: 1 1 50%; 
    box-sizing: border-box;
    padding: 20px;
	  margin: 0;
}

.left_side .top_title li::before {
    content: url(/wp-content/uploads/2025/10/teenyicons_tick-circle-solid.svg);
    margin-right: 5px;
    position: relative;
    vertical-align: middle;
    top: 0px;
}

.left_side .top_title ul {
    padding: 10px 0;
    font: var(--sh2);
}

section.content_with_image .right_side img {
    max-width: 100%;
    display: block;
    width: 584px;
    height: 431px;
    border-radius: 15px;
    object-fit: cover;
}

.content_with_image .top_title p {
    color: #3B3B3B;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
}

.content_with_image .top_title h3 {
    color: #262626;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -1px;
    text-transform: capitalize; 
}

@media (max-width: 768px) {
    section.content_with_image .left_side,
    section.content_with_image .right_side {
        flex: 1 1 100%;
        text-align: center;
    }

    section.content_with_image .left_side {
        order: 2; 
    }

    section.content_with_image .right_side {
        order: 1;
    }
    section.content_with_image .right_side img {
        height: 100%;
    }
    section.content_with_image {
        margin: 50px 0 50px;
    }
}

/* =================== START FINANCING PAGE  =================== */
body:not(.home) .hero_banner {
    padding: 75px 0px 75px;
}

/* ----- Thinking of Choosing section---*/
.thinking_of_choosing {
    margin: 84px 0 53px;
}

.thinking_of_choosing .left_side .top_title P {
    text-align: left;
}

.left_side {
    width: 53.71%;
    margin-right: 15px;
}

.left_side .top_title P {
    max-width: 100%;
    padding-bottom: 24px;
    font: var(--sh2);
}

.left_side .top_title P:last-of-type {
    padding-bottom: 0;
}

.left_side .btn_apply {
    padding-top: 20px;
}

.left_side .top_title h3 {
    color: #262626;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -1px;
    text-transform: capitalize;
    text-align: left;
    padding-bottom: 22px;
    width: 75%;
}

.right_side_form {
    width: 39%;
}

.book_appointment {
    background-color: var(--color1);
    border-radius: 8px;
    color: var(--white);
    padding: 45px 48px 45px 42px;
}

.right_side_form .top_title h3 {
    letter-spacing: -1px;
    text-transform: capitalize;
}

.right_side_form .top_title p {
    line-height: 22px;
    padding: 14px 0 23px;
    /* 157.143% */
}

.btn_book_appointment {
    padding-top: 20px;
}

.btn_book_appointment .btn {
    max-width: 230px;
    width: 100%;
}

/* =================== END FINANCING PAGE  =================== */
/* =================== START OUR WORK PAGE  =================== */
/* .page-id-200 .hero_banner {
    margin-bottom: 80px;
} */

.btn_apply_for_finance {
    max-width: 168px;
    width: 100%;
}

.work_gallery .top_title .title_wpr {
    padding: 0;
}

.work_gallery .carpeting_item {
    padding-top: 35px;
}

.work_gallery {
    margin: 80px 0;
}

/*--- Book Your Appointment Today section ----*/
.sec_book_appoinment {
    background-color: var(--color1);
    margin: 80px 0 91px;
}

.book_appoinment_wpr {
    color: var(--white);
    padding: 30px 0;
}

.book_appoinment_wpr .title_wpr {
    line-height: 52px;
    letter-spacing: -2px;
    padding-bottom: 3px;
}

.book_appoinment_wpr .top_title p {
    margin: 0;
    max-width: 459px;
    width: 100%;
}

.sec_book_appoinment form {
    padding-top: 23px;
    position: relative;
}

/* =================== END OUR WORK  PAGE  =================== */
/* =================== START CONTACT US  PAGE  =================== */
/* .page-id-216 .hero_banner {
    margin-bottom: 77px;
} */

.get_in_touch_sec {
    margin: 77px 0 39px;
}

.get_in_touch_sec .left_side {
    width: 34%;
}

.get_in_touch_sec .left_side .top_title h3 {
    padding-bottom: 16px;
}

.get_in_touch_sec .left_side .top_title P {
    line-height: 23px;
}

.details_wpr {
    margin-bottom: 22px;
}

.details_wpr h6 {
    font: var(--sh8);
    padding-bottom: 6px;
}

.details_wpr a,
.details_wpr p {
    line-height: 23px;
    font: var(--sh2);
}

.get_in_touch_sec .left_side .top_title {
    margin-bottom: 25px;
}

.pay_easi_way.contact_pay_easi {
    margin: 39px 0 49px;
}

.contact_pay_easi .number_count {
    position: absolute;
    top: 7px;
    right: 35px;
    margin: 0;
}

.contact_pay_easi .pay_easi_content {
    padding: 0;
}

.contact_pay_easi .sub_col_wpr {
    padding: 38px 27px 38px 30px;
    justify-content: center;
}

.g_map_sec {
    margin: 49px 0 86px;
}

.g_map_sec iframe {
    width: 100%;
}

/* =================== END CONTACT US  PAGE  =================== */

/* =================== START NOT FOUND  PAGE  =================== */
.not_found_wrp {
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not_found_wrp h3 {
    font: var(--h2);
    margin-bottom: 40px;
}

.not_found_wrp svg,
.not_found_wrp img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.content_404 {
    max-width: 440px;
    width: 100%;
    margin: 30px auto;
}

/* =================== END NOT FOUND  PAGE  =================== */
/* =================== START SEARCH  PAGE  =================== */
.search-results .search_results_title {
    margin-bottom: 60px;
}

.search-results .search_results_title h1 {
    font-size: 35px;
    line-height: 44px;
}

.search_results .no-result-found .border-btn {
    margin: 20px 0 0;
}

.search_results .left_side {
    width: 76%;
}

/* =================== END SEARCH  PAGE  =================== */


/* =================== RESPONSIVE =================== */
@media only screen and (max-width: 1280px) {
    .number_count {
        font-size: 78px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 1170px) and (min-width: 767px) {
    .book_appointment_frm input[type="submit"] {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 1170px) {

    /*----- Pay The Easi Way section ----*/
    .sub_col_wpr {
        padding: 12px 22px 12px;
    }
	
	.pay_easi_way .button-text {
		flex-direction: column;	
		align-items: flex-start;
		gap: 15px;
	}
	
	.pay_easi_way .swiper {
    	margin: 0;
	}

	.sub_col h5 {
        padding: 0 0 10px;
        font-size: 18px;
    }

    .sub_col p {
        font-size: 12px;
        line-height: 18px;
    }

    .last_row {
        flex-wrap: nowrap;
    }

    /*-- Frequently asked questions section ---*/
    .fq_ans {
        padding: 0px 40px 40px 0;
    }

    /*-- CONTACT US Page ---*/
    .contact_pay_easi .number_count {
        top: -2px;
    }

}

@media only screen and (max-width: 991px) {
    .full_width_appointment_frm .book-frm-row:first-child {
        width: 100%;
    }

    .full_width_appointment_frm .book-frm-row:nth-child(2) {
        flex: auto;
    }

    /*---- header -----*/
    .main_info,
    .main_logo {
        margin-right: 17px;
        display: inherit;
    }

    .main_info ul li:not(:last-child) {
        padding-right: 11px;
    }

    .search_wpr {
        margin-right: 22px;
    }

    .search_menu {
        padding: 0;
    }

    /*----- banner -----*/
    .start_from {
        right: -22px;
    }

    .start_from_wpr {
        width: 154px;
        height: 154px;
    }

    .start_from p {
        font-size: 16px;
    }

    .start_from h2 {
        font-size: 56px;
    }

    /*----- Pay The Easi Way section ----*/
    .sub_col {
        padding: 0;
    }

    .last_row {
        height: 60px;
    }

    .number_count {
        font-size: 70px;
        line-height: 70px;
    }

    .pay_content_wpr .swiper-wrapper {
        margin: 0;
    }

    .pay_content_wpr .swiper-wrapper {
        padding-left: 0;
    }

    .pay_easi_content {
        margin-right: -30px;
    }

    /*-- Frequently asked questions section ---*/
    .fq_right_side {
        max-width: 50%;
    }

    /*---- footer ----*/
    .relevant_pages ul {
        column-gap: 110px;
    }
}

@media only screen and (min-width: 767px) {

    /*----- header -----*/
    .mob_toggle {
        display: none;
    }

    .start_form_mob {
        display: none;
    }

    /*----- Carpeting Specialists section  -----*/
    .arrow {
        display: none;
    }

    .back_to_top svg {
        display: none;
    }

    /*---- Repayment Options section -----*/
    .rp_options_wpr .mobile_title {
        display: none;
    }

    .btn_apply_for_finance.mobile_btn {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .full_width_appointment_frm .book-frm-row:not(:last-child) {
        margin-bottom: 0;
    }

    .full_width_appointment_frm .book-frm-row {
        flex-wrap: wrap;
    }

    .full_width_appointment_frm .book-frm-cols input[type="submit"] {
        margin-top: 50px;
    }

    .full_width_appointment_frm .book-frm-row:last-child {
        position: absolute;
        bottom: 70px;
    }

    .full_width_appointment_frm .book-frm-cols {
        margin-bottom: 14px;
        margin-right: 0;
    }

    .full_width_appointment_frm .book-frm-row:first-child {
        margin-bottom: 0;
    }

    .full_width_appointment_frm input,
    .full_width_appointment_frm .book-frm-cols {
        max-width: 100% !important;
    }

    /* header */
    .header_wp {
        padding: 20px 0;
    }

    .hero_banner .hero_title {
        text-align: center;
    }

    .hero_banner {
        padding: 42px 0px;
    }

    .hero_content_wpr {
        padding: 20px;
    }

    .hero_title h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .hero_title p {
        padding-top: 5px;
        max-width: 100%;
    }

    .start_from {
        display: none;
    }

    .search_menu {
        justify-content: space-between;
    }

    .main_info,
    .search_wpr,
    .call_us_today,
    .top_header {
        display: none;
    }

    /* mobile menu */
    .header_nav {
        position: fixed;
        left: 0%;
        width: 100%;
        max-height: 0;
        z-index: 9;
        display: block;
        flex-direction: column;
        overflow: hidden auto;
        box-shadow: 3px 3px 6px -3px rgba(0, 0, 0, 0.7);
        transition: max-height .8s ease 0s;
        -webkit-transition: max-height .8s ease 0s;
        -moz-transition: max-height .8s ease 0s;
        -ms-transition: max-height .8s ease 0s;
        -o-transition: max-height .8s ease 0s;
    }

    .header.active_menu .header_nav {
        max-height: 100%;
    }

    .menu_wpr {
        padding: 20px 0;
    }

    .menu_wpr li {
        width: 100%;
    }

    .search_btn {
        cursor: pointer;
    }

    .search_input {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none;
        z-index: 9;
        padding: 20px;
        box-shadow: 3px 3px 6px -3px rgba(0, 0, 0, 0.7);
    }

    .search_input form {
        display: flex;
        align-items: center;
        position: relative;
    }

    .search-field {
        border: 1px solid var(--color1);
    }

    .btn-submit {
        max-width: 128px;
        width: 100%;
        border: unset;
        margin-left: 15px;
        cursor: pointer;
    }

    .search-submit {
        top: 14px;
    }

    /*---- banner ----*/
    .hero_banner {
        margin-bottom: 40px;
    }

    /*----- Pay The Easi Way section ----*/
    .pay_easi_way {
        margin: 40px 0 54px;
    }

    .pay_easi_content {
        padding-top: 40px;
    }

    .top_title h2 {
        padding-bottom: 25px;
    }

    .last_row {
        margin-top: 0;
    }

    /*----- Carpeting Specialists section  -----*/
    .carpeting_specialists {
        margin: 54px 0 40px;
    }

    .carpeting_item {
        padding-top: 35px;
    }

    .carpeting_specialists .title_wpr {
        padding-bottom: 25px;
    }

    .item_list {
        max-width: 33.33%;
    }

    .c_btn_next.swiper-button-next,
    .c_btn_prev.swiper-button-prev {
        height: 32px;
        width: 32px;
        top: 98%;
        color: var(--color1);

    }

    .c_btn_prev.swiper-button-prev {
        right: 58px;
        left: unset;
    }

    .c_btn_next.swiper-button-next:after,
    .c_btn_prev.swiper-button-prev:after {
        font-size: 14px;
        border: 2px solid;
        width: 30px;
        height: 30px;
        border-radius: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .swiper-button-prev.swiper-button-disabled,
    .swiper-button-next.swiper-button-disabled {
        color: var(--color4);
        opacity: 1 !important;
    }

    .carpeting_item_wpr {
        padding-bottom: 52px;
    }

    /*-----  Repayment Options section ----- */
    .repayment_options {
        margin: 40px 0 36px;
    }

    .rp_options_wpr {
        padding: 0;
    }

    .rp_left_side {
        width: 50%;
        display: none;
    }

    .rp_center_side,
    .rp_right_side,
    .rp_center_title {
        flex: auto;
        width: 50%;
    }

    .rp_left_title,
    .mobile_title {
        width: 100%;
    }

    .rp_left_title.top_title P {
        margin: 0;
    }

    .rp_center_title,
    .mobile_title {
        padding: 40px 0;
    }

    .repayment_options .top_title.rp_center_title {
        max-width: 183px;
        width: 100%;
        margin: auto;
    }

    .repayment_options .top_title.rp_center_title,
    .top_title.mobile_title {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .repayment_options .top_title.rp_right_title {
        display: none;
    }

    .main_options ul li p {
        font-size: 13px;
        padding: 12px 15px;
        width: 50%;
        margin: 4px;
    }

    .main_options ul li {
        display: flex;
        padding: 0;
    }

    .rp_center_side ul li::before,
    .rp_right_side ul li::before {
        content: attr(data-title);
        width: 50%;
        font-size: 13px;
        font-weight: 600;
        line-height: 20px;
        padding: 12px 15px;
        background-color: var(--color7);
        border-radius: 5px;
        letter-spacing: -1px;
        text-transform: capitalize;
        display: flex;
        align-items: center;
        margin: 4px;
    }

    /*-- Frequently asked questions section ---*/
    .fq_section {
        margin: 36px 0 40px;
    }

    .fq_right_side {
        max-width: 100%;
    }

    .questions {
        padding: 24px 0;
    }

    .fq_section .title_wpr {
        padding-bottom: 40px;
    }

    /*---- See our Work section -----*/
    .see_our_work {
        margin-top: 40px;
    }

    .see_our_work .top_title .title_wpr {
        line-height: 40px;
    }

    .our_work_wpr {
        margin: 40px 0 0 30px;
        padding-bottom: 12px;
    }

    .see_our_work .swiper-wrapper {
        flex-wrap: nowrap;
    }

    .work_item {
        padding: 0;
    }

    /*---- footer ----*/
    .follow_us p {
        display: none;
    }

    .follow_us {
        padding: 18px 0;
    }

    .footer_wpr {
        padding: 37px 0 40px;
    }

    .about_us {
        width: 100%;
        padding-bottom: 40px;
    }

    .relevant_pages {
        width: 100%;
        padding-bottom: 40px;    
    }

    .back_to_top span {
        display: none;
    }

    .back_to_top {
        max-width: 39px;
        height: 39px;
    }

    .bottom_footer {
        padding-top: 37px;
    }

    /* ----- FINANCING PAGE  ----- */
    .page-id-164 .hero_banner,
    .page-id-200 .hero_banner,
    .page-id-186 .hero_banner,
    .page-id-216 .hero_banner {
        padding: 42px 0px 100px;
        margin-bottom: 40px;
    }

    .thinking_of_choosing {
        margin: 40px 0;
    }

    .left_side,
    .right_side_form {
        width: 100%;
        margin: 0;
    }

    .left_side .top_title h3 {
        line-height: 133.33%;
        padding-bottom: 10px;
    }

    .left_side .top_title {
        margin-bottom: 40px;
    }

    .thinking_of_choosing .btn_apply {
        padding-top: 32px;
    }

    .book_appointment {
        text-align: center;
        padding: 20px 20px 20px 19px;
    }

    .right_side_form .top_title h3,
    .book_appoinment_wpr .title_wpr {
        line-height: 36px;
        letter-spacing: -2px;
    }

    .right_side_form .top_title p {
        font-size: 16px;
        line-height: 22px;
        padding: 20px 0;
    }

    /* ----- Help & Support PAGE  ----- */
    .page-id-186 .thinking_of_choosing .left_side {
        order: 2;
        padding-top: 40px;
    }

    /* ----- Our Work PAGE  ----- */
    .work_gallery {
        margin: 40px 0;
    }

    .sec_book_appoinment {
        background-image: none;
        margin: 40px 30px;
        border-radius: 5px;
    }

    .sec_book_appoinment .container {
        padding: 20px 20px 20px 19px;
    }

    .book_appoinment_wpr {
        padding: 0;
        text-align: center;
    }

    .book_appoinment_wpr .top_title p {
        padding-top: 20px;
    }

    .btn_apply_for_finance.desktop_btn {
        display: none;
    }

    .work_gallery .arrow {
        display: none;
    }

    .work_gallery .carpeting_item_wpr {
        padding-bottom: 32px;
    }

    /*--- start contact us page ---*/
    .pay_easi_way.contact_pay_easi {
        margin: 40px 0 54px;
    }

    .get_in_touch_sec {
        margin: 40px 0;
    }

    .get_in_touch_sec .left_side {
        width: 100%;
    }

    .get_in_touch_sec .left_side .top_title {
        margin-bottom: 5px;
    }

    .contact_pay_easi .sub_col_wpr {
        padding: 18px 22px;
    }

    .g_map_sec {
        margin: 54px 0 45px;
    }
}

@media only screen and (max-width: 640px) {

    /* banner form */
    .book-frm-cols,
    .form-field .book-frm-cols,
    .book-frm-cols input[type="submit"] {
        max-width: 100%;
        margin-right: 0;
    }

    .book-frm-wrap .book-frm-row {
        text-align: center;
    }

    .wpcf7-spinner {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*----- Carpeting Specialists section  -----*/
   /* .item_list_wpr {
        padding-bottom: 119.2%;
    }
*/
    .item_list {
        max-width: 100%;
    }

    .carpeting_item_wpr .swiper-wrapper {
        display: grid;
        grid-template-rows: repeat(5, 1fr);
        grid-auto-flow: column;
    }

    /*-- Frequently asked questions section ---*/
    .drop_down {
        margin: 0;
    }

    .q_title {
        max-width: 232px;
    }

    /*---- footer ----*/
    .relevant_pages ul {
        column-count: 1;
    }

    /* =================== START SEARCH  PAGE  =================== */
    .search-results .search_results_title {
        margin-bottom: 40px;
    }

    .search-results .search_results_title h1 {
        font-size: 28px;
        line-height: 30px;
    }

    .search_results .left_side {
        width: 100%;
    }

    .search-results .left_side .top_title h3 {
        font-size: 24px;
        line-height: 30px;
    }

    /* =================== END SEARCH  PAGE  =================== */
}

@media only screen and (max-width: 420px) {
    .book_appointment_frm input[type="submit"] {
        margin-top: 50px;
    }

    /*--- CONTACT US ---*/
    .contact_pay_easi .number_count {
        right: 10px;
    }
}

@media only screen and (max-width: 375px) {

    /* ----- FINANCING PAGE  ----- */
    .btn_book_appointment .btn {
        max-width: 100%;
    }

}

@media only screen and (max-width: 374px) {

    .header_wp {
        padding: 22px 0;
    }

    .announcement_bar .container {
        padding: 0 10px;
    }

    .top_title h2 {
        line-height: 85%;
        font-size: 28px;
    }

    .top_title h2,
    .carpeting_specialists .title_wpr {
        padding-bottom: 15px;
    }

    .carpeting_specialists .title_wpr,
    .title_wpr,
    .fq_section .title_wpr,
    .see_our_work .top_title .title_wpr,
    .get_in_touch_sec .left_side .top_title h3,
    .right_side_form .top_title h3,
    .book_appoinment_wpr .title_wpr,
    .left_side .top_title h3 {
        font-size: 26px;
        line-height: 30px;
    }

    .title_wpr .pay_easi_content,
    .carpeting_item,
    .work_gallery .carpeting_item {
        padding-top: 20px;
    }

    .title_wpr {
        line-height: 106%;
    }

    .fq_section .title_wpr {
        padding-bottom: 20px;
    }

    .lists_col .questions {
        padding: 15px 0;
    }

    .lists_col:first-child .questions {
        padding: 0px 0px 15px 0;
    }
}












/*mmenu-light integration CSS*/

.menu_overlay {
  display: none !important;
}

.mm-ocd {
  z-index: 99999 !important;
}

.mm-ocd__content .mm-spn ul {
    padding: 0;
    border: unset;
}

.mm-ocd__content .mm-spn li:after {
    display: none;
}

.mm-ocd__content {
  background: transparent !important;
}

.mm-ocd__content .mm-spn.mm-spn--navbar::after {
    padding: 0 20px;
    font-size: 16px;
    opacity: 1;
    font-weight: 600;
    letter-spacing: -1px;
}

.mm-ocd__content .mm-spn .menu-item a:hover,
.mm-ocd__content .mm-spn .menu-item a:hover {
    background-color: #F4F4F4;
}

.mm-spn {
  background: #fff !important;
}

@media (min-width: 1025px) {
  #mobile-menu {
    display: none !important;
  }
}

.mm-spn,
.mm-spn * {
  box-sizing: border-box;
}

.mm-spn ul {
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: #fff !important;
}

.mm-spn li {
  float: none !important;
  position: relative !important;
  display: block !important;
}

.mm-spn a,
.mm-spn span {
  display: block !important;
  padding: 14px 16px !important;
  color: #111 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-decoration: none !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}

.mm-spn li + li > a,
.mm-spn li + li > span {
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}

.mm-spn .mm-spn__btn {
  opacity: 1 !important;
  visibility: visible !important;
}








.search_btn svg path {
  stroke: #000; 
}

.mob_toggle .search_input { display: none; }
.mob_toggle .search_input.is-open { display: block; }

/* Safety: never allow a leftover backdrop to block the page when menu is not open */
.mm-ocd:not(.mm-ocd--open) .mm-ocd__backdrop {
  display: none !important;
  pointer-events: none !important;
}

.sec_book_appoinment .book-frm-cols input[type="submit"] {

    background-color: #383838;
}


.sec_book_appoinment .book-frm-wrap h3 {
    color: #fff;
    margin: 0px 0 10px 0;
}

.sec_book_appoinment .book-frm-wrap p {
    color: #fff;
    margin: 10px 0; 
}

.sec_book_appoinment .full_width_appointment_frm .book-frm-row:not(:last-child) {
    margin-bottom: 10px;
}

body .full_width_appointment_frm .book-frm-wrap {
  display: block !important;
}




/* Blog Hero Banner */
.blog_hero_banner {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}
 
.blog_hero_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
 
.blog_hero_banner .container {
    position: relative;
    z-index: 1;
}
 
.blog_hero_content h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}
 
.blog_hero_content p {
    color: #fff;
    max-width: 500px;
    margin-bottom: 20px;
    line-height: 1.6;
}
 
.blog_hero_content .btn {
    display: inline-block;
    background: #CF4943;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
}
 
.blog_hero_content .btn:hover {
    background: #b33d38;
}







/* Privacy Policy Page Fix */
body.page:not(.page-template-flexible-content) .site-main,
body.page:not(.page-template-flexible-content) .entry-content,
body.page:not(.page-template-flexible-content) article {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

body.page:not(.page-template-flexible-content) p {
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

body.page:not(.page-template-flexible-content) h1,
body.page:not(.page-template-flexible-content) h2,
body.page:not(.page-template-flexible-content) h3 {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

/* Hide WordPress Edit Link */
.post-edit-link,
a.post-edit-link {
    display: none !important;
}