@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    overflow: hidden;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

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

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

p {
    font-weight: 500;
    line-height: 1.2;
    font-family: 'montserrat-regular';
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'montserrat-medium';
    src: url(../fonts/montserrat-medium.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'montserrat-regular';
    src: url(../fonts/montserrat-regular\ .ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'montserrat-medium';
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    font-weight: 900;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


/* optional: thoda compact karne ke liye */

header.sticky .menuSec {
    padding: 10px 0;
}

.menuSec.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.topSec ul {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 14px;
}

ul.icons {
    justify-content: end;
}

ul.icons li i {
    font-size: 12px;
}

.topSec {
    background: #000;
    /* align-items: center; */
    /* display: flex; */
    padding: 10px 0;
}

.topSec a {
    color: #fff;
    margin-left: 9px;
}

.topSec ul li i {
    font-size: 21px;
    padding-right: 5px;
    font-weight: 500;
}

.topSec ul li {
    color: #fff;
}

.menuSec {
    padding: 7px 0;
    /* position: fixed; */
    /* background: #fff; */
    /* width: 100%; */
    z-index: 99;
    top: 0;
}

.menuSec img {
    margin: 0;
}

a.Call-me {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 109px;
    color: #fff;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
    border-radius: 10px;
    text-transform: uppercase;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 55px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    /* position: relative; */
    display: inline-block;
    text-decoration: none;
    color: #393939;
    /* padding: 10px 23px; */
    font-size: 16px;
}

.menuSec ul li a:after {
    /* content: ''; */
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

section.main_slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #00000080;
    left: 0;
    top: 0;
    z-index: -1;
}

.main_slider {
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: fixed;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

section.main_slider.inner-banner {
    background: #000;
}

span.line-accent {
    background: -webkit-linear-gradient(#f9dc8b, #b8442a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span.line-outline {
    -webkit-text-stroke: 1px rgb(255 255 255);
    color: #ffffff00;
}

.banner_text ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    background: #bea27e;
    border-radius: 50px;
    color: #4f501b;
    font-size: 12px;
}

.banner_text a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 192px;
    /* background: #4CAF50; */
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
    margin: 0 auto;
}

.banner_text p {
    color: #fff;
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
}

.banner_text ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.banner_text ul li {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner_text h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31%;
    height: 50px;
    border-radius: 50px;
    color: #fff;
    border: 1px solid #e1ab71;
    /* background: rgb(31 61 43 / 52%); */
    font-weight: 400;
    font-size: 18px;
    font-family: 'Poppins';
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
    margin: 0 auto;
    overflow: hidden;
}

.banner_text {
    text-align: center;
}


/*banner css start */

.our_servi_sec {
    padding: 100px 0;
}

.our_servi_sec .col-md-4 {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -42px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    OPACITY: 1;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #00000000;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 15px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 2.75;
    color: black;
}

.servi-cont {
    text-align: center;
    margin-bottom: 50px;
}

.servi-cont p {
    font-size: 17px;
}

.servi-cont h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 55px;
    color: #000;
    margin: 0 0 10px 0;
}

.servi-cont h5 {
    color: #6B4F2A;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10;
    margin-bottom: 8px;
}

.servi-box {
    background: #000000;
    overflow: hidden;
}

img {}

.Gallery_img img:hover {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.why_chose_us_img img:hover {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.about_img img:hover {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.servi-img img {
    height: auto;
    width: 100%;
    transition: 0.5s;
}

.servi-img img:hover {
    transform: scale(1.05);
    filter: brightness(0.5);
}

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

.servi-text h3 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 11px;
}

.servi-text p {
    color: #fff;
}

.servi-text a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 51px;
    width: 136px;
    background: #ffffff;
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    font-family: 'montserrat-regular';
}

.servi-slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1.2;
}

.about_text h2 {
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 58px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 51px;
}

.about_text ul li {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about_text ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    /* background: #58b054; */
    border-radius: 50px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
}

.about_text p {
    /* font-size: 18px; */
    line-height: 35px;
    /* font-weight: 600; */
    color: #565f6f;
    font-family: "Poppins", Sans-serif;
    font-size: 19px;
}

.about_text h4 {
    /* color: #4CAF50; */
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    background: -webkit-linear-gradient(#f9dc8b, #b8442a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about_img img {
    width: 100%;
    height: 608px;
    object-fit: cover;
    border-radius: 11px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.33, 1.02), box-shadow 0.6s ease;
    transform-origin: center center;
    border-radius: 8px;
    transition: 0.5s;
}

.about_sec {
    padding-bottom: 100px;
}

.about_sec.inner-about {
    padding-top: 100px;
}

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

.about_text a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 59px;
    width: 157px;
    /* background: #4CAF50; */
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
}

.why_chose_us_img img {
    height: 570px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: 0.5s;
}

.why_chos_us {
    padding-bottom: 100px;
}

.Gallery {
    background: #000000;
    padding: 100px 0;
}

.Gallery.inner-gallery {
    background: #fff;
}

.Gallery_img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.Gallery .col-md-3 {
    margin-bottom: 30px;
}

.Gallery_cont {
    text-align: center;
    margin-bottom: 50px;
}

.Gallery_cont h4 {
    /* color: #4CAF50; */
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    background: -webkit-linear-gradient(#f9dc8b, #b8442a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Gallery_cont h2 {
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 55px;
    margin: 0;
    padding-bottom: 12px;
}

.Gallery_cont p {
    color: #fff;
    font-size: 20px;
}

.Areas_We_Serve_sec {
    padding: 100px 0;
}

.Areas_text h2 {
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 50px;
    margin-bottom: 10px;
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.Areas_text p,
.Areas_text a {
    color: #4A5568;
    font-family: "Poppins", Sans-serif;
    font-size: 19px;
    line-height: 28px;
    display: block;
    margin: 15px 0;
}

.Areas_text ul li {
    font-family: "Montserrat", Sans-serif;
    font-size: 37px;
    font-weight: 600;
    color: #000;
    /* padding-bottom: 36px; */
}

li.jackson {
    border: 1px solid #7c7c7c6e;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 25px 0;
    border-left: 0;
    border-right: 0;
}

.Areas_text a.theme-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 63px;
    width: 235px;
    background: #4CAF50;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-top: 38px;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
}

.Areas_text h2:before {
    height: 3px;
    width: 15px;
    background: #58b054;
    position: absolute;
    content: '';
    z-index: 1;
    left: 0;
    top: 8px;
}

.Areas_map iframe {
    width: 100%;
    height: 492px;
    border-radius: 10px;
}

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

.Get_In_Touch {
    background: #000000;
    padding: 100px 0px;
}

.Get_Touch_text h4 {
    /* color: #4CAF50; */
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    background: -webkit-linear-gradient(#f9dc8b, #b8442a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Get_Touch_text h2 {
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 50px;
}

.Get_Touch_text p {
    color: #F0F0F0;
    font-family: "Poppins", Sans-serif;
    font-size: 19px;
    font-weight: 400;
}

.Get_Touch_text ul li {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.Get_Touch_text ul li i {
    font-size: 30px;
    color: #e7bd81;
    /* background: linear-gradient(0deg,rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%); */
}

.Get_Touch_text ul li a {
    color: #fff;
    font-size: 20px;
}

ul.soial-icon {
    display: flex;
    gap: 24px;
}

ul.soial-icon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    /* background: #58b054; */
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
}

ul.soial-icon li a i {
    color: #fff;
}

.get_form form {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 18px;
}

.Get_In_Touch.inner-contact {
    background: #fff;
}

.Get_Touch_text.inner-contact h2 {
    color: #000;
}

.Get_Touch_text.inner-contact ul li a {
    color: #000;
}

.Get_Touch_text.inner-contact ul li {
    color: #000;
}

.get_form.inner-contact form {
    box-shadow: 0 0 3px 0;
}

.get_form form input {
    width: 100%;
    height: 50px;
    border: 1px solid #7c7c7c;
}

.get_form form textarea {
    width: 100%;
    height: 210px;
}

.get_form form label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    padding-top: 15px;
}

.get_form form button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100px;
    background: #3d3b3b;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 10px;
    border: 0;
    margin-top: 11px;
    overflow: hidden;
}

.Get_Your_Free {
    background-image: url(../images/Get\ Your\ Free.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;
    background-position: center;
    position: relative;
    z-index: 1;
}

.Get_Your_Free::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000094;
    top: 0;
    left: 0;
    z-index: -1;
}

.Get_Your_text {
    text-align: center;
}

.Get_Your_text h2 {
    color: #fff;
    font-family: "Montserrat", Sans-serif;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 46px;
}

.Get_Your_text p {
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
}

a.Request-Quote {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 63px;
    width: 235px;
    background: #4CAF50;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-top: 38px;
    margin: 0 auto;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
}

a.Call-Now {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 63px;
    width: 175px;
    background: #be5c40;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 38px;
    text-transform: uppercase;
    margin: 0 auto;
}

.Get_Your_text a {
    display: inline-flex;
}


/*Footer Css Starts*/

.footer-main {
    background-color: #000000;
    position: relative;
    z-index: 2;
}

footer {
    padding: 50px 0 0 0;
}

.footer-txt-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 22px;
}

