/** @format */
@charset "UTF-8";

/* CSS Document */
/*==============================================================
Common Styles Initials
==============================================================*/
html {
    -webkit-text-size-adjust: none;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: auto !important;
    scrollbar-color: var(--primary-500) var(--bg-light);
    scrollbar-width: thin;
}

*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.3;
    color: #000;
    font-weight: 400;
    background: #fff;
    width: 100%;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--black);
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

input[type='submit'] {
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

input,
textarea,
select {
    outline: none;
    resize: none;
    font-family: var(--font-family);
}

a,
input,
button {
    outline: none !important;
}

button::-moz-focus-inner {
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: var(--font-family);
    line-height: 1.3;
    color: #000;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
}

.slick-slide {
    outline: none !important;
}

input[type='search']::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type='search']::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
    display: none;
}

input[type='search'] {
    -webkit-appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-dropdown input {
    -webkit-appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*==============================================================
Bootstrap Hack
==============================================================*/
.form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #17181a;
}

.form-control:-moz-placeholder {
    opacity: 1;
    color: #17181a;
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: #17181a;
}

.form-control:-ms-input-placeholder {
    opacity: 1;
    color: #17181a;
}

input::-webkit-input-placeholder {
    opacity: 1;
    color: #17181a;
}

input:-moz-placeholder {
    opacity: 1;
}

input::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder {
    opacity: 1;
}

/*==============================================================
Custom Style
==============================================================*/
:root {
    --white: #FFFFFF;
    --black: #3D3D3D;
    --description-color: #464646;
    --bold-headline: :#282828;
    --primary-500: #C9934C;
    --bg-dark: #222222;
    --bg-light: #F6F6F6;
    --footer-link: #D1D1D1;
    --footer-social-media-links: #313131;
    --hover-button-color: #B78645;
    --footer-hover-media-links: #000000;
    --font-family: "Inter", sans-serif;
    --link-description: #525252;
    --error-message: #dc3232;
    --success-message: #46b450;
}

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

.container-sm {
    max-width: 1264px;
    width: 100%;
    padding: 0px 16px;
}

.regular-text {
    font-weight: 400;
}

.medium-text {
    font-weight: 500;
}

.semibold-text {
    font-weight: 600;
}

.bold-text {
    font-weight: 700;
}

.h1 {
    font-size: 48px;
    line-height: 1.3;
}

.h2 {
    font-size: 40px;
    line-height: 1.3;
}

.h3 {
    font-size: 32px;
    line-height: 1.5;
}

.h4 {
    font-size: 24px;
    line-height: 1.5;
}

.h5 {
    font-size: 22px;
    line-height: 1.5;
}

.h6 {
    font-size: 20px;
    line-height: 1.5;
}

.p-lg {
    font-size: 18px;
    line-height: 1.5;
}

.p-md {
    font-size: 16px;
    line-height: 1.5;
}

.p-sm {
    font-size: 14px;
    line-height: 1.5;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.p-lg,
.p-md,
.p-sm {
    margin-bottom: 0px;
    color: var(--black);
}

.section-details {
    display: flex;
    justify-content: space-between;
}

.section-description {
    padding-bottom: 40px;
}

.section-name h2 {
    line-height: 1.5;
}

.section-name h2,
.section-description .description-text {
    width: 100%;
    max-width: 640px;
    color: var(--black);
}

.section-description .description-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--description-color);
    padding-top: 12px;
}

.view-more {
    padding: 16px 28px;
}

.view-more a {
    transition: 0.3s;
    color: var(--primary-500);
    border-bottom: 1px solid var(--primary-500);
}

.light {
    color: var(--white) !important;
}

.button {
    background-color: var(--primary-500);
    color: var(--white);
    border-radius: 2px;
    padding: 16px 28px;
    text-decoration: none;
    border: 2px solid var(--primary-500);
    transition: 0.3s;
}

.transparent-button {
    color: var(--primary-500);
    background-color: transparent;
}

