/* Loader Container */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 9999; /* Ensure it sits above all other content */
  overflow: hidden;
}

/* Left Door */
.loader-left, .loader-right {
  position: relative;
  height: 100%;
  width: 50%;
  background-color: #060606; /* Black doors for a sleek look */
  z-index: 1;
}

/* Left Door */
.loader-left {
  transform: translateX(0); /* Initially covers the left half */
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.25s; /* Add 0.5s delay */
}

/* Right Door */
.loader-right {
  transform: translateX(0); /* Initially covers the right half */
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.25s; /* Add 0.5s delay */
}


/* Hidden State */
.loader.open .loader-left {
  transform: translateX(-100%); /* Slides left out of view */
}

.loader.open .loader-right {
  transform: translateX(100%); /* Slides right out of view */
}



@font-face {
  font-family: 'BohemianFashion';
  src: url('/e-font/bohemian-fashion.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}


.home-hero-section {
  background-color: black;
  overflow: hidden;
  height: 100vh; /* Full screen height for each section */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* Adjust the height of the gradient as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #060606);
  pointer-events: none; /* Ensures it doesn't interfere with clicks */
  z-index: 1; /* Stays on top of the content in the hero section */
}



/* Background Video */
.background-video {
  position: absolute;
  opacity: 0.3;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  object-fit: cover; /* Ensures the video covers the entire section */
  z-index: 1; /* Push video to the background */
}

/* Centered Content */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -100px;
  opacity: 0;
  transition: 1s opacity ease;
  box-sizing: border-box;
  padding: 0px 20px;
}

.home-hero-title{
  font-size: 1.6em;
  color: white;
  font-family: "ivypresto-headline", serif;
  font-weight: 300;
  font-style: italic;
}

.home-hero-title span{
  font-size: 1.4em;
  margin-top: 0px;
  display: block;
  font-family: "ivypresto-headline", serif;
  font-weight: 300;
  font-style: italic;
}

.home-hero-desc{
  font-size: 0.95em;
  margin: 20px auto 0px auto;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  width: 70%;
  line-height: 1.2em;
}


.home-hero-btn {
  display: inline-block;
  padding: 15px 60px;
  text-align: center;
  background-color: white;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: 40px;
  color: black;

  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
}



/* Scroll Indicator Container */
.scroll-indicator {
  position: absolute;
  bottom: 20%; /* Position it near the bottom of the section */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 3;

  font-family: "Poppins", sans-serif;
  font-weight: 300;
  width: 30px;
}

/* Scroll Container (Transparent Bar) */
.scroll-container {
  position: relative;
  width: 2px; /* The width of the scroll bar */
  height: 40px; /* Height of the visible scroll area */
  background: rgba(255, 255, 255, 0.3); /* Transparent white container */
  overflow: hidden; /* Hide anything outside the container */
  margin: 0 auto;
}

/* Moving Scroll Bar */
.scroll-bar {
  position: absolute;
  width: 100%;
  height: 100%; /* Full height of the container */
  background: white; /* Solid white bar */
  transform: translateY(-100%); /* Start above the container */
  animation: scroll-animate 2s infinite ease-in-out; /* Smooth scrolling animation */
}

/* Start Exploring Text */
.scroll-indicator p {
  margin-top: 20px;
  font-size: 0.7em; /* Adjust font size */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400; /* Adjust for styling */
}

/* Keyframes for Scrolling Effect */
@keyframes scroll-animate {
  0% {
    transform: translateY(-100%); /* Start above the container */
  }
  50% {
    transform: translateY(0); /* Fully visible */
  }
  100% {
    transform: translateY(100%); /* End below the container */
  }
}


 


.intro-section {
  padding-top: 50px;
  padding-bottom: 0px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  background-color: #060606;
}


.intro-section-title{
  font-size: 2em;

  font-family: "ivypresto-headline", serif;
  font-weight: 300;
  font-style: italic;
    color: white;
    opacity: 0;
    transition: 1s opacity ease;
}

.intro-section-desc{
  font-size: 0.75em;
  line-height: 1.3em;
  color: grey;

  font-family: "Poppins", sans-serif;
  font-weight: 300;

  width: 90%;
  margin: 20px auto 0px auto;

  opacity: 0;
  transition: 1s opacity ease;
}



.intro-section-line {
  width: 2px;
  height: 60px; /* Adjust height as needed */
  background: linear-gradient(to bottom, rgba(128, 128, 128, 0.6) 0%, rgba(128, 128, 128, 0.6) 80%, transparent 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  margin-top: 20px;
  transition: 1s opacity ease;
}




.fading-div {
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent 20%, grey 50%, transparent 80%);
  margin: 0 auto -100px auto;
}










/* Parent Section */
.projects-section {
  position: relative;
  width: 100%;
  height: auto; /* Adjusts to fit the content */
  overflow: hidden;
  display: none;

}

/* Overlay Text (Sticky Element) */
.overlay-text {
  position: absolute;
  top: 35vh;
  padding-bottom: 90vh;
  width: 99.9%;
  z-index: 5;
  pointer-events: none;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-text h2 {
text-shadow: 4px 6px 15px rgba(0, 0, 0, 0.1);
  display: inline-block;

  font-family: "ivypresto-headline", serif;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  font-size: 5em;
  position: relative;
}

.overlay-text img {
display: block;
width: 80px;
height: 80px;
margin-left: 30px;
margin-top: 30px;
}



/* Scrolling Content */
.project-container {
  position: relative;
  z-index: 1; /* Push behind the overlay text */
}




.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three equal columns */
  gap: 100px; /* Space between images */
  align-items: center;
  justify-items: center;
  width: 85%;
  max-width: 90%;
  margin: 0 auto; /* Center the gallery */
  padding: 50px 0px;
  box-sizing: border-box;
  cursor: pointer;

}

.projects-gallery:last-child {
  padding-bottom: 0px;
}

/* Individual Project Image */
.project-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: grey;
  opacity: 0;
  transition: 1s opacity ease;

}

