

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: Montserrat;
  font-display: swap;
}

a {
  color: #e96b56;
  text-decoration: none;
}

a:hover {
  color: #e6573f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Visby Italic';
  font-display: swap;
}
.h1, h1 {
    font-size: 3.0rem;
}

img, svg {
    vertical-align: middle;
    width: 100%;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ee6821;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ee8b7a;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #545454;
  padding: 10px 0;
  font-size: 14px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #e96b56;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #e96b56;
}
#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: sticky;
    height: 100px;
    z-index: 9999;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    /*background-image: url(../img/bg/header-bg.png);*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Visby Italic';
  font-display: swap;
  border-left: 8px solid #e96b56;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #545454;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 100px;
}
.footer-logo img {
    width: 180px;
}
.scrolled-offset {
  margin-top: 0px;
  background: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    white-space: nowrap;
    font-family: Montserrat;
    font-display: swap;
    transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #e96b56;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #e96b56;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #ec7f6d;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: #000;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #e96b56;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}



.navbar .new-dropdown {
  width: max-content;
}





/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #545454;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #e96b56;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #e96b56;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background-color: rgba(59, 59, 59, 0.8);
  overflow: hidden;
  padding: 0;
  margin-bottom: -120px;
  position: relative;
  z-index: 1;
}
#hero .carousel-item {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
}
#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(255, 255, 255, 0.6);*/
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 120px;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Montserrat;
    font-display: swap;
}

#hero p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 14px;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #ee6821;
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #eb0a0a;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 3.2;
}

#hero .carousel-indicators li.active {
  opacity: 1;
   background: #07a70e;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-display: swap;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #e96b56;
  background: #e96b56;
}
#hero .btn-get-started:hover {
  background: transparent;
  color: #e96b56;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: 'Visby Italic';
  font-display: swap;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e96b56;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px;
  background: #ffff99;
  border-bottom: 1px solid #ededed;
  margin-bottom: 0px;
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 700;
    color: #298194;
    text-transform: uppercase;
    text-align: center;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 5px 0;
  margin: 0;
  font-size: 16px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6e6e6e;
  content: "/";
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  position: relative;
  z-index: 2;
}
.featured .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.featured .icon-box i {
  color: #e96b56;
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
  line-height: 0;
}
.featured .icon-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.featured .icon-box h3 a {
  color: #545454;
  transition: 0.3s;
}
.featured .icon-box p {
  color: #545454;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.featured .icon-box:hover {
  background: #e96b56;
}
.featured .icon-box:hover i, .featured .icon-box:hover h3 a, .featured .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-links {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
.footer-links li {
    line-height: 34px;
}

.footer-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.copyright-wrap {
    background: #9b9c9b;
    padding: 10px;
    text-align: center;
    color: #fff;
}
.footer-bottom.align-text-bottom {
    margin: 2em 0 0em;
}


.footer-bottom.align-text-bottom p {
    font-size: 13px;
    color: #ddd;
    position: relative;
    padding-left: 0;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}
.mobile a {
    font-size: 13px;
    color: #ddd;
    position: relative;
    padding-left: 0;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
}
.footerEmail a {
    font-size: 13px;
    color: #ddd;
    position: relative;
    padding-left: 0;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
}
.footer-links li a {
    text-decoration: none;
    color: #ddd;
    font-weight: 600;
    font-size: 16px;
}
.footer-menu .social-media {
    text-align: left;
}
.social-media ul li {
    display: inline-block;
}
.social-media ul li {
    display: inline-block;
    padding-right: 4px;
}

.social-media ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}
.social-media ul li a {
    text-decoration: none;
    color: #252525;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    border-radius: 100%;
}

ul.header-socialmedia li {
    display: inline-block;
    padding: 5px 20px;
    font-size: 18px;
}

.header-socialmedia .login {
    font-size: 14px;
    padding: 3px 10px;
    display: none;
}

ul.header-socialmedia li a{
    color: #120401;
}

ul.header-socialmedia {
    margin: 10px 0;
}

.product-content {
    position: absolute;
    margin-top: 14.5em;
    height: 190px;
    margin-left: 0;
    background: #000000b8;
    width: 100%;
}
.product-content p {
    padding: 15px;
    color: #fff;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    font-family: Montserrat;
    font-display: swap;
}
section.slide-wrapper .carousel-item {
    height: 70vh;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 80px;
    left: 0;
    right: 0;
    padding-bottom: 120px;
}
.carousel-content h1 {
    color: #fff;
    text-transform: uppercase;
        font-size: 70px;
        font-family: 'Visby Bold';
        font-display: swap;
}

