
/* FONT IMPORT */
@import url(layout.min.css);
/* Google Font */
@import url("https://fonts.googleapis.com/css2?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");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Yesteryear&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --primary: #2e4e77;
  --secondary: #183437;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Work Sans", sans-serif;
}

section {
  position: relative;
}

h1,
h2,
h3 {
  font-family: "Gentium Plus", serif;
}

p{
    font-size: 1.125rem;
}

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

/* PRELOADER */

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

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--secondary);
}

.navbar-brand img,.footLogo a img {
 width: 200px;
}
.preLoader img {
    width: 200px;
}
/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: transparent;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  width: fit-content;
  padding: 0.875rem 3.75em;
}

.themeBtn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.themeBtn i {
  font-size: 1.25rem;
}

/* !GLOBAL CSS */

/* Main Banner Css Start */

.mainBanner {
  position: relative;
  /*height: 810px;*/
  height: 900px;
  background: #f4f9ff;
  z-index: 1;
  display: flex;
  align-items: end;
  padding-bottom: 3.125rem;
}

.mainBanner:before {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 52%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.bannerContent h1 {
  color: var(--secondary);
  font-size: 3.625rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.bannerContent p {
  color: #333333;
  margin-bottom: 3rem;
}

.banImg {
  text-align: right;
}

/* Main Banner Css End */

/* Product Sec Css Start */

.productSec {
  padding: 6.25rem 0;
}

.secHeading {
  color: var(--secondary);
  font-size: 4.375rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.1;
}

.productHeading p {
  font-weight: 500;
  color: #333333;
}

.productWraps {
  text-align: center;
  display: block;
  margin-top: 0.625rem;
}

.productWraps figure {
  position: relative;
  overflow: hidden;
}

.productWraps figure img {
  transition: 0.8s ease;
  height: 375px;
width: 100%;
object-fit: cover;
}

.productWraps:hover figure img {
  transform: scale(1.15);
}

.productWraps span {
  color: #17403c;
  letter-spacing: 2.5px;
  /* display: block; */
  margin: 1.25rem 0 0.625rem 0;
}

.productWraps h3 {
  text-transform: capitalize;
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 400;
  margin: 0;
}

/* Product Sec Css End */

/* Hand Made Sec Css Start */

.handmadeSec {
  background: url(../images/handmadeBg.png) center/cover fixed;
  padding: 18.75rem 0 11.25rem 0;
}

.handmadeContent p {
  color: var(--white);
  margin: 1.5rem 0 1.875rem 0;
}

.themeBtn1 {
  margin: auto;
  border-color: #c38316;
  background: #c38316;
  color: var(--white);
}

/* Hand Made Sec Css End */

/* Counter Sec Css Start */

.counterWraps {
  text-align: center;
}

.counterWraps h3 {
  margin: 0;
  font-size: 1.9rem;
  /*font-size: 1.5rem;*/
  font-weight: 400;
  color: var(--secondary);
  text-transform: capitalize;
  padding-bottom: 5%;
}

/* Counter Sec Css End */

/* Painted Sec Css Start */

.paintedSec {
  padding-bottom: 6.25rem;
}

.paintedContent h2 {
  color: #17403c;
  font-size: 3.8rem;
}

.paintedWraps {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.875rem 0 4.375rem 0;
}

.paintedContent .themeBtn {
  margin: auto;
  border-color: #c38316;
  color: #c38316;
}

.paintedContent .themeBtn:hover {
  border-color: var(--secondary);
  color: var(--white);
}

.paintedContent {
  margin-left: 2rem;
}

/* Painted Sec Css End */

/* Category Sec Css Start */

.categorySec {
  background: #efe0bf;
  padding: 3.75rem 0 5rem 0;
}

.categorySec .productWraps h3 {
  margin-top: 2rem;
}

.categoryBtn {
  margin-top: 3.75rem;
}

/* Category Sec Css End */

/* About Sec Css Start */

.aboutContent p {
  color: #333333;
  font-weight: 500;
  margin: 1.5rem 0 2.5rem 0;
  width: 89%;
  line-height: 1.8;
}

.aboutContent .themeBtn {
  padding: 0.875rem 2em;
}

.aboutContent {
  position: relative;
}

.abtPath {
  position: absolute;
  bottom: -6.5rem;
  z-index: -1;
  right: 1rem;
}

/* About Sec Css End */

/* Design Sec Css Start */

.designWraps {
  text-align: center;
}

.designWraps img {
  height: 75px;
}

.designWraps h3 {
  font-size: 2.25rem;
  color: var(--secondary);
  font-weight: 400;
  margin: 1rem 0 0.625rem 0;
}

.designWraps p {
  color: var(--primary);
  width: 90%;
  line-height: 1.75;
  margin: auto;
}

/* Design Sec Css End */

/* Pottery Sec Css Start */

.potteryWraps {
  position: relative;
}

.potteryContent {
  /*position: absolute;*/
  /*inset: 0;*/
  /*display: flex;*/
  /*flex-direction: column;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*margin: auto;*/
  display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.potteryContent .themeBtn1 {
  margin: unset;
}

.potteryContent span {
  color: var(--black);
  display: block;
  margin-bottom: 1.25rem;
}

.potteryContent h3 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 400;
  margin: 1rem 0 2rem 0;
}

/* Pottery Sec Css End */

/* Process Sec Css Start */

.processSec {
  padding: 6.25rem 0 4.375rem 0;
}

/* Process Sec Css End */

/* Client Sec Css Start */

.clientSec {
  background: #f4f9ff;
  padding: 4.375rem 0;
}

.clientWraps {
  margin-left: 2.5rem;
}

.clientWraps h3 {
  color: var(--secondary);
  font-size: 2.25rem;
  font-weight: 400;
}

.clientWraps p {
  color: #333333;
  font-size: 1.5rem;
  width: 75%;
  margin: 0.625rem 0 1.5625rem 0;
  font-family: "Gentium Plus";
}

.clientWraps figure {
  display: flex;
  align-items: center;
  gap: 30px;
}

.clientWraps h4 {
  margin: 0;
  color: var(--secondary);
  font-family: "Gentium Plus";
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
}

.clientWraps h4 span {
  display: block;
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 0.875rem;
  color: rgb(51 51 51 / 75%);
}

.clientSec .swiper-button-next:after,
.clientSec .swiper-button-prev:after {
  display: none;
}

.clientSec .swiper-button-next,
.clientSec .swiper-button-prev {
  color: #17403c;
  border: 1px solid #17403c;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50px;
}

.clientSec .swiper-button-prev {
  left: 0rem;
}

/* Client Sec Css End */

/* Insta Sec Css Start */

.instaSec {
  padding: 6.25rem 0 1.25rem 0;
}

.instaSlider .swiper-wrapper {
  transition-timing-function: linear;
}

/* Insta Sec Css End */

/* Footer Css Start */

footer {
  background: #111111;
  padding-top: 5rem;
}

footer h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.footForm form {
  position: relative;
}

.footForm input {
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 24px;
  width: 88%;
  height: 60px;
  outline: unset;
  background: transparent;
  padding-left: 1.375rem;
  color: var(--white);
  font-size: 0.875rem;
  box-shadow: unset;
}

.footForm input::placeholder {
  color: var(--white);
}

.footForm button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: transparent;
  outline: unset;
  border: unset;
  padding: 0;
  color: #c38316;
  right: 6.5rem;
  font-size: 0.75rem;
}

footer ul li a {
  color: var(--white);
  font-size: 0.875rem;
}

.contactLinks li + li {
  margin-top: 0.625rem;
}

.links li a {
  text-transform: capitalize;
}

.links li + li {
  margin-top: 1.375rem;
}

.footPara p, .footPara h3 {
  color: var(--white);
  margin: 0 0 0 5rem;
  width: 76%;
}

.footScoailmedia {
  display: flex;
  gap: 0.9375rem;
  margin-left: 3rem;
}

.footScoailmedia li a {
  background: #c38316;
  width: 38px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50px;
  font-size: 1.125rem;
  color: #111111;
}

.footLogo {
  margin-top: -4rem;
}

.copyRight p {
  color: var(--white);
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
}

.privacyLinks {
  display: flex;
  gap: 1rem;
  justify-content: end;
}

.copyRight {
  border-top: 1px solid var(--white);
  margin-top: 2.8125rem;
  padding: 2rem 0;
}

footer ul li a:hover {
  color: var(--white);
}

/* Footer Css End */

/* Inner Css Start */

.innerBanner {
  background: url(../images/innerBanner.png) center/cover;
  padding: 7.5rem 0 5rem 0;
  /*margin-top: -8.5rem;*/
}

.innerPage header {
  position: static;
}

.innerPage header .socialLinks li a,
.innerPage header .form-inline a {
  color: var(--black);
}

.innerbanContent {
  text-align: center;
}

.innerbanContent h2 {
  color: var(--white);
  font-size: 3.9375rem;
  font-weight: bold;
  text-transform: capitalize;
}

.innerbanContent ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.innerbanContent ul li a {
  color: var(--white);
  font-size: 1.125rem;
  text-transform: capitalize;
}

.catWraps {
  display: flex;
  justify-content: space-between;
  width: 90%;
}

.catWraps + .catWraps {
  margin-top: 0.875rem;
}

.shopLeftBar h3 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--black);
}