.dark-text {
    color: var(--black) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.add-border {
    border-bottom: 1px solid #7C7C7C;
}

.header-open {
    background: var(--white) !important;
}

.full-width {
    width: 100%;
}

/*header*/
.header-main {
    height: 104px;
}

.header-wrap {
    position: fixed;
    width: 100%;
    z-index: 11;
    padding: 30.5px 0px;
    background-color: var(--white);
    border-bottom: 1px solid #7C7C7C;
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
}

.header-content-wrapper .nav-links {
    display: flex;
    align-items: center;
}

.header-content-wrapper .nav-links nav ul {
    display: flex;
    column-gap: 32px;
}

.header-content-wrapper .nav-links nav ul li a {
    font-size: 16px;
    line-height: 1.6;
    color: #505050;
    font-weight: 500;
    padding-bottom: 12px;
    position: relative;
}

.company-logo h3 {
    font-family: "Unica One", sans-serif;
    line-height: 1.282;
    color: var(--primary-500);
}

.company-logo img {
    height: auto;
    padding: 9.33px 0px;
}

.section-spacing {
    background-color: var(--white);
    padding: 80px 0px;
}

.show {
    display: flex !important;
}

.hide {
    display: none;
}

.header-main .company-logo svg,
.header-main .company-logo svg image {
    width: 286px;
    height: 42px;
}

/*hero banner*/
.hero-banner-content-wrapper h1 {
    padding-top: 80px;
    width: 100%;
    max-width: 976px;
}

.hero-banner-content-wrapper .h6 {
    padding-top: 16px;
    width: 100%;
    max-width: 800px;
}

.options {
    padding-top: 40px;
    display: flex;
    column-gap: 24px;
}

.hero-banner .options {
    justify-content: center;
    padding-bottom: 40px;
}

.banner-swiper-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-banner .hero-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-banner h1,
.hero-banner .h6 {
    text-align: center;
}

.slides .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 180px;
}

.slides .swiper-slide-image {
    position: relative;
    padding-bottom: 50.1%;
}

.slides .swiper-slide-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
}

.hero-banner .slides {
    padding-bottom: 81px;
    position: relative;
}

.slides .pagination {
    position: absolute;
    bottom: 130px;
    left: 48px;
    z-index: 2;
}

.slides .swiper-pagination-bullet {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.556;
    color: #FFFFFF;
    transition: 0.3s;
}

.slides .pagination .swiper-pagination-bullet {
    width: 100%;
    max-width: 60px;
    height: 2px;
    border-radius: unset;
}

.slides .swiper-pagination-bullet-active {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.334;
    color: #F8F8F8;
    transition: 0.3s;
}

.slides .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px;
    position: relative;
    height: 0;
    bottom: 50px;
    opacity: unset;
}

.slides .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    top: 60px;
}

.slides .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-500);
    top: 60px;
}

/*services hero-banner*/
.services-detail {
    padding-bottom: 80px;
}

.services-detail-text {
    max-width: 915px !important;
}

.services-banner-image-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.services-banner-image-wrapper .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.services-banner-image-wrapper img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-banner-image-wrapper .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 122px;
    width: 122px;
    border-radius: 50%;
    background-color: var(--primary-500);
    z-index: 1;
    cursor: pointer;
}

.services-banner-image-wrapper .video-button a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*problem solving*/
.problem-solving {
    background-color: var(--bg-dark);
}

.problem-solving-listing {
    padding-top: 40px;
}

.listing {
    display: flex;
    margin: 0px -16px;
    height: 100%;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: center;
}

.listing-item {
    width: 33.33%;
    padding: 0px 16px;
}

.problem-solving-card {
    padding: 62px 32px;
    border: 2px solid #C9934C;
    border-radius: 2px;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    min-height: 234px;
}

/*services*/
.services .listing-item {
    width: 25%;
}

.service-card {
    position: relative;
    padding-bottom: 99%;
    height: 100%;
}

