@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");

:root {
  --col1: rgb(32, 32, 32);
}

h1,
h3,
h4,
h5,
h6,
a,
p {
  font-family: Poppins, sans-serif;
}
a {
  text-decoration: none;
  color: #222;
}
.font-meri {
  font-family: "Merriweather", serif;
}
body {
  background-color: #f4f4f4;
  overflow-x: hidden;
}
.mobile-menu,
.mobile-menu
  .mobile-menu-body
  li.dropdown-li
  > ul.dropdown-list.dropdown-list-2 {
  background: var(--col1);
}

.hamburger .hamburger-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 25px;
  cursor: pointer;
}

.hamburger span:not(:last-child) {
  margin-bottom: 4px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: rgb(112, 112, 112);
  border-radius: 100px;
  transition: all 0.5s ease-in-out 0s;
}

.hamburger span:first-child {
  width: 50%;
}

.hamburger span:last-child {
  width: 70%;
}

.hamburger:hover span {
  width: 100%;
}

.mobile-menu {
  position: fixed;
  width: 300px;
  height: 100%;
  padding: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
  z-index: 100;
  transform: translateY(150%);
  transition: all 0.5s ease-in-out 0s;
  bottom: -99%;
}

.mobile-menu .mobile-close {
  display: flex;
  justify-content: end;
}

.mobile-menu .mobile-close a {
  display: inline-block;
  font-size: 30px;
  color: rgb(255, 255, 255);
  transition: all 0.8s ease-in-out 0s;
  margin-right: 20px;
}

.mobile-menu .mobile-close a:hover {
  transform: rotate(360deg);
}

.mobile-menu .mobile-menu-body {
  max-height: 100%;
  overflow-y: auto;
  padding: 0px;
}

.mobile-menu-body span {
  display: none;
}

.mobile-menu .mobile-menu-body .navigation-list {
  text-align: left !important;
}