span.text-blue {
    color: #25b4d3;
}

span.text-orange {
    color: #fb7e3b;
}
a.btn-carousel {
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: 20px;
}

section.carousel {
    background: #747d84;
    border-top: 3px solid #f1a87d;
    border-bottom: 3px solid #f1a87d;
}

section.carousel .card-img img {
    box-shadow: 0px 0px 0px 3px #565d62;
    padding: 5px 5px 5px;
}
.card.card-img{
border: none;
}
.inner-bacground-one-txt {
    margin-top: -20em;
    z-index: 999;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-bacground-one-txt h1 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Visby Heavy';
    font-display: swap;
}

.inner-bacground-one-txt h2 {
    color: #f7ce0f;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 300;
        font-family: VisbyCF,sans-serif;
        font-display: swap;
}

a.inner-bacground-one-ex {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    font-family: 'Visby Medium';
    font-display: swap;
}



/*video controller*/
.video-text h4 {
    text-align: center;
    margin: 0 0 0;
    background: #000;
    padding: 15px;
    color: #fff;
    width: 100%;
    font-size: 22px;
    text-transform: capitalize;
    line-height: 30px;
    font-family: 'Visby Semibold';
    font-display: swap;
}
.item.card .card-body {
    padding: 5px 5px 5px;
}
section.inner-bacground-three {
    border-top: 3px solid #f1a87d;
    border-bottom: 3px solid #f1a87d;
}

section.video-sec {
    background: #747d84;
    padding: 50px 0 0;
}

section.inner-bacground-one.enter-home-sec .enter-home.inner-bacground-one-txt {
    margin-top: -17.5em;
    z-index: 999;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
section.inner-bacground-one.enter-home-sec {
    border-top: 3px solid #f1a87d;
}
img.border-top{
 border-top: 3px solid #f1a87d !important;
}

/*footer*/
.footer-wrap {
    background: #000;
}
.footer-wrap .social-media ul li a {
    text-decoration: none;
    color: #f2f2f2;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    border-radius: 100%;
}
.footer-bottom.align-text-bottom h3 {
    color: #f2f2f2;
    font-family: Montserrat;
    font-display: swap;
    font-size: 21px;
}

.footer-links li a {
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
    font-size: 13px;
}
ul.footer-links i.bx.bx-chevron-right {
    color: #ddd;
}

li.login {
    background: #fff;
    border-radius: 0px;
    border: 1px solid #252525;
}

h6.text-white {
    font-family: 'Visby Light';
    font-display: swap;
}
section.inner-bacground-one.enter-home-sec



/*slider zoom*/
 @-webkit-keyframes zoom {
        from {
          -webkit-transform: scale(1, 1);
        }
        to {
          -webkit-transform: scale(1.5, 1.5);
        }
      }

      @keyframes zoom {
        from {
          transform: scale(1, 1);
        }
        to {
          transform: scale(1.5, 1.5);
        }
      }

      .faci-page-slider .carousel-inner img {
        -webkit-animation: zoom 20s;
        animation: zoom 20s;
      }





/* vel css */

.cladding-brick-tiles-master {
    padding: 40px 0;
}
.greenztech-category-title {
    color: rgb(63, 63, 63);
    font-size: 30px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.6em;
}
.greenztech-products-list-master .card-header {
    padding: 0.5rem 0rem;
    margin-bottom: 0;
    background-color: #fff;
}
.greenztech-pro-master {
    padding: 5px 5px;
    background-color: #f7f7f794;
    border: none;
    margin: 3px;
}
.greenztech-pro-master .card-title {
    color: #000;
    font-size: 16px;
    line-height: 37px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0em;
    margin-top: 0.5em;
}
.greenztech-pro-master .card-text-style {
    color: #000;
    font-size: 13px;
    letter-spacing: 0.6px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1em;
}
.greenztech-pro-master .card-text-style span {
    font-weight: 400;
    font-size: 12px;
    background-color: #2c839621;
    padding: 0px 4px;
    border-radius: 2px;
}
.greenztech-prd-btn {
    padding-top: 0.6em;
}
.greenztech-prd-btn .btn-primary {
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 2px 4px;
    margin-bottom: 3px 0px;
}
.greenztech-prd-btn .btn-secondary {
    color: #fff;
    background-color: #2c8396;
    border-color: #2c8396;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 2px 4px;
    margin-bottom: 3px 0px;
}
.greenztech-prd-btn .btn-primary:hover {
    background-color: #000;
    border-color: #000;
}
.greenztech-prd-btn .btn-secondary:hover {
    background-color: #000;
    border-color: #000;
}
.master-load-more {
    text-align: center;
    padding: 1.5em 0;
}
.master-load-more .btn-primary {
    color: #fff;
    background-color: rgb(63, 63, 63);
    border-color: rgb(63, 63, 63);
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 4px 4px;
}
.master-load-more .btn-primary:hover {
    background-color: #000;
    border-color: #000;
}






.greenztech-description-master {
  padding: 40px 0;
}


.greenztech-description-slider #sync1 .item {
  background: #fff;
  padding: 0px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
}