.catWraps label {
  text-transform: capitalize;
  color: var(--black);
}

.shopInner {
  padding: 6.25rem 0;
}

.shopInner .productWraps {
  margin-bottom: 1rem;
}

.shopLeftBar {
  position: sticky;
  top: 2rem;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 500px;
  box-sizing: border-box;
  padding: 10px 0;
}

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

.mySwiper .swiper-slide {
  height: auto !important;
  margin: auto;
}

.mySwiper .swiper-slide img {
  border: 1px solid transparent;
}

.mySwiper .swiper-slide-thumb-active img {
  border-color: #10544d;
}

.quantity-container {
  display: inline-flex;
  align-items: center;
  border: 1px solid #17403c;
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background-color: transparent;
  border: none;
  padding: 0.625rem 0.9375rem;
  cursor: pointer;
  font-size: 1.125rem;
  user-select: none;
  transition: background 0.3s;
  outline: unset !important;
  box-shadow: unset;
}

.qty-btn:hover {
  background-color: #ddd;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 1rem;
  outline: none;
}

.shopDetails h2 {
  color: #17403c;
  font-size: 2.6875rem;
  font-weight: bold;
}

.stars {
  display: flex;
  gap: 3px;
  margin: 1.3rem 0 1.3rem 0;
}

.stars li {
  color: #17403c;
}