.mobile-view {
  background-color: var(--col1);
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list > li,
.mobile-menu .mobile-menu-body > .navigation-list > li {
  display: block;
  margin: 0px !important;
}

.mobile-menu .mobile-menu-body > .navigation-list > li:not(:last-child) > a {
  border-bottom: 1px solid rgb(255, 255, 255);
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list > li > a,
.mobile-menu .mobile-menu-body > .navigation-list > li > a {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
}

.mobile-menu.mobile-view {
  transform: translateY(0px);
  bottom: 0px;
}

.mobile-menu .mobile-menu-body li.dropdown-li {
  position: relative;
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list {
  display: none;
  background: rgb(221, 170, 0);
}

.mobile-menu
  .mobile-menu-body
  li.dropdown-li
  > ul.dropdown-list.dropdown-list-1 {
  margin-left: 30px;
}

.mobile-menu .mobile-menu-body li.dropdown-li > a > i {
  float: right;
  font-size: 16px;
  transition: inherit;
}

.mobile-menu .mobile-menu-body li.dropdown-li.open > a > i {
  transform: rotate(90deg);
}

.navigation-list a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.navigation-list {
  /* padding-top: 25px; */
}

.list-inline-item .fa-basket-shopping {
  color: var(--col1);
  font-size: 25px;
}

.list-inline-item .item-basket p {
  color: var(--col1);
  font-size: 18px;
}

.navigation-list .list-inline-item {
  margin-left: 20px;
}

/* Dropdown */
.nav-item:hover .chevron {
  transform: rotate(180deg);
}
.chevron {
  margin-left: 5px;
  transition: transform 0.3s;
}
/* Dropdown menu styling */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 160px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content a {
  color: black !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: justify;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown on hover */
.nav-item:hover .dropdown-content {
  display: block;
}

/* Footer */
.footer {
  background-color: transparent;
  padding: 40px 0;
}
ul.list-unstyled li {
  padding: 5px 0px;
}
.footer a {
  color: #6c757d;
  text-decoration: none;
  font-size: 13px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .social-icons a {
  margin-right: 15px;
}
.footer .subscribe-form input[type="email"] {
  border-radius: 0;
  border: 1px solid #ced4da;
}
.footer .subscribe-form button {
  border-radius: 0;
  background-color: white;
  color: black;
  border: none;
  border-radius: 10px;
}
.subscribe-container {
  background-color: var(--col1);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.subscribe-container h5 {
  font-size: 18px;
  margin-bottom: 15px;
}
.subscribe-container .form-control {
  border-radius: 0;
  border: none !important;
}
.subscribe-container .input-group {
  border-bottom: 1px solid white;
}
.subscribe-container .btn {
  border-radius: 0;
  background-color: #fff;
  color: #343a40;
  border: none;
  width: 100%;
}
.subscribe-container input {
  background-color: var(--col1);
  border: none;
  color: #fff;
}
.subscribe-form .form-control:focus {
  color: white;
  background-color: var(--col1);
  border: none;
  outline: 0;
  box-shadow: none;
}
.subscribe-container input::placeholder {
  color: white;
  border: none;
}
.input-group-text {
  background-color: transparent;
  color: white;
  border: none;
}
/* Languages */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.goog-te-gadget {
  visibility: hidden;
}
.ct-topbar {
  text-align: right;
  background: transparent;
  border: 1px solid lightgray;
  border-radius: 30px;
}
.ct-topbar__list {
  margin-bottom: 0px;
}
.ct-language__dropdown {
  padding-top: 8px;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 110%;
  left: -3px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100px;
  text-align: center;
  padding-top: 0;
  z-index: 200;
}
.ct-language__dropdown li {
  background: white;
  padding: 5px;
}
.ct-language__dropdown li a {
  display: block;
}
.ct-language__dropdown li:first-child {
  padding-top: 10px;
  border-radius: 3px 3px 0 0;
}
.ct-language__dropdown li:last-child {
  padding-bottom: 10px;
  border-radius: 0 0 3px 3px;
}
.ct-language__dropdown li:hover {
  background: white !important;
}
.ct-language__dropdown:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 0;
  border: 0 solid transparent;
  border-right-width: 8px;
  border-left-width: 8px;
  border-bottom: 8px solid #222;
  visibility: hidden;
}
.ct-language {
  position: relative;
  padding: 10px 0px;
  border-radius: 30px;
  cursor: pointer;
}
.ct-language:hover .ct-language__dropdown {
  max-height: 210px;
  padding: 8px;
  color: white;
  width: 140px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  margin-right: 0px;
}
.ct-topbar img {
  width: 20px;
}
div#google_translate_element {
  display: NONE;
}
.marble-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../assets/image/header.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 90vh;
  color: white;
}
.row.align-items-center.nav-full {
  position: absolute;
  z-index: 999;
}
.header {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../assets/image/factory-image/header-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  width: 100%;
  height: 100vh;
  color: white;
}
.marble-header .content-header h1 {
  font-size: 60px;
}
.marble-header a {
  color: white;
}
.header-logo img {
  width: 80%;
  height: auto;
}
/* Counter */
.counter {
  font-size: 50px;
  font-weight: 700;
  line-height: 31px;
  padding-top: 30px;
}
.img-header {
  width: 90%;
  height: 540px;
  object-fit: cover;
  border-radius: 30px;
  margin-left: 50px;
}
.header-content {
  height: 100vh;
  display: flex;
  align-items: center;
  /* padding-bottom: 70px; */
}
.header-content .col-lg-6:nth-child(1) {
  display: flex;
  align-items: center;
}
/* btn-collection */
.btn-collection .btn {
  background-color: var(--col1);
  color: white;
  margin-top: 20px;
  border-radius: 7px;
  padding: 10px 60px;
}
.images-marble-1 img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 30px;
}
/* Tabs */
.tabs-best-sellers ul {
  display: flex;
  justify-content: space-between;
  padding: 10px 50px;
  border: 1px solid var(--col1);
  border-radius: 50px;
}
.tabs-best-sellers ul li button.active {
  background-color: black !important;
  color: white !important;
  font-weight: 600;
  font-size: 20px;
  border-radius: 50px;
  padding: 11px 40px;
}
.tabs-best-sellers ul li button {
  color: var(--col1);
  font-size: 20px;
}
.tabs-best-sellers ul li button:hover {
  color: var(--col1);
}
/* Gallery */
#gallery {
  padding-top: 10px;
  margin-bottom: 50px;
}
.img-wrapper {
  position: relative;
  margin-top: 15px;
  padding-bottom: 10px;
  transition: all 0.5s;
  cursor: pointer;
}
.img-wrapper img {
  width: 100%;
  height: 280px;
  border-radius: 30px;
  object-fit: cover;
}
.img-wrapper:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 30px;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.img-wrapper:hover .img-responsive {
  display: none;
}
.img-wrapper:hover .img-hover {
  display: inline-block;
}
.img-wrapper .img-hover {
  display: none;
}
.images-marble-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
}
.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  border-radius: 30px;
}
.img-overlay i {
  color: #fff;
  font-size: 3em;
}
#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  object-fit: contain;
  padding: 5%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}
