* {
    margin: 0;
    padding: 0;
}

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

:root {
    --theme-main: #369806;
    --theme-secondary: #ffc107;
}

body {
    overflow-x: hidden;
    padding: 0 !important;
    margin: 0 !important;
    font-family: "Nunito", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Laila", serif !important;
}

ul li {
    list-style-type: none;
}

ul {
    margin-bottom: 0 !important;
}

ol,
ul {
    padding-left: 0 !important;
}

a {
    text-decoration: none !important;
	font-family: "Nunito", sans-serif !important;
}
a .cretive-button-text {
	font-family: "Nunito", sans-serif !important;
}
a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

p {
/*     color: #4d4d4d; */
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    position: relative;
	font-family: "Nunito", sans-serif !important;
}

img {
    max-width: 100%;
}


button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.section-title {
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.section-title.text-center p {
    width: 90%;
    margin: auto;
}

.primary-btn {
    background: var(--theme-secondary);
    border-radius: 5px;
    font-size: 18px;
    color: #000;
    display: block;
    padding: 20px 25px;
    font-weight: 700;
    max-width: max-content;
    text-align: center;
    text-transform: capitalize;
    border: none;
    transition: .4s;
}

.primary-btn:hover {
    color: #fff;
    background: var(--theme-main);
}

.primary-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    color: #303030;
    position: relative;
    text-transform: capitalize;
}

.sub-title {
    font-size: 14px;
    font-weight: 600;
    color: #303030;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.owl-dot.active span {
    background: var(--theme-main) !important;
}

.owl-dot span {
    border: 1px solid var(--theme-main);
}

.row {
    row-gap: 30px;
    position: relative;
}

/*=================Header Start=============*/
/* ----- Smooth Sticky Navbar Start ---------- */
header.scrolled {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
}

header.scrolled .top-header {
    display: none;
}

header.scrolled .navbar-hover {
    padding: 5px 20px 5px 20px !important;
}

/* ----- Smooth Sticky Navbar End ---------- */

.top-header .row {
    align-items: center;
}

.top-header-call a {
    color: #000;
    transition: .5s;
    font-weight: 600;
    font-size: 15px;
}

.top-header-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header-call-icon img {
    max-width: 50px;
}

.top-header-call-info p {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-main);
	margin-bottom: 0;
}

.top-header-call-info h5 {
    font-size: 25px;
}

