@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');

@font-face {
    font-family: "Trade-Gothic-Bold";
    src: url("./../fonts/TradeGothicBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Trade-Gothic-Medium";
    src: url("./../fonts/TradeGothicMedium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Trade-Gothic-Light";
    src: url("./../fonts/TradeGothicLight.ttf") format("truetype");
    font-weight: lighter;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura-Medium";
    src: url("./../fonts/futuramediumbt.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caxton-Std-Book";
    src: url("./../fonts/Caxton Std Book.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family-theme: 'Poppins', sans-serif;
    --font-family-primary: 'Poppins', sans-serif;
    --font-family-futura: 'Futura-Medium';
    --font-crimson: 'Crimson Text', serif;
    --body-color: #717171;
    --bs-primary: #091835;
    --bs-white: #fff;
    --bs-primary-hover: #14171e;
    --bs-secondary: #356535;
    --bs-secondary-hover: #1c5357;
    --bs-success: #356535;
    --trade-gothic-bold: "Trade-Gothic-Bold";
    --trade-gothic-medium: "Trade-Gothic-Medium";
    --trade-gothic-light: "Trade-Gothic-Light";
}

html {
    scroll-padding-top: 150px;
}

body {
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--body-color);
    background-color: #fff;
    scroll-padding-top: 150px;
}

p {
    font-family: var(--font-family-futura);
    color: var(--bs-primary);
    font-size: 20px;
    line-height: 1.5;
}

.font-futura-medium {
    font-family: var(--font-family-futura) !important;
}

.btn {
    font-size: 14px;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    box-shadow: none;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-secondary {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
    box-shadow: none;
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-outline-theme {
    color: var(--bs-secondary);
    border: 2px solid var(--bs-secondary);
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 500;
}

.btn-outline-theme:hover {
    color: var(--bs-secondary);
    border: 2px solid var(--bs-secondary);
    background-color: var(--bs-theme-hover);
}

.btn-check:focus+.btn-outline-theme,
.btn-outline-theme:focus,
.btn-check:active+.btn-outline-theme:focus,
.btn-check:checked+.btn-outline-theme:focus,
.btn-outline-theme.active:focus,
.btn-outline-theme.dropdown-toggle.show:focus,
.btn-outline-theme:active:focus {
    box-shadow: none;
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    color: var(--bs-secondary);
    border: 2px solid var(--bs-secondary);
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: none;
}

.btn-outline-secondary {
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus,
.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
    box-shadow: none;
}

.trade-gothic-bold {
    font-family: var(--trade-gothic-bold)
}

.trade-gothic-medium {
    font-family: var(--trade-gothic-medium);
}

.trade-gothic-light {
    font-family: var(--trade-gothic-light);
}

.text-green {
    color: #1c5357;
}

.text-primary {
    color: var(--bs-primary);
}

.text-secondary {
    color: var(--bs-secondary);
}

.text-300 {
    font-weight: 300;
}

.text-400 {
    font-weight: 400;
}

.text-500 {
    font-weight: 500;
}

.text-600 {
    font-weight: 600;
}

.text-700 {
    font-weight: 700;
}

.text-900 {
    font-weight: 900;
}

.text-dark {
    color: var(--bs-gray-dark);
}

.text-light {
    color: var(--bs-gray-dark);
}

.fs-1 {
    font-size: 40px;
}

.fs-2 {
    font-size: 36px;
}

.fs-3 {
    font-size: 32px;
}

.fs-4 {
    font-size: 28px;
}

.fs-5 {
    font-size: 24px;
}

.fs-6 {
    font-size: 20px;
}

.cus-pt {
    padding-top: 90px;
}

.cus-pb {
    padding-bottom: 90px;
}

.cus-mt {
    margin-top: 90px;
}

.cus-mb {
    margin-bottom: 90px;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-family: var(--font-family-primary);
    font-weight: 700;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-family: var(--font-family-primary);
    font-weight: 500;
}

a {
    outline: none;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul li,
ol li {
    list-style: none;
}

.hero-text {
    font-family: "Caxton-Std-Book";
    font-weight: 500;
    font-size: clamp(20px, 5vw, 70px)
}

figure {
    margin: 0;
}

.br-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.br-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.br-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.br-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}


/***************start css for pagewise ****************** */

html,
body {
    height: 100%;
    margin: 0px;
}

.color-primary {
    color: var(--bs-primary);
}

.color-secondary {
    color: var(--bs-secondary);
}

.block-header small {
    text-transform: uppercase;
    color: var(--bs-secondary);
    font-size: 16px;
    font-weight: 600;
}

.block-header h1,
.block-header .h1 {
    color: var(--bs-primary);
    font-size: 40px;
    font-weight: 700s;
}

.block-header p {
    font-weight: 500;
    margin-top: 1rem;
}

p.lead {
    font-size: 16px;
}

.header-outer .navbar {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.navbar-nav {
    column-gap: 35px;
}

.fixed-top {
    transition: all 0.2s;
}

.sticky-navbar {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    padding: 0;
    animation: slide-down 0.3s;
    opacity: 1;
    background: #fff;
}

.sticky-navbar .navbar-brand img {
    max-width: 150px;
}

header .navbar-brand img {
    max-width: 180px;
}

header .nav-link {
    font-weight: 500;
    color: var(--bs-primary) !important;
    /* font-size: 1.2rem; */
    font-size: 15px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

header.header-outer .nav-link.active,
header .nav-link:hover {
    color: var(--bs-secondary) !important;
}

header.header-outer .right-navbar li {
    margin-left: 0.5rem;
}

header.header-outer .right-navbar .btn,
.btn-customize {
    border-radius: 10px;
    /* padding: 0.4rem 0.6rem 0.4rem 2.8rem; */
    padding: 0.4rem 0.6rem 0.4rem 0.6rem;
    line-height: 1.5;
    font-weight: 600;
}

header.header-outer .right-navbar a,
.btn-customize {
    color: #fff;
    position: relative;
}

header.header-outer .right-navbar i,
.btn-customize i {
    position: absolute;
    left: 0.6rem;
    top: 4px;
    font-size: 30px;
}

header.header-outer .right-navbar a span,
.btn-customize span {
    font-size: 12px;
    display: block;
    text-align: left;
}

.hero-container {
    height: 75vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    position: relative;
}

.hero-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-container-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-content .display-4 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: #fff;
}

.hero-content p.lead {
    font-size: 22px;
    font-weight: 500;
    color: #0B154F;
}

.about-content p {
    text-align: justify;
}

.about-img-group {
    position: relative;
}

.about-img-group {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
}

.about-img-group figure {
    margin: 0;
}

.about-img-group img {
    max-width: 90%;
    margin-left: auto;
}

.about-img-group figure:nth-child(2) {
    width: 60%;
    padding-bottom: 50px;
}

.about-img-group figure:nth-child(1) {
    width: 40%;
}

.about-img-group figure .thumbnail-block {
    background-color: #fff;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    margin: 0;
    padding: 10px;
    display: inline-block;
}

.about-img-group figure .thumbnail-block img {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    max-width: 100%;
}

.circle-img-group {
    position: absolute;
    bottom: 0;
    left: 30%;
    z-index: 5;
    background-color: #fff;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
}

.circle-img-group span {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: inline-block;
    overflow: hidden;
    border: 3px solid #fff;
    position: relative;
}

.circle-img-group span:nth-child(2) {
    left: -15px;
}

.circle-img-group span:nth-child(3) {
    left: -30px;
}

.circle-img-group span:nth-child(4) {
    left: -45px;
}

.circle-img-group span:nth-child(5) {
    left: -60px;
}

.circle-img-group span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourwork-video {
    position: relative;
}

.ourwork-video figure.large-img {
    padding-right: 60px;
    padding-bottom: 20px;
}

.ourwork-video figure.large-img img {
    max-width: 100%;
    border-radius: 20px;
    margin-top: -100px;
}

.ourwork-video figure.small-img {
    position: absolute;
    bottom: -100px;
    width: 300px;
    right: 20px;
    border: 10px solid #f8f9fa;
    border-radius: 15px;
    background-color: #f8f9fa;
}

.ourwork-video figure.small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-play-btn {
    position: absolute;
    top: 3rem;
    right: 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.video-play-btn {
    text-decoration: none;
    color: var(--bs-primary);
    font-weight: 600;
}

.video-play-btn span {
    border: 1px solid var(--bs-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 61px;
    margin-right: 1rem;
    padding-top: 4px;
}

.video-play-btn i {
    font-size: 50px;
    color: var(--bs-primary);
}

.project-overall-desc {
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    color: var(--bs-secondary);
    font-weight: 600;
    background-color: #fff;
}

.project-overall-desc span {
    display: inline-block;
}

.project-overall-desc .fs-3 {
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0.3rem;
}

#local-partner {
    background-color: #f8f8ff;
}

#local-partner .block-header .h1 {
    color: var(--bs-secondary);
}

.local-partner-container {
    background-repeat: no-repeat;
    /* background-size: calc(50% - 15px); */
    background-size: cover;
    background-position: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

.local-partner-container .container {
    position: relative;
    z-index: 5;
}

.local-partner-container::before {
    content: '';
    position: absolute;
    background-color: rgba(9, 24, 53, 0.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.text-link {
    white-space: nowrap;
    text-decoration: none;
    font-weight: 600;
    color: var(--bs-primary);
    position: relative;
    overflow: hidden;
    transition: all ease-in 0.1s;
    display: inline-block;
}

.text-link:hover {
    color: var(--bs-secondary);
}

.text-link:before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 40px;
    padding-bottom: 7px;
    height: 2px;
    background-color: var(--bs-secondary);
    transition: all ease-in 0.2s;
}

.text-link:hover:before {
    width: 80px;
}

.text-link:after {
    content: "\f144";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 900 !important;
    position: relative;
    top: 1px;
    margin-left: 3px;
    color: var(--bs-secondary);
    font-size: 14px;
}

.service-title,
.get-in-touch-title {
    font-family: var(--font-crimson);
    font-weight: 600;
    font-style: italic;
    color: #1c5357;
    font-size: 28px;
    letter-spacing: 1.5px;
    position: relative;
}

.service-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #1c5357;
    width: 37%;
    height: 3px;
}

.service-title:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #1c5357;
    width: 37%;
    height: 3px;
}

.service-title-2:before {
    width: 40%;
}

.service-title-2:after {
    width: 40%;
}

.service-title-3:before {
    content: unset;
}

.service-title-3:after {
    content: unset;
}

.get-in-touch-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #1c5357;
    width: 20%;
    height: 3px;
}

.get-in-touch-title:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #1c5357;
    width: 20%;
    height: 3px;
}

.contact-box a,
.contact-box p {
    color: #1c5357;
    text-decoration: none;
}

.services-box {
    position: relative;
    height: 100%;
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 1.5rem;
}

.services-box figure {
    margin-bottom: 1rem;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.services-box figure img {
    height: 300px;
    object-fit: cover;
    width: 100%
}


/* .services-box figure img{
    border-radius: 15px;
} */

.services-box figcaption .fs-5 {
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.services-box figcaption p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* height: 80px; */
}

.services-box a.service-link {
    color: var(--bs-secondary);
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
}

#our-service .owl-nav {
    position: absolute;
    top: -85px;
    right: 0;
}

#our-service .owl-nav .owl-prev,
#our-service .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid var(--bs-secondary);
    font-size: 50px;
    line-height: 1.1;
    padding: 0;
    line-height: 40px;
    color: var(--bs-secondary);
    margin-left: 8px;
}

#our-service .owl-nav .owl-prev span,
#our-service .owl-nav .owl-next span {
    position: relative;
    top: -3px;
}

.project-box {
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 15px;
}

.project-box img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all ease-in 0.2s;
}

.project-box:hover img {
    transform: scale(1.1);
}

.project-box figcaption {
    padding: 1rem 2rem;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 24, 53, 0.8);
    transition: all ease-in 0.3s;
    opacity: 0;
    z-index: 7;
}