/*
.project-image:after {
  content: '';
  position: absolute;
  height: 110%;
  width: 110%;
  background-color: #060606;
}
*/

.project-image-active:after {
  transform: translate(110%, 0px);
  transition: 1.5s transform ease;
}



.project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Add hover effects */
.project-image img:hover {
  transform: scale(1.05); /* Slight zoom effect */
}

/* Specific Heights for Each Image */
.project-image:nth-child(1) {
  height: 400px;
}

.project-image:nth-child(2) {
  height: 650px;
}

.project-image:nth-child(3) {
  height: 360px;
  margin-top: 200px;
}




.projects-gallery-btn-section {
  display: none; /* Use Flexbox */
  justify-content: center; /* Horizontally center the button */
  align-items: center; /* Vertically center the button (optional) */
  height: auto; /* Adjust height if needed */
  margin: 120px auto 100px auto; /* Control spacing around the section */
}

.projects-gallery-btn {
  color: white;
  text-align: center;
  font-size: 1.2em;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  padding: 20px 50px;
  border: 1px solid white;
  display: inline-block; /* Ensure the button size adjusts to content */
  cursor: pointer; /* Optional: Make it look like a clickable button */
  background-color: transparent; /* Optional: Add a transparent or specific background */
  box-sizing: border-box; /* Ensures padding and border are included in size */
  cursor: pointer;
}