#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}
#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}
#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#exitButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}
.gallery-heading {
  text-align: center;
  padding-top: 10px;
}
.img-wrapper2 .img-wrapper {
  position: relative;
  margin-top: 15px;
  background-color: white;
  padding: 12px;
  border-radius: 30px;
}
.images-marble-3 img {
  width: 100%;
  margin-top: 10px;
  /* border-radius: 30px; */
  height: 200px;
  object-fit: cover;
}
.content-marble-slider {
  margin-top: 10px;
  background-color: #dc9234;
  color: white;
  padding: 20px 30px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured {
  padding: 50px 0px;
}
.featured .swiper-slide {
  padding-bottom: 100px;
}
.swiper-pagination-bullet-active {
  background: black;
  width: 12px;
  height: 12px;
  position: relative;
  top: 2px;
}
.swiper-pagination-bullet {
  opacity: 1;
}
.image-marble-items {
  background-color: white;
  padding: 12px;
  border-radius: 30px;
  margin: 5px;
}
.image-marble-items img {
}
.images-marble-main-2 img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
}
.news .card {
  border-radius: 30px;
  padding: 10px;
  height: 420px;
  border: none;
  padding-bottom: 20px;
  max-height: 500px;
}
.news .card img {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  height: 284px;
}
.contact .container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/image/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: fit-content;
  padding: 50px 30px;
  border-radius: 30px;
}
.contact form {
  padding: 20px 30px;
  background-color: #f5f5f5;
  border-radius: 60px;
}
.contact form input {
  margin-bottom: 20px;
  background-color: #ededed;
  border: none;
  height: 45px;
}
.contact form textarea {
  margin-bottom: 20px;
  background-color: #ededed;
  border: none;
  height: 45px;
}
.contact form input::placeholder {
  color: rgb(158, 158, 158);
}
.contact form textarea::placeholder {
  color: rgb(158, 158, 158);
}
.contact form .form-control:focus {
  color: black;
  background-color: #ededed;
  border: none;
  outline: 0;
  box-shadow: none;
}
/* Blogs */

.post-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.post-image {
  position: relative;
}
.category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--col1);
  color: white;
  padding: 07px 20px;
  border-radius: 5px;
}
.category a {
  color: white;
}
article {
  background-color: white;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}
article .post-text {
  padding: 20px;
}
.post-text .date {
  display: flex;
  justify-content: center;
  padding: 10px 0px;
  font-weight: 600;
}