.greenztech-description-slider #sync2 .item {
  background: #fff;
  padding: 0px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}
.greenztech-description-slider #sync2 .current .item {
  background: #0c83e7;
}

.greenztech-description-slider .owl-carousel.owl-drag .owl-item {
  padding: 0px;
}

#sync2 .owl-nav {
  display: none;
}
.greenztech-description-slider .owl-theme .owl-nav [class*='owl-'] {
  transition: all .3s ease;
}
.greenztech-description-slider .owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}

.greenztech-description-slider #sync1.owl-theme {
  position: relative;
}
.greenztech-description-slider #sync1.owl-theme .owl-next, #sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}
.greenztech-description-slider #sync1.owl-theme .owl-prev {
  left: 10px;
}
.greenztech-description-slider #sync1.owl-theme .owl-next {
  right: 10px;
}


.greenztech-description-slider #sync1 .magnify > .magnify-lens {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 0%;
    box-shadow: 0 0 0 5px rgb(255 255 255 / 18%), 0 0 5px 5px rgb(0 0 0 / 21%), inset 0 0 10px 2px rgb(0 0 0 / 25%);
    cursor: none;
    display: none;
    z-index: 99;
}



.greenztech-description-content-master .card-title {
    color: #000;
    font-size: 23px;
    line-height: 32px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.greenztech-description-content-master .card-text {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1em;
}
.greenztech-description-content-master .card-text span {
    font-weight: 400;
    font-size: 14px;
    background-color: #2c839621;
    padding: 0px 4px;
    border-radius: 2px;
}
.greenztech-description-content-master .card-title-size {
    color: #000;
    font-size: 13px;
    line-height: 25px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}
.greenztech-description-content-master .card-title-size span {
    color: #1b5764;
    font-size: 13px;
    line-height: 25px;
    padding-left: 5px;
}
.greenztech-description-content-master .card-header {
    background-color: #fff;
}
.description-review {
    padding-bottom: 0.7em;
}
.description-button {
    padding-top: 0.7em;
}

.sold-form {
    margin-bottom: 0.7em;
}
.sold-form label {
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
}
.sold-form input {
    vertical-align: middle;
}



.qty-form label {
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
}
.qty-form input {
    vertical-align: middle;
}
.qty-form .form-control {
    width: auto;
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Montserrat;
    font-display: swap;
    margin-bottom: 1.5em;
}



.description-button .btn-primary {
    color: #fff;
    background-color: rgb(238 104 33);
    border-color: rgb(238 104 33);
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 4px 4px;
}
.description-button .btn-primary:hover {
    background-color: #000;
    border-color: #000;
}
.description-button .btn-success {
    color: #fff;
    background-color: rgb(44 131 150);
    border-color: rgb(44 131 150);
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 4px 8px;
}
.description-button .btn-success:hover {
    background-color: #000;
    border-color: #000;
}
.description-des {
    font-family: Montserrat;
    font-display: swap;
    font-size: 13px;
    text-align: justify;
    line-height: 27px;
    margin-bottom: 1.6em;
    color: #333;
}


.greenztech-description-spec {
    padding: 40px 0;
}

.greenztech-description-spec .card-header .card-title {
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 23px;
    line-height: 28px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-align: left;
}
.greenztech-description-spec .card-block {
    padding: 0.5rem 1rem;
}
.greenztech-description-spec .card-block .card-text {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0.6em;
}
.greenztech-description-spec .card-block ul li {
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    line-height: 30px;
}



.pro-filter-master .card-title {
    color: rgb(63, 63, 63);
    font-size: 30px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.6em;
}
.pro-filter-master .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: 15px;
    color: #000;
    text-align: left;
    background-color: #ee682121;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 500;
}
.pro-filter-master .accordion-item:first-of-type {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
}
.pro-filter-master label {
    display: block;
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 13px;
    margin-bottom: 0.7em;
    font-weight: 500;
}



