@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&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&family=Questrial&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 16px;
}
body {
  overflow-x: hidden;
  background: rgb(246, 246, 246);
   
}

:root {
  scrollbar-color: rgb(210, 210, 210) rgb(46, 54, 69) !important;
  /* scrollbar-width: thin !important; */
}
::-webkit-scrollbar {
  height: 12px;
  width: 6px;
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark);
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: var(--dark);
}
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Style for the loading screen */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Style for the loading image */
.loading-image {
  width: 100px; /* Adjust the size as needed */
  height: auto;
  animation: blink 1s linear infinite; /* Changed to blink animation */
}

/* Keyframes for blinking the image */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

:root {
  --primary-color: #8b1717;
  --secondary-color: #00000095;
}
ul {
  list-style: none;
}
/* Navbar Start */

.navbar {
  z-index: 100;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  width: 85%;
  margin-top: 20px;
  box-shadow: 5px 8px 10px var(--secondary-color);
  border: 1px solid;
  flex-wrap: wrap;
  height: 90px;
}

.navbar .logo {
  margin-left: 20px;
  flex-shrink: 0;
}

.navbar .logo img {
  margin-top: -25%;
  width: 6em;
}

.navbar ul {
  margin-top: -3%;
  display: flex;
  justify-content: center;
  gap: 2em;
  list-style: none;
  flex: 1;
  text-align: center;
  flex-wrap: wrap;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  color: white;
}

.navbar ul.active {
  max-height: 500px;
  opacity: 1;
}

.navbar ul li {
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: 300;
  color: white;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}

.navbar ul li a:hover {
  color: #2a2929;
}

.navbar .icons {
  display: flex;
  top: -20%;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  margin-bottom: 38px
}

.navbar .icons i {
  margin-left: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  border: 1px solid wheat;
  border-radius: 2000px;
  padding: 10px;
}

.navbar .icons i:hover {
  color: #d3d3d3;
}

