@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/***** General CSS *****/

html {
    overflow-x: hidden;
}

body {
    position: relative;
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background-color: #fefdf7;
}

body::Before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('../images/body-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

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 0px;
    padding: 0;
    list-style-type: none;
}

i {
    font-family: FontAwesome !important;
    font-style: normal;
}

i::before {
    font-family: FontAwesome !important;
}

/***** 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: 'boosters';
    src: url('../fonts/boosters.ttf');
}

@font-face {
    font-family: 'blender';
    src: url('../fonts/blender.ttf');
}

/***** 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;
}

.sec {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Buttons Css Starts */

.theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 55px;
    border-radius: 100px;
    background-color: #a1723c;
    padding: 5px 80px 5px 20px;
    border: 2px solid #fff;
    box-shadow: 0 0 20px 0 #00000038;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover {
    padding: 0px 80px 0px 20px;
    border: 2px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'blender';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.theme1 span.theme1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85%;
    width: 60px;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    top: 8%;
    right: 2%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    rotate: 330deg;
    color: #a1723c;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon i {
    rotate: 0deg;
    transition: ease-out;
    transition-duration: 0.5s;
}









.theme2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 55px;
    border-radius: 100px;
    background-color: #0000;
    padding: 5px 80px 5px 20px;
    border: 2px solid #a1723c;
    /* box-shadow: 0 0 20px 0 #00000038; */
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover {
    padding: 0px 80px 0px 20px;
    border: 2px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    font-size: 14px;
    line-height: 1;
    color: #a1723c;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'blender';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.theme2 span.theme2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85%;
    width: 60px;
    background-color: #a1723c;
    border-radius: 100px;
    position: absolute;
    top: 8%;
    right: 2%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    rotate: 330deg;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon i {
    rotate: 0deg;
    transition: ease-out;
    transition-duration: 0.5s;
}

















/* Buttons Css Ends */

.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: 'boosters';
    font-size: 107px;
    line-height: 1;
    color: #a1723c;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-family: 'boosters';
    font-size: 85px;
    line-height: 90px;
    color: #000;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

h3 {
    font-family: 'boosters';
    font-size: 73px;
    line-height: 80px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h4 {
    font-family: 'boosters';
    font-size: 69px;
    line-height: 75px;
    color: #000;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

h5 {
    font-family: 'boosters';
    font-size: 30px;
    line-height: 35px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

h6 {
    font-family: 'boosters';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

p {
    color: #000;
    font-size: 14px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin: 0;
    opacity: 0.5;
}

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 Starts*/

header {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
}

.menuSec {
    padding: 0px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    border-bottom: 1px solid #ffffff3d;
}

.menuSec .container,
.menuSec .row {
    height: 100%;
}

.menuSec .row {
    position: relative;
}

.header-logo,
.menu-box,
.header-btn {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo {
    position: relative;
}

.header-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70vh;
    background-color: #fcfbf5;
    height: 100%;
    width: 100vh;
    z-index: -1;
    border-radius: 0 5px 5px 0;
}

.menuSec .col-12 {
    height: 100%;
}

.menu-box {
    justify-content: center;
}

.header-btn {
    justify-content: end;
}

.menu-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
}

.menu-box ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    height: 100%;
}

.menu-box li ul {
    display: none;
}

.menu-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 500;
    height: 100%;
    z-index: 0;
    transition: ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}


.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

/* .menu-box ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background-color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
} */

/* .menu-box ul li a:hover::after {
    height: 100%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
} */

.menu-box ul li.active a::before {
    width: 100%;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
}

.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box 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;
}


/*Header Css Ends*/

/*Banner Css Starts*/

.header-banner-box {
    margin: 10px 10px 0 0;
}

.main-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {
    position: relative;
    right: unset;
    bottom: unset;
    left: unset;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 70px;
    height: 1px;
    padding: 0;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
    margin: 0 !important;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
    /* background: linear-gradient(90deg, rgb(161 114 60 / 8%) 0%, rgba(161, 114, 60, 1) 100%); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    width: 200px;
    opacity: 0.5;
}

.banner_text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 50px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    background-image: url('../images/ban-box.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_text::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 20px;
    width: 41%;
    background-image: url('../images/ban-bf.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner_text::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 0;
    height: 20px;
    width: 45%;
    background-image: url('../images/ban-af.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner_text h1 span {
    display: block;
    color: #000;
}

.carousel-item {
    height: 100vh;
}

.banner-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.ban-bottom-box {
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #a1723c;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    padding: 0 100px 0 50px;
    gap: 50px;
    height: 130px;
}

.ban-socials-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 50px;
    background-color: #fff;
    width: 60%;
}

.ban-socials-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 27%;
    border-top: 1px solid #0000002e;
    width: 37%;
}

.ban-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.ban-socials ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    border: 1px solid #0000002b;
    color: #a1723c;
    transition: ease-in;
    transition-duration: 0.5s;
}

.ban-socials ul li a:hover {
    background-color: #a1723c;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.ban-socials-txt h6 {
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
}

.ban-scroll-main {
    position: absolute;
    bottom: 3%;
    right: 6%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ban-scroll-main a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    width: 100px;
}

.ban-scroll-txt h6 {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Cinzel';
    text-transform: uppercase;
    color: #fff;
}

section.main_slider {
    border-radius: 0 5px 5px 0;
    overflow: hidden;
}

/*Banner Css Ends*/

/*About Us Sec Css Starts*/

section.about-sec {
    padding: 150px 0 80px 0;
}

section.about-sec .row {
    position: relative;
}

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 #00000024;
    position: relative;
    z-index: 9;
    margin: 20px 0 0 10px;
}

.about-txt h4 span {
    display: block;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 525px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-txt::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 20px;
    width: 20%;
    background-image: url(../images/ban-bf.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*About Us Sec Css Ends*/

/*Services Sec Css Starts*/

.services-heading-txt-btn-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #0000002e;
}

.services-heading-txt {
    width: 56%;
    display: inline-flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    flex-direction: column;
}

.services-card-txt {
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0;
    padding: 20px;
}

.services-card:hover .services-card-txt {
    gap: 10px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-txt h5 {
    text-transform: uppercase;
    width: 100%;
    writing-mode: sideways-lr;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card:hover .services-card-txt * {
    color: #fff;
}

.services-card:hover .services-card-txt h5 {
    writing-mode: unset;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-txt h5 span {
    display: block;
    color: #a1723c;
}

.services-card:hover .services-card-txt h5 span {
    display: none;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-txt p {
    font-size: 12px;
    line-height: 22px;
    opacity: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-txt .services-card-txt-ex {
    height: 0;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card:hover .services-card-txt .services-card-txt-ex {
    height: 70px;
    overflow: scroll;
    overflow-x: hidden;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-link {
    position: absolute;
    top: 3%;
    right: 4%;
    z-index: 9;
}

.services-card-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 70px;
    background-color: #a1723c;
    border-radius: 5px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-link a:hover {
    background-color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-link a img {
    rotate: -90deg;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-link a:hover img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(16%) saturate(1447%) hue-rotate(352deg) brightness(93%) contrast(88%);
    transition: ease-out;
    transition-duration: 0.5s;

}

.services-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 610px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 2px 0px #0000002b;
    border: 1px solid #00000005;
    border-top: 1px solid #0000;
    border-bottom: 1px solid #0000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card:hover {
    margin: 0 20px;
    border-radius: 20px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-txt-main {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.services-card-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 610px;
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-img::Before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, #fefdf7 100%);
    z-index: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card:hover .services-card-img::Before {
    background: linear-gradient(0deg, rgba(161, 114, 60, 1) 0%, rgba(253, 187, 45, 0) 70%);
}

.services-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    opacity: 0.1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card:hover .services-card-img img {
    opacity: 1;
    filter: grayscale(0);
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-txt .services-card-txt-ex::-webkit-scrollbar {
    background-color: #0000;
    width: 5px;
}

.services-card-txt-ex::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 100px !important;
    overflow: hidden;
}

/*Services Sec Css Ends*/

/*Choose Sec Css Starts*/

section.choose-sec {
    padding: 150px 0 100px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.choose-sec:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.choose-play-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 9;
}

.choose-play-main {
    width: 100%;
}

.choose-play-txt {
    display: flex;
    align-items: center;
    justify-content: center;
}


.svg_box {
    /* position: absolute; */
    /* top: 39%; */
    /* left: 44%; */
    width: 23%;
    border-radius: 100px;
    overflow: hidden !important;
}

.svg_box a {
    border-radius: 100px;
    overflow: hidden !important;
}

.svg_box svg {
    width: 100%;
    fill: currentColor;
    height: auto;
    max-width: 66vmin;
    transform-origin: center;
    color: #000;
    font-size: 6px;
    line-height: 13px;
    /* background-color: #fff; */
    border-radius: 100%;
    font-family: 'Montserrat';
    animation: 12s abc linear infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: -1;
}

@keyframes abc {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.choose-bottom-video-main img.play-icon {
    position: absolute;
    top: 20%;
    right: 18%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 104px;
    width: 105px;
    background-color: #000;
    border-radius: 100px;
    object-fit: scale-down;
}

.svg_box_main {
    position: relative;
}

.svg_box_main i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    color: #a1723c;
    font-size: 25px;
}

.choose-txt-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    border-radius: 5px 5px 0 0;
    background-color: #f9f8f3;
}

.choose-txt-main::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 20px;
    width: 41%;
    background-image: url('../images/ban-bf.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.choose-list ul {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}

.choose-list ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.choose-list ul li p {
    opacity: 1;
    font-weight: 600;
}

.choose-txt-ex {
    position: relative;
    padding: 10px 20px;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.choose-sec:hover .choose-txt-ex {
    transition: ease-out;
    transition-duration: 0.5s;
}

.choose-txt-ex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0.5%;
    background-color: #a1723c;
    z-index: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.choose-sec:hover .choose-txt-ex::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.choose-txt-ex p {
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.choose-sec:hover .choose-txt-ex p {
    opacity: 1;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

section.choose-sec .row {
    position: relative;
}

.choose-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 615px;
    width: 60%;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    top: -100px;
    right: 0;
}

.choose-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/*Choose Sec Css Ends*/

/*Testimonial Sec Css Starts*/

.testimonial-heaidng {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 0 0 70px 0;
    width: 85%;
}

.testimonial-heaidng * {
    color: #fff;
}

.testimonial_slider {
    padding: 20px 0 0 50px;
    position: relative;
}

.testimonial_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 110%;
    width: 52vw;
    background-color: #f8f7f2;
    z-index: 0;
    border-radius: 5px 0 0 0;
}

.testimonial-card {
    margin: 20px 0;
}

.testimonial-card-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    position: relative;
    padding: 30px;
    background-color: #fff;
    /* box-shadow: 0 0 6px 0 #0000002b; */
}

.testimonial-card-content::Before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    height: 35px;
    width: 35px;
    background-image: url('../images/testimonial-card-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.testimonial_slider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.testimonial-card-star ul {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 5px;
}

.testimonial-card-star ul li a i {
    color: #f39f1e;
}

.testimonial-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-card-user {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 10px 0 0 10px;
}

.testimonial-card-user-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    object-position: center;
    border: 3px solid #fff;
    box-shadow: 0 0 20px 0 #00000029;
}

.testimonial-card-user-txt h5 {
    font-size: 13px;
    line-height: 20px;
    font-family: 'Cinzel';
    text-transform: uppercase;
}

.testimonial-card-user-txt h6 {
    font-family: 'Montserrat';
    font-size: 9px;
    line-height: 1;
    text-transform: uppercase;
}

section.testimonial-sec {
    background-image: url('../images/testimonial-main-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 0 0;
    background-attachment: fixed;
}

.testimonial-con-main {
    position: relative;
    z-index: 9;
}

.testimonial-con-heading h5 {
    font-size: 46px;
    line-height: 51px;
    text-transform: uppercase;
}

.testimonial-con-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.testimonial-con {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 48px 30px;
    background-color: #fff;
    border-radius: 5px 5px 0 0;
}

.testimonial-con::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 20px;
    width: 41%;
    background-image: url('../images/ban-bf.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial-con-input input,
.testimonial-con-input textarea {
    border-radius: 5px;
    width: 100%;
    padding: 0 10px;
    height: 50px;
    margin: 0 0 20px 0;
    border: 1px solid #00000021;
    background-color: #0000;
    color: #000;
}

.testimonial-con-input textarea {
    height: 180px;
    resize: none;
    padding: 10px;
}

.testimonial_slider .slick-prev,
.testimonial_slider .slick-next {
    top: -8%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0px 30px;
    background-color: #fff;
    border-radius: 100px;
    opacity: 0.5;
    transition: ease-in;
    transition-duration: 0.5s;
}

.testimonial_slider .slick-prev:hover,
.testimonial_slider .slick-next:hover {
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.testimonial_slider .slick-prev:before,
.testimonial_slider .slick-next:before {
    opacity: 1;
}

.testimonial_slider .slick-prev:before {
    content: '\f060';
    font-family: 'FontAwesome';
    color: #a1723c;
}

.testimonial_slider .slick-next:before {
    content: '\f061';
    font-family: 'FontAwesome';
    color: #a1723c;
}

.testimonial_slider .slick-prev {
    left: 0;
}

.testimonial_slider .slick-next {
    right: unset;
    left: 10%;
}

/*Testimonial Sec Css Ends*/

/*Gallery Sec Css Starts*/

.gallery-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 50px auto;
    width: 50%;
    text-align: center;
}

.gallery-card-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery-card-img {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    margin: 0 5px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery1,
.gallery6 {
    height: 775px;
}

.gallery5,
.gallery2 {
    height: 675px;
}

.gallery4,
.gallery3 {
    height: 515px;
}

.gallery7 {
    height: 675px;
}

.gallery-card-img a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*Gallery Sec Css Ends*/


/*footer*/

footer {
    background: #171717;
}

section.footer-home {
    padding: 60px 0px 0;
    background-color: #171717;
}

section.footer-home p {
    font-weight: 400;
    color: #dfdfdf;
    font-size: 14px;
}

section.footer-home h6 {
    font-size: 35px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-links {
    padding-left: 30px;
}

.icon-link ul li i {
    color: #fff;
    font-size: 20px;
    /* padding-right: 15px; */
}

.footer-links ul li {
    margin-bottom: 3%;
    width: 100%;
    padding-bottom: 5px;
}

.footer-links ul li a {
    color: #dfdfdf;
    font-size: 13px;
    text-transform: capitalize;
    font-family: 'Montserrat';
    font-weight: 400;
    transition: ease-in;
    transition-duration: 0.5s;
}

.footer-links ul li a:hover {
    color: #ffffff81;
    transition: ease-out;
    transition-duration: 0.5s;
}

.news-letter input {
    width: 100%;
    height: 50px;
    border: 0;
    color: #000;
    border-radius: 5px;
    padding: 0 20px;
}

.news-letter {
    position: relative;
    margin-bottom: 26px;
}

.news-letter form {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.news-letter input::placeholder {
    font-size: 13px;
}

.sub-now ul {
    display: flex;
    align-items: center;
}

.copy-right p,
.copy-right p a {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Montserrat';
    font-weight: 400;
    margin-bottom: 0;
    /* height: 60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.copy-right p a:hover {
    color: #a1723c;
    transition: ease-out;
    transition-duration: 0.5s;
}

.copy-right {
    border-top: 1px solid #4d4d4d;
    padding: 20px 0;
}


.sub-now p {
    color: #8c8c8c;
    margin-bottom: 20px;
}

ul.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 20px;
}

ul.footer-social i {
    color: #fff;
    font-size: 16px;
    width: 35px;
    height: 35px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: ease-in;
    transition-duration: 0.5s;
}

ul.footer-social i:hover {
    background-color: #a1723c;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}


ul.footer-list {
    display: block;
    /* column-count: 2; */
}

ul.footer-info a {
    color: #8c8c8c;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

ul.footer-info a:hover {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

ul.footer-info li {
    padding-bottom: 15px;
    border-bottom: 2px solid;
    margin-bottom: 15px;
}

ul.footer-info li:last-child {
    border: 0;
}

/*footer end*/

.services-card-img-main {
    width: 100%;
}

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .gallery-card-img {
        width: 100%;
    }

    .footer-links {
        padding-left: 0px;
    }

    .menu-box ul li a {
        padding: 0 10px;
        font-size: 12px;
    }

    .main_slider .carousel-item {
        height: 800px;
    }

    h1 {
        font-size: 50px;
    }

    .banner_text {
        padding: 25px;
    }

    .ban-bottom-box {
        gap: 0px;
        width: 100%;
        height: 130px;
        padding: 0 0px 0 10px;
        justify-content: space-evenly;
        height: 110px;
    }

    .ban-socials-main {
        padding: 0 15px;
    }

    .ban-socials-main::before {
        display: none;
    }

    .main_slider .carousel-indicators .active {
        width: 90px;
        opacity: 0.5;
    }

    .main_slider .carousel-indicators {
        gap: 10px;
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main_slider .carousel-indicators [data-bs-target] {
        width: 40px;
    }

    .testimonial_slider {
        padding: 10px 0 0 0px;
    }

    .news-letter .input#input_1_1 {
        max-width: 100%;
    }

    ul.footer-info a {
        font-size: 12px;
        gap: 5px;
    }

    section.gallery-sec .p-0 {
        padding: 0px 3px !important;
    }

    .header-logo::before {
        left: -83vh;
    }

    .choose-txt-main::before {
        top: 5%;
        width: 31%;
    }

    .testimonial-heaidng {
        margin: 0 0 30px 0;
    }

    .testimonial-card-content {
        padding: 15px;
    }

    .testimonial_slider::before {
        height: 100%;
    }

    .news-letter input#input_1_1 {
        max-width: 100% !important;
    }

    .testimonial_slider .slick-next {
        left: 70px;
    }









}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .gallery-card-img {
        width: 100%;
    }

    .footer-links {
        padding-left: 0px;
    }

    .menu-box ul li a {
        padding: 0 10px;
        font-size: 12px;
    }

    .menuSec .custom-order {
        order: 2;
    }

    .menuSec .d-none.d-md-block {
        order: 3;
    }

    .main_slider .carousel-item {
        height: 800px;
    }

    h1 {
        font-size: 50px;
    }

    .banner_text {
        padding: 25px;
    }

    .ban-bottom-box {
        gap: 0px;
        width: 100%;
        height: 130px;
        padding: 0 0px 0 10px;
        justify-content: space-evenly;
        height: 110px;
    }

    .ban-socials-main {
        padding: 0 15px;
    }

    .ban-socials-main::before {
        display: none;
    }

    .main_slider .carousel-indicators .active {
        width: 90px;
        opacity: 0.5;
    }

    .main_slider .carousel-indicators {
        gap: 10px;
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main_slider .carousel-indicators [data-bs-target] {
        width: 40px;
    }

    .about-txt::before {
        top: 15%;
        height: 20px;
        width: 10%;
    }

    .choose-txt-main {
        padding-bottom: 10px;
    }


    .news-letter input#input_1_1 {
        max-width: 100% !important;
    }





}

@media only screen and (min-width: 520px) and (max-width: 767px) {


    header {
        position: relative;
        background-color: #a1723c;
    }

    h1 {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .menuSec {
        padding: 10px 0;
        height: fit-content;
    }

    .header-logo,
    .menu-box,
    .header-btn {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-logo::before {
        left: 0;
        width: 100%;
        border-radius: 5px;
    }

    .header-logo {
        margin-bottom: 10px;
    }

    .ban-bottom-box {
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 0px 0 0px;
        gap: 10px;
        height: fit-content;
    }

    .banner_text {
        gap: 10px;
        padding: 20px;
    }

    .about-txt {
        gap: 10px;
        padding: 20px;
        margin: 10px auto 0;
    }

    section.about-sec {
        padding: 60px 0 40px 0;
    }

    h4 {
        font-size: 40px;
        line-height: 40px;
    }

    p {
        font-size: 12px;
    }

    .theme1 span.theme1-icon {
        width: 55px;
    }

    .theme1 span.theme1-txt {
        font-size: 12px;
    }

    .theme1 {
        top: 7.5%;
        right: 1.5%;
        height: 50px;
    }

    .price-list-sec {
        padding: 40px 0;
    }

    .price-list-heading {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .price-list li {
        padding: 5px 10px;
        font-size: 14px;
    }

    .header-btn.ouf {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .sec {
        padding: 40px 0;
    }

    .services-heading-txt-btn-main {
        gap: 20px;
        flex-wrap: wrap;
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
    }

    h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .services-heading-txt {
        width: 100%;
    }

    .services-card {
        height: 400px;
    }

    .services-card-img {
        height: 100%;
    }

    .choose-img {
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 20px;
        position: relative;
    }

    .choose-list ul li img {
        width: 15px;
        height: 15px;
        object-fit: contain;
    }

    section.choose-sec {
        padding: 40px 0;
    }

    section.testimonial-sec {
        padding: 40px 0 0 0;
    }

    .testimonial_slider .slick-next {
        right: unset;
        left: 55px;
    }

    .testimonial_slider .slick-prev,
    .testimonial_slider .slick-next {
        height: 35px;
        padding: 0px 24px;
    }

    .testimonial-heaidng {
        gap: 10px;
        width: 100%;
        margin: 0 0 40px 0;
    }

    .testimonial_slider .slick-prev:before,
    .testimonial_slider .slick-next:before {
        font-size: 12px
    }

    .testimonial_slider {
        padding: 0px 0 0 10px;
    }

    .testimonial-card-content {
        gap: 10px;
        padding: 15px;
    }

    .testimonial-con {
        gap: 20px;
        padding: 20px 20px;
    }

    .testimonial-con-form {
        width: 100%;
    }

    .gallery-heading {
        gap: 10px;
        width: 100%;
        margin: 0 auto 30px auto;
    }

    .footer-links {
        padding-left: 0px;
        margin: 35px 0px;
    }

    section.footer-home {
        padding: 40px 0px 0;
    }

    section.footer-home h6 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .news-letter input#input_1_1 {
        max-width: 100% !important;
    }

    .innerbanner {
        height: 200px !important;
        padding-top: 0px !important;
    }

    .text-innerban h2 {
        font-size: 40px !important;
    }

    .page-id-132 section.choose-sec.sec {
        margin-bottom: 10px !important;
    }

    .main_slider .carousel-item {
        height: 500px;
    }

    .ban-socials-main {
        width: 50%;
        height: 100%;
        padding: 10px;
        flex-direction: column;
    }

    .ban-socials-main::before {
        display: none;
    }

    .ban-scroll-main {
        bottom: 3px;
    }

    .ban-socials ul li a {
        height: 35px;
        width: 35px;
    }

    .main_slider .carousel-indicators [data-bs-target] {
        width: 15px;
        border-bottom: 6px;
    }

    .main_slider .carousel-indicators .active {
        width: 50px;
    }

    .ban-bottom-box {
        justify-content: space-around;
    }

    .banner_text::after {
        bottom: 4px;
    }

    .svg_box_main i {
        font-size: 14px;
    }

    .slicknav_nav a:hover {
        background: #a0723c;
    }

    .services-sec .mb-5 {
        margin-bottom: 20px !important;
    }

    .page-template-page-contact form.hf-form.hf-form-179 {
        padding: 40px 0px;
    }

    .gform_wrapper.gravity-theme * {
        width: 100%;
    }

    .about-txt::before {
        top: 7%;
        width: 10%;
    }


}

@media only screen and (min-width: 0px) and (max-width: 575px) {

    header {
        position: relative;
        background-color: #a1723c;
    }

    h1 {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .menuSec {
        padding: 10px 0;
        height: fit-content;
    }

    .header-logo,
    .menu-box,
    .header-btn {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-logo::before {
        left: 0;
        width: 100%;
        border-radius: 5px;
    }

    .header-logo {
        margin-bottom: 10px;
    }

    .ban-bottom-box {
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 0px 0 0px;
        gap: 10px;
        height: fit-content;
    }

    .banner_text {
        gap: 10px;
        padding: 20px;
    }

    .about-txt {
        gap: 10px;
        padding: 20px;
        margin: 10px auto 0;
    }

    section.about-sec {
        padding: 60px 0 40px 0;
    }

    h4 {
        font-size: 40px;
        line-height: 40px;
    }

    p {
        font-size: 12px;
    }

    .theme1 span.theme1-icon {
        width: 55px;
    }

    .theme1 span.theme1-txt {
        font-size: 12px;
    }

    .theme1 {
        top: 7.5%;
        right: 1.5%;
        height: 50px;
    }

    .price-list-sec {
        padding: 40px 0;
    }

    .price-list-heading {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .price-list li {
        padding: 5px 10px;
        font-size: 14px;
    }

    .header-btn.ouf {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .sec {
        padding: 40px 0;
    }

    .services-heading-txt-btn-main {
        gap: 20px;
        flex-wrap: wrap;
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
    }

    h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .services-heading-txt {
        width: 100%;
    }

    .services-card {
        height: 400px;
    }

    .services-card-img {
        height: 100%;
    }

    .choose-img {
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 20px;
        position: relative;
    }


    .choose-list ul li img {
        width: 15px;
        height: 15px;
        object-fit: contain;
    }

    section.choose-sec {
        padding: 40px 0;
    }

    section.testimonial-sec {
        padding: 40px 0 0 0;
    }

    .testimonial_slider .slick-next {
        right: unset;
        left: 55px;
    }

    .testimonial_slider .slick-prev,
    .testimonial_slider .slick-next {
        height: 35px;
        padding: 0px 24px;
    }

    .testimonial-heaidng {
        gap: 10px;
        width: 100%;
        margin: 0 0 40px 0;
    }

    .testimonial_slider .slick-prev:before,
    .testimonial_slider .slick-next:before {
        font-size: 12px
    }

    .testimonial_slider {
        padding: 0px 0 0 10px;
    }

    .testimonial-card-content {
        gap: 10px;
        padding: 15px;
    }

    .testimonial-con {
        gap: 20px;
        padding: 20px 20px;
    }

    .testimonial-con-form {
        width: 100%;
    }

    .gallery-heading {
        gap: 10px;
        width: 100%;
        margin: 0 auto 30px auto;
    }

    .footer-links {
        padding-left: 0px;
        margin: 35px 0px;
    }

    section.footer-home {
        padding: 40px 0px 0;
    }

    section.footer-home h6 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .news-letter input#input_1_1 {
        max-width: 100% !important;
    }

    .innerbanner {
        height: 200px !important;
        padding-top: 0px !important;
    }

    .text-innerban h2 {
        font-size: 40px !important;
    }

    .page-id-132 section.choose-sec.sec {
        margin-bottom: 10px !important;
    }

    .main_slider .carousel-item {
        height: 500px;
    }

    .ban-socials-main {
        width: 50%;
        height: 100%;
        padding: 10px;
        flex-direction: column;
    }

    .ban-socials-main::before {
        display: none;
    }

    .ban-scroll-main {
        bottom: 3px;
    }

    .ban-socials ul li a {
        height: 35px;
        width: 35px;
    }

    .main_slider .carousel-indicators [data-bs-target] {
        width: 15px;
        border-bottom: 6px;
    }

    .main_slider .carousel-indicators .active {
        width: 50px;
    }

    .ban-bottom-box {
        justify-content: space-around;
    }

    .banner_text::after {
        bottom: 4px;
    }

    .svg_box_main i {
        font-size: 14px;
    }

    .slicknav_nav a:hover {
        background: #a0723c;
    }

    .services-sec .mb-5 {
        margin-bottom: 20px !important;
    }

    .page-template-page-contact form.hf-form.hf-form-179 {
        padding: 40px 0px;
    }

    .gform_wrapper.gravity-theme * {
        width: 100%;
    }

    .about-txt::before {
        top: 7%;
        width: 10%;
    }

    .testimonial_slider::before {
        height: 100%;
        width: 100%;
    }








}

/*Media Query End*/