/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
/* @import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900"); */

/* @import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap'); */


/* @import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@400..700&family=Matemasie&family=New+Amsterdam&display=swap'); */
/* @import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900"); */
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important; 
}

/* 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;
}
::-webkit-scrollbar
{
  display:none;
}


.btn
{
  transition: 0.25s;
}
.btn:hover
{
  transform: translateY(-0.2rem);
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 700;
}
.gradient-text
{
    color:tranparent;
    background: linear-gradient(45deg, #e7680a, #61ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: #000;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/

html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0005;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-border-button a {
  font-size: 13px;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 25px;
  display: inline-block;
  font-weight: 500;
  transition: all .3s;
}

.main-border-button a:hover {
  background-color: #fff;
  color: #000;
}

.main-white-button a {
  font-size: 13px;
  color: #000;
  background-color: #fff;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  transition: all .3s;
}

.main-white-button a:hover {
  opacity: 0.9;
}

.main-text-button a {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  transition: all .3s;
}

.main-text-button a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.section-heading span {
  font-size: 14px;
  color: #000;
  font-style: italic;
  font-weight: 400;
}



/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  border-bottom: none !important;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #fff !important;
}

.background-header .main-nav .nav li:hover a {
  color: #000!important;
}

.background-header .nav li a.active {
  color: #000!important;
}

.header-area {
  box-shadow: none;
  background-color: #fff;
  position: relative;
  top: 0px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  z-index: 9999;
}

.header-area .main-nav {
  position: relative;
  z-index: 1000;
  background: transparent;
  justify-content: center;
  display: flex;
}


.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li a {
  color: #fff;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fff!important;
}



.header-area .main-nav .nav li.submenu {
  position: relative;
}


.header-area .main-nav .nav li.submenu > ul
{
  position: absolute;
  min-width: 250px;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  background: #000;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu:hover > ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}
#activator{
  display: none;
  position: absolute;
  width: 24px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  cursor: pointer;
  z-index: 99999;
    -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.menu-icon{
  top: 8px;
}
.menu-icon::before{
  top: -8px;
}
.menu-icon::after{
  bottom: -8px;
}

#activator.active{
.menu-icon{
  background: none;
}
.menu-icon::before{
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
 .menu-icon::after{
   bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
}


.header-area.header-sticky {
  min-height: 80px;
}

.submenu .accordion
{
  width: 100%;
}
.submenu .accordion .accordion-header button
{
  background: #016235;
  color: #fff;
  padding: 0.5rem 0.5rem;
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: #fff;
  color: #fff;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
.submenu .accordion-item
{
  background: #000;
}
.accordion-collapse a
{
  padding: 0.5rem 0.5rem;
  color: #191a20;
  border-bottom: 1px solid #fff;
}
.header-area.header-sticky .nav li a.active {
  color: #000;
}

.middle-header
{
  position: relative;
  padding:0 1rem;
  width: 100%;
  display: flex;
  justify-content: end;
  padding-right:30px;
  gap: 10px;
}

.nav-background
{
  position: relative;
  background: linear-gradient(45deg, #f39420, #e7680a);
  transition:all 0.5s;
  padding: 0.5rem 1rem;
  width: 100%;
}
.nav-background .container
{
  position: relative;
  padding:0.5rem 0;
}
.mobilelogo
{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #fff;
  display: none;
}
.background-header .nav-background
{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.black-btn,
.black-btn:hover
{
  background: #016235;
  color: #fff;
}

.golden-btn
{
  background: #016235;
  color: #fff;
}
.golden-btn:hover
{
    color: #fff;
    background:#ec7c14;
}


.phone-numbers
{
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #191a20;
}
.phone-numbers i
{
  color: #1ec5b2;
  font-size: 1.75rem;
}
.socials
{
  transition: 0.25s;
  
}
.socials:hover
{
  transform: scale(1.05);
}

.book-now
{
  background: #016235;
  padding: 0.25rem 0.5rem;
  animation: pulse 3s infinite;
  outline: none;
  border:none;
}
@keyframes pulse {
  0%,100%
  {
    background: #000;
    color: #fff;
  }
  50%{
    background: #016235;
  }
}
.whatsappFixedBtn
{
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  z-index: 999;
}
.whatsappFixedBtn.toleft
{
    right:auto;
    left:1rem;
}
.whatsappFixedBtn a
{
  position:relative;
  display:block;
  font-size: 2.7rem;
  text-decoration: none;
  color: #1ec5b2;
}
.bottomtotop
{
  position: fixed;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:#016235;
  bottom: 1rem;
  right: 2rem;
  cursor: pointer;
  z-index: 999;
  color: #fff;
}




@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 990px) {
  .logo img
  {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .header-area {
    background-color: #fff;
    box-shadow: none;
    text-align: center;
  }
  .header-area #activator {
    display: block !important;
    right: 1.25rem;
  }
  
  .nav-background
  {
     padding:2.2rem 0;
  }
  .mobilelogo
  {
    display: block;
    left:1rem;
  }
  .mobilelogo img
  {
      width:60px;
      border-radius:50%;
  }
  .logo-header
  {
    display: none;
  }
  .header-area .main-nav .nav
  {
    position: absolute;
    width: 100%;
    display: grid;
    top: -1000px;
    transition: 0.5s;
    background: #016235;
  }
  .header-area .main-nav .nav li
  {
    border-bottom: 1px solid #fff;
  }
  .header-area .main-nav .nav.active
  {
    top: 25px;
  }
  
  .header-area .main-nav .nav li.submenu::before
  {
    position: absolute;
    content: '\f078';
    font-family: 'fontAwesome';
    color: #eee;
    right: 1rem;
    top: 12px;
    font-size: 12px;
  }
  .header-area .main-nav .nav li.submenu:hover::before
  {
    transform: rotate(180deg);
  }
  .header-area .main-nav .nav li.submenu > ul
  {
    visibility: visible;
    position: relative;
    opacity: 1;
    top: 0;
    transform: translateY(0);
    width: 100%;
    height: 0;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s, height 0.25s;
  }
  .header-area .main-nav .nav li.submenu:hover > ul
  {
    height: auto;
  }
  .header-area .main-nav .nav li.submenu > ul.active
  {
    display: block;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav
  {
    display: flex !important;
  }
}

.logo img
{
    position: relative;
    width: 200px;
    margin: 1px 0;
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  border-bottom: 3px dashed #191a20;
  padding-top: 235px;
  padding-bottom: 30px;
}

.main-banner .left-content .thumb img {
  width: 100%;
  overflow: hidden;
}

.main-banner .left-content .inner-content {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .left-content .inner-content h4 {
  color: #fff;
  margin-top: -10px;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-banner .left-content .inner-content span {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 30px;
}

.main-banner .right-content .right-first-image {
  margin-bottom: 28.5px;
}

.main-banner .right-content .right-first-image .thumb {
  position: relative;
  text-align: center;
}

.main-banner .right-content .right-first-image .thumb img {
  width: 100%;
  overflow: hidden;
}

.main-banner .right-content .right-first-image .thumb .inner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.main-banner .right-content .right-first-image .thumb .inner-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.main-banner .right-content .right-first-image .thumb .inner-content span {
  font-size: 16px;
  color: #fff;
  font-style: italic;
}

.main-banner .right-content .right-first-image .thumb .hover-content {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  text-align: center;
  background-color: rgba(42,42,42,.97);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.main-banner .right-content .right-first-image .thumb:hover .hover-content {
  opacity: 1;
  visibility: visible;
}

.main-banner .right-content .right-first-image .thumb .hover-content .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.main-banner .right-content .right-first-image .thumb .hover-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.main-banner .right-content .right-first-image .thumb .hover-content p {
  color: #fff;
  padding: 0px 20px;
  margin-bottom: 20px;
}



/*
---------------------------------------------
God Statues
---------------------------------------------
*/

