@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

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

:root {
    --black: #000;
    --white: #fff;
    --textColor: #515151;
    --themeColor: #7f6351;
    --themeColor2: #190f0e;
    --headingColor: #080a0c;
    --headingColor2: #141414;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

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;
}

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;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

::-webkit-input-placeholder {
    color: var(--black);
}

::-moz-placeholder {
    color: var(--black);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--black);
}

:-moz-placeholder {
    color: var(--black);
    opacity: 1;
}

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

img {
    max-width: 100%
}


/***** 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: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}


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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

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

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

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

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

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

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.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 {
    margin: 0 0 0px;
    font-weight: 800;
    font-size: 120px;
    color: var(--white);
    font-family: 'Montserrat';
    text-transform: capitalize;
}

h2 {
    font-size: 70px;
    margin: 0 0 0px;
    font-weight: 800;
    font-family: 'Montserrat';
    text-transform: capitalize;
    color: var(--headingColor);
}

h3 {
    margin: 0 0 0px;
    font-size: 35px;
    font-weight: 800;
    color: #000000;
    font-family: 'Montserrat';
    text-transform: capitalize;
}

h4 {
    color: #000;
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 800;
    font-family: 'Montserrat';
    text-transform: capitalize;
}

h5 {
    color: #000;
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Montserrat';
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Roboto';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Roboto';
    color: var(--textColor);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}

.theme-btn-1 {
    gap: 5px;
    border: none;
    display: flex;
    font-size: 14px;
    width: fit-content;
    align-items: center;
    border-radius: 100px;
    justify-content: center;
    transition: ease-in-out;
    color: var(--themeColor);
    padding: 3px 13px 3px 3px;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.theme-btn-1 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 23px;
    color: var(--white);
    border-radius: 50px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    text-transform: uppercase;
    background-color: var(--themeColor);
}

.theme-btn-1:hover {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-1:hover span {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-2 {
    gap: 5px;
    border: none;
    display: flex;
    font-size: 14px;
    width: fit-content;
    align-items: center;
    color: var(--white);
    border-radius: 100px;
    justify-content: center;
    transition: ease-in-out;
    padding: 3px 13px 3px 3px;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-2 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 23px;
    border-radius: 50px;
    transition: ease-in-out;
    color: var(--themeColor);
    text-transform: uppercase;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.theme-btn-2:hover {
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-2:hover span {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

/*header css start */

header {
    top: 0;
    left: 0;
    width: 100%;
    margin: 10px 0;
    z-index: 99999;
    padding: 0px 5%;
    position: absolute;
}

.menuSec {
    padding: 0px 0;
    border-bottom: 1px solid #ffffff25;
}

.menuSec ul {
    gap: 2%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.menu-box ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    height: 100%;
}

.menu-box li ul {
    display: none;
}

.menuSec ul li a {
    z-index: 9;
    height: 100%;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 25px 20px;
    position: relative;
    align-items: center;
    color: var(--white);
    transition: ease-in;
    text-decoration: none;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'Montserrat';
    transition-duration: 0.5s;
}

.menuSec ul li a::before {
    left: 0;
    right: 0;
    width: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    content: '';
    margin: auto;
    position: absolute;
    transition: ease-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.menuSec ul li.active a::before {
    width: 100%;
}

.menuSec ul li:hover a::before {
    width: 100%;
}

.header-logo {
    height: 50px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.header-logo a img {
    z-index: 9;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    transition: ease-in;
    transform: scale(1);
    justify-content: center;
    transition-duration: 0.8s;
}

.header-logo a img:hover {
    transition: ease-out;
    transform: scale(1.1);
    transition-duration: 0.8s;
}

.menu-btn {
    position: relative;
    z-index: 10;
}

.menu-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    display: none;
    background: #000000cb;
    backdrop-filter: blur(10px);
}

.menu-box>nav {
    top: 50%;
    gap: 1rem;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-50%);
}

.menu-box>nav a {
    font-size: 20px;
    line-height: 1;
    color: white;
    font-weight: 500;
    position: relative;
    font-family: 'Montserrat';
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

/* menu-icon */

.menu-btn svg {
    width: 35px;
    height: 35px;
}

.path1,
.path2 {
    stroke-dasharray: 104;
    stroke-dashoffset: -71;
    transition: 1s all ease;
}

.cross {
    stroke-dashoffset: 68;
    stroke: var(--white);
}

.mline {
    stroke-dasharray: 41;
    stroke-dashoffset: -82;
    transition: 1s all ease;
}

.hide {
    stroke-dasharray: 43;
    stroke-dashoffset: 130;
}

.mobile-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

/*header css start */

/*banner css start */

section.main_slider {
    position: relative;
}

section.main_slider::before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 35%;
    content: '';
    height: 100%;
    position: absolute;
    background-color: var(--themeColor);
}

.banner-heading {
    position: relative;
    padding: 0 0 20px 0;
}