.you-may-title {
    margin-bottom: 0.8rem;
    color: #000;
    font-size: 23px;
    line-height: 28px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-align: left;
}





.greenztech-description-similar-products {
  padding: 40px 0;
  background: #747d841c;
}


.you-may-like-testimonials {
  position: relative; 
}
@media (max-width: 767px) {
  .you-may-like-testimonials {
    margin-top: 20px;
  }
}

.you-may-like-testimonials .owl-stage-outer {
  padding: 10px 0;
}
.you-may-like-testimonials .owl-nav {
  display: none;
}
.you-may-like-testimonials .owl-dots {
  text-align: center;
}
.you-may-like-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #ee6821;
  margin: 0 5px;
}
.you-may-like-testimonials .owl-dots .active {
  box-shadow: none;
}
.you-may-like-testimonials .owl-dots .active span {
  background: #ee6821;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.you-may-like-testimonials .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #ee68215e;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 0px;
    border: 0;
}
.you-may-like-testimonials .card .card-img-top {
  max-width: 100%;
  border-radius: 0%;
  margin: 5px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
}
.you-may-like-testimonials .card h5 {
  color: #000;
  font-size: 17px;
  font-family: Montserrat;
  font-display: swap;
  line-height: 24px;
  margin-bottom: 0.6em;
}
.you-may-like-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}
.you-may-like-testimonials .card p {
  font-size: 14px;
  color: #555;
  padding-bottom: 15px;
  font-family: Montserrat;
  font-display: swap;
  font-weight: 500;
}
.you-may-like-testimonials .active {
  opacity: 1;
  transition: all 0.3s;
}
.you-may-like-testimonials .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  outline: 0;
}




.greenztech-cart-master .greenztech-cart-image img {
    max-width: 100%;
    width: 150px;
}
.grenz-cart-name {
    font-family: Montserrat;
    font-display: swap;
    font-size: 18px;
}
.grenz-cart-qty label {
    display: inline-block;
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    margin-bottom: 0.4em;
    font-weight: 500;
}
.grenz-cart-qty .form-control {
    display: block;
    width: auto;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Montserrat;
    font-display: swap;
}
.grenz-cart-sold {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    margin-top: 0.6em;
}
.grenz-cart-sold span {
    font-family: Montserrat;
    font-display: swap;
    font-size: 13px;
    font-weight: 400;
    margin-top: 0.6em;
}
.grenz-cart-price {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    margin-top: 0.6em;
}
.grenz-cart-price span {
    font-family: Montserrat;
    font-display: swap;
    font-size: 13px;
    font-weight: 400;
    margin-top: 0.6em;
}
.grenz-cart-buttons .btn-success {
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 2px 4px;
    margin: 3px 0px;
}
.grenz-cart-buttons .btn-primary {
    color: #fff;
    background-color: #2c8396;
    border-color: #2c8396;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 2px 4px;
    margin: 3px 0px;
}
.ttl-price {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    margin-top: 0.6em;
}
.ttl-price span {
    font-family: Montserrat;
    font-display: swap;
    font-size: 13px;
    font-weight: 400;
    margin-top: 0.6em;
}

.ttl-row {
  text-align: right;
}

.greenztech-cart-master .card-header table tr th {
    border: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
}
.greenztech-cart-master .card-header table tr td {
  border: 1px solid #ccc;
}