.top-header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.wrapper .icons {
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    padding: 15px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    top: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icons:hover .tooltip {
    top: 110%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icons:hover span,
.wrapper .icons:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .icons:hover i {
    color: #fff;
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #000000;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
    background: #0077B5;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #E1306C;
}

.wrapper .pinterest:hover,
.wrapper .pinterest:hover .tooltip,
.wrapper .pinterest:hover .tooltip::before {
    background: #E60023;
}

.wrapper .gmb:hover,
.wrapper .gmb:hover .tooltip,
.wrapper .gmb:hover .tooltip::before {
    background: #FBBC05;
}

.navbar-hover {
    background: var(--theme-main);
    padding: 20px 20px 15px 20px !important;
    z-index: 1;
    /* box-shadow: rgb(255 255 255 / 81%) 0px 10px 15px 0px; */
}

#navbarHover {
    justify-content: center;
}

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

.navbar-hover li.nav-item a::before {
    content: '';
    position: absolute;
    background: #bbbbbb;
    height: 60%;
    width: 1px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-hover li.nav-item:last-child a::before {
    display: none;
}

header.scrolled .navbar-hover .primary-btn {
    padding: 10px 20px 5px !important;
    font-size: 15px;
}

.navbar-hover .navbar-brand img {
    max-width: 140px;
}

header.scrolled .navbar-hover .navbar-brand img {
    max-width: 100px;
}

.navbar-hover .nav-link {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 0;
    padding-top: 0;
}

.navbar-hover .dropdown-item {
    color: #141414;
    font-weight: 600;
    font-size: 18px;
}

.navbar-hover .dropdown-item::before {
    display: none;
}

.navbar-hover .dropdown-menu .dropdown-item:hover,
.navbar-hover .dropdown-menu .dropdown-item.active {
    color: #fff;
    background: var(--theme-main);
}

.navbar-nav {
    column-gap: 30px;
}

.navbar-hover .nav-link:hover,
.navbar-hover .nav-link:focus {
    color: var(--theme-secondary);
}

/* <!-- ------------ Mobile Menu Start ---------- --> */
.mobile-menu-icon {
    background-color: var(--theme-main) !important;
}

.navbar-toggler-icon {
    background-image: url('../images/menu.png') !important;
}

.mobile-menu-icon {
    background-color: var(--theme-main) !important;
}

.mobile-menu .nav-item a {
    color: #000;
    max-width: max-content;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-toggler-icon {
    background-image: url('../images/menu.png') !important;
}

.website-logo {
    width: 20%;
    display: block;
}

.website-logo img {
    display: block;
    width: 100%;
}

.top-header {
    background: #fff;
    position: relative;
}

/* <!-- ------------ Mobile Menu End ---------- --> */
/*=================Header End =============*/
/*================= Body Section Start=============*/
/* ------ Banner Section --------- */

.newhomebanner {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.newhomebannerSlider .slide .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #0000009f;
    z-index: -1;
}

.newhomebanner .item.small-banner {
    visibility: hidden !important;
}

.newhomebannerSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}

.newhomebannerSlider .slide .item {
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: inline-block;
    transition: .5s;
}

.newhomebanner .item .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    text-align: center;
    color: #eee;
    transform: translate(-50%, -50%);
    display: none;
}

.newhomebanner .content .banner-title {
    color: #fff;
    font-size: 60px;
    line-height: 80px;
    font-weight: 900;
    text-transform: capitalize;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    font-family: "Laila", serif !important;
}

.newhomebanner .content a {
    background: var(--theme-secondary);
    border-radius: 5px;
    font-size: 18px;
    color: #000;
    display: block;
    padding: 20px 25px;
    font-weight: 700;
    max-width: max-content;
    text-align: center;
    position: relative;
    border: none;
    transition: .4s;
    opacity: 0;
    animation: animate 1s ease-in-out .6s 1 forwards;
}

.newhomebanner .content a:hover {
    color: #fff !important;
    background: var(--theme-main);
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.newhomebanner .button {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newhomebanner .button button {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    border: 2px solid #fff;
    cursor: pointer;
    margin: 0 5px;
    transition: .4s;
    background: transparent;
    color: #fff;
}

.newhomebanner .button button:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-secondary);
    color: #000;
}

.newhomebanner .banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.newhomebanner .content .description {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 40px;
    color: #fff;
    opacity: 0;
    animation: animate 1s ease-in-out .3s 1 forwards;
}

.description .list-box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid #FFC107;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    color: #fff;
}

.description .list-box li {
    padding-left: 20px;
    font-weight: 600;
    width: 30%;
}

.description .list-box li::before {
    color: var(--theme-secondary);
}

/* ---------- Banner End ------------- */
/* <!-- ------- About Section Start ---- --> */

.about {
    position: relative;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h5 {
    color: var(--theme-main);
    font-weight: 600;
}

.list-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-box li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
}

.list-box li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.about .primary-btn {
    margin-top: 40px;
}

.about-right {
    width: 95%;
    margin-left: auto;
    position: relative;
}

.enquiry-form {
    background: #e0e0e0;
    box-shadow: 23px 23px 46px #b3b3b3,-23px -23px 46px #ffffff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.enquiry-form .enquiry-form-container {
    padding: 0 50px 60px 50px;
}

.enquiry-form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 30px 10px 20px 10px;
    background: var(--theme-secondary);
    margin-bottom: 40px !important;
}
	.enquiry-form br {
		display: none !important;
	}