.project-box:hover figcaption {
    opacity: 1;
}

.project-box figcaption a {
    color: #fff;
    text-decoration: none;
}

.copyicon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 4;
    font-size: 20px;
    line-height: 1.1;
}

.footer-contact-details li {
    position: relative;
    padding-left: 30px;
}

.footer-contact-details i {
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--bs-secondary);
    font-size: 20px;
}

.company-link {
    color: #fff;
}

.navbar-toggler i {
    color: #fff;
}

.footer-top {
    background: #fff;
    padding: 3rem 1rem;
    background-image: url(./../images/treesbackground.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.footer-top:after {
    top: 0;
    position: absolute;
    content: "";
    background: #ffffffc7;
    width: 100%;
    height: 100%;
    right: 0;
    z-index: 0;
}

.footer-top .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    color: #fff;
    font-weight: 400;
}


.locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.locations h3 {
    font-size: 22px;
    margin: 0;
}

.f-about-company {
    padding-right: 5rem;
}

.footer-top .footer-heading {
    color: var(--bs-primary) !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-top ul {
    margin: 0;
    padding: 0;
}

.footer-top ul li {
    margin-bottom: 1rem;
}

.footer-top a {
    color: var(--bs-primary) !important;
    text-decoration: none;
    font-size: 14px;
}

.footer-top li address {
    color: var(--bs-primary) !important;
    text-decoration: none;
    font-size: 14px;
}

.f-about-company {
    line-height: 1.8;
}

.footer-bottom {
    /* background-color: var(--bs-secondary); */
    padding: 1rem;
    position: relative;
    position: relative;
    background-color: #377700;
}

.footer-bottom {
    color: #fff;
}

.footer-bottom:before {
    position: absolute;
    /* content: ""; */
    top: -168px;
    left: 0;
    width: 100%;
    height: 170px;
    background: url(../images/grass.jpg);
    background-position: center;
}

.payment-logo {
    position: absolute;
    right: 0;
}

.hero-inner {
    height: 350px;
    padding-top: 14rem;
    padding-bottom: 3rem;
    background: url(../images/contact.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}


/* ----------- Services Pages --------- */

.dropdown-menu {
    padding: 0;
}

.dropdown-menu li.active a {
    color: #1e2125;
    background-color: #e9ecef;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: var(--bs-white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #5CFF75;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.BannerLogo img {
    width: 300px;
    margin-bottom: 20px;
}

.about-img-group.ApPic figure:nth-child(2) {
    width: 80%;
    padding-bottom: 0px;
}

.about-img-group.ApPic figure:nth-child(1) {
    margin-bottom: 90px;
}

.about-img-group.ApPic figure:nth-child(1) img {
    margin-right: -40px;
    position: relative;
}

.CommercialPicBox img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 3px 5px 10px #ccc;
}

.CommercialPicBox img:nth-child(2) {
    width: 60%;
    margin: -60px 0 0 0;
    position: relative;
    left: 18%;
}

.CommercialPicBox.Drywall img:nth-child(2) {
    width: 40%;
    margin: -100px 0 0 0;
    position: relative;
    left: 55%;
}

.CommercialTxt .accordion-button {
    font-size: 20px;
    display: block;
    background: #fdfdfd;
}

.CommercialTxt .accordion-button small {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #004c8f;
}

.CommercialTxt .accordion-button:focus {
    box-shadow: none;
}

.CommercialTxt .accordion-button:not(.collapsed) {
    color: #004c8f;
    background-color: #f1f2f3;
}

.CommercialTxt .accordion-button::after {
    position: absolute;
    right: 10px;
}

.ServiceList li {
    position: relative;
    padding: 0 0 5px 25px;
}

.ServiceList li::before {
    position: absolute;
    content: '\F633';
    left: 0px;
    font-family: bootstrap-icons;
}

#InteriorWrapper .h3 {
    color: var(--bs-primary);
    font-weight: 500;
}

.BrooklynPic img {
    width: 100%;
}


/* ----------- Contact us -------- */

#ContactWrapper {
    margin-top: 210px;
}