.reveal-text {
background: linear-gradient(to left, transparent 0%, transparent 45%, white 50%, white 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
    animation: textReveal 2s ease-out forwards;
  background-size: 220%;
  padding-bottom: 0.5em;
    line-height: 1;
    position: relative;
}

@keyframes textReveal {
  0% {
    background-position: 100% 0; /* Start gradient fully to the right */
  }
  100% {
    background-position: 0 0; /* End gradient fully to the left */
  }
}

@keyframes moveUp {
  0% {
    transform: translate(0px, -20px); /* Start slightly above */
  }
  100% {
    transform: translate(0px, 0px); /* End in normal position */
  }
}





.about-us-section {
  position: relative;
  width: 30%;
  height: 560px;
  background-image: url('../e-images/team-mobile.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin: 90px auto 0px auto;
  opacity: 0;
  overflow: hidden;
  z-index: 10;
}


.about-us-section::before,
.about-us-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px; /* Width of the gradient */
  height: 100%;
  pointer-events: none; /* Ensures it doesn't block interactions */
}

.about-us-section::before {
  left: 0;
  background: linear-gradient(to right, #060606, transparent);
}

.about-us-section::after {
  right: 0;
  background: linear-gradient(to left, #060606, transparent);
}




.who-are-we-section {
  width: 80%;
  margin: -20px auto 80px auto;
  z-index: 10;
  position: relative;
}



.who-are-we-small {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: grey;
  font-size: 1.1em;

  opacity: 0;
  transition: 1s opacity ease;


}

.who-are-we-small a {
  text-decoration: none;
  color: grey;
}

.who-are-we-title {
  font-family: "ivypresto-headline", serif;
  font-style: italic;
  font-weight: 500;
  color: white;
  font-size: 2.2em;
  margin: 10px 0px 20px 0px;

  opacity: 0;
  transition: 1s opacity ease;
  line-height: 1.2em;

  
}



.who-are-we-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: grey;
  font-size: 0.9em;
  width: 95%;
  line-height: 1.4em;


  opacity: 0;
  transition: 1s opacity ease;
}



.services-section {
  margin-top: 20px;
}



.service-ind {
  padding: 40px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #313131;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: 1s opacity ease;
  cursor: pointer;
  text-decoration: none;
}

.service-ind:last-of-type {
  border-bottom: 0px solid #313131;
}



.service-ind h2{
  color: grey;
  font-family: "ivypresto-headline", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2em;
}

.service-ind h2 span{
  color: white;
  font-family: "ivypresto-headline", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.8em !important;
}

.service-ind img{
  width: 40px;
}




.service-ind-active {
opacity: 1;
transition: 1s opacity ease;
}







.home-testimonial-section {
  display: flex;
  width: 100%;
}



.home-testimonial-side-img {
  width: 20%;
  display: none;
}


.home-testimonial-side-img-right {
  margin-top: -70px;
  text-align: right;
}


.home-testimonial-side-img-1, .home-testimonial-side-img-2 {
    object-fit: cover;
    object-position: center;
}


.home-testimonial-side-img-1 {
  height: 300px;
  width: 80%;
}

.home-testimonial-side-img-2 {
  height: 250px;
  margin-top: 50px;
  width: 100%;
}



.home-testimonial-middle{
  /*width: 65%;*/
  width: 100%;
  margin-top: 60px;
  box-sizing: border-box;
/*padding: 0px 200px;*/
  text-align: center;
  position: relative;
}

.home-testimonial-middle a{
  text-decoration: none;
}


.home-testimonial-middle h2{
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: grey;
  font-size: 1em;

  opacity: 0;
  transition: 1s opacity ease;
}

.home-testimonial-middle h3{
  font-family: "ivypresto-headline", serif;
  font-style: italic;
  font-weight: 500;
  color: white;
  font-size: 2.4em;
  line-height: 1.2em;

  margin: 15px 0px 40px 0px;


  opacity: 0;
  transition: 1s opacity ease;
}

.testy-text{
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: grey;
  font-size: 1.1em;
  line-height: 1.6em;
  font-style: italic;


  opacity: 0;
  transition: 1s opacity ease;
}

.testy-name{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 1.4em;

  margin-top: 50px;


  opacity: 0;
  transition: 1s opacity ease;
}













































:root {
    --slide-gap: 0px; /* No gap for single-slide view */
    --slides-per-view: 1; /* Only one slide visible at a time */
}


.carousel {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hide overflow to display only one slide */
    margin-bottom: 0px;
    opacity: 0;
    transition: 0.75s opacity ease;
}

  .carousel::before,
  .carousel::after {
      content: "";
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 5;
      pointer-events: none;
      display: none;
  }

  .carousel::before {
      left: 0;
      background: linear-gradient(to right, #060606, transparent);
  }

  .carousel::after {
      right: 0;
      background: linear-gradient(to left, #060606, transparent);
  }

  .carousel-track {
      display: flex;
      gap: var(--slide-gap, 0);
      transition: transform 0.5s ease-in-out;
      will-change: transform;
  }

  .carousel-slide {
      flex: 0 0 100%; /* Each slide takes 100% width */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 1;
      transition: transform 0.3s ease, opacity 0.3s ease;
      text-decoration: none;
      overflow: hidden;
      position: relative;
 
  }

        .carousel-slide::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%; /* Cover the full height */
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, transparent);
            pointer-events: none; /* Ensure it doesn't block interaction with content */
            display: none;
        }






        /* Image inside each slide */
        .carousel-slide img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease; /* Smooth scale effect */
        }

        /* Scale effect on hover */
        .carousel-slide:hover img {
            transform: scale(1.1); /* Scale up the image */
        }

        .carousel-text {
            width: 65%;
            text-align: center;
            font-size: 0.75em;
            color: grey;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            line-height: 1.6em;

            /* Add line clamp */
            display: -webkit-box;
            -webkit-line-clamp:11;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }


        .carousel-name {
            text-align: center;
            font-size: 1em;
            color: white;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            line-height: 1.4em;
            margin-top: 30px;
        }


        .carousel-arrow {
            position: absolute;
            top: 25%;
            width: 35px;
            height: 35px;
            transform: translateY(-50%);
            color: white;
            border: none;
            cursor: pointer;
            z-index: 10;

            background-color: rgba(0, 0, 0, 0.05); /* Semi-transparent background */
            border-radius: 9999px; /* Make the arrow a circular button */
            backdrop-filter: blur(10px); /* Apply blur effect */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* Add a subtle shadow */

   
        }

        .carousel-arrow.left {
            left: 25px;
        }

        .carousel-arrow.right {
            right: 25px;
        }

        .carousel-pagination {
            justify-content: center;
            margin: 50px auto 0px auto;
            display: flex;
            gap: 10px;
        }

        .carousel-pagination button {
            width: 6px !important;
            height: 6px !important;
            border: none;
            background-color: grey;
            border-radius: 50%;
            cursor: pointer;
            box-sizing: border-box; /* Ensure proper sizing */
    padding: 0; /* Remove any padding */
    margin: 0;
        }

        .carousel-pagination button.active {
            background-color: white;
        }





.home-testimonial-btn {
  border: 1px solid grey;
  padding: 20px 70px;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 80px;
  font-size: 1em;
  color: grey;

  font-family: "Poppins", sans-serif;
  font-weight: 400;

  cursor: pointer;
  display: none;
}









.mobile-scrolling-pics-section img{
  width: 100%;
}














.mobile-scrolling-pics-section {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  height: 350px;
  pointer-events: none;
}


.mobile-scrolling-pics-section::before,
.mobile-scrolling-pics-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px; /* Adjust height for stronger or softer fade */
  pointer-events: none;
  z-index: 2;
}

