/* FONT IMPORT */


/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/* Local Font */

:root {
    --white: #fff;
    --black: #000;
    --primary: #779a9b;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "Oswald", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 1.25rem 1.67em;
    line-height: normal;
    outline: 1px solid var(--primary);
    outline-offset: 5px;
    transition: 0.5s ease;
}

.themeBtn:hover {
    background: var(--black);
    color: var(--white);
    outline-offset: 0;
    outline-color: var(--black);
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    transition: 0.3s ease-in-out;
    background: rgb(0 0 0 / 50%);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 4rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}


/* navbar dropdown start */

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}


/* navbar dropdown end */


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1120px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    width: fit-content;
    left: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    top: 50%;
}

.homeSlider .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 20%;
    background: var(--white);
    border-radius: 3px;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
    opacity: 100%;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.homeSlider .slide-inner:before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, black, transparent);
    opacity: 85%;
    inset: 0;
}

.slideOne {
    margin-top: 6rem;
}

.smallHeading {
    color: var(--primary);
    font-size: 1.375rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.smallHeading small {
    background: var(--primary);
    width: 200px;
    height: 5px;
}

.mainHeading {
    text-transform: uppercase;
    font-size: 5rem;
    line-height: 1;
    color: #2d3146;
}

.slideOne p {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.77;
    margin: 1rem 0 1.5rem 0;
    width: 90%;
}


/* !MAIN HERO SLIDER CSS */


/* About Sec Css Start */

.aboutSec {
    padding: 0 0 8.75rem 0;
    margin-top: -3rem;
}

.aboutContent p span {
    font-size: 1.25rem;
    color: #616476;
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

.aboutContent p {
    color: #555555;
    line-height: 1.75;
    width: 90%;
}

.aboutContent .themeBtn {
    margin-top: 1rem;
}


/* About Sec Css End */


/* Service Sec Css Start */

.serviceSec {
    background: #f0f0ef;
    padding: 9.375rem 0 10.625rem 0;
    clip-path: polygon(50% 0%, 100% 15%, 100% 60%, 100% 100%, 14% 100%, 0 95%, 0 0);
}

.servicePara p {
    color: #616476;
    font-size: 1.25rem;
    font-weight: 600;
    width: 60%;
    margin: 0;
}

.serviceWraps {
    margin-top: 3.125rem;
}

.serviceContent {
    background: var(--white);
    padding: 0 2.8125rem 2.8125rem 2.8125rem;
    min-height: 533px;
}

.srvIocn {
    background: #74756f;
    width: 90px;
    height: 75px;
    display: grid;
    place-items: center;
    border: 2px solid var(--white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin: -2rem 0 1.5rem 0;
    z-index: 1;
    position: relative;
}

.serviceContent h3 {
    text-transform: uppercase;
    color: #2d3146;
    font-size: 2.0625rem;
    min-height: 70px;
}

.serviceContent p {
    color: #555555;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    min-height: 218px;
}


/* Service Sec Css End */


/* Handyman Sec Css Start */

.handymanSec {
    padding: 6.25rem 0;
}

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

.handymanWrap figure {
    overflow: hidden;
    cursor: pointer;
}

.handymanWrap figure img {
    transition: 0.5s ease;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.handymanWrap figure:hover img {
    transform: scale(1.1);
}

.handymanWrap h3 {
    color: #2d3146;
    text-transform: uppercase;
    font-size: 2.0625rem;
    margin: 1rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
}

.handymanWrap h3 img {
    transition: all 0.5s ease-in-out;
    transform: translateX(0);
}

.handymanWrap:hover h3 {
    color: var(--primary);
}

.handymanWrap:hover h3 img {
    transform: translateX(20px);
}

.handymanSec .row {
    gap: 3.75rem 0;
}

.handymanSec .themeBtn {
    margin-top: 2.5rem;
}


/* Handyman Sec Css End */


/* Footer Css Start */

footer {
    background: url(../images/footBg.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    padding: 12.5rem 0 3.125rem 0;
    z-index: 1;
}

footer:before {
    content: "";
    position: absolute;
    background: #74756f;
    opacity: 92%;
    inset: 0;
    z-index: -1;
    clip-path: polygon(54% 0, 100% 0, 100% 60%, 100% 95%, 83% 100%, 0 100%, 0 15%);
}

.quoteHeading {
    margin-bottom: 7.5rem;
}

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

.quoteHeading h2 {
    font-size: 4.375rem;
}

.quoteContent h3 {
    font-size: 2.0625rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1em;
}

.quoteContent .form-control {
    background: #72736d;
    border-radius: unset;
    border: 1px solid var(--white);
    outline: unset;
    box-shadow: unset;
    font-size: 1.25rem;
    padding-left: 1em;
    text-transform: capitalize;
}

.quoteContent .form-control::placeholder {
    color: var(--white);
}

.quoteContent input {
    height: 65px;
}

.quoteContent textarea {
    height: 250px;
}

.quoteContent .form-group {
    margin-bottom: 2rem;
}

.quoteContent .themeBtn {
    border: unset;
    padding: 1.25rem 3em;
    margin-top: 1rem;
}

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

.links li a {
    color: var(--white);
    font-size: 0.9375rem;
    text-transform: capitalize;
    font-weight: 600;
}

.links li a:hover {
    color: var(--black);
}

.footLine {
    border-top: 1px solid #eeeeed;
    border-bottom: 1px solid #eeeeed;
    padding: 3.125rem 0;
    margin-top: 7.5rem;
}

.copyRight ul {
    display: flex;
    gap: 2px;
}

.copyRight ul li a {
    background: transparent;
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--white);
    transition: 0.5s ease;
}

.copyRight ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

.copyRight p {
    text-align: right;
    margin: 0;
    color: var(--white);
    font-size: 0.875rem;
}

.copyRight {
    padding-top: 2.5rem;
}


/* Footer Css End */


/* Inner Css Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 65px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    text-align: start;
}

.innerBan {
    position: relative;
}

.about-page {
    margin: 0;
    padding: 120px 0;
}

.about-link {
    display: flex;
    gap: 2rem;
    margin-top: 35px;
    justify-content: center;
}

.about-link a {
    padding: 30px 163px;
}

.about-last {
    margin: 114px 0 31px 0;
}

.about-last p {
    font-size: 20px;
    font-weight: 600;
    color: #616476;
    line-height: 1.6;
}

.about-rigt p {
    font-size: 20px;
    font-weight: 600;
    color: #616476;
    line-height: 1.6;
    margin: 0;
}

.project-page .mainHeading {
    margin-bottom: 80px;
}

.project-page .row+.row {
    margin-top: 80px;
}

.recent-content .handy-content {
    text-align: center;
    margin-top: 30px;
}

section.recent-sec {
    padding: 120px 0;
}

section.recent-sec h2 {
    margin-bottom: 80px;
}

.recent-content .handy-content h3 {
    text-transform: uppercase;
}

.recent-sec .recent-wrapp {
    margin-bottom: 80px;
}

ul.recent-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

ul.recent-links li a {
    color: #2d3146;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 33px;
    font-family: Oswald;
    font-weight: bold;
}

ul.recent-links li a i {
    font-size: 40px;
    color: #779a9b;
}

figure.mason-Imag {
    margin: 30px 0;
}

.mason-sec {
    padding: 120px 0 40px 0;
}

.contact-page {
    padding-bottom: 120px;
}

.contact-sec h2.mainHeading {
    margin: 41px 0;
}

section.contact-sec {
    padding: 120px 0;
}

.contact-content h2 {
    font-size: 33px;
    font-weight: bold;
    font-family: "Oswald";
    margin-bottom: 34px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #2d3146;
}

.contact-form .form-group input {
    height: 70px;
    width: 100%;
    background: #72736d;
    border: unset;
    color: #fff;
    text-transform: capitalize;
    box-shadow: unset !important;
    outline: unset !important;
    border-radius: unset;
}

.form-group input::placeholder {
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
    font-family: "Inter";
}

.form-group textarea {
    width: 100%;
    height: 260px;
    background: #72736d;
    border: unset;
    box-shadow: unset !important;
    outline: unset !important;
    border-radius: unset;
    font-family: "Inter";
    line-height: 1;
}

.form-group textarea::placeholder {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 33px 27px;
    line-height: 1;
}

footer.footer-contact {
    background: unset;
    padding: 0 0 50px 0;
}

footer.footer-contact::before {
    background-color: unset;
}

footer.footer-contact ul.links li a {
    color: #2d3146;
}

.footer-contact .footLine {
    border-top: 1px solid #2d3146;
    border-bottom: 1px solid #2d3146;
    margin-top: 0;
}

footer.footer-contact .copyRight ul li a {
    background-color: #7b7b7b;
}

footer.footer-contact ul.links li a:hover {
    color: #779a9b;
}

ul.footer-Link li:hover {
    background-color: #779a9b;
}

footer.footer-contact .copyRight ul li a:hover {
    background-color: #779a9b;
    transition: 0.8s ease;
}

.footer-contact .copyRight p {
    color: #2d3146;
}

ul.services-links li a {
    font-size: 33px;
    font-weight: bold;
    font-family: "Oswald";
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3146;
}

ul.services-links li a i {
    color: #779a9b;
}

.services-content p {
    font-size: 16px;
    font-weight: 400;
    color: #555554;
    margin: 0;
}


/* .services-btn {
    display: flex;
    justify-content: end;
    margin: 12px 0;
} */

.services-sec2 ul.services-links li a i {
    color: #ffffff;
}

figure.services-img {
    padding: 106px 0;
}

.services-content {
    margin-bottom: 106px;
}

section.main {
    padding: 5rem 0 50px 0;
}

.project-page {
    padding: 120px 0;
}


/* Inner Css End */

body.contactus-page .footerbefore {
    display: none;
}

section.main .handymanHeading {
    margin: 120px 0 80px;
}

ul.services-links li a {
    font-size: 33px;
    font-weight: bold;
    font-family: "Oswald";
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: #2d3146;
    margin: 20px 0;
}

ul.services-links li a i {
    color: #779a9b;
}

ul.services-link li a {
    font-size: 33px;
    font-weight: bold;
    font-family: "Oswald";
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: #2d3146;
    margin: 20px 0;
}

ul.services-link li a i {
    color: #779a9b;
}

.services-content p {
    font-size: 16px;
    font-weight: 400;
    color: #555554;
    margin: 0;
    width: 86%;
}

.services-btn {
    /* display: flex;
    justify-content: end; */
    margin: 12px 0;
}

.services-sec {
    padding: 0 178px;
}

.services {
    padding: 0 178px;
}


/* .services-main::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 85%;
    background: url(../images/servicesback1.png) center/cover no-repeat;
} */


/* .services-main-sec::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 85%;
    background: url(../images/servicesback2.png) center/cover no-repeat;
} */

.services-wrapp {
    padding: 50px 0;
}

.services-content {
    margin-bottom: 150px;
}

.services .services-content {
    margin-left: 6rem;
}

.services .services-content p {
    width: 96%;
    margin-bottom: 1rem;
}

.services.serviceend {
    margin-bottom: 7rem;
}

.serviceSlider :is(.swiper-button-prev,.swiper-button-next) {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    margin: 0;
}

.serviceSlider :is(.swiper-button-prev,.swiper-button-next)::after {
    font-size: 1.5rem;
}