.products {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/image/Asset\ 6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70vh;
}
.products .header-content {
  height: 50vh;
}
.products .header-content h1 {
  font-size: 70px;
  text-transform: uppercase;
}
.blog .header-content {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog h1 {
  font-size: 80px;
}
/* Conatct US */
section.connect .card {
  position: relative;
  bottom: 90px;
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.carousel-cell {
  /* background: #8c8; */
  /* counter-increment: carousel-cell; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  /* cell number */
}
.carousel-cell:before {
  /* content: counter(carousel-cell); */
}
.carousel-main .carousel-cell {
  /* width: 100%; */
  height: 500px;
  font-size: 5rem;
}
.carousel-nav {
  width: 480px;
  transform: rotate(90deg) translate(30px, -100%);
  transform-origin: left top;
}
@media screen and (max-width: 1200px) {
  .carousel-nav {
    transform: rotate(90deg) translate(30px, -50%);
  }
}
.carousel-nav .carousel-cell img {
  /* transform: rotate(-90deg); */
  width: 80px;
  height: 80px;
  cursor: pointer;
  margin-right: 1rem;
  font-size: 1.4rem;
  /* selected cell */
}

.carousel-nav .carousel-cell:before {
  transform: rotate(-90deg);
}

.carousel-nav .flickity-prev-next-button {
  width: 40px;
  height: 40px;
  background: transparent;
}
.carousel-nav .flickity-prev-next-button.previous {
  left: -40px;
}
.carousel-nav .flickity-prev-next-button.next {
  right: -40px;
}
.flickity-viewport {
  height: 500px;
}
.small-image-slider img {
  width: 100%;
}
.content-slider h6 {
  border-radius: 10px;
  border: 1px solid lightgray;
  padding: 10px 20px;
}

/* COnatct contact form */
.contact2 .container {
  background-image: none;
  color: black !important;
}
.contact2 .text-white {
  color: black !important;
}
.contact2 form {
  padding: 20px 30px;
  background-color: black;
  border-radius: 05px;
  color: white;
}

/* Exhibition */
.image-exhibition img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}
/* Projects */
.projects img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.projects h5.card-title {
  bottom: 30px;
  position: absolute;
  background-color: white;
  color: black;
  font-weight: 600;
  font-size: 22px;
  padding: 10px 30px;
  border-radius: 5px;
}
.projects {
  padding-top: 80px;
  padding-bottom: 30px;
}
.projects .card:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.projects .card {
  border: none;
  border-radius: 30px;
  overflow: hidden;
}
.mySwiper2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}
.mySwiper2 .swiper-pagination {
  color: white !important;
  font-size: 20px;
  font-weight: 500;
}
.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: black;
  background-color: white;
  border-radius: 50%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 18px;
  font-weight: 900;
}
/* .img-wrapper{
  overflow: hidden; 
}
.img-wrapper:hover img{
  transform: scale(1.1);
  transition: all 0.5s;
} */
.category-p p {
  padding: 5px 10px;
  border-radius: 10px;
}
/* Slider */
/* .slider {
  position: relative;
  height: 100vh;
}
.slider__slides {
  z-index: 1;
  position: relative;
  height: 100%;
}
.slider__control {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 62px;
  height: 62px;
  margin-left: -30px;
  margin-top: -30px;
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.3s;
  cursor: pointer;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider__control--right {
  left: 95%;
}
.slider__control:hover {
  background-color: #2da6ff;
}
.slider__control-line {
  position: absolute;
  left: 23px;
  top: 50%;
  width: 3px;
  height: 14px;
  transform-origin: 50% 0;
  transform: rotate(-45deg);
}
.slider__control-line:nth-child(2) {
  transform: translateY(1px) rotate(-135deg);
}
.slider__control--right .slider__control-line {
  left: 37px;
  transform-origin: 1px 0;
  transform: rotate(45deg);
}
.slider__control--right .slider__control-line:nth-child(2) {
  transform: translateY(1px) rotate(135deg);
}
.slider__control-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e2e2e2;
  transition: background-color 0.3s;
}
.slider__control:hover .slider__control-line:after {
  background-color: #fff;
}
.slider__control.a--rotation .slider__control-line:after {
  animation: arrowLineRotation 0.49s;
}
.slider__control.a--rotation .slider__control-line:nth-child(1):after {
  animation: arrowLineRotationRev 0.49s;
}
@keyframes arrowLineRotation {
  to {
    transform: rotate(180deg);
  }
}
@keyframes arrowLineRotationRev {
  to {
    transform: rotate(-180deg);
  }
}
.slide {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vmax;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: clip-path 0s 0.91s;
  clip-path: circle(30px at 120vw 50%);
}
.slide.s--prev {
  clip-path: circle(30px at 30vw 50%);
}
.slide.s--active {
  z-index: 1;
  transition: clip-path 1.3s;
  clip-path: circle(120vmax at 120vw 50%);
}
.slide.s--active.s--active-prev {
  clip-path: circle(120vmax at 30vw 50%);
}
.slide:nth-child(1) .slide__inner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-2.jpg");
}
.slide:nth-child(2) .slide__inner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-3.jpg");
}
.slide:nth-child(3) .slide__inner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-4.jpg");
}
.slide:nth-child(4) .slide__inner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-5.jpg");
}
.slide:nth-child(5) .slide__inner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-6.jpg");
}
.slide__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.slide__content {
  position: relative;
  /* left: 5%; */
/* top: 50%; */
/* margin-left: -30px;
  margin-top: 48px;
  max-width: 480px;
  color: #fff;
}
.slide__heading {
  margin-bottom: 20px;
  font-size: 60px;
}  */
.images-marble-main-featured img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.content-marble-slider-2 {
  background-color: #dce1e5;
  color: black;
}
.content-marble-slider-3 {
  background-color: #c0bcb5;
  color: black;
}
.content-marble-slider-4 {
  background-color: #c4c4c8;
  color: black;
}
.about-section-popular p {
  font-weight: bold;
  text-align: justify;
}