/* Rope effect */
.navbar:before,
.navbar:after {
  content: "";
  position: absolute;
  top: -40px;
  width: 9px;
  height: 40px;
  background-color: #960000;
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar:before {
  left: 3.5em;
}

.navbar:after {
  right: 3.5em;
}

.navbar .rope-holder:before,
.navbar .rope-holder:after {
  content: "";
  position: absolute;
  top: -60px;
  width: 20px;
  height: 5px;
  background-color: #363636;
  border-radius: 50%;
}

.navbar .rope-holder:before {
  left: 1.5em;
}

.navbar .rope-holder:after {
  right: 1.5em;
}

.menu-toggle {
  display: none;
}
/* Navbar end */
/* bg-img-slide start */
.split-section {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left-section,
.right-section {
  width: 50%;
  height: 100%;
  position: relative;
}

.left-section img,
.right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay {
  position: absolute;
  top: 52%;
  margin-left: 48%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
}
.text-overlay blockquote {
  font-size: 20px;
}

.text-overlay h1 {
  font-size: 4.2em;
  margin-bottom: 45px;
  font-weight: 700;
  text-align: center;
}

.cta-button {
  font-size: 1.2rem;
  padding: 10px 20px;
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid white;
  z-index: 100;
}

.cta-button:hover {
  background-color: #ff3636c6;
  color: white;
  border: 1px solid white;
}

/* slide 2 */

.slide2 .split-section {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.slide2 .left-section,
.slide2 .right-section {
  width: 50%;
  height: 100%;
  position: relative;
}

.slide2 .left-section img,
.slide2 .right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide2 .text-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  transform: translate(-50%, -50%);
  color: white;
}

.slide2 .text-overlay h2 {
  font-size: 1.5rem;
  /* margin-bottom: 10px; */
  font-weight: 300;
  text-align: left;
}

.slide2 .text-overlay h1 {
  font-size: 4.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.slide2 .cta-button {
  font-size: 1.2rem;
  padding: 10px 20px;
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid white;
  width: 10em;
}

.slide2 .cta-button:hover {
  background-color: #ff3636c6;
  color: white;
  border: 1px solid white;
}
.intro {
  height: auto;
  padding: 1em 0;
}

.images {
  width: 50%;
  margin: 0 !important;
}

.plus-sign::after {
  content: "+";
  font-size: 0.8em;
  margin-left: 2px; 
}

/* .text {
  margin: 1px 56px;
} */
.text h1 {
  font-weight: 600;
  font-size: 60px;
  color: rgb(187, 10, 10);
}
.text p {
  width: 85%;
}
.vertical-line {
  width: 5px;
  height: 70px; /* Height of the line */
  background-color: rgb(133, 9, 9); 
  margin: 0 auto; /* Center the line horizontally */
  margin-left: 1%;
}
.no-outlet {
  color: #d41313;
}
.outlet-1 h3 {
  font-weight: 500;
  font-size: 20px;
}
.outlet-1 h2 {
  font-weight: 700;
  color: rgb(1, 1, 65);
  font-size: 30px;
}
.styled-heading {
  font-size: 4em;
  font-weight: 600;
  padding: 40px;
  margin-left: 30%;

  color: rgb(179, 20, 20); /* Tomato color */

  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.slider-inspirator {
  position: relative;
  width: 100%;
  max-width: 1866px;
  /* height: 100vh; */
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  display: flex;
  justify-content: center;
  align-items: center;
}
.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  color: black;
  text-align: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  /* margin: 0 4em; */
  /* margin-left: 10%; */
}
.slide img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid;
  border-image: linear-gradient(#800080, #fee715) 1;
  margin-right: 20px;
}
.slide img:hover {
  transform: scale(1.05);
}
.slide-content {
  display: flex;
  flex-direction: column;
}
.slide h1 {
  padding: 10px;
  margin: 10px;
  font-size: 1.6em;
  margin: 40px 0;
  color: rgb(107, 12, 12);
  border-bottom: 3px solid #0b174d;
  border-top: 3px solid #0b174d;
}
.slide h1 span {
  font-size: 1.1em;

  color: rgb(168, 144, 144);
  background-color: rgb(143, 14, 14);
}
.slide p {
  width: 40%;
font-size: 1em;
  max-width: 800px;
  color: black;
  line-height: 1.2;
  text-align: justify;
}
.vertical-line {
  width: 2px;
  height: 400px;
  background-color: black;
  margin: 0 40px;
}
.navigation {
  position: relative;
  top: -50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.navigation button {
  background: #0b174d;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  color: white;
  font-weight: 600;
  transition: background 0.3s;
  margin: 0 40px;
}
.navigation button:hover {
  background: black;
}

/* long-heading start */
.long-heading {
  width: 400px;
  height: fit-content;
  padding: 40px 90px;
  margin-left: 10%;
  background-color: rgb(172, 36, 36);
  color: #ffff;
}
.text-design {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100vw;
  padding: 3em;
}
.text-design .para-text {
  margin-top: -3%;
  width: 40vw;
  padding: 35px;
  font-size: 16px;
  font-weight: 300;
}
.heading-design {
  font-size: 3.8em; /* Adjust font size to match h1 size */
  font-weight: bold;
  color: #9e0b0b;
  margin-right: 10px; /* Add space between the heading and text */
  display: inline-block;
  vertical-align: middle;
}
.long-header {
  margin-top: -10%;
  font-size: 40px;
  font-weight: 700;
}
/* founder-section start 
/* slider-curve start */
.slider-curve {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 750px;
  height: 400px;
  background-color: rgb(223, 216, 216);
  z-index: 0;
  border-top-right-radius: 201px;
  border-bottom-left-radius: 200px;
  margin: 50px auto;
  padding: 20px;
  position: relative; 
}
.text-img-slider {
  margin-top: 12%;
}
#vertical-line-people {
  width: 1px;
  height: 20%; /* Set the height of the line */
  background-color: black;
  position: absolute; /* Allows for precise positioning */
  left: 50%; /* Center the line horizontally */
  top: 5%; /* Center the line vertically */
  transform: translateX(-50%); /* Fine-tune horizontal centering */
}

.worker-header {
  margin-top: -10%;
  text-align: center;
  padding: 0 20px;
}
.image-worker {
  justify-content: center;
  display: flex;

  margin-top: -10%;
  gap: 15px;
}

.image-worker img {
  width: 23%; /* This ensures each image takes up one-third of the container's width */
  height: auto; /* This maintains the aspect ratio */
  object-fit: cover; /* Ensures the images cover the allocated space */
  margin: 0; /* Removes any default margin */
  padding: 0; /* Removes any default padding */
  filter: grayscale(0.5);
  border: 1px solid black;
  border-radius: 10px;
  z-index: 20;
}
.image-worker img:nth-child(2n + 1) {
  transform: translateY(4em);
}

/* slider-curve end */
/* location-slider start */
.location-icon-area {
  margin-left: 5%;
  margin: 10px;
}
.location-icon-area li img {
  filter: brightness(65);
}

.location-icon-area li:nth-child(even) {
  transform: translateY(9em);
}
.location-icon-area1 li img {
  filter: brightness(65);
}
.location-icon-area1 {
  margin: 10px;
}
.location-icon-area1 li:nth-child(even) {
  transform: translateY(9em);
}
/* loaction-slider-end */
/* additional curvemenu start */
.founder-new-sec {
  width: 100vw;
  height: 100%;
  background: #fff1ca;
  font: 15px/150% Georgia, "Times New Roman", Times, serif;
}

/* =============================================== /*
  /*                                                 /* 
  /*     Animate CSS : https://daneden.me/animate     /*
  /*                                                 /*
  /* =============================================== */

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
  }
}

@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
  }

  30% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
  }
}