.shopDetails p {
  color: #17403c;
  width: 90%;
}

.price {
  font-size: 1.875rem;
  font-weight: 500;
  color: #17403c;
  margin-bottom: 20px;
}

.productTypes h6 {
  font-weight: 500;
  color: #17403c;
  margin-bottom: 1.25rem;
}

.productTypes small {
  font-size: 0.875rem;
  letter-spacing: 1px;
  background: #17403c;
  color: var(--white);
  border-radius: 50px;
  display: inline-block;
  padding: 2px 1.5em;
}

.productTypes {
  margin-bottom: 1.25rem;
}

.productMaterial h5 {
  color: #17403c;
  margin: 1.25rem 0 0.9375rem 0;
}

.productMaterial ul {
  display: flex;
  justify-content: space-between;
}

.shopDetails {
  margin-left: 3rem;
}

.productMaterial ul li a {
  color: #17403c;
  border: 1px solid #17403c;
  border-radius: 50px;
  display: inline-block;
  padding: 5px 3em;
}

.productMaterial ul li a:hover {
  background: #17403c;
  color: var(--white);
}

ul.wishList {
  display: flex;
  gap: 5rem;
  margin: 1.25rem 0 1.875rem 0;
}

ul.wishList li a,
.tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
  color: #17403c;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detailBtns {
  display: flex;
  align-items: center;
  gap: 12px;
}

a.cardsBtns,
.buyBtn {
  font-size: 0.875rem;
  color: #17403c;
  letter-spacing: 2px;
  border: 1px solid #17403c;
  border-radius: 50px;
  display: inline-block;
  padding: 13px 1em;
  width: 79%;
  text-align: center;
}

.buyBtn {
  width: 100%;
  margin: 10px 0 1.5625rem 0;
}

.shippingDetail {
  border-top: 2px solid rgb(23 64 60 / 8%);
  padding-top: 2.5rem;
}

.shippingDetail h6 {
  color: #17403c;
  font-weight: 400;
  margin-bottom: 2rem;
}

.shippingDetail h6 span {
  font-weight: 600;
}

.tabsPack a.active,
.tabsPack a.current {
  border-color: #17403c;
}

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

.tabsPack a {
  font-size: 1.6875rem;
  font-weight: bold;
  color: #17403c;
  font-family: "Gentium Plus";
  border-bottom: 2px solid transparent;
  padding-bottom: 1rem;
}

.tabsPack {
  display: flex;
  gap: 3rem;
  border-bottom: 1px solid rgb(23 64 60 / 8%);
}

.prodtabContent p {
  color: #17403c;
  margin-bottom: 1.5rem;
}

.prodtabContent h6 {
  font-weight: bold;
  color: #17403c;
  margin-bottom: 1rem;
}

.prodtabContent {
  margin-top: 2rem;
}

.producttabSec {
  padding-bottom: 7.5rem;
}

.aboutInner {
  padding: 6.25rem 0 7.5rem 0;
}

.aboutText h2,
.testimonialSct h2 {
  font-size: 4rem;
  font-weight: bold;
  color: #17403c;
  width: 90%;
  margin-bottom: 1.5rem;
}

.aboutText p {
  color: #17403c;
  width: 80%;
}

.abtImgs {
  position: relative;
}

.abt2 {
  position: absolute;
  right: 0;
  bottom: 4rem;
}

.abtPlay {
  border: 1px solid #10544d;
  width: 185px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 100%;
  color: #10544d;
  position: absolute;
  background: var(--white);
  top: 0;
  left: 0;
}