.greenztech-cart-master .card-block table tr th h2 {
    font-family: Montserrat;
    font-display: swap;
    font-size: 18px;
    margin-bottom: 0.4em;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.greenztech-cart-master .card-block table tr th {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    margin-bottom: 0.4em;
    font-weight: 500;
    border: 1px solid #ccc;
}
.greenztech-cart-master .card-block table tr td {
    font-family: Montserrat;
    font-display: swap;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #ccc;
}
.cart-ttl-btn .btn-success {
    color: #fff;
    background-color: rgb(63, 63, 63);
    border-color: rgb(63, 63, 63);
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 4px 4px;
    width: 100%;
}

.cart-title-name {
    color: rgb(63, 63, 63);
    font-size: 30px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.6em;
    margin-top: 0.6em;
}
.greenztech-cart-master {
  padding: 40px 0;
}











.greenztech-checkout-master .checkout-title {
    font-family: Montserrat;
    font-display: swap;
    font-size: 24px;
    color: #333;
    text-align: left;
    line-height: 32px;
    margin-bottom: 1em;
    text-transform: capitalize;
    font-weight: 500;
}
.greenztech-checkout-master .card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: #fbdb9138;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0px;
}
.greenztech-checkout-master .card {
    border-radius: 0px;
    border: none;
}
.greenztech-checkout-master .card-header label {
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 14px;
}
.greenztech-checkout-master .card-header .form-control {
    display: block;
    width: 100%;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Montserrat;
    font-display: swap;
    margin-bottom: 0.8em;
}

.checkout-order-content {
    margin: 0px 15px;
}
.order-title {
    font-family: Montserrat;
    font-display: swap;
    font-size: 24px;
    color: #333;
    text-align: left;
    line-height: 32px;
    margin-bottom: 1em;
    text-transform: capitalize;
    font-weight: 500;
}
.greenztech-checkout-master .card-block table {
    width: 100%;
}
.greenztech-checkout-master .card-block table tr th {
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 15px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    font-weight: 500;
    background-color: #fbdb9138;
    padding: 0.5rem 0.5rem;
    border: 1px solid rgba(0,0,0,.125);
}
.greenztech-checkout-master .card-block table tr td {
    padding: 0.5rem 0.5rem;
    border: 1px solid rgba(0,0,0,.125);
    font-size: 14px;
    font-family: Montserrat;
    font-display: swap;
}
.greenztech-checkout-master .card-block table tr td .btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
    width: 100%;
    text-transform: capitalize;
    font-size: 15px;
    font-family: Montserrat;
    font-display: swap;
}
.greenztech-checkout-master {
    padding: 50px 0;
}






.greenztech-my-account-master {
    padding: 50px 0;
}

.greenztech-my-ac-tabs .tab button {
    width: 100%;
    font-size: 14px;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    margin-bottom: 0.7em;
    background-color: #2c8396;
    color: #fff;
    border: none;
}
.greenztech-my-ac-tabs .tab button.active {
  background-color: #ccc;
  color: #000;
}
.greenztech-myacc-my-orders table tr th {
    background-color: #cccccc61;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #ccc;
}
.greenztech-myacc-my-orders table tr td {
    vertical-align: middle;
    border: 1px solid #ccc;
}
.greenztech-myacc-my-orders table tr td img {
    max-width: 100%;
    width: 104px;
}
.greenztech-myacc-my-orders table tr td .card-title {
    margin-bottom: 0.5rem;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}
.greenztech-myacc-my-orders table tr td .card-title span {
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
}
.greenztech-myacc-my-orders table tr td .card-text {
    margin-bottom: 0.5rem;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}