.banner_img {
    z-index: 1;
    height: 650px;
    display: flex;
    float: right;
    max-width: 420px;
    position: relative;
    align-items: center;
    will-change: transform;
    justify-content: flex-end;
    background-color: var(--white);
    transition: transform 0.2s ease-out;
    box-shadow: 0px 0px 103px 0px rgba(30, 19, 12, 0.52);
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item {
    height: 110vh;
}

.carousel-caption .container-fluid {
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 7vh;
    margin-top: 130px;
    align-items: start;
    flex-direction: column;
    justify-content: flex-start;
}

.main-banner-img {
    width: 100%;
    height: 110vh;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    top: 40%;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    background: none;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: var(--white);
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: var(--white);
    opacity: 0.5;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    display: flex;
    text-align: left;
    position: absolute;
    display: -moz-box;
    color: var(--white);
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    background: radial-gradient(circle, rgba(45, 45, 45, 0.322) 0%, rgba(45, 45, 45, 0.288) 39%, rgb(0, 0, 0) 100%);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: var(--white);
    width: 12px;
    height: 12px;
    margin: 0;
}

.banner-bottm-ex {
    position: absolute;
    bottom: 15%;
    right: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.carousel-indicators [data-bs-target] {
    border: 0;
    width: 5px;
    padding: 0;
    height: 5px;
    flex: 0 1 auto;
    cursor: pointer;
    position: relative;
    text-indent: -999px;
    transition: ease-in;
    border-radius: 20px;
    margin: 3px !important;
    box-sizing: content-box;
    transition-duration: 0.5s;
    background-clip: padding-box;
    transition: opacity 0.6s ease;
    background-color: var(--white);
}

.carousel-indicators [data-bs-target]:hover {
    transition: opacity 0.6s ease;
    opacity: 1;
    background-color: #ff6158;
    transition: ease-out;
    transition-duration: 0.5s;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-indicators .active::before {
    top: 50%;
    left: 50%;
    width: 100%;
    content: '';
    height: 100%;
    padding: 10px;
    position: absolute;
    border-radius: 100px;
    border: 1px solid var(--white);
    transform: translate(-50%, -50%);
}

.banner_text .banner-heading h1 {
    z-index: 1;
    display: block;
    position: relative;
}

.banner_text .banner-heading h1 span {
    line-height: 1;
    display: block;
    font-size: 50px;
    font-weight: 400;
}

.banner-follow-us {
    z-index: 1;
    height: 100%;
    display: flex;
    position: relative;
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.banner-follow-us::before {
    left: 0;
    right: 0;
    width: 1px;
    content: '';
    margin: auto;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    background-color: var(--white);
}

.banner-follow-us h5 {
    z-index: 1;
    width: 50px;
    display: flex;
    flex-shrink: 1;
    font-size: 14px;
    margin: auto 0px;
    padding: 25px 0px;
    position: relative;
    text-align: center;
    color: var(--white);
    align-items: center;
    justify-content: center;
    min-height: fit-content;
    text-transform: uppercase;
    writing-mode: sideways-lr;
    background-color: var(--themeColor);
}

.banner-follow-us ul {
    gap: 20px;
    z-index: 1;
    display: flex;
    padding-top: 20px;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: var(--themeColor);
}

.banner-follow-us ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
}

.banner-follow-us ul li a:hover {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--headingColor);
}

.md-h-100 {
    height: 100%;
}


/*banner css Ends*/

/*About Us Sec Css Starts*/

section.about-sec {
    z-index: 9;
    position: relative;
    margin: -20px 0 0 0;
    padding: 150px 5% 80px;
    background-color: var(--white);
}

section.about-sec::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}

/* about-sec */

.about-sec {
    z-index: 10;
}

.about-box {
    position: relative;
}

.about-box::before {
    top: 0;
    right: 0;
    bottom: 0;
    width: 88%;
    height: 70%;
    content: '';
    z-index: -1;
    margin: auto;
    position: absolute;
    border: 10px solid var(--themeColor);
    clip-path: polygon(0 0, 0 10%, 10% 10%, 14% 90%, 0 90%, 0 100%, 90% 100%, 100% 100%, 100% 0);
}

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

.about-img {
    width: 100%;
    margin: auto;
    height: 730px;
    max-width: 425px;
    overflow: hidden;
    border-radius: 10px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: 30px 0px;
}

.about-text h2 {
    margin-bottom: 10px;
}

.about-text h2 span {
    display: block;
    font-size: 35px;
    color: var(--themeColor);
}

.about-text p {
    color: #262626;
    margin-bottom: 25px;
}


.aboutSlider .slick-prev,
.aboutSlider .slick-next {
    top: unset;
    bottom: 5px;
    width: 70px;
    height: 70px;
    display: flex;
    transition: ease-in;
    align-items: center;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    box-shadow: 5.164px 9.712px 32px 0px rgba(111, 111, 111, 0.17);
}

.aboutSlider .slick-prev {
    z-index: 1;
    left: -75px;
}

.aboutSlider .slick-next {
    left: -7.5px;
    right: unset;
}

.aboutSlider .slick-prev::before,
.aboutSlider .slick-next::before {
    content: '\f054';
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
    font-family: 'FontAwesome';
}

.aboutSlider .slick-prev::before {
    transform: rotate(180deg);
}

.aboutSlider .slick-prev:hover,
.aboutSlider .slick-next:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--headingColor2);
}