.service-card-image {
    position: absolute;
    border-radius: 16px;
    top: 0;
    height: 100%;
    width: 100%;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(297.54deg, rgba(0, 0, 0, 0) 0%, #000000 103.42%);
    border-radius: 16px;
}

.services-card-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-card-content .h4 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0px 5px;
}

/*process*/
.our-process .section-name {
    padding-bottom: 40px;
}

.process-content-spacing {
    padding-bottom: 60px;
}

.process-round {
    position: relative;
    height: 200px;
    width: 200px;
    background-color: var(--primary-500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.process-content {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-content .start-line {
    position: absolute;
    top: 45%;
    bottom: 0;
    margin: 0 auto;
    height: auto;
    width: 29%;
}

.process-content .start-line.line-one {
    left: 16%;
}

.process-content .start-line.line-two {
    top: 20%;
    right: 15%;
}

.process-description p {
    color: #464646;
    text-align: center;
}

.process-description {
    width: 33.33%;
    max-width: 233px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-description:nth-child(1) {
    max-width: 200px;
}

.process-content-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.process-button-wrapper {
    display: flex;
    justify-content: center;
}

/*reviews*/
.review-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.review-information {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.checked {
    color: var(--primary-500);
}

.review-card .fa-star:before {
    font-size: 24px;
}

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

.review-stars span {
    display: inline-block;
}

.user-information {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-top: auto;
    padding-top: 116px;
}

.user-details {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.user-image {
    display: flex;
    justify-content: center;
}

.user-image img {
    object-fit: cover;
    border-radius: 50%;
}

/*transformation*/
.transformation-content-wrapper {
    display: flex;
    column-gap: 24px;
}

.transformation-images {
    display: flex;
}

.transformation-content {
    width: 56%;
}

.transformation-images {
    width: 42%;
}

.transformation-title h3 {
    width: 100%;
    max-width: 700px;
    padding-bottom: 40px;
}

.transformation-image-slider {
    width: calc(100% - 99px);
}

.transformation-image-slider-options {
    width: 99px;
}

.slider-content {
    padding-bottom: 64.253%;
    position: relative;
}

.slider-image {
    position: absolute;
    top: 0%;
    width: 100%;
    height: 100%;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.slider-text {
    position: absolute;
    bottom: 0%;
    background: #00000099;
    text-align: center;
    padding: 5px 0px;
    width: 100%;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.slider-text p {
    color: var(--white);
}

.transformation-image-slider-options {
    position: relative;
}

.swipper-image-separator {
    padding-bottom: 5px;
}

.transformation .swiper-pagination-fraction {
    font-size: 32px;
}

.transformation .swiper-pagination-fraction,
.transformation .swiper-pagination-total {
    font-weight: 700;
    line-height: 1.464;
    color: var(--primary-500);
}

.transformation .swiper-pagination-total {
    font-size: 12px;
}

.transformation-image-slider-options {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    flex-direction: column;
    row-gap: 23px;
}

.transformation-slider-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 23px;
}

.transformation-slider-controls .controls {
    width: 67px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transformation-slider-controls .controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.transformation .swiper-pagination {
    position: relative;
    top: inherit;
}

.transformation .swiper-pagination-fraction {
    bottom: 0px;
    top: inherit;
}

.service-detail-transformation .transformation-images {
    height: 100%;
}

.service-detail-transformation .transformation-content-wrapper {
    align-items: center;
}

.service-detail-transformation .transformation-title h3 {
    padding-top: 40px;
}

.service-detail-transformation .transformation-title:first-child h3 {
    padding-top: 0px;
}

/*experts*/
.experts {
    padding: 55px 0px;
}

.expert-image {
    position: relative;
    padding-bottom: 117.1%;
}

.expert-image img {
    position: absolute;
    top: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.expert-information {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
    height: 100%;
}

.expert-details {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.expert-name .h4 {
    color: var(--bold-headline);
}

.expert-position p {
    color: #505050;
}

/*consultation*/
.consultation-content-wrapper {
    position: relative;
    padding: 97px 0px;
}

.consultation-content {
    position: relative;
    z-index: 5;
    padding: 0px 16px;
}

.consultation-image {
    position: absolute;
    object-fit: cover;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.consultation-description {
    display: flex;
    justify-content: center;
}

.consultation-description p {
    padding-top: 22px;
    max-width: 694.5px;
    width: 100%;
    text-align: center;
}

.consultation .options {
    padding-top: 24px;
    display: flex;
    justify-content: center;
}

.consultation-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

/*trusted-homeowners*/
.trusted-homeowner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trusted-homeowner-card {
    padding: 38.31px 0px;
    border: 1px solid var(--primary-500);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 416px;
}

.homeowner-information {
    padding-top: 10px;
}

/*faq*/
.faq .accordion {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.faq .accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset;
    box-shadow: unset;
}

.faq .accordion-item:first-of-type {
    border-top-right-radius: unset;
    border-top-left-radius: unset;
}

.faq .accordion-item:last-of-type {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
}

.faq .accordion-item {
    border: none;
    border-bottom: 1px solid var(--black);
}

.faq .accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.faq .accordion-button {
    padding: unset;
    padding: 26px 0px;
}

.faq .accordion-body {
    padding: unset;
    padding-bottom: 24px;
}

.faq .accordion-button:not(.collapsed)::after {
    content: "";
    background-image: url('../images/close_button_accordian.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 3px;
}

.faq .accordion-button::after {
    background-image: url('../images/open_button_accordian.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    color: var(--primary-500);
}

.service-detail-faq .accordion {
    --bs-accordion-bg: transparent;
}

.faq .contact-link p {
    color: var(--link-description);
}

.service-detail-faq .accordion-button::after,
.service-detail-faq .accordion-button:not(.collapsed)::after {
    background-color: #ffffff;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-size: unset;
    background-position: center;
}

.faq .contact-link {
    padding-top: 34px;
    padding-bottom: 26px;
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.faq .contact-link .view-more {
    padding: 0;
}

/*guide*/
.guide {
    padding: 65px 0px;
    background-color: var(--bg-dark);
}

.guide-content-wrapper {
    display: flex;
    column-gap: 73.64px;
}

.guide-image {
    width: 40%;
    display: flex;
    justify-content: center;
}

.guide-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-content-description p {
    width: 100%;
    padding-top: 24px;
    max-width: 640px;
}

.guide .options {
    padding-top: 48px;
}

/*tips and resources*/
.tips-and-resources {
    background-color: var(--bg-light);
}

.tips-and-resources .listing {
    flex-wrap: wrap;
    row-gap: 40px;
}

.tips-and-resources .listing-item {
    width: 50%;
}

.tips-and-resources-card {
    display: flex;
    column-gap: 30px;
}

.tips-and-resources-image {
    width: 50%;
    position: relative;
    padding-bottom: 31.3%;
}

.tips-and-resources-image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tips-and-resources-headline {
    width: 50%;
}

.tips-and-resources-headline .h4 {
    width: 100%;
    max-width: 304px;
    color: var(--bold-headline);
}

.tips-and-resources-headline .h4 a {
    transition: 0.3s;
}

/*newsletter*/
.newsletter-subscribe-headline,
.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-subscribe-headline {
    padding-bottom: 40px;
}

.newsletter-form form {
    position: relative;
    width: 100%;
    max-width: 660px;
}

.newsletter .ns-form .ns-group {
    padding: 0px;
}

.newsletter .ns-container {
    padding: 0px;
}

.newsletter .ns-wrapper {
    position: relative;
    width: 100%;
    max-width: 660px;
    padding: 0px;
}

.newsletter-form .ns-form .ns-input::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: #8C8C8C;
}

.newsletter .ns-form .ns-input {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: var(--black);
    padding: 29.13px 24px;
    border: none;
    background-color: #F8F8F8;
    width: 100%;
    border-radius: 8px;
    height: unset;
}

.newsletter .ns-form .ns-input:focus {
    box-shadow: unset;
}

.newsletter .ns-form .ns-submit {
    text-transform: capitalize;
    width: unset;
    background: var(--primary-500);
    color: var(--white);
    border-radius: 2px;
    padding: 16px 28px;
    text-decoration: none;
    border: 2px solid var(--primary-500);
    transition: 0.3s;
    position: absolute;
    top: 12px;
    right: 12px;
}

/*full-gut-rennovation*/
.full-gut-rennovation h2 {
    padding-bottom: 40px;
}

.full-gut-rennovation li {
    width: 20%;
}

.full-gut-rennovation-image {
    position: relative;
    padding-bottom: 98.312%;
}

.full-gut-rennovation-image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12.41px;
}

.full-gut-rennovation-card {
    display: flex;
    flex-direction: column;
    row-gap: 24.12px;
    height: 100%;
}

.full-gut-rennovation .options,
.deliver .options {
    justify-content: center;
    align-items: center;
}

.full-gut-rennovation .h6 a {
    transition: 0.3s;
}

/*deliver*/
.deliver-content-wrapper {
    width: 100%;
    max-width: 1154px;
    margin: 0 auto;
}

.deliver-content-wrapper ul {
    padding-top: 62px;
    padding-bottom: 74px;
    position: relative;
}

.deliver .section-description {
    padding-bottom: 80px;
}

.deliver-content {
    position: relative;
}

.deliver-content-wrapper ul::before {
    content: "";
    width: 2px;
    height: 100%;
    background-image: url('../images/deliver_line.png');
    background-repeat: repeat-y;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1px;
}

.deliver-content-wrapper li {
    width: 100%;
    display: flex;
    position: relative;
    margin-bottom: 33px;
}

.deliver-card-content {
    width: calc(50% - 55px);
    max-width: 514px;
    border: 2px solid var(--primary-500);
    padding: 32px 24px;
    position: relative;
}

.deliver-content-wrapper li:nth-child(even) {
    justify-content: end;
}

.deliver-content-wrapper li::before {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--primary-500);
    border-radius: 100%;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    margin-left: -8px;
    position: absolute;
}

.deliver-card-content::after {
    content: "";
    width: 22px;
    height: 50px;
    right: -22px;
    top: 50%;
    margin-top: -25px;
    position: absolute;
    background-image: url('../images/deliver_arrow.PNG');
    background-repeat: no-repeat;
}

.deliver-content-wrapper li:nth-child(even) .deliver-card-content::after {
    left: -22px;
    transform: rotate(180deg);
}

.deliver-content::before {
    content: "";
    position: absolute;
    background-color: var(--primary-500);
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -43px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.deliver-content::after {
    content: "";
    position: absolute;
    bottom: -25px;
    background-color: var(--primary-500);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.deliver .options {
    padding-top: 60px;
}

/*footer*/
.footer-wrap {
    background-color: var(--bg-dark);
    padding: 80px 0px;
}

.footer-nav-links ul,
.copyright-text {
    display: flex;
    column-gap: 24px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-nav-links {
    display: flex;
    align-items: center;
}

.footer-nav-links ul li a {
    transition: 0.3s;
}

.footer-nav-links ul li a,
.copyright-text span {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.210;
    color: var(--footer-link);
}

.footer-social-media-links nav ul {
    display: flex;
    column-gap: 26px;
}

.footer-social-media-links .button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2.3px solid #313131;
    background-color: var(--footer-social-media-links);
    padding: 0px;
    border-radius: 6px;
    height: 36px;
    transition: 0.3s;
    width: 36px;
}

.footer-separator-wrapper {
    padding: 32px 0px;
}

.footer-separator {
    border-top: 1px solid #7C7C7C;
}

.subscribe {
    height: calc(100vh - 391.81px);
    min-height: 550px;
}

.subscribe-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
}

.subscribe .home-link-wrapper {
    padding-top: 20px;
}

.ns-form span.ns-error {
    font-size: 1rem;
    padding: 0.312em 0rem;
}

/*contact form*/
.contact-form .row {
    --bs-gutter-x: 32px;
    row-gap: 32px;
}

.contact .contact-content-wrapper h1 {
    padding-bottom: 16px;
    text-align: center;
}

.contact .contact-content-wrapper .h6 {
    padding-bottom: 40px;
    text-align: center;
}

.contact .contact-form-wrapper {
    display: flex;
}

.contact .contact-form-info {
    width: 32.8%;
    padding: 56px 32px;
    background-color: var(--primary-500);
}

.contact .contact-form-info h2 {
    color: var(--bg-light);
    padding-bottom: 12px;
}

.contact .contact-form-info .h6 {
    color: var(--bg-light);
    padding-bottom: 32px;
}
.contact .contact-form .wpcf7-spinner{
    display: none;
}
.contact .option-wrapper h6 {
    padding-bottom: 0px;
}

.contact .company-information {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding-bottom: 48px;
}

.contact .option-wrapper {
    display: flex;
    column-gap: 22px;
}

.contact .option-wrapper .option-logo {
    margin-top: 5px;
}

.contact .contact-form {
    width: 67.2%;
    padding: 48px 32px 110px 32px;
}

.contact-form .form-control {
    padding: 16px 24px;
    background-color: var(--white);
    border-radius: unset;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    border: 1px solid #E7E7E7;
}

.contact-form .form-control::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #505050;
}

.contact-form .form-control:focus {
    box-shadow: unset;
}

.contact-form input {
    height: 60px;
}

.contact-form textarea {
    height: 118px;
    overflow-y: auto;
}

.contact .contact-form-info .footer-social-media-links nav ul {
    justify-content: start;
}

.option-content a {
    color: var(--bg-light);
}

.link-word-wrap {
    word-break: break-all;
}

/*hover*/
.contact .footer-social-media-links .button:hover {
    border: 2.3px solid #543E20;
    background-color: #543E20;
}

.view-more a:hover {
    color: var(--hover-button-color);
    border-bottom: 1px solid var(--hover-button-color);
}

.button:hover {
    background-color: var(--hover-button-color);
    border: 2px solid var(--hover-button-color);
}

.transparent-button:hover {
    background-color: var(--primary-500) !important;
    color: var(--white) !important;
}

.header-content-wrapper .nav-links nav ul li a::after {
    position: absolute;
    bottom: 0;
    content: "";
    right: 0;
    border-radius: 3px;
    width: 100%;
    height: 3px;
    opacity: 0;
    background-color: var(--primary-500);
    transition: all 0.3s ease-in-out;
}

.header-content-wrapper .nav-links nav ul li:hover a:after,
.header-content-wrapper .nav-links nav ul li.current-menu-item a:after {
    opacity: 1;
}

.footer-nav-links ul li a:hover {
    color: var(--primary-500);
}

.footer-social-media-links .button:hover {
    border: 2.3px solid var(--hover-button-color);
    background-color: var(--hover-button-color);
}

.tips-and-resources-headline .h4 a:hover {
    color: var(--primary-500);
}

.full-gut-rennovation-card-text .h6 a:hover {
    color: var(--primary-500);
}

.wpcf7 form .wpcf7-response-output {
    padding-top: 5px;
    border: none !important;
}

.wpcf7-not-valid-tip {
    padding-top: 5px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.wpcf7 form .wpcf7-response-output {
    padding: 0px;
    padding-top: 10px;
    border: none;
    color: var(--error-message);
    text-align: end;
    margin: 0px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.sent .wpcf7-response-output {
    color: var(--success-message) !important;
}
/* Blog Listing */
.blogs .blog-item-wrapper {
    background-color: var(--bg-light);
    box-shadow: 5px 5px 20px 1px #00000036;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.blog-item-wrapper .blog-image{
    position: relative;
    padding-bottom: 73%;
    overflow: hidden;
}
.blog-item-wrapper .blog-image img{
    position: absolute;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog-item-wrapper .post-date {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-500);
    color: var(--white);
    padding: 20px;
}
.blog-item-wrapper .content-box {
    padding: 20px 17px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-item-wrapper .content-box h4{
    padding-bottom: 20px;
    transition: all 0.4s ease-in-out;
}
.blog-item-wrapper .tags-wrapper,.tags-wrapper{
    display: flex;
    column-gap: 5px;
    margin-top: auto;
}
.blog-item-wrapper .category ,.tags-wrapper .category{
    background-color: var(--primary-500);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 9999px;
}
.blog-link:hover .blog-item-wrapper .content-box h4{
    color: var(--hover-button-color);
}
/* Blog Detail */
.blog-detail h1 {
    padding-bottom: 40px;
    color: var(--black);
    line-height: 1.5;
}
.blog-detail .blog-detail-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail .date{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.blog-detail .content-wrapper{
    padding-top: 20px;
}
.blog-detail .content-wrapper p {
    font-size: 20px;
    color: var(--description-color);
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 20px;
}
.blog-detail .content-wrapper a {
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.blog-detail .content-wrapper p a {
    margin-bottom: 0px;
}
.blog-detail .content-wrapper a:hover{
    color: var(--hover-button-color);
}
.blog-detail .content-wrapper h1{
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}
.blog-detail .content-wrapper h2{
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}
.blog-detail .content-wrapper h3{
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}
.blog-detail .content-wrapper h4{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}
.blog-detail .content-wrapper h5{
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}
.blog-detail .content-wrapper h6{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 20px;
}
.blog-detail .content-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}
.blog-detail .content-wrapper ul{
    padding-left: 30px;
    padding-bottom: 20px;
}
.blog-detail .content-wrapper li{
    position: relative;
    font-size: 20px;
    color: var(--description-color);
    font-weight: 400;
    line-height: 1.5;
    padding-left: 10px;
    width: 100%;
    max-width: 90%;
}
.blog-detail .content-wrapper li::before{
    content: "»";
    position: absolute;
    left: -5px;
    top: 0;
    color: var(--primary-500);
}

.services-detail-information .row {
    --bs-gutter-x: 72px;
    row-gap: 30px;
}

.services-detail-information .image-wrapper {
    position: relative;
    padding-bottom: 98.594%;
}

.services-detail-information .image-wrapper img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 33.68px;
}

.services-detail-information .content {
    width: 100%;
    max-width: 528px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.services-detail-information .content h2 {
    padding-bottom: 12px;
}

.services-detail-information .content p {
    padding-bottom: 40px;
}

.services-detail-information .content a {
    display: inline-block;
}

.services-detail-information .content {
    margin-left: auto;
}

.services-detail-information.bg-light .content {
    margin-right: auto;
    margin-left: unset;
}

.company-portfolio .row {
    --bs-gutter-x: 32px;
    row-gap: 30px;
}

.company-portfolio-card {
    border: 1px solid var(--primary-500);
    height: 100%;
}

.company-portfolio-card .image-wrapper {
    position: relative;
    padding-bottom: 73.37%;
}

.company-portfolio-card .image-wrapper img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-portfolio-card .content {
    padding: 32px 34px;
}

.company-portfolio-card .content h4 {
    word-break: break-all;
}

.small-site-banner {
    position: relative;
    padding: 116px 0px;
}

.small-site-banner .overlay-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
}

.small-site-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.small-site-banner .container {
    position: relative;
    z-index: 1;
}

.small-site-banner .container p {
    padding-top: 16px;
    width: 100%;
    max-width: 814px;
    margin: 0 auto;
}