.TouchBox {
    box-shadow: 0 0 10px #eceef0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 100%;
    width: 100%;
}

.TouchBox:hover {
    box-shadow: 0 0 10px #e3e5e7;
}

.TouchBox .bi {
    width: 50px;
    display: block;
    margin: 0 auto;
    margin-bottom: 0px;
    font-size: 30px;
    color: #0071bc;
    box-shadow: 3px 3px 5px #d2d8dd;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 20px;
    transition: all 0.8s;
    padding-top: 10px;
}

.TouchBox a,
.TouchBox span {
    font-size: 20px;
    color: var(--bs-secondary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.8s;
    height: 65px;
}

.TouchBox:hover span,
.TouchBox:hover a {
    color: #0071bc;
}

.TouchBox:hover .bi {
    color: var(--bs-secondary);
}

.TouchBox p {
    font-size: 14px;
}

sup {
    color: red;
}

.ContactForm {
    /* width: 60%; */
    padding: 30px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid var(--bs-secondary);
    border-left: 5px solid var(--bs-secondary);
}

.ChooseFile p,
.ContactForm label {
    font-size: 16px;
    padding-bottom: 5px;
    font-weight: 400;
    color: var(--bs-primary);
}

.ContactForm input {
    height: 50px;
    font-weight: 300;
    border-radius: 6px;
    margin-bottom: 15px;
}

.ContactForm textarea {
    font-weight: 300;
    border-radius: 6px;
    margin-bottom: 15px;
}

.ContactForm input:focus,
.ContactForm textarea:focus {
    box-shadow: none;
    border-color: var(--bs-secondary);
}

.ContactForm textarea::placeholder,
.ContactForm input::placeholder {
    color: #ccc;
}

.CustCheckbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.CustCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.CustCheckbox .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.CustCheckbox:hover input~.checkmark {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.CustCheckbox input:checked~.checkmark {
    background-color: var(--bs-secondary);
}

.CustCheckbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.CustCheckbox input:checked~.checkmark:after {
    display: block;
}

.CustCheckbox .checkmark:after {
    left: 6px;
    top: 0;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ChoosenBox {
    border: 1px dashed var(--bs-secondary);
    border-radius: 5px;
}

.ChooseFile label {
    color: var(--bs-secondary);
    padding: 10px;
    cursor: pointer;
    margin-top: 0;
    width: 100%;
}

#file-chosen {
    margin-left: 0.3rem;
    font-family: sans-serif;
}

.MapBox {
    margin-bottom: -100px;
}

#VideoModal .modal-body {
    height: 85vh;
}

.ApPicBox img {
    border-radius: 20px;
}


/*----------- Gallery --------------*/

.Titlecenter span {
    color: #231f20;
}

.GalleryBoxs,
.GalleryBoxs * {
    box-sizing: border-box;
    margin: 0;
}

.GalleryBoxs {
    display: inline-block;
    width: 31%;
    border: 5px solid transparent;
    border-bottom: none;
    background: #fff;
    padding: 0px;
    height: auto;
    background-clip: padding-box;
    position: relative;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    border-radius: 15px;
    margin: 1%;
    transition: all .8s;
}

.GalleryBoxs>span {
    display: block;
    cursor: pointer;
    height: 0;
    padding-bottom: 80%;
    background-size: cover;
    background-position: center center;
    border: 1px solid #cccc;
    transition: all .8s;
}

.GalleryBoxs:hover>span {
    transform: scale(1.2);
}

.GalleryBoxs i {
    color: #fff;
    font-size: 40px;
}

.lcl_fade_oc.lcl_pre_show #lcl_overlay,
.lcl_fade_oc.lcl_pre_show #lcl_window,
.lcl_fade_oc.lcl_is_closing #lcl_overlay,
.lcl_fade_oc.lcl_is_closing #lcl_window {
    opacity: 0 !important;
}

