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

html {
	font-size: 16px;
	overflow-x: hidden;
}
body {
	position: relative;
	font-family: 'Poppins', sans-serif;
	background: #fff;
	overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
	--white: #ffffff;
	--black: #000;
	--theme-color: #9A784B;
	--gradiant-color1:#9a784b;
	--gradiant-color2:#f6c98e;
	--gradiant-color3:#9a784b;
}

p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2;
	color: var(--black);
}

h1,
h2,
h4,
h5,
h6 {
	color: var(--black);
}

h3{
	font-family: 'Roboto', sans-serif;
}
 
.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
figure {
	margin: 0;
}
section {
	padding: 5rem 0;
}
.themeBtn {
	background:transparent;
	font-size: 1.25rem;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	border-radius: 35px;
	padding: 1.188rem 3rem;
	line-height: normal;
	background: linear-gradient(90deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
	position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;

}
.themeBtn:hover{
	-webkit-transform: translateY(-5px);
    transform: translateY(-5px);
	background-color: var(--theme-color);
	color: var(--white);
	background: linear-gradient(183deg, var(--gradiant-color2) 0%, var(--gradiant-color3) 54%, var(--gradiant-color1) 100%);

}
.themeBtn:before{
	pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.themeBtn:hover:before{
	opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.headingOne {
	font-size: 2.05rem;
	color: var(--black);
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.1;
}
.headingTwo {
	font-size: 3.75rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 2.5rem;
	text-align: center;
	text-transform: uppercase;
}

/* header start */
header {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	background-color: #fffffff2;
}

.tobar .container {
    border-bottom: 1px solid var(--theme-color);
    padding: 0.5rem 0 0.5rem;
}
.tobar .themeBtn{
	font-size: 0.875rem;
    border: 1.5px solid var(--theme-color);
    border-radius: 21px;
    padding: 0.563rem 1.375rem;
    background: transparent;
	color: var(--theme-color);
	font-weight: 600;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;

}
.tobar .themeBtn:hover{
	-webkit-transform: translateY(-5px);
    transform: translateY(-5px);
	background-color: var(--theme-color);
	color: var(--white);

}
.tobar .themeBtn:before{
	pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.tobar .themeBtn:hover:before{
	opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.cart-items {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: end;
}
.cart-items li a {
    position: relative;
}
.cart-items li a i{
	color: var(--black);
	font-size: 1.5rem;
	font-weight: 400;

}
.cart-items li a i:hover{
	color: var(--gradiant-color3);
}
.cart-items li a span {
    display: inline-grid;
    place-items: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--theme-color);
    font-size: 0.688rem;
    border: 1px solid var(--white);
    box-shadow: 0px 8px 53.1px 5.9px rgb(180 180 180 / 25%);
    color: var(--white);
    line-height: 1;
    position: absolute;
    top: -12px;
    right: -8px;
}
header .form-inline {
    justify-content: end;
}

a.navbar-brand {
    display: flex;
    justify-content: end;
}
.navbar-nav {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4rem;
    padding: 1rem 0;
}

.navbar-nav .nav-item .nav-link {
	font-size: 1.125rem;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 500;
	padding: 0 0;
	margin: 0 0;
	display: inline-block;
	position: relative;
}
.navbar-nav .nav-item .nav-link:hover{
	color: var(--theme-color);
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down > a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 40px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 10px 20px !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    color: var(--black) !important;
    display: block !important;
}

.navbar .drop-down ul a:hover {
    background: var(--theme-color);
    color: #fff !important;
}


/* header end */




/* slider start */

.mainSlider {
	height: 1142px;
	position: relative;
	z-index: 1;
	padding: 0;
}
.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center
}
.slideContent h1{
	font-size: 4.2rem;
	line-height: 80px;
	margin: 0;
	text-transform: uppercase;
}
.slideContent h1 span{
	font-weight: 400;
}
.slideContent  h3{
	font-size: 1.8rem;
	margin: 0.5rem 0 1rem;
}
.bannerShapLeft {
    position: absolute;
    bottom: 10px;
	left: 0;
	z-index: -1;
}
.bannerShapRight {
    position: absolute;
    bottom: 10px;
    right: 0;
	z-index: -1;
}
/* slider end */

/* about start */
.about{
	background: url(../images/aboutbg.webp) top / cover no-repeat;
	margin-top: -130px;
	padding: 15rem 0 22rem 0;
	position: relative;
}
.about::before{
	position: absolute;
	content: '';
	background: #f1e4d2;
	left: 0;
	top: 0;
	height: 774px;
	width: 727px;
}
.lines-ab {
	display: flex;
	align-items: center;
	gap: 10px;
}
.about .line{
	width: 60px;
	display: block;
	height: 4px;
	background: #000;
}
.about h2{
	font-size: 1.563rem;
	font-weight: 500;
}
.about h4{
	font-size: 39px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 2rem;
	    line-height: 58px;
}
.ab-wrp figure{
	position: relative;
}
.about2{
	position: absolute;
	right: -34px;
	bottom: -8rem;
	border: 10px solid var(--white);
}

.ab-wrp {
    position: relative;
}
.ab-wrp::before{
	position: absolute;
	width: 11px;
	height: 287px;
	content: '';
	background: linear-gradient(90deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
	right: 21px;
	border-radius: 20px;
	top: 20px;
}
.aboit-wrp {
    margin: 2rem 0 0 4rem;
}
.aboit-wrp p{
	color: #7C7C7C;
}

/* about end*/

/* services start */
.services{
	background: url(../images/servicesBg.webp) top / cover no-repeat;
	padding: 16rem 0 7rem;
	margin-top: -15rem;
	z-index: 1;
	position: relative;
}

.services .container{
	position: relative;
}
.ser-wrp figure img{
	width: 100%;
}
.ser-wrp figure{
	overflow: hidden;
}
.ser-wrp figure  img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.ser-wrp:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.ser-wrp:hover .sr-cont{
	background-color: var(--black);
	-webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
	color: var(--white);
}
.ser-wrp:hover .sr-cont i{
	color: var(--white);
	-webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.sr-cont {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
}
.sr-cont h3{
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
}
.sr-cont i{
	color: var(--black);
	font-size: 1.875rem;
}

.services .swiper-button-next {
	top: 50%;
	right: -8rem;
	width: 70px;
	height: 70px;
	border: 1px solid var(--black);
	border-radius: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.services .swiper-button-next:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	font-size: 2rem;
	color: var(--black);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.services .swiper-button-prev {
	top: 50%;
	left: -8rem;
	width: 70px;
	height: 70px;
	border: 1px solid var(--black);
	border-radius: 50%;
	right: inherit;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.services .swiper-button-prev:after {
	content: '\f104';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	font-size: 2rem;
	color: var(--black);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.services .swiper-button-next:hover,
.services .swiper-button-prev:hover {
	background: var(--black);
	color: var(--white);
}

.services .swiper-button-next:hover:after,
.services .swiper-button-prev:hover:after {
	color: var(--white);
}
/* services end */


/* shop start */
.shop{
	background: url(../images/shopbg.webp) center / cover no-repeat;
	position: relative;
}
.product-wrp {
    background: #F1F1F1;
}

.product-cont  p{
	margin: 0;
}

.product-cont h6 {
    font-size: 1.375rem;
    font-weight: 600;
}
.product-cont h6 span{
	color: var(--theme-color);
	display: block;
	margin: 0.5rem 0;
}
.product-cont  .themeBtn {
    font-size: 0.875rem;
    border: 1.5px solid var(--theme-color);
    border-radius: 21px;
    padding: 0.563rem 1.375rem;
    background: transparent;
    color: var(--theme-color);
    font-weight: 600;
}


.productSlider .swiper-button-next1 {
	top: 50%;
	right: 13%;
	width: 70px;
	height: 70px;
	position: absolute;
	background: linear-gradient(90deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
	border-radius: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 1;
}

.productSlider .swiper-button-next1:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	font-size: 2rem;
	color: var(--black);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}


.productSlider .swiper-button-prev1 {
	top: 50%;
	left: 13%;
	width: 70px;
	height: 70px;
	position: absolute;
	background: linear-gradient(90deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
	border-radius: 50%;
	right: inherit;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 1;
}

.productSlider .swiper-button-prev1:after {
	content: '\f104';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	font-size: 2rem;
	color: var(--black);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.productSlider .swiper-button-next1:hover,
.productSlider .swiper-button-prev1:hover {
	background: var(--black);
	color: var(--white);
	cursor: pointer;
}

.productSlider .swiper-button-next1:hover:after,
.productSlider .swiper-button-prev1:hover:after {
	color: var(--white);
}
.productSlider .swiper-slide.swiper-slide-prev,
.productSlider .swiper-slide.swiper-slide-next + .swiper-slide + .swiper-slide{
	opacity: 0.3;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}




/* shop end */

/* special start */
.special{
	background-color: #efe2d2;
	padding: 50px 0px;
}
.special .headingTwo{
	text-align: left;
	margin-bottom: 0.5rem;
}
.special p{
	color: #7C7C7C;
	margin: 0;
}
.special h5{
	font-size: 2.625rem;
	margin: 1rem 0;
	font-weight: 600;
}
.special h5 span{
	font-size: 1.563rem;
	font-weight: 500;
}
.special-wrp {
    margin-left: 3rem;
}
/* special end */

/* cta start */
.cta{
	background: linear-gradient(173deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
	text-align: center;
	padding: 1.6rem 0;
}
.cta h4{
	font-size: 2.25rem;
	font-weight: 500;
	margin: 1rem 0;
}
.cta-bt a:first-child{
	font-size: 2.625rem;
	color: var(--black);
	font-weight: 600;
	display: block;
}
.cta-bt a:first-child:hover{
	color: var(--theme-color);
}
.cta-bt .themeBtn{
	background: var(--black);
	color: var(--white);
	margin-top: 0.5rem;
}
/* cta end */


/* blog start */
.blog-cont {
    display: flex;
    gap: 30px;
    padding: 1rem 0;
}

.date {
    background: linear-gradient(179deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
    height: 115px;
    width: 103px;
    flex-shrink: 0;
}
.date h3{
	font-size: 3.75rem;
	color: var(--white);
	line-height: 43px;
	text-align: center;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.date h3 span{
	font-size: 1.5rem;
}
.blog-text h2{
	font-size: 1.563rem;
	
}
.lines-blog{
	display: flex;
    align-items: center;
    gap: 10px;
}
.lines-blog .line {
    width: 27px;
    display: block;
    height: 1px;
    background: var(--theme-color);
}
.lines-blog a{
	color: var(--theme-color);
	font-size: 1.188rem;
	font-weight: 600;
}
.lines-blog a:hover{
	color: var(--black);
}

.blogal figure{
	overflow: hidden;
}
.blogal figure  img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.blogal:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* blog end */

/* newsletter start */
.newsletter{
	background: linear-gradient(173deg, var(--gradiant-color1) 0%, var(--gradiant-color2) 54%, var(--gradiant-color3) 100%);
	padding: 3.2rem 0;
}
.newsletter .headingTwo{
	text-align: left;
	margin: 0;
}
.newsletter h5{
	font-size: 1.625rem;
	font-weight: 400;
}


.newsletter form {
    margin-top: 20px;
    position: relative;
}

.newsletter form input {
	width: 100%;
	border: 0;
	height: 81px;
	padding: 0 1em;
	border-radius: 41px;
	background: transparent;
	margin: 0 auto;
	border: 2px solid var(--black);
	font-size: 1.125rem;
}
.newsletter form input::placeholder{
	color: var(--black);
}
.newsletter form input:focus-visible{
	outline: none;
}
.newsletter form button.btn {
    color: var(--white);
    background-color: var(--black);
    font-size: 1.25rem;
    text-transform: uppercase;
    position: absolute;
    right: 15px;
    width: 145px;
    font-weight: 500;
    top: 11px;
    border-radius: 29px;
    padding: 13px 42px;
}
.newsletter form button.btn:hover{
	background-color: var(--theme-color);
}

.newsletter .form-group {
    margin: 1.5rem 0 1rem;
}

.newsletter .form-group.chebox input[type=checkbox]{
	display: none;
  }
.newsletter .form-group.chebox label {
	position: relative;
	cursor: pointer;
	font-weight: 400;
	display: flex;
	font-size: 1rem;
	color: var(--black);
	gap: 0.5rem;
	line-height: 1.7;
  }
  
.newsletter .form-group.chebox label:before {
	content:'';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1.5px solid var(--black);
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;	width: 18px;
	height: 18px;
	border-radius: 50%;
  }
  
.newsletter .form-group.chebox input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 9px;
	width: 4px;
	height: 12px;
	border: solid var(--black);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	}

/* newsletter end */


/* Begin: footer */
footer {
	background-color: var(--black);
	position: relative;
	padding-top: 6rem;
}

footer p{
	color: var(--white);
	margin-top: 1rem ;
	text-align: left;
}
footer h3 {
	color: var(--white);
	font-size: 2rem;
	font-weight:600;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
footer .links,
footer .contInfo {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-flow: column;
}
footer .contInfo {
	gap: 2rem 1rem;
}
footer .links li a {
        padding: 1px;
	font-size: 1.0625rem;
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: block;
}
footer .contInfo li a {
	display: flex;
	align-items: flex-start;
	gap: 0 1.5rem;
	line-height: 1.5;
}
footer .contInfo li:nth-child(1)  a span{
	font-size: 1.5rem;
	font-weight: 600;
}

footer .contInfo li a span {
	display: block;
	text-transform: none;
	font-size: 1.125rem;
	color: var(--white);
	line-height: 1.5;
	font-weight: 400;
}

footer .links li a:hover,
footer .links li a:focus {
	color: var(--theme-color);
}

.copyRight {
	border-top: 1px solid rgb(225 225 225/18%);
	padding: 2rem 0;
	margin-top: 2rem;
	
}
.copyRight p {
	font-size: 1.125rem;
	color: var(--white);
	line-height: 1;
	margin: 0;
	text-align: center;
}
.footerSocial {
	display: flex;
	margin-top: 2rem;
	align-items: center;
	justify-content: center;
	gap: 0 16px;
}
.footerSocial a {
	font-size: 1rem;
	color: var(--white);
	display: grid;
	place-items: center;
	border-radius: 50%;
	background-color: #1a1a1a;
	width: 60px;
	height: 59px;
}
.footerSocial a:hover {
	background-color: var(--theme-color);
	color: var(--white);
	border-color: var(--theme-color);
}
footer .links{
	display: flex;
	flex-flow: column wrap;
	margin: 0;
	max-height: 250px;
	gap: 2px 0rem;
}



/* END: footer */



/* preloader start */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--white);
}

.ip {
	width: 16em;
	height: 8em;
}
.ip__track {
	stroke: (#000,90%,90%);
	transition: stroke #000;
}
.ip__worm1,
.ip__worm2 {
	animation: worm1 2s linear infinite;
	stroke: var(--theme-color) 
}

.ip__worm2 {
	animation-name: worm2;
	
}



/* Animation */

@keyframes worm1 {
	from {
		stroke-dashoffset: 0;
	}
	50% {
		animation-timing-function: steps(1);
		stroke-dashoffset: -358;
	}
	50.01% {
		animation-timing-function: linear;
		stroke-dashoffset: 358;
	}
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes worm2 {
	from {
		stroke-dashoffset: 358;
	}
	50% {
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: -358;
	}
}
/* preloader end */


/* inner pages css */
.innerBan .overlay {
	position: absolute;
	text-align: left;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
}
  
.innerBan h2 {
	font-size: 6.25rem;
	color: var(--black);
	font-weight: 400;
	text-transform: uppercase;
}
.innerBan {
	position: relative;
	z-index: 1;
}
.innerBan .bannerShapRight,
.innerBan .bannerShapLeft {
    bottom: 16px;
}

.innerabout .ab-wrp::before {
    content: unset;
}
.innerabout .aboit-wrp{
	margin: 0;
}
.innerabout img{
	width: 100%;
}
.innerabout .aboit-wrp p{
	color: var(--black);
}
.innerabout .aboit-wrp p+p{
	margin-top: 2rem;
}
.about.innerabout {
    background: unset;
    padding: 15rem 0 10rem;
}
.aboutMe{
	background-color: #f9f0e5;
	padding: 3rem 0;
}
.aboutMe img{
	margin-top: -9rem;

}	
.vision .headingTwo{
	text-align: left;
	margin: 1rem 0 0;
}
.vision p{
	color: #7C7C7C;
}
.innerservices .headingTwo{
	text-align:left;
	margin-bottom: 1rem;
}
.innerservices p{
	color: #7C7C7C;
}
.innerservices p+p{
	margin-top: 2rem;
}
.innerservices .row+.row{
	margin-top: 5rem;
}

.shopInner .row+.row,
.blog.innerblog .row+.row{
	margin-top: 3rem;
}


.specialInner h4{
	font-size: 1.75rem;
	font-weight: 500;
}
.specialInner h5{
	font-size: 1.563rem;
	font-weight: 500;
	width: 74%;
}
.innerservices.specialInner a.themeBtn {
    margin: 0.5rem 0;
}
.speIn {
    margin-left: 6rem;
}
.specialInner p {
    width: 88%;
}
.specialInner h2{
	font-size: 2.625rem;
	margin: 1rem 0;
	font-weight: 600;
}
.specialInner h2 span{
	font-size: 1.563rem;
	font-weight: 500;
}

/* inner pages css */


/* contatcpage  */
.listCntct {
	text-align: center;
}

.listCntct figure {
	width: 250px;
	height: 250px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	box-shadow: 0 20px 50px 0 #0000001a;
	transition: all 0.5s ease-in-out;
}



.listCntct a {
	font-size: 1.125rem;
	color: #000000;
	text-decoration: none;
	font-weight: 400;
}

.listCntct span {
	font-size: 22px;
	color: #8e8e8e;
	text-decoration: none;
	font-weight: 400;
}
.listCntct h2 {
	font-size: 1.563rem;
	text-transform: uppercase;
	margin-top: 1.6rem;
}
.contctPAge .col-md-4:nth-child(2) a  {
    font-size: 1.375rem;
    font-weight: 600;
}




.getForm input,
.getForm select {
	width: 100%;
	height:68px;
	padding: 0 1rem;
	margin: 0 0 1rem 0;
	font-size: 1rem;
	border-radius: 5px;
	color: #7C7C7C;
	border: 1px solid #C0C0C0;
}

.getForm textarea {
	width: 100%;
	padding: 1rem;
	margin: 1rem 0;
	border-radius: 5px;
	border: 1px solid #C0C0C0;
	height: 155px;
}
.bookNow .getForm textarea{
	height: 192px;
}
.cntctInner .headingTwo{
	text-align: left;
	margin: 0;
}
.getForm p {
	color: #7C7C7C;
	margin-bottom: 1rem;
	font-size: 1.125rem;
}
.getForm label {
	font-size: 1.125rem;
	color: #545454;
	margin: 0;
}

.getForm button {
	border: none;
}


.menu-main-menu-container {
    margin: auto !important;
}
span.woocommerce-Price-amount.amount bdi {
    display: flex;
    gap: 0.2rem;
}


/* 404 Page */
  .page-content.notfoundPg {
      text-align: center;
  }

  h1.notfoundHad {
      font-size: 200px;
      color: var(--theme-color);
  }
  
  
  /*Customer Login Sinup Page CSS*/

div#customer_login .col-1, div#customer_login .col-2 {
    max-width: 100%;
    width: 50%;
}

span.password-input {
    display: block;
    width: 100%;
}

div#customer_login input {
    height: 44px;
    padding: 5px;
}

input#rememberme {
    height: auto !important;
    padding: 0px;
    margin-left: 12px;
}

div#customer_login button {
    padding: 15px 40px;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 2px solid var(--theme-color);
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0px 0px 6px 7px var(--theme-color)75;
}


/*Woocommerce MY Account CSS*/



/* Change WC Acct Page Column Widths */
@media only screen and (min-width: 769px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 22%;
  }
  .woocommerce-account .woocommerce-MyAccount-content { 
    width: 75%;
  }
}
/* Style WC Account Endpoint Links */
nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
  max-width:200px;
  font-size: 17px;
  line-height: 26px;
}
nav.woocommerce-MyAccount-navigation ul li {
  padding: 8px 20px;
  background-color: rgba(0,0,0,0.05);
  border-bottom: 2px solid rgb(161 92 37);
}
nav.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: rgba(0,0,0,0.1);
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: rgba(0,0,0,0.8); cursor: default;
}
nav.woocommerce-MyAccount-navigation ul li.is-active:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgb(163 91 44);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}
nav.woocommerce-MyAccount-navigation a {
    color: #a55a31;
}

.woocommerce-MyAccount-content a {
    color: #a55a31;
}

div#customer_login {
    padding: 4rem 0 !important;
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {
  background-color: rgba(0,0,0,0.07);
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after { 
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0,0,0,0.07);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}

.u-columns.woocommerce-Addresses.col2-set.addresses .col-1, .u-columns.woocommerce-Addresses.col2-set.addresses .col-2 {
    max-width: 100%;
    width: 48%;
}
  

section.related.products {
    display: none !important;
}

.single-product .sale {
    all: unset;
    width: 100%;
}

p.cart-empty.woocommerce-info {
    margin-top: 50px;
}
p.return-to-shop {
    margin-bottom: 50px;
}
.woocommerce-info::before {
    color: var(--theme-color) !important;
}
.woocommerce-info {
    border-top-color: var(--theme-color) !important;
}


/*Detail Page CSS*/
.product-details-right h2 {
    font-size: 45px;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.btn-warning {
        width: 10rem !important;
    color: #ffffff !important;
    background-color: var(--theme-color) !important;
    border-color: #9A784B !important;
    height: 50px;
}

.btn-warning:hover {
    color: #9A784B !important;
    background-color: transparent !important;
    border-color: #9A784B !important;
}

.woocommerce .quantity .qty {
    border: 2px solid #9A784B;
    height: 50px;
    width: 6.631em !important;
}

span.posted_in a {
    color: #9A784B !important;
}

h3.clRed {
    font-size: 35px !important;
    margin-bottom: 20px !important;
}

.woocommerce span.onsale {
    background-color: #9A784B !important;
}

.woocommerce-notices-wrapper {
    width: 100% !important;
}
.woocommerce-message::before {
    color: var(--theme-color) !important;
}

.woocommerce-message {
    border-top-color: var(--theme-color) !important;
}

.coupon.couponarea label {
    display: none !important;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    width: 16rem !important;
    color: #9A784B !important;
    background-color: transparent !important;
    border: 2px solid #9A784B !important;
}

/*Reviews Form CSS*/

.woocommerce #review_form #respond textarea {
    box-sizing: border-box;
    width: 100%;
    border-color: #ddd;
    background: #f0f0f0;
}

form#commentform input {
    background: #f0f0f0;
    border: 0px;
    height: 50px;
    width: 100%;
}

input#wp-comment-cookies-consent {
    width: auto !important;
    height: auto !important;
}


/* Single Page Tabs Setting */

.wc-tabs li a {
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
    padding: 0.5em 1em;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
ul.nav.nav-tabs.wc-tabs li {
    margin-right: 10px !important;
}
.nav-tabs{
    margin-bottom: 1rem;
}
.wc-tabs li.active a {
    background: #000000;
}

/*Cart Page CSS*/
.title h2 {
    font-size: 45px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
    width: 8rem !important;
    border: 2px solid var(--theme-color);
}

.woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 132px !important;
}


nav.woocommerce-MyAccount-navigation {
    padding: 3rem 0 !important;
}

.woocommerce-MyAccount-content {
    padding: 3rem 0 !important;
}

.woocommerce div.product {
    width: 100% !important;
}
div#loom-companion-mv3 {
    display: none;
}

.post, .page {
    margin: 0;
}

.special .headingTwo {
    font-size: 2.75rem;
}