@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  30% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -o-transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  30% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill: both;
  -moz-animation-fill: both;
  -ms-animation-fill: both;
  -o-animation-fill: both;
  animation-fill: both;
}

.flipInX {
  -webkit-animation-name: flipInX;
  -moz-animation-name: flipInX;
  -ms-animation-name: flipInX;
  -o-animation-name: flipInX;
  animation-name: flipInX;
}

/* Founder section start here  */

  #messages {
    margin: 0 auto;
    padding: 20px;
    max-width: 900px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#messages li {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  /* border-bottom: 1px dashed #c8c7b4; */
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#messages li:nth-child(2n) .infos {
  float: right;
  margin-left: 20px;
}

#messages li:nth-child(2n) .infos a {
  -webkit-box-shadow: 1px 1px 0 1px rgba(90, 81, 15, 0.2);
  -moz-box-shadow: 1px 1px 0 1px rgba(90, 81, 15, 0.2);
  box-shadow: 1px 1px 0 1px rgba(90, 81, 15, 0.2);
  left: inherit;
}

#messages li:nth-child(2n) .content {
  border-width: 1px 3px 4px 4px;
}

#messages li:nth-child(2n) .content:after,
#messages li:nth-child(2n) .content:before {
  right: -9px;
  left: inherit;
  -webkit-transform: rotate(41deg);
  -moz-transform: rotate(41deg);
  -o-transform: rotate(41deg);
  transform: rotate(41deg);
}

#messages li:nth-child(2n) .facebook {
  right: -10px;
}

#messages li:nth-child(2n) .twitter {
  right: -5%;
}

#messages li:nth-child(2n) .github {
  right: -1%;
}

#messages .infos {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  float: left;
  margin-left: 6px;
  padding: 3px;
  width: 130px;
  height: 130px;
  border: 3px solid #e42424;
}

#messages .infos a {
  border-radius: 17px;
  -webkit-box-shadow: -1px 1px 0 1px rgba(90, 81, 15, 0.2);
  -moz-box-shadow: -1px 1px 0 1px rgba(90, 81, 15, 0.2);
  box-shadow: 2px 2px 2px rgba(90, 81, 15, 0.2);
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #960000;
  color: #fff;
  text-decoration: none;
  /* text-indent: -10000px; */
  font-size: 16px;
  padding: 5px;
  transition: padding 0.3s ease-in-out;
}

.infos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infos a {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #960000;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.content-founder {
  flex: 1;
  max-width: 600px;
}

.content-founder h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.content-founder p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}




#messages .infos a:hover {
  padding: 0 10px 0 15px;
  width: auto;
  border: none;
  text-indent: 0;
  opacity: 0.95;
}

#messages img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
}


/* Responsive styles */
@media (max-width: 768px) {
    
  #messages {
      padding: 10px;
  }

  #messages li {
      flex-direction: column;
      align-items: flex-start;
  }

  .infos {
      margin: 0 auto;
  }
  .video-section
{
  margin-left: -7%;
}

  .content-founder {
      max-width: 100%;
      overflow-y: hidden;
  }

  .content-founder h3 {
      font-size: 1.25rem;
  }

  .content-founder p {
      font-size: 0.95rem;
  }
   .button-insta
  {
    margin-left: 63px !important;
    margin-bottom: 10px;
  }
  
}

@media (max-width: 480px) {
  .infos {
      width: 100px;
      height: 100px;
  }

  .infos a {
      width: 25px;
      height: 25px;
      font-size: 12px;
  }

  .content-founder h3 {
      font-size: 1.1rem;
  }

  .content-founder p {
      font-size: 0.9rem;
  }
 
  .founder-new-sec {
      background: none;
  }

 
}


/* Founder section css end here  */
.sprite {
  background: url("https://docs.google.com/uc?export=download&id=0B3VygIVAuRCQRzF1d0RyWHFFRU0")
    no-repeat;
  background-size: 23px;
}

.twitter {
  background-position: -1px 5px;
  top: 16%;
  left: -5%;
}

.twitter:hover {
  background-color: #2094dd !important;
}

.facebook {
  background-position: -2px -27px;
  top: 42%;
  left: -10%;
}

.facebook:hover {
  background-color: #3b5998 !important;
}

.github {
  background-position: -2px -10px;
  bottom: 17%;
  left: -1%;
}

.github:hover {
  background-color: #444 !important;
}