.greenztech-myacc-my-orders table tr td .date-of-picked {
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 14px;
    color: #ee6821;
}
.greenztech-myacc-my-orders table tr td .card-price {
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 16px;
}
.greenztech-myacc-my-orders table tr td .card-status {
    font-size: 14px;
    color: #1aa410;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.greenztech-myacc-my-orders table tr td .card-status span {
    color: #f90f0f;
}
.greenztech-myacc-my-orders table tr .myacc-delete-prd a {
    color: #f90f0f;
    font-size: 14px;
}
.greenztech-my-ac-contents .tabcontent h3 {
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    color: #000;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 0.6em;
}
.acc-content-inner-one label {
    display: inline-block;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-bottom: 0.6em;
}
.acc-content-inner-one .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 0.6em;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-one .btn-primary {
    color: #fff;
    background-color: #ee6821;
    border-color: #ee6821;
    border-radius: 0px;
    font-size: 14px;
    text-transform: capitalize;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-two label {
    display: inline-block;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-bottom: 0.6em;
}
.acc-content-inner-two .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 0.6em;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-two .btn-primary {
    color: #fff;
    background-color: #ee6821;
    border-color: #ee6821;
    border-radius: 0px;
    font-size: 14px;
    text-transform: capitalize;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-five label {
    display: inline-block;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-bottom: 0.6em;
}
.acc-content-inner-five .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 0.6em;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-five .btn-primary {
    color: #fff;
    background-color: #ee6821;
    border-color: #ee6821;
    border-radius: 0px;
    font-size: 14px;
    text-transform: capitalize;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-six .btn-primary {
    color: #fff;
    background-color: #ee6821;
    border-color: #ee6821;
    border-radius: 0px;
    font-size: 14px;
    text-transform: capitalize;
    font-family: Montserrat;
    font-display: swap;
}
.acc-content-inner-seven h1 {
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
    color: #000;
    font-size: 22px;
}
.greenztech-my-ac-contents {
    background-color: #ee682114;
    padding: 10px;
}



.footer-payment img {
    max-width: 100%;
    width: 242px;
    margin-top: 0.9em;
}




.greenz-register-master {
    padding: 50px 0;
}

.register-title {
    text-align: center;
    margin-bottom: 0.6em;
    font-size: 32px;
    color: #000;
    text-transform: capitalize;
    font-family: Montserrat;
    font-display: swap;
}
.greenz-register-master .card-header label {
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 14px;
    line-height: 30px;
}
.greenz-register-master .card-header .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Montserrat;
    font-display: swap;
    margin-bottom: 1em;
}
.greenz-register-master .card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: #ff980017;
    border: none;
}
.greenz-register-master .card {
    border-radius: 0px;
}
.greenz-register-master .card-header .btn-primary {
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 0px;
    font-family: Montserrat;
    font-display: swap;
}
.greenz-register-master .card-header .btn-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.register-to-login {
    text-align: center;
    font-size: 20px;
    margin-top: 0.6em;
    margin-bottom: 0.6em;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 600;
}
.login-to-forgot-password {
    text-align: center;
    font-size: 20px;
    margin-top: 0.6em;
    font-family: Montserrat;
    font-display: swap;
    margin-bottom: 0.6em;
    font-weight: 600;
}






.greenz-login-master {
    padding: 50px 0;
}


.login-title {
    text-align: center;
    margin-bottom: 0.6em;
    font-size: 32px;
    color: #000;
    text-transform: capitalize;
    font-family: Montserrat;
    font-display: swap;
}
.greenz-login-master .card-header label {
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 14px;
    line-height: 30px;
}
.greenz-login-master .card-header .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Montserrat;
    font-display: swap;
    margin-bottom: 1em;
}
.greenz-login-master .card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
}
.greenz-login-master .card {
    border-radius: 0px;
    background-color: #ff980017;
}
.greenz-login-master .card-header .btn-primary {
    color: #fff;
    background-color: #ee6821;
    border-color: #ee6821;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 0px;
    font-family: Montserrat;
    font-display: swap;
}
.greenz-login-master .card-header .btn-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}





.wish-list-title {
    font-family: Montserrat;
    font-display: swap;
    font-size: 28px;
    color: #333;
    text-align: center;
    line-height: 32px;
    margin-bottom: 1em;
    text-transform: capitalize;
}
.greenz-wishlist-master .card {
    border-radius: 0rem;
    padding: 0px;
    border: none;
}
.greenz-wishlist-master .card-header {
    padding: 0rem 0rem;
    margin-bottom: 0;
    background-color: #fff;
    border: none;
}
.greenz-wishlist-master .card-header table {
    width: 100%;
}
.greenz-wishlist-master .card-header table tr th {
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 14px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    background-color: #fbdb9138;
    padding: 0.5rem 0.5rem;
    border: 1px solid rgba(0,0,0,.125);
}
.greenz-wishlist-master .card-header table tr td {
    padding: 0.5rem 0.5rem;
    border: 1px solid rgba(0,0,0,.125);
}
.greenz-wishlist-master .card-header table tr td .form-control {
    width: 90px;
}
.greenz-wishlist-master .card-header table tr td label {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
}
.greenz-wishlist-master .card-header table tr td h4 {
    font-family: Montserrat;
    font-display: swap;
    color: #000;
    font-size: 14px;
}
.greenz-wishlist-master .card-header table tr td a {
    color: #fb100b;
}
.greenz-wishlist-master .card-header table tr td img {
    max-width: 100%;
    width: 148px;
    border: 2px solid #fff;
}
.greenz-wishlist-master .card-block {
    padding: 0rem 0rem;
    margin-bottom: 0;
    background-color: #fff;
    border: none;
}
.greenz-wishlist-master .card-header table tr td .btn-primary {
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
    text-transform: capitalize;
    font-size: 13px;
    font-family: Montserrat;
    font-display: swap;
    border-radius: 0px;
}
.wish-add-to-cart {
    text-align: center;
}
.greenz-wishlist-master {
  padding: 50px 0;
}