.lcl_fade_oc.lcl_is_closing #lcl_overlay {
    -webkit-transition-delay: .15s !important;
    transition-delay: .15s !important;
}

.HoverBox {
    opacity: 0;
    transition: all ease-in-out 0.3s;
    /* background: rgba(66, 66, 65, 0.6); */
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    bottom: 0;
    padding: 15px;
    padding-top: 18%;
    text-align: center;
}

.GalleryBoxs:hover .HoverBox {
    opacity: 1;
}

.GalleryBoxs:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-140%, -50%);
    background: rgba(66, 66, 65, 0.6);
    opacity: 0.8;
    border-radius: 50%;
    transition: .8s
}

.GalleryBoxs:hover:after {
    transform: translate(-50%, -50%)
}

.GalleryBoxs p,
.GalleryBoxs i {
    position: absolute;
    z-index: 2;
    top: 55%;
    left: 50%;
    transform: translate(-2000px, -50%);
    color: #fff;
    transition: .8s;
    transition-timing-function: ease-in
}

.GalleryBoxs p {
    top: 40%;
}

.GalleryBoxs:hover p,
.GalleryBoxs:hover i {
    transform: translate(-50%, -50%);
    transition-timing-function: ease
}

.HoverBox p {
    color: #fff;
    font-size: 20px;
}