.header-founder {
  height: 100%;
  width: 100vw;
}
.content-founder {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  float: left;
  margin-left: 20px;
  padding: 15px 25px;
  width: 710px;
  border-width: 1px 4px 4px 3px;
  border-style: solid;
  border-color: #c8c7b4;
  background-color: #ece5bd;

  /* ==================================================================== /*
  /*                                                                      /* 
  /*   + Css Patterns from : http://lea.verou.me/css3patterns/            /* 
  /*   + Arbaoui mehdi : Fix a gradient color bug in OPERA,FIREFOX        /*
  /*     and SAFARI (only new versions)                                   /*
  /*                                                                      /*
  /* ==================================================================== */

  background-image: -linear-gradient(
      0deg,
      transparent 18px,
      #dbada9 0,
      #dbada9 20px,
      transparent 19px
    ),
    -linear-gradient(#e1dab0 0.1em, transparent 0.1em);
  background-image: -webkit-linear-gradient(
      0deg,
      transparent 11px,
      #dbada9 0,
      99 #dbada9 14px,
      transparent 12px
    ),
    -webkit-linear-gradient(#e1dab0 0.1em, transparent 0.1em);
  background-image: -moz-linear-gradient(
      0deg,
      transparent 11px,
      #dbada9 0,
      #dbada9 13px,
      transparent 12px
    ),
    -moz-linear-gradient(#e1dab0 0.1em, transparent 0.1em);
  background-size: 100% 10px;
  color: #333;
}

/* ====================================================================================== /*
  /*                                                                                        /* 
  /*   + Talk bubble with shadow                                                            /* 
  /*     From http://forrst.com/posts/How_to_Make_a_Pure_CSS_Speech_Bubble_With_a_Drop-PU1  /*
  /*   + Arbaoui mehdi: Change position (left and right) of arrow                        /*
  /*                                                                                        /*
  /* ====================================================================================== */

.content-founder:after,
.content-founder:before {
  border-bottom: 23px solid transparent;
  border-right: 20px solid #ece5bd;
  top: 49px;
  content: "";
  position: absolute;
  left: -9px;
  -webkit-transform: rotate(220deg);
  -moz-transform: rotate(220deg);
  -o-transform: rotate(220deg);
  transform: rotate(220deg);
}

.content-founder h3 {
  font: 23px "Satisfy";
  margin: 0;
  padding: 0;
  font-weight: normal;
}

.content-founder p {
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.7em;
}

.content p a {
  text-decoration: none;
  background-color: #f7f3c5;
  border-bottom: solid 1px #cfcebe;
  color: #834202;
  padding: 1px 4px;
}

.content-founder p a:hover {
  background-color: #f5ec82;
}

.content-founder b {
  display: block;
  color: #75280c;
  font: italic normal 17px Georgia;
}

.content-founder:before {
  top: 48px;
  left: -11px;
  border-right: 19px solid rgba(0, 0, 0, 0.1);
}
/* additional curvemenu end */
/* founder-section end */
/* moment-section start */
.image-text {
  display: flex;
  justify-content: space-evenly;
  height: 100%;
  gap: 2em;
  padding: 3em;
}
.header-para {
  height: 100%;
  margin-left: 50%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header-moment {
  max-width: 800px; /* Adjust the width as needed */
 margin-left: -57%;
}
.header-moment h2 {
  color: #c20c0c;
  font-weight: 700;
  font-size: 40px;
}
.header-moment p {
  margin-left: 50%;
  margin: 15px;
}
.header-founder
{
  width: 112vh;
}
#message
{
  background-color: none;
  margin-right: 27px;
}
.header-moment p
{
 margin: 0;
}
#vertical-line-small {
  width: 1px; /* Width of the vertical line */
  height: 100px; /* Height of the vertical line */
  background-color: black; /* Color of the line */
  margin: 0 auto; /* Center the line horizontally */
}


.collage-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.text-collage {
  height: 100%;
}
.collage-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.styled-heading {
  font-size: 4em;
  font-weight: 600;
  padding: 40px;
  /* text-align: center; */
  /* margin-left: 30%; */
  color: rgb(179, 20, 20); /* Tomato color */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
/* image-text-moment end */
/* bg-text-start */
.bg-color-text {
  width: 100%; /* Ensure the container takes up the full width of the screen */
  height: 90vh;
  background: url(Images/location-background-transformed.jpeg) no-repeat center
    center / cover;
}

/* bg-text end */
/* moment-section end */
/*worker-section start  */

/* slider-curve start  */
.slider-curve {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 750px;
  height: 400px;
  background-color: rgb(223, 216, 216);
  z-index: 0;
  border-top-right-radius: 201px;
  border-bottom-left-radius: 200px;
  margin: 50px auto;
  padding: 20px;
  position: relative; /* Allows for absolute positioning of the vertical line */
}
.text-img-slider {
  margin-top: 12%;
}
#vertical-line-people {
  width: 1px;
  height: 20%; /* Set the height of the line */
  background-color: black;
  position: absolute; /* Allows for precise positioning */
  left: 50%; /* Center the line horizontally */
  top: 5%; /* Center the line vertically */
  transform: translateX(-50%); /* Fine-tune horizontal centering */
}

.worker-header {
  margin-top: -10%;
  text-align: center;
  padding: 0 20px;
}
.image-worker {
  justify-content: center;
  display: flex;

  margin-top: -10%;
  gap: 15px;
}

.image-worker img {
  width: 23%; /* This ensures each image takes up one-third of the container's width */
  height: auto; /* This maintains the aspect ratio */
  object-fit: cover; /* Ensures the images cover the allocated space */
  margin: 0; /* Removes any default margin */
  padding: 0; /* Removes any default padding */
  filter: grayscale(0.5);
  border: 1px solid black;
  border-radius: 10px;
  z-index: 20;
}
.image-worker img:nth-child(2n + 1) {
  transform: translateY(4em);
}
/* slider-curve end */
/* worker-section end */
/* video start */
.video-section {
  padding: 1em 20px;
  /* background-color: #f9f9f9; */
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.video-item {
  max-width: 100%;
  height: 30%;
  margin: 10px;
}
.button-insta {
  margin-left: 40% !important;
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  color: #fff !important;
  background-color: #b60b0b; /* Primary button color */
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  margin: 1%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  background-color: #0f0b33; /* Darker shade for hover effect */
  color: white;
  transform: scale(1.05); /* Slightly enlarge the button on hover */
}

/* video end */
/* footer start */
.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: url("Images/footer-background.jpg") no-repeat center/cover;
  color: #ffffff;
  flex-wrap: wrap;
  font-weight: 300;
}

.footer-column {
  color: white;
  flex: 0.5;
  min-width: 200px;
  margin: 10px;
}
.footer-column ul {
  color: white;
}
.footer-logo {
  width: 100px;
  margin-bottom: 20px;
  mix-blend-mode: difference;
  /* border: 4px solid var(--primary-color); */
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 30px;
  color: #ffffff;
  /* text-shadow: 1px 1px 1px white; */
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-weight: 300;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: red;
}

.social-icons a {
  color: #ffffff;
  font-size: 24px;
  margin-right: 15px;
  transition: color 0.3s;
  display: inline-block;
}

.social-icons a:hover {
  color: red;
}

.social-icons a:last-child {
  margin-right: 0;
}

.newsletter-form {
  margin-top: 15px;
}

.newsletter-form input {
  padding: 10px;
  margin-right: 10px;
  border: none;
  border-radius: 5px;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: #9e2525;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #151414;
  background: #000;
  font-weight: 300;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}


.arrow-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Change from right to left */
    display: flex;
    flex-direction: column;
    /* Stack buttons vertically */
    gap: 10px;
    /* Add spacing between buttons */
    z-index: 1000;
}

.back-to-top,
.WhatsApp-down {
    background-color: #920f0f;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    box-shadow: inset 0px 4px 6px #da2c2c;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.back-to-top:hover,
.WhatsApp-down:hover {
    background: #161616;
    box-shadow: inset 0px 4px 6px #5b5b5b;
    color: #ffff;
    animation: travelup 0.3s infinite ease-in-out linear;
}

@keyframes travelup {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .arrow-button {
        right: 10px;
        
    }
}
/* footer end */
@media (max-width: 480px) {
  .text-overlay {
    margin-top: -43% !important;
  }
  .logo {
    margin-left: -11% !important;
  }
  blockquote {
    text-align: center;
    margin-top: 5%;
    font-size: 15px !important;
  }
  .image-text {
    width: 100%;
    /* padding: 0 !important; */
  }
  .images {
    width: 100% !important;
    margin: 0 !important;
  }
  .plus-sign::after {
    content: "+";
    font-size: 0.8em;
    margin-left: 2px; /* Adjust spacing between number and + */
  }

  .text {
    margin: 1px 56px;
  }
  .text h1 {
    font-weight: 600;
    font-size: 60px;
    color: rgb(187, 10, 10);
  }
  .image1 img
  {
    width: 260% imo !important;
  }

  .vertical-line {
    width: 5px;
    height: 70px; /* Height of the line */
    background-color: rgb(133, 9, 9); /* Line color */
    margin: 0 auto; /* Center the line horizontally */
    margin-left: 1%;
  }
  .no-outlet {
    color: #d41313;
  }
  .outlet-1 h3 {
    font-weight: 500;
    font-size: 20px;
  }
  .outlet-1 h2 {
    font-weight: 700;
    color: rgb(1, 1, 65);
    font-size: 30px;
  }
  .split-section {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .split-section img {
    width: 100%;
  }
  .split-section  {
    width: 100% ;
  }
  .split-section h1 {
    font-size: 25px;
    width: max-content;
    margin: 0 auto;
    position: relative;
    left: 0.3em;
  }
  .split-section p {
    font-size: 8.4px;
    width: max-content;
    position: relative;
    right: 7em;
  }
  .header-founder .infos1 {
    margin-left: 6em;
  }

  .header-founder .infos2 {
    margin-right: 6em;
  }

  .header-founder ul {
    display: flex;
    flex-direction: column;
  }
  .header-founder li {
    width: 100vw;
  }

  .header-founder .content-founder {
    width: 14em !important;
  }
  .header-founder ul li h3 strong {
    font-size: 22px;
  }

  .header-founder ul li p {
    font-size: 13px;
  }
  .slider-curve {
    width: 89% !important;
    right: 123px;
  }

  .slider-curve h2 {
    font-size: 18px !important;
  }
  .slider-curve p {
    font-size: 13px !important;
  }
  .image-worker {
    margin: 0;
    position: relative; /* Ensures `top` positioning works as intended */
    top: -50%; /* Moves the container upwards */
    display: flex; /* For alignment purposes */
    align-items: center; /* Centers items vertically */
  }
  .image-worker img {
    width: 100px; /* Sets the width of the image */
    max-width: 150%; /* Ensures the image scales responsively */
    height: auto; /* Maintains aspect ratio */
  }
  .image-wrapper img,
  .image-worker img {
    max-width: 150%;
  }
  .header-moment {
    flex-direction: column !important ;
    align-items: center !important;
    margin-right: 30em !important;
  }

  .header-moment h2 {
    font-size: 20px;
  }

  .header-moment p {
    font-size: 13px;
    width: 300px;
    margin-right: 30em !important;
  }

  .header-para {
    margin-left: 10%;
  }
  /* text collage */
  .text-collage img {
    width: 3em !important;
  }

  .main-img {
    width: 3em !important;
    height: 3em !important;
  }
  .styled-heading {
    font-size: 1.8em;
    padding: 15px;
    margin-left: 5%;
  }
  .text {
    width: 20em !important;
   }

  .text h2 {
    font-size: 20px;
  }

  .outlet-cafe {
    font-size: 16px !important;
    flex-direction: column !important;
    align-items: center;
  }

  .no-outlet {
    font-size: 18px !important;
  }
  .image-worker img {
    width: 7em;
    margin-top: -20%;
  }
  .image-container {
    flex-direction: column; /* Stack images vertically on very small screens */
    align-items: center; /* Center align images vertically */
  }

  .image-container img {
    width: 150%; /* Full width for each image in column layout */
    height: auto; /* Maintain aspect ratio */
    max-width: 300px; /* Optionally limit maximum width */
  }
  .image1{
    display: block;
    margin: 0 auto;
    width: 263%;
    right: 6em;
    max-width: 255%;
    position: relative;
    top: -158px;
    transform: translateX(-2em);
  }
  .video-section {
    padding: 5em 0 0 0;
  }

  .section-title {
    font-size: 20px !important;
  }

  .video-section p {
    font-size: 13px;
  }
  .video-description {
    width: 90%;
  }
  .header-para p {
    margin-right: 0 !important;
  }
  .header-para{
    margin: 0 !important;
  }
}
/* responsive sec480- end */
/* responsive section 331 start */
@media (max-width: 331px) {
  .navbar {
    padding: 20px !important;
    height: 55px !important;
  }
  .navbar .logo {
    margin-top: 0% !important;
    margin-left: -20px;
    flex: 1;
  }
  .navbar .logo img {
    width: 3.5em !important;
    position: relative;
    left: 2em;
  }
  .navbar .icons {
    margin-right: 10px !important;
    display: flex;
    margin-bottom: 22px;
    gap: 5px;
    align-items: center;
  }
  .menu-toggle::after {
    margin-top: -10%;
  }
  .navbar .icons i {
    font-size: 1rem !important;
    margin-left: 0px;
    padding: 7px;

    border: 1px solid wheat;
  }
  .navbar .menu-toggle {
    font-size: 1rem !important;
    margin-right: -7px;
    margin-bottom: 21px;
    padding: 3px 8px;
    margin-top: -5% !important;
    border: 1px solid;
  }
  .header-founder .content-founder {
    width: 18em !important;
  }
  .text-design {
    width: 100% !important;
    text-align: justify;
    margin-top: -17%;
  }
  .footer-container {
    align-content: center;
  }
  /* .back-to-top {
    width: 35px !important;
    height: 35px !important;
    line-height: 0px !important;
    padding-top: 7px;
  } */
  .styled-heading {
    font-size: 31px !important;
  }

  .text-collage .header-para .header-moment h2 {
    margin-left: 30px;
  }
  .text-collage .header-para .header-moment p {
    text-align: center;
    font-size: 14px !important;
  }
  .header-para {
    margin-left: -7px !important;
  }
  .header-para p
  {
    font-size: 20px !important;
  }
  blockquote {
    line-height: 1em;
    font-size: 15px !important;
    margin-top: 3% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .video-section {
    margin-top: 27% !important;
  }
  .video-section p {
    width: 215px !important;
  }
  .video-grid {
    margin-left: -0% !important;
  }
  .slider-curve {
    width: 89% !important;
    right: 123px;
  }
  .image-worker {
    margin-top: -30% !important;
  }
  .image-worker img {
    width: 25% !important;
  }
  .button {
    width: 286px;
    margin-left: -10% !important;
    padding: 10px !important;
  }
  
  .split-section {
    margin-top: -11% !important;
  }
  .left-section {
    height: 50vh; /* Default height for larger screens */
    margin-top: 50px;
  }
  .image-text
  {
    padding: unset; /* Removes all padding, restoring to inherited/default */
  }
  .image1
  {
    display: block; /* Ensures it's treated as a block element */
        margin: 0 auto; /* Centers the image horizontally */
        width: 300%;
        right: 6em;
        max-width: 300%;
        position: relative;
        top: -138px;
       transform: translateX(-2em); /* Optional: Adjust horizontal alignment */
  }
  .text{
    
    justify-content: center; /* Horizontally centers the text */
    align-items: center; /* Vertically centers the text */
  
    position: relative; /* Adjust position if necessary */
    text-align: center; /* Ensures the text inside aligns properly */
    margin-top: -50% !important;
  }
  .long-heading
  {
    padding: 11px !important; /* Adjust padding */
    width: 110% !important; /* Adjust width */
    margin: 0 auto; /* Centers the element horizontally */
    margin-left: -5% !important;
  }
  .images
  {
    padding: 2em 0;
  }
  
}
/* responsive sec 331 end */
/* responsive sec 480 start */

/* responsive sec 576 start */
@media (max-width: 576px) {
  nav {
    position: fixed;
  }

  .navbar {
    padding: 5px;
  }

  .navbar .menu-toggle {
    font-size: 1.2rem;
    padding: 3px 8px;
  }

  .navbar ul {
    width: 100%;
    top: 100%;
    left: 0;
    transform: none;
  }

  .navbar ul li {
    padding: 8px 15px;
  }

  .navbar .icons i {
    font-size: 1rem;
    margin-left: 8px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  /* .back-to-top {
    display: block;
  } */
}
/* responsive sec 567 end */
/* responsive sec 756 start */
@media (max-width: 769px) {
  nav {
    position: fixed;
  }
.founder-new-sec
{
     width: 45%;
}
  .navbar {
    height: 4.5em;
    padding: 5px 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .mt-10
  {
    margin-top: 12px;
  }

  .navbar .logo {
    margin-left: -151px;

    align-items: center;
    height: 100%;
  }

  .navbar .logo img {
    margin-top: -47%;
  }

  .navbar .menu-toggle {
    display: block;
    cursor: pointer !important;
    font-size: 1.5rem;
    margin-right: 10px;
    border: 1.6px solid;
    margin-top: -12%;
    padding: 5px 10px;
    border-radius: 4px;
  }

  .navbar ul {
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-radius: 0 0 1em 1em;
    width: 90%;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: 0;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .navbar ul.active {
    max-height: 500px;
    opacity: 1;
  }

  .navbar ul li {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    color: white;
  }

  .navbar .icons {
    margin-right: 10px;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .navbar .icons i {
    margin-left: 10px;
  }
  .split-section {
    flex-direction: column;
margin-top: -15%;
  }

  .left-section,
  .right-section {
    width: 100%;
    /* height: 43vw; */
  }
  .right-section{
    height: 51vw;
  }
  .left-section {
    margin-top: -12%;
    height: 66vh;
  }
  .text-overlay {
    margin-top: -50% !important;
    margin-left: 10%;
    text-align: center;
    position: static;
    transform: none;
  }
  .text-overlay p {
    margin-top: 5%;
    margin-left: 30%;
    font-size: 1.5em; /* Smaller paragraph */
    max-width: 150%; /* Ensure full width usage */
  }

  .text-overlay h1 {
    text-align: center;
    font-size: 44px;
    margin-left: 10px;
  }
  
  .text-overlay blockquote {
    margin-top: 1% !important;
  }
  .image-worker {
    width: 100%;
    margin-top: -16% !important;
  }

  .image1,
  .image2,
  .image3 {
                  display: block;
        margin: 0 auto;
        width: 217%;
        right: 3em;
        max-width: 255%;
        position: relative;
        top: -72px;
        transform: translateX(-2em);
  }

  .small-img {
    display: none;
  }
  .text p {
    max-width: 100%;
  }

  .image2 img,
  .image3 img {
    display: none !important;
    margin: 0;
  }

  .image1 img:first-child {
    display: block;
   width: 114% !important;
    margin-right: 25% !important;
    margin-top: -7% !important;
    margin: 0 auto;
  }
  .left-section {
   height: 73vw !important;
  }
  right-section img{

    height: 70%;
  }
  .intro-container {
    gap: 5em;
    flex-direction: column;
    text-align: center;
    height: 100%;
    padding: 10em 0;
  }
  .outlet-1 {
    display: flex; /* Ensure flex container behavior */
    flex-direction: column; /* Stack items vertically */
    width: 70%; /* Adjust width for smaller screens */
  }

  .no-outlet {
    width: 30%; /* Adjust width for complementary layout */
    font-size: 10px; /* Smaller font for smaller screens */
  }

  .text-outlet1{
    margin-bottom: 38px;
  }

  .text-outlet h3 {
    font-size: 15px; /* Adjust h3 font size */
  }
  .header-para {
    margin-left: 20%; /* Increase margin for larger screens */
  }

  .header-moment h2 {
    font-size: 30px; /* Fixed font size for larger screens */
    margin-top: 10%;
  }
  .text-collage {
    margin-top: 10%;
  }
  .header-moment p {
    font-size: 18px; /* Fixed font size for larger screens */
  }

  #vertical-line-small {
    height: 100px; /* Fixed height for larger screens */
  }
  .founder-new-sec ul {
    display: flex;
    flex-direction: column;
    margin: 50px 106px;
  }
  
  .founder-new-sec ul li .content-founder {
    width: 102% !important;
  }
  .text h1 {
    font-size: 2em;
  }

  .text p {
    font-size: 12px;
  }
  .text-design {
    /* margin-bottom: 13px; */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align for better presentation */
    height: 100%;
  }
  .text-design
  {
    margin: 0px;
   padding: 0px;
    width: 100%;
  }

  .header-para {
    margin-left: 45% !important;
 }

  .long-heading {
    width: 45vh !important;
    height: auto; /* Adjust height to fit content */
    padding: 20px;
    margin-left: 0;
    margin-top: 25%;
    text-align: center; /* Center align text */
  }

  .long-heading img {
    margin-top: 9%;
    width: 70%;
  }
  .rotating-image {
    width: 70%; /* Adjust width to fit smaller screens */
    max-width: 150px; /* Limits the maximum width */
  }

  .text-design .para-text {
    margin-top: 15px;
    width: 90%;
    padding: 20px;
    font-size: 14px; /* Slightly reduce font size for smaller screens */
  }

  .heading-design {
    font-size: 2.5em; /* Reduce font size */
  }

  .long-header {
    font-size: 32px; /* Reduce font size */
    margin-top: 0;
  }
  .text {
    max-width: 30em !important;
    margin: -195px 20px;
  }
  .image-text {
    /* padding: 2em 0; */
    flex-direction: column;
    align-items: center;
  }

  .curly-line
  {
    margin-left: -48%;
  }
  .hero img {
    width: 30%;
  }
  .styled-heading {
    font-size: 1.8em !important;
    padding: 10px !important;
  }
  .content-founder {
    max-width: 80vw !important;
  }
  .image-container {
    justify-content: center;
  }

  .image-container img {
    width: 170px;
    height: 80px;
  }
  .video-description {
    width: 80%;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-item {
    margin: 10px auto;
    height: auto;
  }

  .button {
    display: block !important;
    width: 34%;
    text-align: center !important;

    margin-right: 44%;
  }
  .button-insta
  {
    margin-left: 20% !important;
  }
  .header-moment {
    margin-top: 20% !important;
  }
  .leaf-img {
    margin-left: 15% !important;
  }
}
/* responsive 756 end */
/* responsive 992 start */
@media (max-width: 992px) {
  nav {
    position: fixed;
  }

  .navbar {
    padding: 15px;
    width: 90%;
  }

  .navbar ul {
    gap: 1em;
  }

  .navbar .icons i {
    margin-left: 10px;
  }
}
/* responsive 992 end */
/* responsive sec 1024 */
@media (max-width: 1024px) {
  .intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .images {
    width: 30vw !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .long-heading {
    width: 60vw;
  }
  
  .header-para {
    margin-left: 17%;
  }
  .header-para p {
    margin-right: 16% !important;
  }

  .slider-curve {
   width: 89% !important;
    right: -0px;
  }
  .video-grid {
    gap: 60px !important;
    margin-left: 10%;
  }
}
/* respoinsive sec 1024 end */