.aboutSlider .slick-prev:hover::before,
.aboutSlider .slick-next:hover::before {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.aboutSlider {
    max-width: 550px;
}

/*About Us Sec Css Ends*/

/*Services Sec Css Starts*/

.service-sec {
    padding: 0px 5%;
    background-color: var(--white);
}

.serviceSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.service-slider-box {
    gap: 50px;
    display: flex;
    min-height: 630px;
    padding: 50px 30px;
    flex-direction: column;
    align-items: flex-start;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: #2b2b2b;
}

.service-slider-box img.service-slider-box-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-slider-box h4 {
    color: var(--white);
}

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

.service-slider-box a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.service-slider-box a:hover {
    background-color: var(--textColor);
}

.service-slider-box a img {
    width: 20px;
    height: 15px;
    object-fit: contain;
}

.service-slider-box:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: #1c1c1c;
}

.servicve-box {
    z-index: 1;
    display: flex;
    height: 630px;
    overflow: hidden;
    position: relative;
    align-items: flex-end;
    justify-content: flex-start;
}

.servicve-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(127, 99, 81, 0) 0%, rgba(127, 99, 81, 0.94) 50%, var(--themeColor) 100%);
}

.servicve-box img {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.servicve-box-text {
    gap: 30px;
    z-index: 1;
    display: flex;
    padding: 60px 50px;
    position: relative;
    flex-direction: column;
}

.servicve-box-text h3 {
    color: var(--white);
}

.servicve-box-text p {
    opacity: 0.8;
    color: var(--white);
}

.serviceBoxSlider .slick-slide {
    opacity: 1;
    margin: 0px 0px;
}


/*Services Sec Css Ends*/

/*Location Sec Css Ends*/


section.location-heading-sec {
    z-index: 9;
    background-color: var(--white);
    background-image: url(../images/contact-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 80% 80%;
    position: relative;
}

section.location-heading-sec::before {
    left: 0;
    top: 100%;
    width: 100%;
    content: '';
    height: 35%;
    position: absolute;
    background-color: var(--themeColor2);
}

section.location-sec {
    z-index: 10;
    padding: 80px 5%;
    position: relative;
    background-color: var(--themeColor);
}

.contact-heading {
    margin-bottom: 20px;
}

.contact-heading h2 {
    text-align: center;
    color: var(--white);
}

.contact-input input {
    width: 100%;
    height: 50px;
    padding: 20px;
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Montserrat';
    background-color: #917462;
    border: 1px solid var(--white);
}

.contact-input textarea {
    width: 100%;
    padding: 20px;
    height: 200px;
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Montserrat';
    background-color: #917462;
    border: 1px solid var(--white);
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: var(--white);
}

.contact-input button {
    margin: 0px auto;
    color: var(--themeColor);
    background-color: var(--white);
}

.contact-input button:hover {
    color: var(--white);
    background-color: var(--themeColor2);
}

.contact-input button:hover span {
    color: var(--themeColor);
    background-color: var(--white);
}

.contact-input button span {
    color: var(--white);
    background-color: var(--themeColor);
}

section.location-heading-sec {
    height: 100vh;
}

.wrper-bottom {
    width: 100%;
    padding: 0px 5% 150px;
    margin: 0 auto -67vh auto;
}

.wrper-top,
.wrper-bottom {
    margin-bottom: -80vh;
    z-index: 9999;
    position: relative;
}

/*Location Sec Css Ends*/

/* inner-service-sec */

.inner-service-sec {
    padding: 100px 0%;
    background-color: var(--white);
}

.inner-service-sec .servicve-box {
    margin: 25px 0px;
}

/* inner-service-sec */

/*LATEST WORK SECTION*/

.latest_work_sec {
    overflow: hidden;
    max-width: 100vw;
    padding: 80px 0% 100px;
}

.latest_workheading h2 {
    text-align: center;
}

.latest_workheading p {
    width: 80%;
    margin: auto;
    color: var(--black);
}

.latest_work_slider ul li img {
    height: 600px;
    object-fit: cover;
    width: 400px;
}

.flipster__item--future-2,
.flipster__item--future-1,
.flipster__item--past-1,
.flipster__item--past-2 {
    opacity: 1 !important;

}

.flipster__button {
    opacity: 1;
    width: 60px;
    border: none;
    height: 60px;
    font-size: 7px;
    color: #98ba1000;
    border-radius: 0px;
    background: var(--black);

}

.flipster__button:hover {
    background-color: #a98257;
}

.flipster {
    display: block;
    overflow-x: visible;
    overflow-y: visible;
    position: relative;
}

.flipster__button--next {
    right: -90px;
    background-image: url(../images/gallery-slider-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.flipster__button--prev {
    z-index: 2;
    left: -90px;
    transform: rotate(180deg);
    background-image: url(../images/gallery-slider-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}

/*LATEST WORK SECTION*/

/* inner-banner */

.inner-banner {
    z-index: 10;
    display: flex;
    min-height: 650px;
    padding-top: 80px;
    align-items: center;
    position: relative;
    justify-content: center;
    background-image: url(../images/contact-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inner-banner::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    background: radial-gradient(circle, rgba(45, 45, 45, 0.322) 0%, rgba(45, 45, 45, 0.288) 39%, rgb(0, 0, 0) 100%);
}

.inner-banner-text {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    background-color: #7f635188;
}

/* inner-banner */

/* Testimonials */

.author {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.quote {
    position: absolute;
    right: 50px;
    bottom: 50px;
}

.testi-slide p {
    font-size: 16px;
    color: #8a8a8a;
    font-family: 'Roboto';
    width: 80%;
}

.author-txt h5 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--black);
    letter-spacing: 1px;
}

.author-txt h6 {
    font-size: 16px;
    color: var(--themeColor);
    margin-bottom: 0;
    font-weight: 600;
    font-family: 'Roboto';
}

.author-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 0 6px 0 #989898;
    border-radius: 100px;
}

.testi-slider .slick-slide {
    margin: 0 70px 0 0;
}

.testi-imgs-all .testi-auth-img:nth-child(1) {
    position: absolute;
    left: 10%;
    top: 0;
}

.testi-imgs-all .testi-auth-img:nth-child(2) {
    position: absolute;
    right: 44%;
    top: 70px;
}

.testi-imgs-all .testi-auth-img:nth-child(3) {
    position: absolute;
    left: 5%;
    top: 105px;
    /* animation: pulse-animation 2s infinite; */
}

.testi-imgs-all .testi-auth-img:nth-child(4) {
    position: absolute;
    left: 35%;
    top: 220px;
}

.testi-imgs-all .testi-auth-img:nth-child(5) {
    position: absolute;
    left: 6%;
    top: 280px;
    bottom: auto;
}

.testi-auth-img {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-auth-img::before {
    position: absolute;
}

.testi-auth-img img {
    position: relative;
    border: 60px;
}

.testi-heading {
    margin-bottom: 20px;
}

.testi-heading h2 {
    margin-bottom: 15px;
}

.testi-auth-img img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    object-fit: cover;
    border-radius: 100px !important;
    box-shadow: 3px 3px 13px 0 #feedca82;
    border: 3px solid var(--white);
}

ul.star {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

ul.star i {
    color: #f39f1e;
    font-size: 20px;
    font-family: 'FontAwesome';
}

.testi-slider .slick-dots li {
    margin-left: auto;
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 45px 0px;
    padding: 0;
    cursor: pointer;
}

.testi-slider .slick-dots {
    position: absolute;
    bottom: -34%;
    display: block;
    width: 0;
    padding: 0;
    margin: 0;
    right: -3px;
    list-style: none;
    text-align: center;
}

.testi-slider .slick-dots li button:before {
    top: 0;
    left: 0;
    opacity: 1;
    font-size: 20px;
    content: '\f111';
    line-height: 20px;
    text-align: center;
    position: absolute;
    border-radius: 30px;
    background-color: var(--white);
    font-family: 'Font Awesome 5 Pro';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: var(--themeColor) !important;
}

.testi-slider .slick-dots li.slick-active button:before {
    font-size: 15px;
    font-weight: bold;
    opacity: 5 !important;
}

.testi-slider .slick-active {
    opacity: 1;
}

.testi-slider .slick-dots li.slick-active button::after {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: #ccc1b9;
    left: -3px;
    z-index: -1;
    top: -3px;
    border-radius: 40px;
}

img.person1 {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border: 3px solid var(--white);
}

.testi-imgs-all img {
    border-width: 4px;
    border-color: var(--white);
    border-style: solid;
    border-radius: 50%;
    animation: 5s blink ease-in-out infinite;
    box-shadow: 0px 8px 12px 0px rgba(22, 26, 29, 0.17);
}

@keyframes blink {
    0% {
        box-shadow: 0px 8px 12px 0px rgba(22, 26, 29, 0.17);
    }

    50% {
        box-shadow: 0px 8px 12px 0px rgba(22, 26, 29, 0.63);
    }

    100% {
        box-shadow: 0px 8px 12px 0px rgba(22, 26, 29, 0.17);
    }
}

img.person3 {
    width: 160px;
    height: 160px;
    object-fit: cover;

    border: 5px solidv;
}

img.person5 {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 5px solid var(--white);
}

img.person2 {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 5px solid var(--white);
}

img.person4 {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 5px solid var(--white);
}

.testi-sec:after {
    left: 0%;
    right: 0;
    top: 10%;
    width: 2px;
    height: 90%;
    content: '';
    margin: auto;
    z-index: -2;
    position: absolute;
    background: linear-gradient(0deg, rgba(181, 181, 181, 0) 0%, rgba(181, 181, 181, 0.94) 25%, rgba(181, 181, 181, 1) 75%, rgba(181, 181, 181, 0) 100%);
}

.testi-sec {
    margin-top: 15%;
    padding: 50px 0px;
    position: relative;
    margin-bottom: 10px;
}

.map-img {
    position: relative;
}

.testi-slider-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.testi-slider-btn button {
    width: 75px;
    border: none;
    height: 75px;
    display: flex;
    font-size: 20px;
    transition: ease-in;
    align-items: center;
    color: var(--white);
    justify-content: center;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.testi-slider-btn button:hover {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--headingColor);
}

/* Testimonials */

/* testimonials-sec */
section.about-sec.testimonials-sec::before {
    display: none;
}

.testimonials-sec .testi-slide {
    padding: 25px;
    margin: 25px 0px;
    border-radius: 10px;
    border: 1px solid var(--textColor);
    background-color: var(--themeColor);
}

.testimonials-sec .testi-slide * {
    color: var(--white);
}

/* testimonials-sec */

/* service detail page */

.service-detailsec {
    margin-bottom: -85vh;
}

.service-detailsec section.about-sec::before {
    display: none;
}

.service-detail-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 25px;
}

.service-detail-box h2 {
    margin-bottom: 5px;
}

.service-detail-box p {
    margin-bottom: 25px;
}

.service-detail-box ul li {
    gap: 15px;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: flex-start;
}

.service-detail-box ul li i {
    font-size: 14px;
    color: #e82d36;
}

.service-detail-box ul li span {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
    font-family: 'Montserrat';
}

/* service detail page */

/* cont-bx */

.cont-bx {
    min-height: 100%;
    padding: 50px 20px;
    background-color: var(--themeColor);
}

.cont-bx h3 {
    width: 75%;
    font-size: 20px;
    font-weight: 400;
    line-height: 11px;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white);
}

.cont-bx a {
    color: var(--white);
}

.contact-wraper {
    margin-bottom: -53vh;
}

/* cont-bx */

/* protfolio-sec */

section.about-sec.protfolio-sec::before {
    display: none;
}

section.about-sec.protfolio-sec {
    padding: 100px 5%;
}

.portfolio-box {
    padding: 10px;
    margin: 20px 0px;
    min-height: 95%;
    background-color: var(--white);
    box-shadow: 0px 8px 12px 0px rgba(22, 26, 29, 0.17);
}

.portfolio-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-box h4 {
    margin: 20px 0px 10px;
}

.portfolio-box p {
    color: var(--headingColor2);
}


/* protfolio-sec */

.wrper-top.protfolio {
    margin-bottom: -84vh;
}

/* footer */

footer {
    padding: 60px 5%;
    background: var(--headingColor);
}

footer h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    display: inline-flex;
}

.ftr-links {
    height: 100%;
    display: flex;
    padding: 40px 40px;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #ffffff73;
}

.ftr-links h2 {
    font-weight: 700;
    width: fit-content;
    position: relative;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.ftr-links h2::before {
    left: 0;
    bottom: 0;
    width: 90%;
    height: 1px;
    content: '';
    opacity: 0.5;
    position: absolute;
    background-color: var(--white);
}

.ftr-links ul li a {
    opacity: 0.5;
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 15px;
    transition: ease-out;
    transition-duration: 0.5s;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.ftr-links ul li a:hover {
    opacity: 1;
    padding-left: 15px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.ftr-links ul {
    column-count: 2;
}

footer .row {
    border: 1px solid #ffffff73;
}

.nestletter {
    padding: 60px 50px;
}

.nestletter p {
    width: 90%;
    font-size: 14px;
    margin-top: 15px;
    color: #ffffffa1;
    margin-bottom: 25px;
    font-family: 'Montserrat';
}

.nestletter input {
    width: 80%;
    height: 60px;
    border: unset;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    background: #33302e;
    border: 1px solid #33302e;
}

.nestletter form {
    gap: 20px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.nestletter form button {
    display: flex;
    flex-shrink: 0;
    font-weight: 500;
    padding: 15px 30px;
    width: fit-content;
    color: var(--white);
    border-radius: 30px;
    transition: ease-in-out;
    font-family: 'Montserrat';
    text-transform: uppercase;
    transition-duration: 0.5s;
    background: var(--themeColor);
    border: 1px solid var(--white);
}

.nestletter form button:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.ftr-icons {
    display: flex;
    padding: 30px 50px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff73;
}

.ftr-icons ul {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    margin: 0;
}

.ftr-icons ul li a i {
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 18px;
    transition: 0.5s;
    color: var(--white);
    align-items: center;
    border-radius: 40px;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
}

.ftr-icons ul li a i:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    border-color: var(--themeColor);
    background-color: var(--themeColor);
}

.ftr-icons h2 {
    margin: 0;
}

.bottom-ftr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 50px;
    height: 100%;
    border-top: 1px solid #ffffff73;
}

.bottom-ftr p {
    margin: 0;
    color: var(--white);
}

button.btn-ftr span i {
    width: 60px;
    height: 60px;
    border: unset;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    align-items: center;
    color: var(--white);
    justify-content: center;
    background: var(--black);
    transform: rotate(-45deg);
}

button.btn-ftr {
    background: transparent;
    border: unset;
    border-radius: 100px;
}

.footer-payment {
    border-top: 1px solid #ffffff73;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-logo {
    padding: 30px 50px;
    border-top: 1px solid #ffffff73;
}

.nestletter h2 {
    margin: 0 0 5px;
}

.ftr-icons h2 {
    font-size: 32px;
    border: 0;
}

.nestletter input::placeholder {
    color: #ffffffab;
    text-transform: capitalize;
}

.footer-logo img {
    width: auto;
    height: 50px;
    object-fit: contain;
}

/* footer */

html {
    overflow-x: hidden;
}


.hf-fields-wrap {
    width: 100% !important;
}

.hf-fields-wrap button.btn-ftr {
    position: absolute;
    right: 0;
    top: 0;
}

p.hf-message.hf-message-success {
    position: absolute;
    bottom: -80px;
    border: 1px solid;
    padding: 10px;
}

section.error-404.not-found {
    text-align: center;
    padding: 90px 10px;
}

section.error-404.not-found {
    text-align: center;
}

section.error-404.not-found h2 {
    font-size: 51px;
}


.banner-txt.wow.fadeInLeft {
    background: #7f6351;
    padding: 110px 10px;
}

.banner-txt.wow.fadeInLeft h2 {
    color: white;
}

.bht1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.g-recaptcha {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nestletter input {
    margin-bottom: 30px;
}




/*Media Query Start*/

@media only screen and (min-width: 1701px) and (max-width: 1920px) {}

@media only screen and (min-width: 1400px) and (max-width: 1700px) {
    .testi-sec {
        margin-top: 15%;
        padding: 0px 0px 40px;
    }

    section.location-heading-sec::before {
        height: 30%;
    }

}

@media only screen and (min-width: 1201px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    .menuSec ul {
        gap: 0%;
    }

    header {
        padding: 0px 3%;
    }

    .menuSec ul li a {
        padding: 25px 10px;
    }

    h1 {
        font-size: 70px;
    }

    .banner_img {
        height: 600px;
    }

    .aboutSlider .slick-prev,
    .aboutSlider .slick-next {
        bottom: 37px;
        width: 50px;
        height: 50px;
    }

    .aboutSlider .slick-next {
        left: -28.5px;
    }

    section.location-sec {
        padding: 40px 3%;
    }

    section.location-heading-sec::before {
        height: 44%;
    }

    .servicve-box-text {
        padding: 40px 30px;
    }








}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    header {
        padding: 0px 1%;
    }

    .testi-imgs-all .testi-auth-img:nth-child(2) {
        right: 10%;
        top: 5px;
    }

    .testi-slider-btn {
        margin-top: 20px;
    }

    .testi-imgs-all .testi-auth-img:nth-child(4) {
        left: 54%;
        top: 285px;
    }

    img.person4 {
        width: 120px;
        height: 120px;
    }

    testi-sec:after {
        left: 15%;
    }

    h2 {
        font-size: 40px;
    }

    .author-txt h5 {
        font-size: 22px;
    }

    footer {
        padding: 30px 2%;
        background: var(--headingColor);
    }

    section.location-heading-sec::before {
        height: 46vh;
    }

    .nestletter {
        padding: 35px 20px;
    }

    .ftr-icons {
        padding: 20px 20px;
    }

    .ftr-icons ul {
        gap: 10px;
    }

    .menuSec ul li a {
        padding: 20px 10px;
    }

    .menuSec ul {
        gap: 0;
    }

    .carousel-caption {
        padding: 0 1%;
    }

    h1 {
        font-size: 60px;
    }

    .banner_text .banner-heading h1 span {
        font-size: 30px;
    }

    section.about-sec {
        padding: 60px 1% 60px;
    }

    .about-text {
        padding: 40px 0px 60px;
    }

    .about-img {
        height: 600px;
    }

    .about-box::before {
        height: 90%;
        border: 5px solid var(--themeColor);
    }

    .aboutSlider .slick-prev,
    .aboutSlider .slick-next {
        bottom: 10px;
        width: 50px;
        height: 50px;
    }

    .aboutSlider .slick-next {
        left: -29px;
    }

    .aboutSlider .slick-prev {
        left: -78px;
    }

    .ftr-links {
        padding: 30px 20px;
    }

    .footer-logo {
        padding: 30px 30px;
        border-top: 1px solid #ffffff73;
    }

    .bottom-ftr {
        padding: 15px 20px;
    }

    .ftr-icons h2 {
        font-size: 20px;
    }

    .inner-banner {
        min-height: 600px;
    }

    .inner-service-sec {
        padding: 60px 0% 0px;
    }

    .servicve-box-text {
        gap: 20px;
        padding: 30px 25px;
    }

    .service-slider-box {
        gap: 20px;
        display: flex;
        min-height: 500px;
        padding: 30px 25px;
    }

    .servicve-box {
        height: 500px;
    }

    .contact-input textarea {
        height: 140px;
    }

    .testi-sec {
        margin-top: 25%;
    }

    .banner_img {
        height: 600px;
    }








}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .col-xl-1.col-lg-2.col-md-1.col-sm-3.col-12.md-h-100 {
        order: 3;
        height: fit-content;
    }

    .carousel-caption .container-fluid {
        margin-top: 50px;
        padding: 70px 0px 0px
    }

    .carousel-caption .container-fluid .row {
        margin: 0px auto;
    }

    .banner_img {
        float: none;
        height: 65vh;
        max-width: 420px;
        align-items: center;
        margin: 0px auto 20px;
        justify-content: center;
    }

    h1 {
        font-size: 40px;
    }

    .banner-follow-us {
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        margin-top: 3vh;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .banner-follow-us::before {
        display: none;
    }

    .banner-follow-us h5 {
        padding: 15px 0px;
        width: fit-content;
        writing-mode: horizontal-tb;
    }

    .banner-follow-us ul {
        gap: 10px;
        padding-top: 0px;
        flex-direction: row;
        justify-content: center;
    }

    .banner_text .banner-heading h1 span {
        font-size: 20px;
    }

    section.about-sec {
        padding: 20px 1% 40px;
    }

    section.main_slider::before {
        display: none;
    }

    section.main_slider::after {
        left: 0;
        bottom: 0;
        content: '';
        width: 100%;
        height: 80px;
        position: absolute;
        background-color: var(--themeColor);
    }

    h2 {
        font-size: 35px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
    }

    .about-img {
        height: 450px;
    }

    .aboutSlider .slick-prev,
    .aboutSlider .slick-next {
        top: 0px;
        width: 40px;
        height: 40px;
        bottom: unset;
    }

    .aboutSlider .slick-next {
        left: unset;
        right: 10px;
    }

    .aboutSlider .slick-prev::before,
    .aboutSlider .slick-next::before {
        font-size: 12px;
    }

    .aboutSlider {
        padding-top: 30px;
    }

    .aboutSlider .slick-prev {
        left: 10px;
    }

    .about-box::before {
        width: 100%;
        height: 100%;
        clip-path: none;
        border: 3px solid var(--themeColor);
    }

    .about-box {
        position: relative;
        padding-bottom: 20px;
    }

    .section-heading p {
        width: 100%;
    }

    .service-slider-box {
        gap: 20px;
        padding: 30px 15px;
        min-height: fit-content;
    }

    h4 {
        font-size: 16px;
    }

    .service-slider-box a {
        width: 40px;
        height: 40px;
    }

    .service-sec {
        padding: 0px 1%;
    }

    .service-sec .col-xl-4.col-lg-4.col-md-5.col-sm-12.col-12.p-0 {
        padding-right: calc(var(--bs-gutter-x) / 2) !important;
        padding-left: calc(var(--bs-gutter-x) / 2) !important;
    }

    .serviceSlider .slick-slide,
    .serviceBoxSlider .slick-slide {
        margin: 0px 5px;
    }

    .servicve-box-text {
        gap: 15px;
        padding: 30px 20px;
    }

    h3 {
        font-size: 20px;
    }

    .servicve-box {
        height: 500px;
    }

    section.location-sec {
        padding: 40px 1%;
    }


    section.location-heading-sec {
        background-size: cover !important;
    }

    .testi-sec {
        margin-top: 20vh;
        padding: 40px 0;
        margin-bottom: 10px;
    }

    .testi-slider .slick-slide {
        margin: 0 20px 0 0;
    }

    .testi-slide p {
        font-size: 12px;
        width: 100%;
    }

    .author-txt h5 {
        font-size: 20px;
    }

    .author-img img {
        width: 70px;
        height: 70px;
    }

    .testi-slider-btn button {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .testi-sec:after {
        display: none;
    }

    .testi-slider .slick-dots {
        right: 0;
        gap: 15px;
        width: 100%;
        display: flex;
        bottom: -100px;
        margin: 0px auto;
        position: absolute;
        justify-content: flex-end;
    }

    .latest_work_slider ul li img {
        height: 430px;
        width: 280px;
    }

    .testi-imgs-all .testi-auth-img:nth-child(1),
    .testi-imgs-all .testi-auth-img:nth-child(2),
    .testi-imgs-all .testi-auth-img:nth-child(3),
    .testi-imgs-all .testi-auth-img:nth-child(4),
    .testi-imgs-all .testi-auth-img:nth-child(5) {
        top: 0;
        left: 0;
        right: 0;
        position: relative;
    }

    .testi-imgs-all {
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .testi-imgs-all .testi-auth-img img {
        height: 60px;
        width: 60px;
        border: 2px;
    }

    .latest_work_sec {
        padding: 0px 0% 40px;
    }

    footer {
        padding: 30px 1%;
    }

    .ftr-links {
        border: none;
        padding: 20px 15px;
    }

    .nestletter {
        padding: 20px 15px;
        border-top: 2px solid #3b3d3e;
    }

    .ftr-icons {
        padding: 20px 15px;
    }

    .ftr-icons ul {
        gap: 10px;
    }

    .ftr-icons ul li a i {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .nestletter form {
        gap: 10px;
    }

    .ftr-icons h2 {
        font-size: 20px;
    }

    .footer-logo {
        padding: 20px 15px;
    }

    .footer-logo img {
        height: 38px;
    }

    .bottom-ftr {
        padding: 15px 15px;
        align-items: center;
        justify-content: center;
    }

    .inner-banner {
        min-height: 400px;
        padding-top: 40px;
    }

    header {
        margin: 0px;
        padding: 10px 2%;
        background-color: var(--themeColor);
    }

    .banner-follow-us {
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        margin-top: 10px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .banner-follow-us::before {
        display: none;
    }

    .carousel-caption {
        padding: 0px 3%;
    }

    section.main_slider::after {
        left: 0;
        bottom: 0;
        content: '';
        width: 100%;
        height: 140px;
        position: absolute;
        background-color: var(--themeColor);
    }

    .main-banner-img {
        height: 100vh;
    }

    .col-xl-1.col-lg-2.col-md-1.col-sm-3.col-12.md-h-100 {
        width: 100%;
    }








}

@media only screen and (min-width: 0px) and (max-width: 575px) {

    .col-xl-1.col-lg-2.col-md-1.col-sm-3.col-12.md-h-100 {
        order: 3;
        height: fit-content;
    }

    .carousel-caption .container-fluid {
        margin-top: 50px;
        padding: 70px 0px 0px
    }

    .carousel-caption .container-fluid .row {
        margin: 0px auto;
    }

    .carousel-caption {
        padding: 0px 3%;
    }

    .banner_img {
        float: none;
        height: 63vh;
        max-width: 420px;
        align-items: center;
        margin: 0px auto 20px;
        justify-content: center;
    }

    h1 {
        font-size: 40px;
    }

    .banner-follow-us {
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        margin-top: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .banner-follow-us::before {
        display: none;
    }

    .banner-follow-us h5 {
        padding: 15px 0px;
        width: fit-content;
        writing-mode: horizontal-tb;
    }

    .banner-follow-us ul {
        gap: 10px;
        padding-top: 0px;
        flex-direction: row;
        justify-content: center;
    }

    .banner_text .banner-heading h1 span {
        font-size: 20px;
    }

    section.about-sec {
        padding: 40px 1% 40px;
    }

    section.main_slider::before {
        display: none;
    }

    section.main_slider::after {
        left: 0;
        bottom: 0;
        content: '';
        width: 100%;
        height: 80px;
        position: absolute;
        background-color: var(--themeColor);
    }

    h2 {
        font-size: 35px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
    }

    .about-img {
        height: 450px;
    }

    .aboutSlider .slick-prev,
    .aboutSlider .slick-next {
        top: 0px;
        width: 40px;
        height: 40px;
        bottom: unset;
    }

    .aboutSlider .slick-next {
        left: unset;
        right: 10px;
    }

    .aboutSlider .slick-prev::before,
    .aboutSlider .slick-next::before {
        font-size: 12px;
    }

    .aboutSlider {
        padding-top: 30px;
    }

    .aboutSlider .slick-prev {
        left: 10px;
    }

    .about-box::before {
        width: 100%;
        height: 100%;
        clip-path: none;
        border: 3px solid var(--themeColor);
    }

    .about-box {
        position: relative;
        padding-bottom: 20px;
    }

    .section-heading p {
        width: 100%;
    }

    .service-slider-box {
        gap: 20px;
        padding: 30px 15px;
        min-height: fit-content;
    }

    h4 {
        font-size: 16px;
    }

    .service-slider-box a {
        width: 40px;
        height: 40px;
    }

    .service-sec {
        padding: 0px 1% 40px;
    }

    .service-sec .col-xl-4.col-lg-4.col-md-5.col-sm-12.col-12.p-0 {
        padding-right: calc(var(--bs-gutter-x) / 2) !important;
        padding-left: calc(var(--bs-gutter-x) / 2) !important;
    }

    .serviceSlider .slick-slide,
    .serviceBoxSlider .slick-slide {
        margin: 0 0px 0px 5px;
    }

    .servicve-box-text {
        gap: 15px;
        padding: 30px 20px;
    }

    h3 {
        font-size: 20px;
    }

    .servicve-box {
        height: 500px;
    }

    section.location-sec {
        padding: 40px 1%;
    }


    section.location-heading-sec {
        background-size: cover !important;
    }

    .testi-sec {
        margin-top: 40vh;
        padding: 40px 0px;
        margin-bottom: 10px;
    }

    .testi-slider .slick-slide {
        margin: 0 20px 0 0;
    }

    .testi-slide p {
        font-size: 12px;
        width: 100%;
    }

    .author-txt h5 {
        font-size: 20px;
    }

    .author-img img {
        width: 70px;
        height: 70px;
    }

    .testi-slider-btn button {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .testi-sec:after {
        display: none;
    }

    .testi-slider .slick-dots {
        right: 0;
        gap: 15px;
        width: 100%;
        display: flex;
        bottom: -100px;
        margin: 0px auto;
        position: absolute;
        justify-content: flex-end;
    }

    .latest_work_slider ul li img {
        height: 430px;
        width: 280px;
    }

    .testi-imgs-all .testi-auth-img:nth-child(1),
    .testi-imgs-all .testi-auth-img:nth-child(2),
    .testi-imgs-all .testi-auth-img:nth-child(3),
    .testi-imgs-all .testi-auth-img:nth-child(4),
    .testi-imgs-all .testi-auth-img:nth-child(5) {
        top: 0;
        left: 0;
        right: 0;
        position: relative;
    }

    .testi-imgs-all {
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .testi-imgs-all .testi-auth-img img {
        height: 60px;
        width: 60px;
        border: 2px;
    }

    .latest_work_sec {
        padding: 0px 0% 40px;
    }

    footer {
        padding: 30px 1%;
    }

    .ftr-links {
        border: none;
        padding: 20px 15px;
    }

    .nestletter {
        padding: 20px 15px;
        border-top: 2px solid #3b3d3e;
    }

    .ftr-icons {
        padding: 20px 15px;
    }

    .ftr-icons ul {
        gap: 10px;
    }

    .ftr-icons ul li a i {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .nestletter form {
        gap: 10px;
    }

    .ftr-icons h2 {
        font-size: 20px;
    }

    .footer-logo {
        padding: 20px 15px;
    }

    .footer-logo img {
        height: 38px;
    }

    .bottom-ftr {
        padding: 15px 15px;
        align-items: center;
        justify-content: center;
    }

    .inner-banner {
        min-height: 400px;
        padding-top: 40px;
    }

    section.service-sec.inner-service-sec {
        padding: 40px 1%;
    }

    .wrper-top,
    .wrper-bottom {
        margin-bottom: -100vh;
    }

    section.location-heading-sec::before {
        height: 40vh;
    }

    header {
        margin: 0px;
        padding: 10px 2%;
        background-color: var(--themeColor);
    }

    .carousel-item {
        height: 100vh;
    }




}

/*Media Query End*/