#godstatues,
#marbleproducts
{
  padding-top: 90px;
  padding-bottom: 90px;
  background: #fff;
}

#godstatues .section-heading,
#goddessstatues .section-heading,
#marbleproducts .section-heading
{
  margin-bottom: 60px;
}

#godstatues .item .thumb,
#marbleproducts .item .thumb
{
    border:10px solid #016235;
}
#goddessstatues .item .thumb
{
    border:10px solid #000;
}

#godstatues .item .down-content,
#goddessstatues .item .down-content,
#marbleproducts .item .down-content
{
  padding-top: 30px;
  position: relative;
  z-index: 3;
}

#godstatues .item .down-content h4,
#marbleproducts .item .down-content h4 
{
    font-size: 14px;
    text-transform: capitalize;
    color: #000;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 8px;
}

#godstatues .item .down-content span,
#goddessstatues .item .down-content span,
#marbleproducts .item .down-content span 
{
  font-size: 18px;
  color: #000;
  font-weight: 500;
  display: block;
}


#godstatues .item .thumb .hover-content, 
#marbleproducts .item .thumb .hover-content, 
#goddessstatues .item .thumb .hover-content 
{
  position: absolute;
  z-index: 2;
  text-align: center;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transform-origin: bottom;
  transform: scaleY(0);
  visibility: hidden;
  transition: all .5s;
  background: #fff;
}
#godstatues .item .thumb .hover-content a,
#goddessstatues .item .thumb .hover-content a,
#marbleproducts .item .thumb .hover-content a
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-weight: 600;
  font-size: 1rem;
  color: #000;
} 
#godstatues .item > .btn,
#marbleproducts .item > .btn
{
  width: 100%;
  background: #016235;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 0 0 30px;
} 