.slider-product-page .swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .slider-product-page .swiper-container {
    min-height: 320px;
  }
}
.slider-product-page .swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
  /* height: 100vh; */
  /* width: 100vw; */
}
@media (min-width: 480px) {
  .slider-product-page .swiper-container-wrapper {
    flex-flow: row nowrap;
  }
}
.slider-product-page .swiper-button-next,
.swiper-button-prev {
  color: white;
}
.slider-product-page .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.slider-product-page .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-product-page .swiper-slide .description,
.slider-product-page .swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.slider-product-page .swiper-slide-active .description,
.slider-product-page .swiper-slide-active .title {
  opacity: 1;
}
.slider-product-page .swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.slider-product-page .swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}
.slider-product-page .gallery-top {
  position: relative;
  width: 100%;
  height: 75vh;
}
@media (min-width: 480px) {
  .slider-product-page .gallery-top {
    width: 100%;
    height: 500px;
    margin-right: 10px;
  }
}
.slider-product-page .gallery-thumbs {
  width: 100%;
  height: 25vh;
  padding-top: 10px;
}
@media (min-width: 480px) {
  .slider-product-page .gallery-thumbs {
    width: 20%;
    height: 500px;
    padding: 0;
  }
}
.slider-product-page .gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
  .slider-product-page .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.slider-product-page .gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.75;
  cursor: pointer;
}
@media (min-width: 480px) {
  .slider-product-page .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
.slider-product-page .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.ct-topbar a {
  color: #000 !important;
}
.text-featured-projects h4 {
  font-size: 36px;
}
.myCard-1 .card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: bottom;
}
.myCard-1 .card {
  border: none;
}
.myCard-1 .three-img img {
  object-position: top !important;
}
.text-featured-projects img {
  width: 100%;
  height: auto;
}
/* About us */

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.shadow-sm {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.app-solution h1 {
  font-size: 20px;
}
.app2 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
}
.para-app2 p {
  font-size: 16px;
  padding-top: 30px;
}
.masonry-section {
  background-color: #f8f9fa;
}

.masonry-section h2 {
  font-weight: 700;
}

.masonry-section .lead {
  font-weight: 500;
}

.masonry {
  column-count: 3; /* Creates 3 columns */
  column-gap: 1rem; /* Space between columns */
}

.masonry img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  break-inside: avoid; /* Ensures images stay within their column */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .masonry {
    column-count: 2; /* Adjusts to 2 columns on medium screens */
  }
}

@media (max-width: 768px) {
  .masonry {
    column-count: 1; /* Single column for small screens */
  }
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.float i {
  font-size: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}
/* Exibition */
.img-wrapper2 img {
  width: 100%;
  /* height: auto; */
}
.images-modal-view img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.images-modal-view {
  overflow: hidden;
}
.img-wrapper2 .card {
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: white;
  color: black !important;
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  opacity: 0.8;
}

/* .reverse-order {
  display: flex;
  flex-direction: column-reverse;
} */
section.card-4 img {
  height: 350px;
  object-fit: cover;
}
.card-4 .card {
  height: 100%;
  border: none;
  border-radius: 20px !important;
}
.card-4 .card img {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}
.masonry .card {
  width: 400px;
  height: 300px;
  margin-bottom: 30px;
  padding: 20px;
  border: none;
  border-radius: 20px;
}
.masonry .card img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  transition: all 1s ease-in-out;
}
.modal-exibition .modal-header {
  border: none;
  text-align: center;
  padding: 0 !important;
  margin-top: 30px;
}
.modal-exibition .modal-header h5 {
  width: 100%;
  text-align: center;
}

.modal-exibition .modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
}
.modal-exibition .modal-content img {
  border-radius: 20px;
}
.text-featured-projects p {
  font-size: 14px;
}
.text-featured-projects img {
  width: 100%;
  height: 130px;
}
p#Recommended li {
  font-size: 15px;
  list-style: outside;
}
p#Recommended ul {
  padding-top: 8px;
}
.finishescontainer {
  width: 100%;
  flex-wrap: wrap;
  gap: 5px !important;
}
/* Header slider */
.header-swiper {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: -1;
}

.header-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-swiper .swiper-slide {
  position: relative;
}

.header-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay */
  z-index: 1;
  /* Overlay should be on top */
}

header .btn-collection .btn {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
}

.next-prev-up {
  position: relative;
  z-index: 9999999999 !important;
  top: -150px;
}