/* Top fade */
.mobile-scrolling-pics-section::before {
  top: 0px;
  background: linear-gradient(to bottom, #080808, transparent);
}

/* Bottom fade */
.mobile-scrolling-pics-section::after {
  bottom: 0px;
  background: linear-gradient(to top, #080808, transparent);
}




.scrolling-wrapper {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 90s linear infinite;

  opacity: 0;
  transition: 1s opacity ease;
}

.scrolling-item {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes scroll-left {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(calc(-50% - 25px)); /* Adjust for the gap */
  }
}



.scrolling-item-ind img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}


.scrolling-item-1-1 {
  height: 50%;
  width: 100%;
  margin-left: 20px;
}

.scrolling-item-1-2 {
  height: 40%;
  width: 100%;
}


.scrolling-item-2-1 {
  height: 100%;
  width: 100%;
}



.scrolling-item-3-1 {
  height: 40%;
  width: 100%;
}

.scrolling-item-3-2 {
  height: 50%;
  width: 100%;
  margin-left: 20px;
}







.home-mobile-projects-slider-container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 110px;
  opacity: 0;
  transition: 1s opacity ease;

  display: none;
}




.home-mobile-projects-slider-container::before,
.home-mobile-projects-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%; /* Adjust height for stronger or softer fade */
  pointer-events: none;
  z-index: 2;
}