.enquiry-form label {
    color: #000;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}

.enquiry-form .row {
    row-gap: normal;
}
.enquiry-form p {
	width: 100%;
}
.enquiry-form .primary-btn {
    margin: 30px auto 0 auto;
    padding: 20px 100px !important;
}

.enquiry-form input.form-control,
.enquiry-form .form-select {
    height: 55px !important;
}

.enquiry-form textarea {
    height: 100px !important;
    padding-left: 20px !important;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    padding-left: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.enquiry-form .form-control::placeholder,   
.enquiry-form .form-control[type="text"],
.enquiry-form .form-control[type="email"],
.enquiry-form select,
.enquiry-form .form-control {
    border-color: #30303000 !important;
}

.enquiry-form .form-control:focus,
.enquiry-form select:focus {
    border-color: var(--theme-main) !important;
    box-shadow: 0 0 25px #37980671 !important;
}

.enquiry-form-col {
    position: relative;
}

.enquiry-form-col i {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    left: 25px;
    color: var(--theme-main);
	font-size: 16px;
}

/* <!-- ------- About Section Start ---- --> */
/* <!-- ------- Featured Section Start ---- --> */
.featured {
    position: relative;
    background: url(../images/featured-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 100px;
}

.featured::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #379806e0;
}

.featured-content {
    position: relative;
    width: 80%;
    margin: auto;
}

.featured-section-shape1 {
    position: absolute;
    left: -5%;
    top: 60%;
    height: 75px;
    width: 75px;
}

.featured-section-shape2 {
    position: absolute;
    right: -5%;
    top: 0;
    height: 75px;
    width: 75px;
}

.featured-section-shape3 {
    position: absolute;
    left: 0;
    top: 0;
    height: 25px;
    width: 25px;
}

.featured-section-shape4 {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 25px;
    width: 25px;
}

.featured-box {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.featured-box svg {
    height: 60px;
    width: 60px;
    margin: auto;
    fill: #fff;
    transition: .8s;
}

.featured-box svg path,
.featured-box svg circle {
    fill: #fff;
}

.featured-box .count {
    color: #fff;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    transition: all 0.3s ease-in-out;
}

.featured-box p {
    color: #fff !important;
    text-transform: capitalize;
}

/* <!-- ------- Featured Section End ---- --> */
/* <!-- ------- services Section Start ---- --> */
.services-box {
    background: #fff;
    position: relative;
    transition: .5s;
    overflow: hidden;
    box-shadow: 0 0 25px rgb(0 0 0 / 10%);
    border-radius: 8px;
}

.services-box-content {
    position: relative;
}

.services-box .primary-btn {
    padding: 15px 20px !important;
    transition: .5s;
    margin: 30px auto 0 auto;
}

.services-box-img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 2px;
}

.services-box-img img {
    object-fit: cover;
    transition: .5s;
}

.services-box-img img {
    width: 100%;
    height: 100%;
    margin-left: auto;
}

.services-box-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-image: url(../images/service-bottom-img.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.services-box-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: #37980644;
    transition: .6s;
}

.services-box:hover .services-box-img::before {
    height: 100%;
}

.services-box:hover .services-title {
    color: var(--theme-main);
}

.services-content .services-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.7em;
    letter-spacing: 0.4px;
    color: inherit;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-align: center;
    font-family: "Laila", serif !important;
}

.services-description {
    text-align: center;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.services-content {
    position: relative;
    padding: 0px 20px 35px 20px;
}

/* <!-- ------- services Section End ---- --> */
/* <!-- ------- why-choose Section End ---- --> */
.why-choose .row {
    align-items: center;
}

.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
}

.why-box {
    width: 32%;
    position: relative;
}

.why-img-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
}

.why-img-heading h2 {
    font-size: 24px;
    text-transform: capitalize;
}

.why-img-heading img {
    width: 50px;
}

/* <!-- ------- why-choose Section End ---- --> */
/* <!-- ------- what-get Section End ---- --> */
.what-get {
    position: relative;
    background: #f2f2f2;
}

.what-get .why-box {
    text-align: center;
    width: 32%;
    transition: .4s;
}

.why-box-content {
    position: relative;
    z-index: 1;
}

.what-get .why-img-heading h2 {
    color: inherit;
    padding-bottom: 10px;
    padding-top: 15px;
}

.what-get .why-img-heading img {
    background-color: #ffffff33;
    padding: 15px;
    height: 100px;
    width: 100px;
    border-radius: 4px;
}

.what-get .why-img-heading {
    flex-direction: column;
}

/* <!-- ------- what-get Section End ---- --> */
/* <!-- ------- Before After Gallery Section Start ---- --> */
.before-after-gallery .gallery {
    background: white;
}