.aboutText {
  margin-top: 3.75rem;
}

.testimonialWraps {
  text-align: center;
  margin-top: 2rem;
}

.testimonialWraps p {
  color: #17403c;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Gentium Plus";
  line-height: 1.75;
  width: 85%;
  margin: auto;
}

.testimonialWraps ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 1.875rem 0;
}

.testimonialWraps ul li {
  color: #fec42d;
}

.testimonialWraps figure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}

.testimonialWraps h6 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Gentium Plus";
  color: #17403c;
  text-align: left;
  line-height: 1.7;
}

.testimonialWraps h6 span {
  display: block;
  font-family: "Work Sans";
  letter-spacing: 1.5px;
  font-weight: 400;
  color: #17403c;
  opacity: 75%;
  font-size: 1rem;
}

.testimonialSct {
  padding-bottom: 6.25rem;
}

.contactInner {
  padding: 6.25rem 0;
}

.contactHeadings h2 {
  font-size: 2.75rem;
  font-weight: bold;
  color: #17403c;
}

.contactHeadings p {
  color: #17403c;
}

.contactForm .form-control {
  outline: unset;
  box-shadow: unset;
  background: transparent;
  height: 47px;
  border-radius: 24px;
  border: 1px solid rgb(23 64 60 / 20%);
  padding-left: 1.5rem;
  font-size: 1.25rem;
  color: #14203b;
  margin-bottom: 22px;
}

.contactForm .form-control::placeholder {
  color: #14203b;
}

.contactForm textarea {
  height: 120px !important;
  padding-top: 1rem;
  resize: none;
}

.contactForm label {
  color: #17403c;
}

.contactForm .form-check {
  margin: 10px 0 2rem 0;
}

.contactBtn .themeBtn {
  margin: auto;
}

.contactForm {
  margin-top: 2rem;
}

/* Inner Css End */

.mySwiper2 img {
    width: 90%;
}

.quantity {width: 18%;float: inline-start;}

button.single_add_to_cart_button.button.alt {
    float: inline-end;
    width: 80%;
    background: transparent !important;
    border: 1px solid #17403C !important;
    color: #17403C !important;
    border-radius: 50px;
    padding: 16px 0 !important;
    opacity: 100% !important;
        font-weight: 400;
    cursor: pointer;
}


button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-variable {
    width: 100% !important;
    margin-top: 12px;
    background: transparent !important;
    border: 1px solid #17403C !important;
    color: #17403C !important;
    border-radius: 50px;
    padding: 16px 0 !important;
    opacity: 100% !important;
        font-weight: 400;
    cursor: pointer !important;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
    border-radius: 20px;
}
span.variable-item-span.variable-item-span-button {
    padding: 5px 1em !important;
}

.woocommerce .quantity .qty {
    width: 110px;
    height: 35px;
}

.detailBtns {
    display: block;
}

ul.tabs.wc-tabs {
    display: flex;
    gap: 3rem;
    margin-bottom: 1rem;
}

.tabsPack {
    display: block;
}

.footForm button {
    height: unset !important;
    top: 8rem;
}

ul.wishList li a, .tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
    cursor: pointer;
    opacity: 100% !important;
}

.woocommerce #review_form #respond .form-submit input {
    background: transparent !important;
    border: 1px solid #17403C !important;
    color: #17403C !important;
    border-radius: 50px;
    opacity: 100% !important;
    font-weight: 400;
    padding: 14px 3em !important;
}

button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-simple.single_add_to_cart_button.button.alt {
    width: 100%;
    margin-top: 12px;
}

.wc-block-components-button__text {
    background: transparent !important;
    border: 1px solid #17403C !important;
    color: #17403C !important;
    border-radius: 50px;
    opacity: 100% !important;
    font-weight: 400;
    padding: 14px 3em !important;
    width: 100%;
        outline: unset !important;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
    justify-content: center;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained{
    background: transparent;
    border: unset;
    outline: unset !important;
}

.galleryImages a img {
    height: 400px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
}
.locationCard {
    box-shadow: 0 0 10px 10px #00000012;
    border-radius: 10px;
}
.secure li img
{
    object-fit: contain !important;
  height: 80px !important;
  border-radius: 10px !important;
}

@media (min-width:767.98px){
.abt21
{
  border-radius: 50%;
  width: 80%; 
  height: 700px;
  object-fit: cover;  
}
}
@media only screen and (min-width: 1024px) {
    .abt2 {
        width: 40%;
    }
}
@media (max-width:1440px)
{
    .secure
{
    flex-wrap:wrap;
}
}



.contactForm label br {
    display: none;
}

.wpcf7-list-item {
    margin: 0;
}










/**/