.greenz-contact-master {
  padding: 40px 0;
}
.greenz-contact-master .btn-primary {
    color: #fff;
    background-color: rgb(63, 63, 63);
    border-color: rgb(63, 63, 63);
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 4px 4px;
}
.greenz-contact-master .card-header .card-title {
    color: #000;
    font-size: 20px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0.2em;
}
.greenz-contact-master .card-header .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Montserrat;
    font-display: swap;
    margin-bottom: 1em;
}
.greenz-contact-master .card-header label {
    font-family: Montserrat;
    font-display: swap;
    font-size: 13px;
    color: #000;
    margin-bottom: 0.3em;
}
.greenz-contact-master .card {
    border: none;
}
.greenz-contact-master .card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgb(0 0 0 / 1%);
}
.greenz-contact-master .card-block {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: #fff;
}
.greenz-contact-master .card-block .card-title {
    color: #000;
    font-size: 20px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: capitalize;
    text-align: left;
    margin-bottom: 0.2em;
}
.greenz-contact-master .card-block .card-text {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14.3px;
    color: #000;
}
.greenz-contact-master .card-block .card-text a {
    color: #000;
}
.greenz-contact-master .card-block .card-text .bi {
    font-size: 18px;
    color: #ee6821;
    margin-right: 4px;
}
.contact-head {
    font-family: Montserrat;
    font-display: swap;
    font-size: 32px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0.7em;
}















.greenz-gallery-tab {
    overflow: hidden;
    border: none;
    background-color: #fff;
    text-align: center;
}
.greenz-gallery-tab button {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 16px;
    transition: 0.3s;
    font-size: 14px;
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize;
    background-color: #ee6821;
    color: #fff;
}
.greenz-gallery-tab button:hover {
  background-color: #2c8396;
}
.greenz-gallery-tab button.active {
    background-color: #2c8396;
}
.greenz-gallery-tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


.gallery-master-sec .card-header {
  background-color: #fff;
}


.gallery-master-sec {
    padding: 40px 0;
}


.gallery-title {
    font-family: Montserrat;
    font-display: swap;
    font-size: 32px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0.7em;
}
.greenztabcontent h3 {
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize;
    font-size: 22px;
}


.product-content-page h1 {
      font-family: Montserrat;
      font-display: swap;
    font-size: 32px;
    text-transform: capitalize;
    text-align: center;
    margin: 1em;
}
.product-content-page h2 {
      font-family: Montserrat;
      font-display: swap;
    font-size: 28px;
    text-transform: capitalize;
    text-align: left;
    margin: 1em;
}

.product-content-page p {
  font-family: Montserrat;
  font-display: swap;
    font-size: 18px;
    text-transform: capitalize;
    text-align: center;
    margin: 0 auto;
    color: #000;
}

.product-content-page h4 {
    text-transform: capitalize;
    color: #000;
    font-family: Montserrat;
    font-display: swap;
    font-size: 23px;
    margin-top: 1em;
}

 .product-content-page .product-description-one  {
   border: 1px solid #00000091;
   margin-top: 50px;
   padding: 10px 16px;
 }
.product-content-page ul {
    padding-left: 0rem;
}
.product-content-page ul strong {
    font-weight: 500!important;
    color: #ee6821!important;
    font-size: 14px;
    padding: 2px 5px 2px 5px;
    background-color: #0000000d;
}

.product-content-page .product-description-one span  {
       font-size: 13px;
    color: #ee6821;
    margin-right: 4px;
    font-weight: 600;
    text-transform: capitalize;

 }     