#goddessstatues .item > .btn
{
  background: #000;
  width:100%;
  color:#fff;
  border-radius: 0 0 30px;
}
#godstatues .item .thumb:hover .hover-content,
#goddessstatues .item .thumb:hover .hover-content,
#marbleproducts .item .thumb:hover .hover-content
{
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}

#godstatues .item .thumb,
#goddessstatues .item .thumb,
#marbleproducts .item .thumb
{
  position: relative;
  border-radius: 30px 0 0px;
  overflow: hidden;
}
#godstatues .item .thumb > a img,
#goddessstatues .item .thumb > a img,
#marbleproducts .item .thumb > a img
{
  transform-origin: top;
}
#godstatues .item .thumb:hover > a img,
#goddessstatues .item .thumb:hover > a img,
#marbleproducts .item .thumb:hover > a img
{
  transform: scaleY(0);
} 

#godstatues .owl-carousel .thumb img,
#goddessstatues .owl-carousel .thumb img,
#marbleproducts .owl-carousel .thumb img,
#galleryPageImg
{
  aspect-ratio: 1;
  transition: all ease-in 0.25s;
  object-fit: contain;
  transform-origin: bottom;
}

/*
---------------------------------------------
Goddess Statues
---------------------------------------------
*/

#goddessstatues {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #016235;
}

#goddessstatues .section-heading h2,
#goddessstatues .item .down-content h4,
#goddessstatues .item .down-content span
{
    color:#fff;
}
#goddessstatues .item .down-content .golden-btn
{
    background:#fff;
    color:#016235;
}


---------------------------------------------
Section About US
---------------------------------------------
*/

.section.about-us
{
  position: relative;
  padding-block: 100px;
  /*background:url(../images/blurbg.png);*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section.about-us .container
{
  background: rgba(255, 255, 255, 0.900);
  padding: 1rem;
}

.specifications
{
  position: relative;
  list-style-type: disc;
  margin-bottom: 1rem;
}
.specifications li
{
  list-style: decimal-leading-zero;
  margin-left: 1.25rem;
}

.section.why-choose-us
{
  position: relative;
  padding-block: 100px;
  background: #fff;
}
.section.why-choose-us .container h4
{
  font-size: 34px;
  font-weight: 700;
  color: #000
}



/*
---------------------------------------------
Explore
---------------------------------------------
*/

#explore {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #016235;
  background-size: cover;
}

#explore .left-content {
  margin-right: 30px;
}

#explore .left-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

#explore .left-content span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

#explore .left-content .quote {
  margin-top: 25px;
}

#explore .left-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}

#explore .left-content .quote p {
  font-style: italic;
  color: #fff;
  font-weight: 500;
}

#explore .left-content p {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