.footer-txt-box p {
    color: #fff;
    font-size: 16px;
    width: 56%;
    line-height: 34px;
    font-weight: 500;
}

.footer-txt p {
    color: #fff;
    opacity: 0.7;
}

.footer-socials-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-top: 0px;
}

.footer-txt h5 {
    color: var(--white);
}

.footer-heading {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    height: 50px;
    width: 100%;
    margin-top: 49px;
}

.footer-heading::before {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #ffffff52;
    width: 100%;
}

.footer-heading h5,
.footer-socials-txt h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: unset;
    font-size: 32px;
    width: fit-content;
    /* border-bottom: 1px solid #ffffff91; */
    padding-bottom: 15px;
    padding-right: 10px;
}

.footer-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    margin-left: 20px;
}

.footer-links ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    opacity: 1;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
    /* gap: 15px; */
    /* transition: ease-in; */
    /* transition-duration: 0.5s; */
}

.footer-links ul li a:hover {
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 16px;
    width: 100%;
    column-count: 2;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.footer-socials ul li a i {
    color: #ffffff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    /* background: #ffffff00; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: linear-gradient(0deg, rgba(184, 68, 42, 1) 0%, rgba(249, 220, 139, 1) 100%);
}

.footer-copy-main {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.footer-copy {
    display: flex;
    justify-content: center;
}

.footer-copy-txt {
    display: flex;
    justify-content: space-between;
    gap: 32%;
    width: 1330px;
}

.footer-copy-txt p,
.footer-copy-txt a {
    font-size: 17px;
    line-height: 20px;
    color: #ffffff;
    transition: ease-in;
    transition-duration: 0.5s;
    margin-bottom: 0px;
    opacity: 1;
    font-weight: 600;
}

.footer-copy-txt p a:hover {
    color: var(--base2);
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-main .footer-ex {
    padding: 20px 0 20px 0;
    margin-top: 50px;
    border-top: 1px solid #ffffff52;
    position: relative;
    background: #000000;
}

.footer-scroll a {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g1);
}

section.inner-about-sec .heading2 span {
    color: #000;
}

.about-bottom {
    margin: 50px 0 0 0;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 700px;
    object-fit: cover;
    /* display: none; */
    border-radius: 20px;
}

section.inner-banner-sec .banner-heading::before,
section.inner-banner-sec .banner-heading::after {
    display: none;
}

section.inner-banner-sec .banner-heading h1 {
    font-weight: 900;
}

.footer-links.ft-pg-links ul {
    width: 100%;
    column-count: 1;
    display: block;
    margin-top: 9px;
}

.footer-links.ft-pg-links ul li {
    margin-bottom: 17px;
}

.footer-links.ft-pg-links {
    width: 100%;
}

.footer-links ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 19px;
    color: #fff;
}

.footer-links.ft-pg-links ul li a {
    text-transform: uppercase;
}

.footer-txt-main.mainquick-link {
    margin-left: 45px;
}

.follow-us h5 {
    border-bottom: unset;
    padding-bottom: 0px;
    margin-bottom: 6px;
    margin-top: 10px;
}

ul.ft-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 22px;
    /* padding-bottom: 10px; */
}


/*Footer Css Ends*/

.theme-btn {
    position: relative;
    z-index: 2;
    border: 0;
}

.theme-btn::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background: #000;
    border-radius: 0px;
    z-index: -1;
    transition: .5s all;
}

.theme-btn:hover::before {
    width: 100%;
    height: 100%;
}

#map {
    height: 450px;
    width: 100%;
}