.before-after-gallery .gallery-cell {
    width: 70%;
    height: 600px;
    background-position: center;
    background-size: cover;
    margin: 0 20px;
}

.before-after-gallery .flickity-page-dots {
    bottom: -50px;
}

.before-after-gallery .flickity-page-dots .dot {
    background-color: #D9D9D9;
    opacity: 1;
    height: 15px;
    width: 15px;
}

.before-after-gallery .dot.is-selected {
    background-color: black;
}

.before-after-gallery .slider-buttons {
    text-align: center;
    margin-top: 20px;
}

.before-after-gallery .slider-buttons button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
}

.before-after-gallery .slider-buttons button:hover {
    background-color: #444;
}

/* -- Before After Slide Section */
.ba-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #000;
    transition: .5s;
    z-index: 999;
}

.ba-container img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
    z-index: 5;
}

.ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    cursor: ew-resize;
    z-index: 10;
    left: 50%;
    transition: background 0.3s;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 3px solid #333;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.ba-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 20px;
    background: #000000d9;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 15;
    border-radius: 4px;
    transition: .5s;
}

.ba-label.before {
    left: -15%;
}

.ba-label.after {
    right: -15%;
}

.gallery-cell.is-selected:hover .ba-label.after {
    right: 2%;
}

.gallery-cell.is-selected:hover .ba-label.before {
    left: 2%;
}

/* <!-- ------- Before After Gallery Section End ---- --> */
/* <!-- ------- column Section Start ---- --> */
.column-section .row {
    align-items: center;
}

.column-section .section-title {
    padding: 0;
}

.column-section-list-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 30px;
}

.column-section-list-content h3 {
    font-size: 32px;
    color: var(--theme-main);
}

.column-section-list-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-section-list-content h3 {
    font-size: 32px;
    color: var(--theme-main);
}

.column-section-list-content .list-box li::before {
    color: var(--theme-main);
}

.column-section-img iframe {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* <!-- ------- column-section End ---- --> */
/* <!-- ------- Large bg Section End ---- --> */
.large-bg {
    background-image: url(../images/large-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: 100px 0;
}

.large-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000000a6;
}

.large-bg-content {
    position: relative;
    padding: 60px 0;
    width: 80%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.large-bg-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.large-bg-btns li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.large-bg-btns li i {
    height: 45px;
    width: 45px;
    line-height: 45px;
    background: #fff;
    color: var(--theme-main);
    text-align: center;
    transition: .5s;
    border-radius: 100%;
    font-size: 16px;
    position: relative;
}

.large-bg-btns li p {
    text-transform: uppercase;
    color: #fff;
    line-height: 2;
    font-size: 14px;
}

.large-bg-btns-call {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 22px;
    padding: 17px 25px;
}

.large-bg-btns-call svg {
    width: 32px;
}

.large-bg-btns-call:hover svg {
    fill: #fff;
}

a.primary-btn.cta-btn {
    padding: 20px 60px;
}

/* <!-- ------- Large bg Section End ---- --> */
/* <!-- ------- areas-serve Section Start ---- --> */
.areas-serve-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.areas-serve-content ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 40%;
}

.areas-serve-content ul li {
    position: relative;
    font-weight: 600;
    width: 45%;
}

.areas-serve-content ul li{
    padding-left: 25px;
}

.areas-serve-content ul li:after {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #f19d0b;
}

.areas-serve-content .primary-btn {
    margin-top: 30px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
    width: 400px;
    height: auto;
    display: block;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 52%;
    right: 30px;
    transform: translateY(-80%);
    width: 6px;
    height: 6px;
    background-color: #369806;
    border-radius: 100%;
    box-shadow: 0 0 15px 10px #379806dc;
    animation: pulse 1.5s infinite ease-in-out;
    z-index: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #379806dc;
    }

    70% {
        box-shadow: 0 0 0 40px #37980600;
    }

    100% {
        box-shadow: 0 0 0 0 #37980600;
    }
}

.image-wrapper h1 {
    position: absolute;
    right: -52px;
    top: 55%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
}