#explore .left-content .main-border-button a {
  color: #fff;
  border-color: #000;
  background: #000;
  margin-top: 35px;
}

#explore .left-content .main-border-button a:hover {
  background-color: #000;
  color: #fff;
}

#explore img {
  width: 100%;
  border-radius:50%;
  overflow: hidden;
}

#explore .leather {
    background:#016235;
  margin-bottom: 30px;
}

#explore .first-image {
  margin-bottom: 30px;
}

#explore .leather,
#explore .types {
  min-height: 255px;
  background-color: #016235;
  text-align: center;
  width: 100%;
}

#explore .leather h4,
#explore .types h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding-top: 90px;
  margin-bottom: 5px;
}

#explore .leather span,
#explore .types span {
  font-size: 14px;
  font-style: italic;
  color: #fff;
  font-weight: 500;
}

/* 
---------------------------------------------
Social
--------------------------------------------- 
*/


/* 
---------------------------------------------
Vedio Section
--------------------------------------------- 
*/
section.vedio-section
{
  position: relative;
  background: #f7f7f7;
  padding: 80px 1rem 60px;
}
section.vedio-section .row
{
  justify-content: center;
  gap:10px;
}
section.vedio-section .row iframe
{
  width: 100%;
  border-radius: 30px;
  transition: 0.25s ease-in;
  aspect-ratio: 2/1;
}

section.vedio-section .row iframe:hover
{
  border-radius: 16px;
  transform: translateY(-6px);
}



/* 
---------------------------------------------
Subscribe
--------------------------------------------- 
*/

.subscribe {
  margin-top: 90px;
}

.subscribe .section-heading {
  margin-bottom: 30px;
}

.subscribe .section-heading h2 {
  line-height: 55px;
}

.subscribe form input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0px 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #000;
  border-radius: 0px;
  border: 1px solid #7a7a7a;
  box-shadow: none;
}

.subscribe form input::focus {
  border-color: #000;
  border-radius: 0px;
}

.subscribe form button {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  background-color: #016235;
  box-shadow: none;
  border: 1px solid transparent;
  color: #fff;
  transition: all 0.3s;
}

.subscribe form button:hover {
  background-color: #fff;
  border: 1px solid #016235;
  color: #016235;
}

.subscribe ul li {
  margin-bottom: 30px;
  display: block;
}

.subscribe ul li {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.subscribe ul li span,
.subscribe ul li span a {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.subscribe ul li span a:hover {
  color: #000;
}


/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

footer {
  margin-top: 60px;
  padding: 60px 0px 30px 0px;
  background-color: #212121;
}

footer .logo {
  margin-bottom: 20px;
}

footer ul li {
  display: block;
  margin-bottom: 10px;
}

footer ul li a {
  font-size: 14px;
  color: #fff;
  transition: all .3s;
}

footer ul li a:hover {
  color: #016235;
}

footer h4 {
  letter-spacing: 0.5px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

footer .under-footer {
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(250,250,250,0.3);
}

footer .under-footer ul {
  margin-top: 20px;
}

footer .under-footer ul li {
  display: inline-block;
  margin: 0px 10px;
}

footer .under-footer ul li a {
  font-size: 30px;
}

footer .under-footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

footer .under-footer a {
  color: #fff;
}

footer .under-footer a:hover {
  color: #016235;
}



/* 
---------------------------------------------
Home Page
--------------------------------------------- 
*/

#subscribe .row
{
  gap: 1rem;
}



/* 
---------------------------------------------
Products Page
--------------------------------------------- 
*/

.page-heading {
  margin-bottom: 30px;
  width: 100%;
  aspect-ratio: 64/15;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-heading.single-product
{
  aspect-ratio: 64/25;
}

.page-heading .inner-content h2 {
  font-size: 52px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-heading .inner-content span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
}

#products .section-heading {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 80px;
}

#ourproducts
{
  text-align: center !important;
}
#products .item {
  margin-bottom: 30px;
}

#products:not(.gallery) .item .thumb
{
  padding: 5px;
  padding: 5px;
  border: 3px solid #016235;
  overflow: hidden;
}

#products .item .thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    overflow: hidden;
}

#products .item .down-content {
  padding-top: 20px;
  position: relative;
  z-index: 3;
}