.HoverBox img {
    margin-bottom: 20px;
}

#lcl_overlay {
    background-color: #000 !important;
    opacity: 0.8;
}

.lcl_tn_image.lcl_sel_thumb {
    border: 4px solid #fcfcfc;
}

#lcl_elem_wrap {
    border-radius: 10px;
}

/* Details page css start */
.detail-title {
    font-family: var(--font-crimson);
    color: #000;
    font-size: 5em;
    font-weight: 600;
    font-style: italic;
}

.detials-grid .col {
    width: 20%;
    max-height: 370px;
}

.detials-grid .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-hanging-grid .col {
    max-height: max-content;
}

.details-sec-content p {
    color: #000;
    font-size: 16px;
    /* font-weight: 600; */
}

.detail-sub-title {
    font-family: var(--font-crimson);
    font-style: italic;
    color: #1c5357;
    font-size: 28px;
    letter-spacing: 1.5px;
}

.details-sec-content ul li {
    list-style: disc;
    color: #000;
    font-size: 16px;
    /* font-weight: 600; */
}

.free-pw-btn {
    padding: 15px;
    text-align: center;
    display: block;
    background: #1a5357;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
}

.img-compare-slider-sec {
    background-color: #1a5357;
}

.img-compare-slider-sec .detail-title {
    font-size: 4em;
    line-height: 1.2;
}

