@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap");

body {
    word-break: break-word;
    font: 15px / 25px Montserrat, sans-serif;
    color: rgb(57, 57, 57);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: rgb(40, 177, 109);
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: rgb(57, 57, 57);
}

a:hover {
    transition: 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: 0.5s;
    outline: none;
}

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

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

select {
    background: url("../images/arrow.png") right center no-repeat rgb(255, 255, 255);
    padding: 0px 40px 0px 30px;
}

::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

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

img {
    max-width: 100%;
}

@font-face {
    font-family: 'blenderprobold';
    src: url("../fonts/BlenderPro-Bold.ttf");
}

.noPadding {
    padding: 0px;
}

.noLeft {
    padding-left: 0px;
}

.noRight {
    padding-right: 0px;
}

.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: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

.flexCol {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    align-items: center;
}

h1 {
    font-family: 'blenderprobold';
    font-size: 79px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin: 0px 0px 20px;
    line-height: 1;
    text-transform: uppercase;
}

h2 {
    font-family: 'blenderprobold';
    font-size: 76px;
    color: rgb(34, 34, 34);
    font-weight: 500;
    margin: 0px 0px 10px;
    text-transform: uppercase;
    line-height: 1;
}

h3 {
    font-family: 'blenderprobold';
    font-size: 35px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

h4 {
    font-family: 'blenderprobold';
    ;
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

h5 {
    font-family: 'blenderprobold';
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

h6 {
    font-family: 'blenderprobold';
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

p {
    color: rgba(0, 0, 0, 0.56);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
}

.menuSec {
    padding: 0px;
}

.menuSec img {
    margin: 0px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 0px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: 0.5s;
    color: rgb(255, 255, 255);
}

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

.menuSec li>ul>li>a {
    border: none;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    padding: 13px 20px !important;
    color: rgb(255, 255, 255) !important;
}

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

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

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

.menuSec li ul li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

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

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

.menuSec ul::after {
    clear: both;
}

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

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    right: 7%;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

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

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

.carousel-control.right,
.carousel-control.left {
    opacity: 1;
    width: 50px;
    height: 50px;
    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: rgb(255, 255, 255);
}

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

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border-width: 10px 0px;
    border-right-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-top-style: solid;
    border-top-color: transparent;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    opacity: 1;
    border-radius: 20px;
    margin: 3px !important;
}

.carousel-caption {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
    color: rgb(255, 255, 255);
    text-align: left;
    display: flex;
    align-items: end;
    background: rgba(103, 51, 27, 0.95);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    width: 12px;
    height: 12px;
    margin: 0px;
}

.carousel-indicators .active {
    margin: 0px;
    background-color: rgb(40, 177, 109);
    width: 10px;
    height: 12px;
}

.top-shipping ul li {
    margin-right: 15px;
}

.top-shipping ul {
    align-items: baseline !important;
}

body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0px;
    font-size: 50px;
    font-weight: 700;
    cursor: pointer;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    opacity: 1 !important;
}

.close:hover {
    background: rgb(226, 29, 26);
    color: white;
    top: 2rem;
    right: 2rem;
    opacity: 1 !important;
}

.search-box.search-elem {
    margin: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.69);
    transition: 0.3s ease-in-out;
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0px auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: Raleway, sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0px;
    right: 15px;
    color: rgb(255, 255, 255);
    width: 171px;
    height: 55px;
    background: rgb(0, 0, 0);
    font-family: Poppins;
    font-size: 22px;
    cursor: pointer;
    border: 0px;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, rgb(231, 14, 14) 0%, rgb(246, 101, 101) 100%);
    display: inline-block;
}

.search-box.search-elem input[type="text"] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: Poppins;
    font-weight: 300;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 2px solid rgb(226, 29, 26);
    transition: border 0.3s;
    border-radius: 0px;
}

.search-box.search-elem input[type="text"]:focus {
    border-bottom: 2px solid rgb(85, 205, 108);
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: Poppins;
    color: rgb(153, 153, 153);
    transition: 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: Poppins;
}

.search-box.search-elem.search-open {
    transform: scale(1);
}

.search-btn {
    font-family: Raleway, sans-serif;
    font-size: 0.875rem;
    padding: 0px 10px;
    display: inline-block;
    color: white;
}

.container-fluid {
    padding: 0px 8%;
}

.theme_btn {
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    background: rgb(118, 61, 35);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: background-color 0.3s;
    border: 1px solid rgb(255, 255, 255);
    height: 53px;
}