.product-content-page .product-description-one p {
    color: #000;
    font-weight: 600;
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize;
    line-height: 32px;
    text-align: left;
    font-size: 15px;
    margin-bottom: 15px;
}

 .product-content-page .product-description-one ul li {
    list-style: none;
    color: #000;
    font-family: Montserrat;
    font-display: swap;
    text-transform: capitalize!important;
    line-height: 32px;
    font-size: 13.4px;
    font-weight: 500;
    padding-bottom: 7px;
}
.product-content-page .product-description-one .enquiry-button {
  
  margin-bottom: 10px;
}

 .product-content-page .product-description-one .enquiry-button a {
    background: #ee6821;
    color: #fff;
    padding: 5px 20px;
    border-radius: 0px;
    font-size: 14px;
}
 .product-content-page .product-description-one .enquiry-button a .bx {
    vertical-align: sub;
    font-size: 21px;
    margin-left: 6px;
}


.exposed-brick-page  h2 {
    font-family: Montserrat;
    font-display: swap;
    font-size: 32px;
    text-transform: capitalize;
    text-align: center;
    margin: 1em;
}

.exposed-brick-content p {
    margin: 0 auto;
    display: block;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 60px;
}

.about-us-page  h2 {
    font-family: Montserrat;
    font-display: swap;
    font-size: 28px;
    text-transform: capitalize;
    text-align: center;
    /*margin: 1em;*/
}

.about-us-page  h1 {
    font-family: Montserrat;
    font-display: swap;
    font-size: 32px;
    text-transform: capitalize;
    text-align: center;
    margin: 1em;
}

.about-us-page  p {
    margin: 0 auto;
    display: block;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 30px;
}

.about-us-page-1  p {
    margin: 0 auto;
    display: block;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 30px;
}

.about-us-page-1  img {
    max-width: 100%;
    padding: 10px;
    border-radius: 15px;
}


.about-us-page-1 {
  padding: 30px 0;
}


.vision-mission {
  padding: 30px 0;
}


.vision-mission h4 {
  font-family: Montserrat;
  font-display: swap;
    font-size: 28px;
    text-transform: capitalize;
    text-align: left;
    margin-bottom:0.5em;
}


.vision-mission p {
    margin: 0 auto;
    display: block;
    text-align: justify;
    line-height: 30px;
    
}






.greenz-portfolio-landing01 h1 {
    color: rgb(63, 63, 63);
    font-size: 30px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.6em;
    margin-top: 1.6em;
}
.greenz-portfolio-landing01 .card-header .card-title {
    color: #000;
    font-size: 16px;
    line-height: 37px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0em;
    margin-top: 0.5em;
}
.greenz-portfolio-landing01 .card-header .card-text {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    /*line-height: 25px;*/
    text-align: justify;
    font-weight: normal;
    color: #000000a3;
    height: 6em;
    overflow: hidden;
}
.greenz-portfolio-landing01 .card-header {
    background-color: transparent;
}
.greenz-portfolio-landing01 .card-header .btn-primary {
    color: #fff;
    background-color: #2c8396;
    border-color: #2c8396;
    font-family: Montserrat;
    font-display: swap;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
    margin-bottom: 1.6em;
}




.greenz-portfolio-details01 {
  padding: 40px 0;
}
.greenz-portfolio-details01 .owl-prev, .owl-next {
  position: initial;
}
.greenz-portfolio-details01 .owl-nav {
  text-align: center;
  font-size: 26px;
  color: #000;
}
.greenz-portfolio-details01 h1 {
    color: rgb(63, 63, 63);
    font-size: 30px;
    line-height: 45px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.3em;
}
.greenz-portfolio-details01 .card-title {
    color: #000;
    font-size: 16px;
    line-height: 37px;
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0em;
    margin-top: 0.5em;
}
.greenz-portfolio-details01 .card-text {
    font-family: Montserrat;
    font-display: swap;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    font-weight: normal;
    color: #000000a3;
}




.float {
  position:fixed;
  bottom:10px;
  left:20px;
  z-index: 9;
}
.my-float {
  margin-top:22px;
  box-shadow: none;
  border-radius:100%;
  max-width: 100%;
  width: 52px;
  height: 52px;
  animation-name: bounce-1;
  animation-timing-function: linear;
}
.my-float:hover {
    animation: none;
}
.bounce {
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
@keyframes bounce-1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}