.wrapper {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}

.wrapper .images {
    height: 100%;
    width: 100%;
    display: flex;
}

.wrapper .images .img-one {
    height: 100%;
    width: 100%;
    background: url(../images/after-1.jpg) no-repeat;
    /* background: url("images/car.jpg") no-repeat; */
}

.wrapper .images .img-one .after-tag {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: #1c5357;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    border: 2px solid;
    letter-spacing: 0.2px;
    font-family: 'Poppins', sans-serif;
}

.wrapper .images .img-two {
    position: absolute;
    height: 100%;
    width: 50%;
    /* filter: blur(5px); */
    background: url(../images/before-1.jpg) no-repeat;
    /* background: url("images/car.png") no-repeat; */
    overflow: hidden;
}

.wrapper .images .img-two .before-tag {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: #1c5357;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    border: 2px solid;
    letter-spacing: 0.2px;
    font-family: 'Poppins', sans-serif;
}

.wrapper .images .img-3 {
    height: 100%;
    width: 100%;
    background: url(../images/after-2.jpg) no-repeat !important;
    /* background: url("images/car.jpg") no-repeat; */
}

.wrapper .images .img-4 {
    position: absolute;
    height: 100%;
    width: 50%;
    /* filter: blur(5px); */
    background: url(../images/before-2.jpg) no-repeat !important;
    /* background: url("images/car.png") no-repeat; */
}

.wrapper .images .img-5 {
    height: 100%;
    width: 100%;
    background: url(../images/after-3.jpeg) no-repeat !important;
    /* background: url("images/car.jpg") no-repeat; */
}

.wrapper .images .img-6 {
    position: absolute;
    height: 100%;
    width: 50%;
    /* filter: blur(5px); */
    background: url(../images/before-3.jpeg) no-repeat !important;
    /* background: url("images/car.png") no-repeat; */
}

.wrapper .slider {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.wrapper .slider input {
    width: 100%;
    height: 100%;
    outline: none;
    background: none;
    -webkit-appearance: none;
}

.slider input::-webkit-slider-thumb {
    height: 100%;
    width: 3px;
    background: none;
    -webkit-appearance: none;
    cursor: col-resize;
}

.slider .drag-line {
    width: 3px;
    height: 100%;
    position: absolute;
    left: 49.85%;
    pointer-events: none;
}

.slider .drag-line::before,
.slider .drag-line::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 222px;
    background: #fff;
}

.slider .drag-line::before {
    top: 0;
}

.slider .drag-line::after {
    bottom: 0;
}