#products .item .down-content h4 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

#products .item .down-content span {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  display: block;
}


#products .item .thumb 
{
  position: relative;
}



/* 
---------------------------------------------
Single Product Page
--------------------------------------------- 
*/

#product {
  margin-top: 80px;
}

#product .left-images img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

#product .right-content {
  position: relative;
  z-index: 3;
  background-color: #fff;
}

#product .right-content h4 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0px;
}

#product .right-content span.price {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 5px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}



#product .right-content ul.stars li {
  display: inline;
  font-size: 13px;
}

#product .right-content span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

#product .right-content .quote {
  margin-top: 25px;
}

#product .right-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}

#product .right-content .quote p {
  font-style: italic;
  color: #000;
  font-weight: 500;
}

#product .right-content p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

.quantity-content {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.quantity-content .left-content {
  float: left;
  margin-right: 30px;
}

.quantity-content .right-content {
  text-align: right;
}

.quantity-content .left-content h6 {
  padding-top: 7px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 11;
}

.total h4 {
  float: left;
  font-size: 20px;
  margin-top: 10px;
  color: #000!important;
}

.total .main-border-button {
  text-align: right;
}

.total .main-border-button a {
  border-color: #000;
  color: #000;
}

.total .main-border-button a:hover {
  color: #fff;
  background-color: #000;
}

.quantity {
  display: inline-block; }
 
 .quantity .input-text.qty {
  width: 35px;
  height: 39px;
  padding: 0 5px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #efefef;
 }
 
 .quantity.buttons_added {
  text-align: left;
  position: relative;
  white-space: nowrap;
  vertical-align: top; }
 
 .quantity.buttons_added input {
  display: inline-block;
  margin: 0;
  vertical-align: top;
  box-shadow: none;
 }
 
 .quantity.buttons_added .minus,
 .quantity.buttons_added .plus {
  padding: 7px 10px 8px;
  height: 39px;
  background-color: #ffffff;
  border: 1px solid #efefef;
  cursor:pointer;}
 
 .quantity.buttons_added .minus {
  border-right: 0; }
 
 .quantity.buttons_added .plus {
  border-left: 0; }
 
 .quantity.buttons_added .minus:hover,
 .quantity.buttons_added .plus:hover {
  background: #eeeeee; }
 
 .quantity input::-webkit-outer-spin-button,
 .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0; 
}
  
  .quantity.buttons_added .minus:focus,
 .quantity.buttons_added .plus:focus {
  outline: none; }



/* 
---------------------------------------------
About Us Page
--------------------------------------------- 
*/

.about-page-heading {
  margin-bottom: 30px;
  background:linear-gradient(#0006,#0006) ,url(../images/breadcrum.jpg);
  aspect-ratio: 5;
  background-size: cover;
  background-repeat: no-repeat;
}

.floutingImgAlt
{
    animation-name: floating;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floutingImg
{
  position: absolute;
  left: -50px;
  bottom: -150px;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from { transform: translate(0,  0px); }
  65%  { transform: translate(0, 15px); }
  to   { transform: translate(0, -0px); }    
}

.about-us {
     position: relative; 
    /*background: url(../images/about-section.png);*/
    background-attachment: fixed;
}

.about-us .left-image img,
.why-choose-us .left-image img,
.faq .left-image img
{
  width: 100%;
  overflow: hidden;
}

.about-us .right-content {
  margin-left: 30px;
}

.about-us .right-content h4, 
.why-choose-us .right-content h4 
{
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.about-us .right-content span,
.why-choose-us .right-content span
{
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

.about-us .right-content .quote,
.why-choose-us .right-content .quote{
  margin-top: 25px;
}

.about-us .right-content .quote i, 
.why-choose-us .right-content .quote i 
{
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}


.about-us .right-content .quote p,
.why-choose-us .right-content .quote p 
{
  font-style: italic;
  color: #000;
  font-weight: 500;
}

.about-us .right-content p,
.why-choose-us .right-content p 
{
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}
.why-choose-us .right-content p
{
  margin-bottom: 1rem;
}

.about-us .right-content ul {
  border-top: 3px dotted #eee;
  margin-top: 30px;
  padding-top: 30px;
}

.about-us .right-content ul li {
  display: inline-block;
  margin-right: 5px;
}

.about-us .right-content ul li a {
  width: 44px;
  height: 44px;
  background-color: #016235;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: all .5s;
}

.about-us .right-content ul li a:hover {
  background-color: #e86a0b;
  color: #fff;
}

.our-team {
  margin-top: 100px;
  padding-top: 90px;
  padding-bottom: 90px;
  border-top: 3px dotted #eee;
}

.our-team .section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.our-team .section-heading h2 {
  margin-bottom: 10px;
}

.our-team .team-item .thumb {
  position: relative;
}

.our-team .team-item .thumb img {
  width: 100%;
  overflow: hidden;
}

.our-team .team-item .thumb .hover-effect {
  position: absolute;
  background-color: rgba(0,0,0,0.9);
  width: 100%;
  text-align: center;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.our-team .team-item .thumb:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

.our-team .team-item .thumb .hover-effect .inner-content {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  transform: translateY(-22px);
}

.our-team .team-item .thumb .hover-effect .inner-content ul li {
  display: inline-block;
  margin: 0px 5px;
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a {
  width: 44px;
  height: 44px;
  background-color: #fff;
  color: #000;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a:hover {
  background-color: #000;
  color: #fff;
}

.our-team .team-item .down-content {
  text-align: center;
  padding-top: 25px;
}

.our-team .team-item .down-content h4 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-bottom: 5px;
}

.our-team .team-item .down-content span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: block;
  font-style: italic;
}

.our-services {
  padding-top: 90px;
  padding-bottom: 90px;
  border-top: 3px dotted #eee;
  border-bottom: 3px dotted #eee;
}

.our-services .section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.our-services .section-heading h2 {
  margin-bottom: 10px;
}

.our-services .service-item {
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.10);
  text-align: center;
}

.our-services .service-item img {
  width: 100%;
  overflow: hidden;
}

.our-services .service-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.our-services .service-item p {
  margin-bottom: 25px;
}



/* 
---------------------------------------------
contact Us Page
--------------------------------------------- 
*/

.contact-us {
  margin-top: 90px;
  border-bottom: 3px dotted #eee;
  padding-bottom: 90px;
}

.contact-us .section-heading {
  margin-bottom: 40px;
}

.contact-us #map {
  margin-right: 30px;
}

.contact-us form input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0px 15px;
  margin: 15px 0;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #000;
  border-radius: 0px;
  border: 1px solid #7a7a7a;
  box-shadow: none;
}

.contact-us form input:focus {
  border-color: #000;
  border-radius: 0px;
}

.contact-us form textarea {
  width: 100%;
  height: 140px;
  min-height: 120px;
  max-height: 200px;
  margin-bottom: 25px;
  line-height: 44px;
  padding: 0px 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #000;
  border-radius: 0px;
  border: 1px solid #7a7a7a;
  box-shadow: none;
}

.contact-us form textarea:focus {
  border-color: #000;
  border-radius: 0px;
}

.contact-us form button {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  background-color: #000;
  box-shadow: none;
  border: 1px solid transparent;
  color: #fff;
  transition: all 0.3s;
}

.contact-us form button:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}

.page-heading
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page-heading .inner-content {
  text-align: center;
  /* place-items: center; */
}

/* 
---------------------------------------------
FAQ Section 
---------------------------------------------
*/

.section.faq
{
  padding: 80px 0 50px;
}
.section.faq h1
{
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
.section.faq h3
{
  margin-bottom: 0.5rem;
}
.section.faq .container
{
  padding-top: 1rem;
}
.row.faq-imgs
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.row.faq-imgs img
{
  width: 40%;
}

section.faq .accordion-button
{
  background: #000;
  color: #fff;
}
section.faq .accordion-button:not(.collapsed)
{
  background: #000;
  color: #fff;
}

.section.faq .accordion-body
{
  background: #fff;
}


/*Section Gellary*/

.section.gallery
{
  position: relative;
  padding-block: 80px;
  
}
.section.gallery .container > .row h3
{
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  z-index:1;
}
.section.gallery .container > .row span
{
  color: #fff;
  margin: 1rem 0 1.5rem;
  font-size: 25px;
  z-index:1;
}
.section.gallery .owl-carousel .thumb img
{
  aspect-ratio: 1;
  transition: all ease-in 0.25s;
  object-fit: contain;
  
}
.section.gallery .owl-carousel .thumb img:hover
{
  transform: scale(1.05);
}


/*Section Gellary*/

/* Client Review */
.section.client-review
{
  position: relative;
  padding-block: 60px;
  background:#fafafa;
}
.section.client-review .container h1
{
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.section.client-review .testimonial-item
{
  
  position: relative;
  height: 100%;
  min-height: 290px;
}

/* Client Review */

/* Blog */

.container.blog-container
{
  display: grid;
	gap: 3rem 2rem;
	margin-block: 4rem;
	flex-grow: 1;
	grid-template-columns: repeat(auto-fit, minmax(auto, 21rem));
	justify-content: center;
  user-select: none;
}
.container.blog-container .imgcard
{
  position: relative;
  width: 100%;
  aspect-ratio: 3/1.5;
  border-radius: 1.5rem;
  overflow: hidden;
}
.container.blog-container .imgcard img
{
  width: 100%;
  object-fit: cover;
  transition: 1.25s;
}
.container.blog-container .imgcard:hover img
{
  transform: scale(1.25);
}
.section.blog .blog-data
{
  padding: 0.75rem;
}
.section.blog .blog-data h4
{
  font-size: 32px;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: #000;
}
.section.blog .blog-data p
{
  width: 95%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #191a20;
}

/* Blog */

/* 
---------------------------------------------
Swipper Js 
---------------------------------------------
*/

.swiper {
  width: 100%;
  min-height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navBtn
{
	position: absolute;
	z-index: 10;
	bottom: 5px;
	right: 5px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #fff;
}
.navBtn div
{
	position: relative;
	width: 40px;
	height:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.25);
	font-size: 1.5em;
	cursor: pointer;
}
.navBtn div:hover
{
	color: #016235;
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1200px) {
  .main-banner .right-content .right-first-image .thumb .hover-content p {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner .right-content .right-first-image .thumb .hover-content p {
    display: block;
  }
  .header-area .main-nav .nav li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .header-area .main-nav .nav li a {
    font-size: 14px;
    letter-spacing: 0px;
  }
  .main-banner .left-content {
    margin-bottom: 30px;
  }
  #explore .left-content {
    margin-bottom: 30px;
  }
  #explore .right-content .types {
    margin-top: 30px;
  }
  .subscribe input {
    margin-bottom: 15px;
  }
  .subscribe form {
    text-align: center;
    margin-bottom: 30px;
  }
  .about-us .right-content {
    margin-left: 0px;
    margin-top: 30px;
  }
  .our-team .team-item {
    margin-bottom: 30px;
  }
  .our-services .service-item {
    margin-bottom: 30px;
  }
  .contact-us #map {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .floutingImg
  {
    left: -25px;
  }
  .floutingImg img
  {
    width: 150px;

  }
  
}

@media (max-width: 767px) {
  #headercontainer
  {
    min-width: 100% !important;
  }
  .main-banner .left-content .thumb .inner-content {
    left: 50%;
    top: 47.5%;
    transform: translate(-50%,-50%);
    text-align: center;
  }
  .subscribe form button {
    width: 100%;
  }
  footer {
    text-align: center;
  }
  footer h4 {
    margin-top: 30px;
  }
  .page-heading .inner-content h2
  {
    font-size: 32px;
  }
  .section-heading h1
  {
    font-size: 32px;
  }

}
@media (max-width: 767px) {
  .navBtn div
  {
    position: relative;
    width: 20px;
    height:20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.5em;
    cursor: pointer;
  }
}




#preloader {
  overflow: hidden;
  background-color: #000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  color: #fff;
}

#preloader .jumper {
  inset: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

/* #preloader .jumper > div 
{
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
} */
#preloader .jumper > img{
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
} 

#preloader .jumper > img:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > img:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}


@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%)scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