/* <!-- ------- areas-serve Section Start ---- --> */
/* <!-- ------- Top Activities Section Start ---- --> */
.activities-img {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.activities-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.activities-content-col {
    background: #f2f2f2;
}

.activities-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    height: 100%;
}

.activities-content .primary-btn {
    padding: 20px 60px;
}

/* <!-- ------- Top Activities Section End ---- --> */
/* <!-- ------- testimonial Section Start ---- --> */
.testimonial img {
    width: 100% !important;
    max-width: 100% !important;
}

/* <!-- ------- testimonial Section End ---- --> */
/*================= Body Section End=============*/

/*================= Footer Start =============*/
footer {
    background-image: linear-gradient(rgba(9, 16, 13, 0.88), rgba(9, 16, 13, 0.88)), url(../images/banner-img-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    padding-top: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo a {
    width: 60%;
        margin: auto;
    display: block;
}

.business-links {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    flex-wrap: wrap;
}

.business-links img {
    max-width: 200px;
    object-fit: cover;
    display: block;
    border: 1px solid #fff;
    border-radius: 4px;
}

footer ul {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-links ul li {
    position: relative;
    padding-left: 20px;
}

.quick-links ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    font-size: 14px;
}

.quick-links a {
    text-transform: capitalize;
    color: #fff;
    transition: .4s;
    display: flex;
    max-width: max-content;
}

.quick-links ul a:hover,
.quick-links ul li:hover::before {
    color: var(--theme-secondary);
}

.footer-contact ul a:hover,
.footer-contact ul a:hover i {
    color: var(--theme-secondary);
}

.footer-contact a {
    color: #fff;
    transition: .4s;
    display: flex;
    max-width: max-content;
    gap: 8px;
    align-items: center;
}

.footer-title {
    color: #fff;
    text-transform: capitalize;
    font-size: 22px;
    position: relative;
    padding-bottom: 20px;
}

.footer-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    border-radius: 30px;
    display: block;
    background: linear-gradient(90deg, #fff, transparent);
}

.footer-awards-row ul {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 50px !important;
    flex-wrap: wrap;
}

.footer-awards-row ul img {
    height: 110px;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 4px;
}

.footer-awards-row h5 {
    color: #fff;
}

.footer-payment {
    justify-content: end;
}

.footer-payment img {
    height: 80px;
}

.footer-social {
    flex-direction: row;
}

.footer-social li a {
    color: #000;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social .wrapper {
    flex-direction: row;
}

.footer-copyright p {
    padding: 10px 0;
    color: #fff !important;
    font-size: 17px;
}

.footer-copyright p a {
    color: var(--theme-secondary);
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    font-size: 15px;
}

.footer-copyright p a:hover {
    text-decoration: underline !important;
}

.footer-copyright-right p {
    text-align: right;
}

.row.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 30px;
}

/*================= Footer End =============*/
/*<!-- ----------------- Bottom to Top Scroll Button Start ------------------>*/
#scrollTopBtn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: none;
    border: none !important;
    background: var(--theme-secondary);
    color: #000;
    height: 45px;
    width: 45px;
    border-radius: 100%;
    font-size: 20px;
    z-index: 9;
    box-shadow: 0px 8px 24px 0px rgba(212, 160, 1, 0.35);
}

#scrollTopBtn.show {
    display: block;
}

/*<!-- ----------------- Bottom to Top Scroll Button End ------------------>*/
/*<!-- ----------------- Whatsapp Chat Start ------------------>*/
.play-button-wrapper {
    position: fixed;
    bottom: 50px;
    right: 20px;
    color: #fff;
    width: 35px;
    z-index: 9;
    filter: drop-shadow(2px 4px 6px black);
}
.play-button {
	width: 100%;
	height: 100%;
	background-color: #369806;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 0 rgba(54, 152, 6, 0.7);
	animation: pulse 1.5s infinite ease-in-out;
	cursor: pointer;
}

.play-button::before {
	content: '';
	position: absolute;
	left: 33px;
	top: 26px;
	width: 0;
	height: 0;
	border-left: 20px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(54, 152, 6, 0.7);
	}
	70% {
		box-shadow: 0 0 0 20px rgba(54, 152, 6, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(54, 152, 6, 0);
	}
}