.slider .drag-line span {
    height: 42px;
    width: 42px;
    border: 3px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.slider .drag-line span::before,
.slider .drag-line span::after {
    position: absolute;
    content: "";
    top: 50%;
    border: 10px solid transparent;
    border-bottom-width: 0px;
    border-right-width: 0px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.slider .drag-line span::before {
    left: 40%;
    border-left-color: #fff;
}

.slider .drag-line span::after {
    left: 60%;
    border-top-color: #fff;
}

/* Details page css over */

/* Wallpappering page css start */
.wallpaper-slider {
    max-height: 650px;
    overflow: hidden;
}

.wallpaper-slider .owl-nav {
    display: flex;
    position: absolute;
    top: 50%;
    width: 100%;
    justify-content: space-between;
    font-size: 32px;
    transform: translateY(-50%);
    padding: 0 15px;
    color: rgba(238, 238, 238, 0.9);
}

.wallpappering-box {
    background-color: #F9F6EF;
    border: 1px solid #ede8e2;
    text-align: center;
    padding: 48px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.wallpappering-box .icon {
    background-color: #1C3F95;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: #fff;
    border-radius: 2px;
}

.wallpappering-box h3 {
    margin: 0;
    color: #04192A;
    font-size: 24px;
    font-weight: 600;
}

.wallpappering-box p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.wallpappering-box-white .icon {
    background-color: #EDE8E2;
    color: #1C3F95;
    border-radius: 50px;
}

/* Wallpappering page css over */

::placeholder {
    font-size: 14px;
}

.hero-title {
    font-size: 60px;
    color: #4c6527;
}

.request-form {
    font-family: var(--font-family-futura);
}

.request-form label,
.request-form input {
    font-size: 20px;
    color: var(--bs-primary);
}

.footer-logo img {
    width: 80%;
}

.firewood-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.6fr;
    gap: 20px;
}

.firewood-gallery .gallery-item {
    height: 100%;
    width: 100%;
    min-height: 360px;
    margin: 0;
    border: 0;
    border-radius: 0;
}

.firewood-gallery .gallery-item span {
    height: 100%;
}

.firewood-gallery .gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* -------- Responsive css -------- */

@media (max-width: 1399.98px) {
    header .nav-link {
        font-size: 14px !important;
        margin-left: 0px !important;
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .hero-content small {
        font-size: 20px;
    }

    .hero-content .display-4 {
        font-size: 60px;
    }

    .hero-content p.lead {
        font-size: 18px;
    }

    .about-container {
        background-size: 30%;
    }

    .block-header small {
        font-size: 18px;
    }

    .block-header h1,
    .block-header .h1 {
        font-size: 36px;
    }

    .about-img-group::after {
        left: 23%;
        top: 23%;
    }

    .product-content .h2 {
        font-size: 38px;
    }

    .product-content .h5 {
        font-size: 20px;
    }

    .contact_field {
        padding-right: 220px;
    }
}

@media (max-width: 1280px) {
    .navbar-nav {
        column-gap: 20px;
    }
}


@media (max-width: 1199.98px) {
    header .nav-link {
        /* padding-left: 0rem !important;
        padding-right: 0rem !important;
        margin-left: 0; */
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
        font-size: 12px !important;
        margin: 0;
    }

    .hero-content .display-4 {
        font-size: 52px;
    }

    .hero-content small {
        font-size: 18px;
    }

    .block-header small {
        font-size: 16px;
    }

    .block-header h1,
    .block-header .h1 {
        font-size: 25px;
    }

    .cus-ps {
        padding-left: 30px;
    }

    .cus-pe {
        padding-right: 30px;
    }

    .product-content .h2 {
        font-size: 32px;
    }

    .product-content .h5 {
        font-size: 18px;
    }

    .contact_field {
        padding: 60px 240px 90px 30px;
    }

    .ourwork-video figure.small-img {
        bottom: -200px;
    }

    #InteriorWrapper .h3 {
        font-size: 22px;
    }

    .service-title:before {
        content: unset;
    }

    .service-title:after {
        content: unset;
    }

    .get-in-touch-title:before {
        content: unset;
    }

    .get-in-touch-title:after {
        content: unset;
    }

    .footer-top h1 {
        font-size: 30px;
    }

    .payment-logo {
        position: static;
        margin-left: 10px;
    }

    .footer-top {
        background-position: bottom;
    }

}

@media (max-width: 991.98px) {
    header .nav-link {
        /* padding-left: 0rem !important;
        padding-right: 0rem !important;
        margin-left: 0; */
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
        font-size: 12px;
        margin: 0;
    }

    .navbar-collapse.collapse.show {
        padding-bottom: 1rem;
    }

    header.header-outer .right-navbar li {
        margin-left: 0;
        margin-right: 1rem;
    }

    body {
        font-size: 14px;
    }

    .block-header h1,
    .block-header .h1 {
        font-size: 26px;
    }

    .product-short-content .product-s-title {
        font-size: 20px;
    }

    .product-short-content .product-s-sub-title {
        font-size: 16px;
    }

    .product-short-content .product-s-no {
        font-size: 28px;
    }

    .product-content {
        padding-right: 0;
    }

    .product-content .h2 {
        font-size: 26px;
    }

    .product-content .h5 {
        font-size: 16px;
    }

    .product-content .subheading {
        font-size: 16px;
    }

    #product-section .flex-row-reverse .product-content {
        padding-left: 0;
    }

    figure.product-img {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    figure.product-img::after {
        width: 150px;
        height: 150px;
        left: 0;
    }

    figure.product-img img {
        border-radius: 20px;
    }

    #product-section .flex-row-reverse figure.product-img {
        padding-left: 0;
        padding-right: 20px;
    }

    #product-section .flex-row-reverse figure.product-img::after {
        right: 0;
    }

    .product-content {
        padding-bottom: 0;
    }

    .news-letter-form {
        left: 80px;
        right: 80px;
    }

    .footer-about-company {
        margin-bottom: 1.5rem;
    }

    .f-about-company {
        padding-right: 0;
    }

    .hero-container {
        height: auto;
        padding: 6rem 1rem 6rem;
        background-position: center !important;
        margin-bottom: 15px;
    }

    #mainNavbar {
        padding: 1rem;
        border-radius: 20px;
        background: var(--bs-primary);
    }

    #mainNavbar .nav-link {
        color: #fff;
        font-weight: 600;
    }

    .navbar-toggler {
        background-color: var(--bs-primary);
        color: #fff;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    #detail .product-images {
        margin-bottom: 1.5rem;
    }

    #product-detail-section .product-content {
        padding-left: 0;
    }

    .CommercialTxt .accordion-button {
        font-size: 18px;
    }

    .TouchBox {
        height: auto;
        margin-bottom: 25px;
    }

    .right-navbar {
        margin-top: 15px;
    }

    .cus-mb {
        margin-bottom: 40px;
    }

    .ourwork-video figure.small-img {
        bottom: -30px;
    }

    .ourwork-video figure.large-img img {
        margin-top: 0;
    }

    .GalleryBoxs {
        width: 30%;
    }

    .about-img-group img {
        max-width: 100%;
    }

    .locations h3 {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }

    .about-container {
        background: none;
    }

    .about-content {
        margin-top: 2rem;
    }

    .about-img-group img {
        max-width: 100%;
    }

    .service-title:before {
        content: unset;
    }

    .service-title:after {
        content: unset;
    }

    .get-in-touch-title:before {
        content: unset;
    }

    .get-in-touch-title:after {
        content: unset;
    }

    .cus-ps {
        padding-left: 1rem;
    }

    .cus-pe {
        padding-right: 1rem;
    }

    .cus-mt {
        margin-top: 0px;
    }

    .product-content {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--bs-primary);
    }

    .product-cus-row {
        margin-bottom: 1rem;
    }

    figure.product-img {
        padding-bottom: 40px;
    }

    figure.product-img::after {
        bottom: 20px;
    }

    .newsletter-outer {
        border-radius: 20px;
    }

    .news-letter-form {
        left: 1rem;
        right: 1rem;
    }

    .hero-content .display-4 {
        font-size: 30px;
    }

    .contact_field {
        padding: 30px
    }

    .contact_info_sec {
        position: relative;
        border-radius: 20px;
        width: 100%;
        height: auto;
    }

    .info_single {
        margin-bottom: 0;
    }

    .thumb-nav img {
        height: 80px;
        height: 40px;
    }

    #related-product .button-block .btn {
        margin-bottom: 10px;
        display: block;
    }

    .CommercialTxt .accordion-button small {
        font-size: 15px;
    }

    .CommercialPicBox {
        margin-top: 15px;
    }

    header .navbar-brand img {
        max-width: 100px;
    }

    .right-navbar {
        flex-direction: column;
        align-items: start !important;
        gap: 15px;
    }

    .circle-img-group {
        left: 60%;
        transform: translateX(-50%);
    }

    .cta-btn-grp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn-grp .btn-customize {
        width: max-content;
        margin: 0 !important;
        min-width: 180px;
    }

    .GalleryBoxs {
        width: 47%;
    }

    .footer-top {
        padding: 1rem;
    }

    .footer-top a {
        font-size: 14px;
    }

    .footer-bottom:before {
        top: -78px;
        height: 80px;
    }

    .detail-title {
        font-size: 2em;
    }

    .detials-grid .col {
        width: 100%;
        flex: 1 0 auto;
    }

    .img-compare-slider-sec .detail-title {
        font-size: 2em;
    }

    .payment-logo {
        width: 100%;
    }

    .hero-title {
        font-size: 30px;
    }

    .footer-logo img {
        width: 100%;
    }

    .firewood-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    #product-short-des figure.rounded img {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .product-short-content {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--bs-primary);
    }

    .about-img-group figure:nth-child(2) {
        margin-top: -30px;
    }

    #related-product .button-block .btn {
        display: inline-block;
    }

    .wallpaper-slider {
        max-height: 350px;
        overflow: hidden;
    }
}