.theme_btn:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(118, 61, 35);
    border: 1px solid rgb(118, 61, 35);
}

.theme_btn .txt {
    padding: 0px 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.theme_btn .arrow_btn {
    background-color: rgb(255, 251, 255);
    border: 1px solid rgb(225, 225, 225);
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme_btn:hover .arrow_btn {
    background-color: rgb(118, 61, 35);
    border: 1px solid rgb(118, 61, 35);
}

.theme_btn .arrow_btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transform: rotate(0deg);
    transition: transform 0.5s, filter 0.4s;
    filter: brightness(0) saturate(100%) invert(26%) sepia(11%) saturate(4159%) hue-rotate(338deg) brightness(88%) contrast(84%);
}

.theme_btn:hover .arrow_btn img {
    transform: rotate(360deg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(43%) saturate(5%) hue-rotate(303deg) brightness(103%) contrast(100%);
}

.headerbtn {
    text-align: end;
}

.menuSection {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 40px 0px;
}

.main_slider {
    position: relative;
}

.bnrbtn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.headset {
    display: flex;
    gap: 20px;
}

.headset i {
    color: rgb(255, 255, 255);
    font-size: 50px;
}

.headset h6 {
    font-family: 'Montserrat', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.headset h5 a {
    font-family: Montserrat, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 24px;
}

.banner_text p {
    color: rgb(255 255 255 / 82%);
    width: 80%;
}

.banner_img {
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    /* right: 140px; */
    /* height: 760px; */
    /* bottom: 0px; */
    /* width: 35%; */
    z-index: 1;
}

.banner_img img {
    height: 710px;
    width: 100%;
    object-fit: cover;
    object-position: 0px 45%;
}

img.img-fluid {
    height: 845px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.banner_img::before {
    position: absolute;
    content: "";
    height: 380px;
    width: 120%;
    bottom: -60px;
    right: 50%;
    background: rgb(103, 51, 27);
    z-index: -1;
    transform: translateX(50%);
}

.carousel-inner {
    overflow: visible;
}

.abt_txt p {
    margin-bottom: 20px;
    width: 96%;
}

.abt_txt {
    /* padding-left: 20px; */
}

.about {
    padding: 200px 0px 130px;
}

.abt_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: 49%;
}

img.abt-1 {
    height: 620px;
    width: 350px;
    object-fit: cover;
}

img.abt-2 {
    height: 485px;
    width: 260px;
    object-fit: cover;
}

.abt_img::before {
    position: absolute;
    content: "";
    height: 530px;
    width: 155%;
    background: rgb(241, 235, 233);
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}

/* services */

.service_heading {
    text-align: center;
    margin-bottom: 40px;
}

.service_heading h2 {
    color: rgb(255, 255, 255);
}

.service_heading p {
    color: rgb(255, 255, 255);
    width: 49%;
    margin: 0px auto;
}

.ser_main_txt h3 {
    color: rgb(255, 255, 255);
    font-size: 23px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.ser_main_txt h3::before {
    position: absolute;
    content: "";
    height: 5px;
    width: 80px;
    border-radius: 10px;
    left: 0px;
    bottom: 0px;
    background: rgb(255, 255, 255);
    transition: 1s ease-in-out;
}

.ser_main_txt p {
    color: rgb(202, 181, 171);
    margin-bottom: 30px;
    font-size: 14px;
}

.ser_main_txt {
    background-color: transparent;
    padding: 30px 20px;
    border-width: 0px 1px 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: rgb(151, 109, 90);
    border-bottom-color: rgb(151, 109, 90);
    border-left-color: rgb(151, 109, 90);
    border-image: initial;
    border-top-style: initial;
    border-top-color: initial;
    transition: 0.3s ease-in;
}

.ser_main_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ser_main {
    border-radius: 10px;
    margin-bottom: 30px;
    transition: 0.3s ease-in;
}

.service .container-fluid {
    position: relative;
    z-index: 99;
}

.service {
    padding: 95px 0px 120px;
    background: url("../images/service-bg.jpg") 0% 0% / cover no-repeat;
    position: relative;
}

.service::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0px;
    background: rgb(103 51 27 / 88%);
}

.service_slider .slick-slide {
    opacity: 1;
}

.ser_main:hover .ser_main_txt h3::before {
    width: 100%;
}

.ser_main:hover .ser_main_txt {
    background: rgb(103, 51, 27);
}

/* services */

/* why choose us */

.wcu_txt h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #424242;
}

.wcu_txt p {
    font-size: 14px;
}

.wcu_icon {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #7c462d;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in;
}

.wcu_icon img {
    transition: all .3s ease-in;
}

.wcu_icon::before {
    position: absolute;
    content: '';
    background: #7c462d;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    transform: scale(0, 0);
    border-radius: 50%;
    z-index: -1;
    transition: all 500ms ease;
}

.wcu_main:hover .wcu_icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.wcu_main:hover .wcu_icon::before {
    transform: scale(1, 1);
}

.wcu_main {
    padding: 90px 50px;
    border-left: 1px solid #d1d1d1;
    transition: all .3s ease-in;
}

section.wcu {
    border-bottom: 1px solid #d1d1d1;
}

.wcu .col-lg-4:last-child .wcu_main {
    border-right: 1px solid #d1d1d1;
}

/* why choose us */

/* testimonial */

.testimonial {
    padding: 180px 0 0;
}

.testi_left img {
    height: 670px;
    width: 100%;
    object-fit: cover;
}

.testi_heading h2 {
    font-size: 54px;
    margin-bottom: 0;
}


.r_flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r_flx_rating i {
    color: #fd8f00;
    font-size: 20px;
    transition: color 0.4s ease;
}

.reviews_card {
    background-color: #fff;
    padding: 30px 80px 30px 30px;
    position: relative;
    transition: background 0.4s ease;
    border: 1px solid #dedede;
}

.reviews_card p {
    margin-top: 30px;
    margin-bottom: 30px;
    transition: color 0.4s ease;
    font-size: 14px;
}

.reviews_card h5 {
    text-transform: uppercase;
    font-size: 22px;
    transition: color 0.4s ease;
    font-family: blenderprobold;
}

.reviews_card span {
    font-family: 'Montserrat';
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    color: rgba(0, 0, 0, 0.56);
}

.r_flx_img {
    position: relative;
    z-index: 1;
}

.r_flx_img::before {
    position: absolute;
    content: '';
    background: #763d23;
    border-radius: 50%;
    height: 108%;
    width: 108%;
    top: 0%;
    right: -9%;
    z-index: -1;
    transition: background 0.4s ease;
}

.transparent_bg_img {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
}

.transparent_bg_img img {
    transition: filter 0.4s ease;
}

.reviews_card:hover {
    background: #733b25;
}

.reviews_card:hover p,
.reviews_card:hover h5,
.reviews_card:hover span,
.reviews_card:hover .r_flx_rating i {
    color: #fff !important;
}

.reviews_card:hover .r_flx_img::before {
    background: linear-gradient(77deg, rgb(255, 255, 255) 9%, rgb(255, 255, 255) 23%, rgb(255, 255, 255) 39%, rgb(255, 255, 255) 56%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 87%);
}

.reviews_card:hover .transparent_bg_img img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(103deg) brightness(108%) contrast(97%);
}

.reviews_card::before {
    content: '';
    background: #763d23;
    height: 55px;
    width: 3px;
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 1;
}

.reviews {
    padding: 300px 0 100px;
    background: url(../images/testi-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -210px;
}

.reviews .container-fluid {
    position: relative;
    z-index: 99;
}

.testi_btns .testi_btn_prev {
    width: 60px;
    height: 60px;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to left, #ffffff, #763d23) border-box;
    border-radius: 50px;
    border: 1px solid transparent;
}

.testi_btn i {
    color: #763d23;
    font-size: 20px;
}

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

.testi_btns .testi_btn_next {
    width: 60px;
    height: 60px;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to left, #733b25, #ffffff) border-box;
    border-radius: 50px;
    border: 1px solid transparent;
}

.testi_btns {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

/* testimonial */

/* contact */

.contact {
    padding: 80px 0px 90px;
    background: url(../images/contact-bg.png) 0% 0% / cover no-repeat;
    margin-top: -8%;
}

.contact_right h2 {
    color: #ffffff;
    font-size: 95px;
    margin-bottom: 20px;
}

.contact_right form input,
.contact_right form textarea {
    border: none;
    border-bottom: 1px solid #616161;
    padding: 15px 0;
    margin-bottom: 20px;
    width: 100%;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    background: transparent;
}

.contact_right form input::placeholder,
.contact_right form textarea::placeholder {
    color: #a4a4a4;
}

.contact_right form textarea {
    height: 170px;
    resize: none;
}

button.theme_btn {
    padding: 0;
}

.contact_left h3 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 70px;
    margin-top: 150px;
}

.cont_box_txt h6 {
    color: #5d5d5d;
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 5px;
}

.cont_box_txt a {
    color: #6b6b6b;
    font-size: 16px;
}

.cont_box {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    background: #f3f3f3;
    padding: 30px 30px 30px 50px;
    margin-top: 30px;
    width: 81%;
    position: relative;
}

.cont_box::before {
    content: '';
    background: #763d23;
    height: 100%;
    width: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

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

.cont_box_img img {
    object-fit: contain;
    width: auto;
    height: auto;
}

.contact_right {
    padding-left: 50px;
}

/* contact */

/* gallery */

.gallery_txt h3 {
    font-size: 70px;
    color: #222222;
    margin-bottom: 20px;
}

.gallery_txt p {
    font-size: 14px;
}

.gallery_txt {
    border: 5px solid #ebebeb;
    padding: 40px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.project_main>a {
    position: relative;
    overflow: hidden;
    transition: all ease .3s;
    width: 100%;
}

.project_main a img {
    height: 440px;
    width: 100%;
    object-fit: cover;
}

.project_main>a::after {
    position: absolute;
    content: "+";
    background: rgba(118, 61, 35, 0.664);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    font-size: 40px;
    transition: all 0.4s ease-in-out 0s;
    transform: scale(0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_main>a:hover::after {
    transition: all 0.4s ease-in-out 0s;
    transform: scale(1);
}

.gallery {
    padding: 150px 0 200px;
}

/* gallery */

/* footer */

.footerSec h5 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 30px;
    padding: 10px 50px 10px 10px;
    border-left: 3px solid #763d23;
}

.footerSec {
    position: relative;
    background: #1c1c1c;
    padding: 190px 0 0px;
}

.footerSec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100px;
    background: #ffffff21;
    height: 100%;
    width: 1px;
    z-index: 1;
}

.ftr_contant p {
    color: #a4a4a4;
    font-weight: 500;
    font-size: 14px;
}

.ftr_links ul li a {
    color: #ffffff61;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s ease-in
}

.ftr_links ul li a:hover {
    color: #ffffff;
    transform: translateX(10px);
}

.news_letter ul li a {
    color: #ffffff;
    font-size: 26px;
    font-family: 'blenderprobold';
}

.news_letter p {
    color: #a4a4a4;
    font-weight: 500;
    font-size: 14px;
    margin: 10px 0 30px;
    width: 80%;
}

.quotebtn {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid #ffffff;
    transition: all .3s ease-in;
}

.quotebtn:hover {
    color: #ffffff;
    background: #763d23;
    border: 1px solid #ffffff;
}

.work_timings ul li {
    color: #929292;
    font-weight: 400;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.work_timings ul div {
    border-bottom: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.work_timings ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

li.colorfont {
    color: #ffffff !important;
    font-size: 16px !important;
}

.footer-btm {
    position: relative;
    padding: 25px 0;
    background: #282828;
    margin-top: 80px;
}

.ftr_social a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 15px;
    border-radius: 50%;
    transition: all .3s ease-in;
}

.ftr_social a:hover {
    border: 1px solid #763d23;
    background: #763d23;
}

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

.copy_right {
    text-align: end;
    padding-right: 80px;
}

.copy_right p {
    color: #ffff;
    font-size: 14px;
}

.scroll_up {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    height: 100%;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    background: #763d23;
    font-size: 20px;
    transition: all .3s ease-in;
}

.scroll_up:hover {
    color: #763d23;
    background: #282828;
    border: 1px solid #763d23;
}

.ftr_top_left_txt h6 {
    font-size: 26px;
    margin-bottom: 5px;
}

.ftr_top_left_txt p {
    width: 80%;
    font-size: 14px;
}

.ftr_top_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.ftr_top {
    padding: 45px;
    background: #ffffff;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.2);
    width: 80%;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.ftr_top_right form {
    position: relative;
}

.ftr_top_right {
    text-align: end;
}

.ftr_top_right input {
    width: 100%;
    background: #eeeeee;
    border: none;
    padding: 15px 210px 15px 40px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
}

.ftr_top_right button {
    background: #763d23;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #ffffff;
    padding: 15px 40px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    transition: all .3s ease-in;
}

.ftr_top_right button:hover {
    background: #ffffff;
    color: #763d23;
    border: 1px solid #763d23;
}

.ftr_links {
    padding-left: 50px;
}

/* footer */

.d_block {
    display: block;
}

html,
body {
    overflow-x: hidden !important;
}

.banner_text {
    margin-top: -100px;
}