/*<!-- ----------------- Whatsapp Chat End ------------------>*/
/*===================================Responsive Start==========================*/
@media only screen and (max-width: 1199.5px) {
    .navbar-hover .navbar-nav {
        column-gap: 5px;
    }

    .plr-100 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    .navbar-hover .navbar-nav {
        column-gap: 10px;
    }
}

@media only screen and (min-width: 1199px) {
    .navbar-hover .collapse ul li {
        position: relative;
    }

    .navbar-hover .collapse ul li:hover>ul {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        top: 100%;
        background: #f7f7f7;
        border-radius: 0;
        border: none;
        /* box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.5); */
    }

    .navbar-hover .collapse ul ul {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 250px;
    }
}

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

    /* hover dropdown menus */
    .navbar-hover .show>.dropdown-toggle::after {
        transform: rotate(-90deg);
    }
.navbar-hover {
    padding: 2px 20px 0px 20px !important;
    background: #fff;
}
.website-logo {
    width: 15%;
}
.navbar-hover li.nav-item a::before {
    display: none;
}
.newhomebanner .content .banner-title {
    font-size: 45px;
    line-height: 55px;
}
.description .list-box li {
    width: 45%;
}
.description .list-box {
    padding: 8px;
}
.about-right {
    width: 100%;
}
.areas-serve-content {
    flex-direction: column;
        gap: 40px;
}
.column-section-list-content .primary-title {
    text-align: center;
}
header.scrolled .website-logo img {
    width: 70%;
}
.footer-logo img {
    width: 25%;
}
.featured {
    margin-top: 50px;
}
.areas-serve-content ul {
    width: 100%;
    justify-content: center;
}
.areas-serve-content .primary-btn {
        margin-top: 40px;
}
    .mobile-menu .navbar-nav {
        row-gap: 10px;
    }

    .mobile-menu {
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .top-header {
        display: none;
    }

    .banner-contents h1 {
        font-size: 50px;
        line-height: 70px;
    }

    .primary-title {
        line-height: 50px;
        font-size: 35px;
    }

    .footer-copyright {
        row-gap: normal;
    }

    .footer-copyright p {
        justify-content: center;
        text-align: center;
        margin: 0;
        padding-top: 5px;
        padding-bottom: 5px;
        justify-content: center;
    }

    .footer-copyright-right p {
        justify-content: center;
    }

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

    .home-banner {
        margin-top: 90px;
    }

    .section-title {
        padding-bottom: 40px;
    }
    .newhomebanner .item .content {
        width: 80%;
    }
    .newhomebanner .button {
        width: 98%;
    }
    .about-left .primary-title {
        text-align: center;
    }
    .about .row {
    row-gap: 0;
}
.activities-img img {
    height: 400px;
    object-position: bottom;
}
	footer {
		padding-bottom: 75px;
	}
}