.home-mobile-projects-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #060606, transparent);
}

.home-mobile-projects-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #060606, transparent);
}





.home-mobile-projects-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.home-mobile-projects-slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.home-mobile-projects-slider-slide {
  width: 60vw;
  height: 400px;
  flex-shrink: 0;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-mobile-projects-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  opacity: 0.7;
  border-radius: 3px;
}

.home-mobile-projects-slider-buttons {
  width: 100%;
  margin: 45px auto 0px auto;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 50px;
  opacity: 0;
  transition: 1s opacity ease;
}

.home-mobile-projects-slider-arrow {
  height: 32px;
}

.home-mobile-projects-slider-arrow:hover {
  
}


.home-mobile-projects-slider-viewall {
  color: grey;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1em;
}



.home-mobile-projects-slider-title-container {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 100;
  text-align: center;
}




.home-mobile-projects-slider-title-1 , .home-mobile-projects-slider-title-2 {
  color: white;
  font-size: 2.4em;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 80%;
  margin-left: 10%;
  
  pointer-events: none;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
  font-family: "ivypresto-headline", serif;
  font-style: italic;
  font-weight: 500;
}




.home-mobile-projects-slider-title-1 {
  opacity: 1;
  visibility: visible;
}



.home-mobile-projects-slider-title-1::after,
.home-mobile-projects-slider-title-2::after {
  content: "Click to view photos";
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.4em;
  margin-top: 15px; /* Space between title and text */
  opacity: 1;
}









.about-us-section-mobile {
  width: 80%;
  margin: 70px auto 0px auto;
  border-top: 1px solid #252525;
  padding-top: 70px;
  position: relative;
  z-index: 100;

  display: none;
}



.who-are-we-small-mobile {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: grey;
  font-size: 1em;

  opacity: 0;
  transition: 1s opacity ease;
  text-align: center;
    text-decoration: none;
}


.who-are-we-title-mobile {
  font-family: "ivypresto-headline", serif;
  font-style: italic;
  font-weight: 500;
  color: white;
  font-size: 2.2em;
  margin: 10px 0px 0px 0px;

  opacity: 0;
  transition: 1s opacity ease;
  line-height: 1.2em;

  text-align: center;
    position: relative;
  z-index: 5;

}








.home-new-mobile-projects-section {
  width: 82%;
  margin: 100px auto 0 auto;
}




.home-new-mobile-projects-ind {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  text-decoration: none;
  display: block;

  margin-bottom: 60px;

  opacity: 0;
  transition: 1s opacity ease;
}


.home-new-mobile-projects-ind::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%; /* Adjust the height of the gradient as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #060606);
  pointer-events: none; /* Ensures it doesn't interfere with clicks */
  z-index: 1; /* Stays on top of the content in the hero section */
  opacity: 0.8;
}


.home-new-mobile-projects-ind-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


.home-new-mobile-projects-ind-text {
  z-index: 5;
  position: absolute;
  bottom: 0px;
width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 20px;
  box-sizing: border-box;
}



.home-new-mobile-projects-ind-icon {
  width: 25px;
}

.home-new-mobile-projects-ind-name {
  color: white;
  font-family: "ivypresto-headline", serif;
  font-style: italic;
  font-weight: 300;

  font-size: 1.25em;
}




.home-new-mobile-projects-btn {
  text-align: center;
  color: grey;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
  display: block;
  text-decoration: none;
  font-size: 1.2em;
}


















/* end */