@media only screen and (max-width: 767.5px) {
    .plr-100 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .top-header {
        display: none;
    }

    .row {
        margin: 0 !important;
        --bs-gutter: unset !important;
    }

    .banner-contents p {
        width: 80%;
        font-size: 22px;
    }

    .banner-contents p::before,
    .banner-contents p::after {
        display: none;
    }

    .quick-links {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-copyright.row {
        row-gap: 0;
    }

    footer ul {
        margin-top: 25px;
    }

    .footer-copyright-right p {
        justify-content: start;
    }
}

@media only screen and (max-width: 425.5px) {
    .primary-title {
        font-size: 25px;
        line-height: 30px;
    }

    .offcanvas.offcanvas-start {
        width: 300px !important;
    }

    .banner-btns {
        flex-direction: column;
    }

    .banner-contents {
        top: 45%;
        text-align: center;
        width: 95%;
        left: 0;
    }

    .banner-contents h1 {
        line-height: 55px;
        font-size: 36px;
    }

    .footer-copyright p {
        flex-direction: column;
    }

    .home-banner {
        height: 700px;
        margin-top: 70px;
    }

    .banner-contents p {
        width: 100%;
        font-size: 22px;
    }

    .why-choose-content {
        padding: 10px;
    }

    .why-choose-img {
        height: 350px;
    }

    footer {
        padding-top: 40px;
    }
    .image-wrapper img {
    width: 80%;
}
.image-wrapper::before {
    right: 26%;
}
.image-wrapper h1 {
    right: 32px;
    top: 58%;
    font-size: 16px;
}
.website-logo {
    width: 25%;
}
.newhomebanner .content .banner-title {
    font-size: 25px;
    line-height: 40px;
}
.newhomebanner .button {
    display: none;
}
.newhomebanner {
    height: 550px;
}
	.newhomebanner .item .content {
    top: 48%;
}
.newhomebanner .content a {
    font-size: 16px;
    padding: 15px;
}
.list-box li {
    font-size: 15px;
}
.pt-100 {
    padding-top: 20px;
}
.enquiry-form .enquiry-form-container {
    padding: 0 0 40px 0;
}
.enquiry-form-title {
    font-size: 18px;
    padding-bottom: 18px;
}
.enquiry-form .primary-btn {
    padding: 15px 40px !important;
}
.featured-box svg {
    height: 40px;
    width: 40px;
}
.featured-box .count {
    font-size: 32px;
}
.featured-box {
    gap: 12px;
}
.featured-box p {
    margin-top: -10px;
}
.featured-section-shape2 {
    right: 0;
    top: -8%;
    height: 50px;
    width: 50px;
}
.featured-section-shape1 {
    left: -10%;
    top: 95%;
    height: 50px;
    width: 50px;
}
.services-box-img {
    height: 150px;
}
.services-content {
    padding: 0px 10px 20px 10px;
}
.services-description {
    display: none;
}
.plr-100 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.services-box .primary-btn {
    padding: 10px !important;
    font-size: 15px;
    margin: 15px auto 0 auto;
}
.services-content .services-title {
    font-size: 16px;
    line-height: 20px;
    display: block;
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
    overflow: unset;
}
.services-box {
    height: 265px;
    display: flex;
    flex-direction: column;
}
.section-title {
    padding-bottom: 20px;
}
.why-box {
    width: 45% !important;
}
.why-img-heading {
    flex-direction: column !important;
    align-items: start !important;
}
.why-img-heading h2 {
    font-size: 20px !important;
}
p {
    font-size: 17px;
    line-height: 25px;
}
.column-section-list-content {
    padding: 0;
}
.column-section-img iframe {
    height: 200px;
}
.featured-content {
    width: 95%;
}
.services-box-img::after {
    height: 16px;
}
.primary-btn {
    font-size: 15px;
    padding: 10px 15px;
}
.areas-serve-content-img.image-wrapper {
    width: 95%;
    margin-left: auto;
}
.activities-content {
    padding: 20px 10px 30px 10px;
    gap: 10px;
}
.activities-img img {
    height: 250px;
    object-position: bottom;
}
.before-after-gallery .gallery-cell {
    width: 95%;
    height: 250px;
}
.ba-label {
    position: absolute;
    top: 4%;
    transform: translateY(0);
        font-size: 12px;
        padding: 4px 10px;
}
.ba-label.before {
    left: 2%;
}
.ba-label.after {
    right: 2%;
}
.large-bg-content {
    padding: 35px 0;
    width: 95%;
        gap: 20px;
}
.large-bg-btns {
    flex-direction: column;
    gap: 10px;
}
a.primary-btn.cta-btn {
    padding: 10px 15px;
}
.large-bg-btns-call svg {
    width: 22px;
}
.large-bg {
    margin: 30px 0;
}
.footer-logo img {
    width: 50%;
}
.business-links img {
    max-width: 150px;
}
.footer-awards-row ul li {
    width: 30%;
}
.footer-awards-row ul img {
    object-fit: contain;
}
.footer-awards-row ul {
    justify-content: center;
    margin-bottom: 20px !important;
}
.what-get .why-img-heading h2 {
    padding-top: 0;
    padding-bottom: 5px;
}
.what-get .why-img-heading img {
    padding: 0;
    height: 60px;
    width: 60px;
}
.what-get .why-box {
    text-align: left;
}
.testimonial img {
    width: 95% !important;
    margin: auto;
    display: block;
}
}

/*===================================Responsive End==========================*/

.date-field {
    display: none;
}