.hero-mid {
  width: 95%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    /* Dark overlay */ url(../images/living.jpg);
  background-position: center;
  min-height: 100vh;
}

.hero-mid h1,
.hero-mid h5 {
  color: #fff;
  margin: 0;
  font-weight: 500;
  letter-spacing: 8px;
      text-align: center;
}

   .hero-mid h1{
    font-size: 40px;
  }
.hero-mid h5 {
  font-weight: 400;
  text-transform: uppercase;
}

.stan-section {
  padding: 3% 5%;
  display: flex;
  gap: 3vw;
}

.stan-section-left {
  width: 40%;
}

.stan-section-right {
  width: 60%;
}

.stan-section-left span {
  position: relative;
  padding-left: 60px;
  text-transform: uppercase;
}
.stan-section-left span::before {
  content: url("../images/horizontal.png");
  position: absolute;
  top: 25%;
  margin-left: -50px;
  transform: translateY(-50%);
}

.stan-section-left h2 {
  font-size: 45px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 8px;
}

.stan-section-left p {
  font-size: 20px;
  margin: 3vh 0;
  font-weight: 500;
  letter-spacing: 2px;
}

@media (max-width: 1600px) {
  .stan-section-left h2 {
    font-size: 40px;
  }

  .stan-section-left p {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .stan-section-left h2 {
    font-size: 36px;
  }

  .stan-section-left p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .stan-section-left h2 {
    font-size: 32px;
  }

  .stan-section-left p {
    font-size: 14px;
  }
}

.vercial-line-sec {
  display: flex;
  width: 80%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eco-pdf-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  margin: 2vh 0;
}

.eco-pdf-link img {
  margin-right: 10px;
}

/* General Swiper Styles */
.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide img:hover {
  cursor: pointer;
}

/* Specific Styles for each Swiper Pair */

/* Swiper Pair 1 */
.mySwiper2a {
  height: 60%;
  width: 100%;
}

.mySwipera {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwipera .swiper-slide {
  width: 25%;
  margin-top: 1vh;
  height: 100%;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.mySwipera .swiper-slide-thumb-active {
  opacity: 1;
}

/* Swiper Pair 2 */
.mySwiper2b {
  height: 60%;
  width: 100%;
}

.mySwiperb {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiperb .swiper-slide {
  width: 25%;
  margin-top: 1vh;
  height: 100%;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.mySwiperb .swiper-slide-thumb-active {
  opacity: 1;
}

/* Swiper Pair 3 */
.mySwiper2c {
  height: 60%;
  width: 100%;
}

.mySwiperc {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiperc .swiper-slide {
  width: 25%;
  margin-top: 1vh;
  height: 100%;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.mySwiperc .swiper-slide-thumb-active {
  opacity: 1;
}

.stan-section2 {
  display: flex;
  gap: 3vw;
  padding: 3% 5%;
  background-color: #f6f6f6;
  flex-direction: row-reverse;
}

.stan-section2 .stan-section-left {
  width: 60%;
}
.stan-section2 .stan-section-right {
  width: 40% !;
}

.stan-section-right span {
  position: relative;
  padding-left: 60px;
}
.stan-section-right span::before {
  content: url("../images/horizontal.png");
  position: absolute;
  top: 25%;
  margin-left: -50px;
  transform: translateY(-50%);
}

.stan-section-right h2 {
  font-size: 45px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 8px;
}

.stan-section-right p {
  font-size: 20px;
  margin: 3vh 0;
  font-weight: 500;
  letter-spacing: 2px;
}

@media (max-width: 1600px) {
  .stan-section-right h2 {
    font-size: 40px;
  }

  .stan-section-right p {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .stan-section-right h2 {
    font-size: 36px;
  }

  .stan-section-right p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .stan-section-right h2 {
    font-size: 32px;
  }

  .stan-section-right p {
    font-size: 14px;
  }
}


.popup-op {
  cursor: pointer;
  text-transform: uppercase;
}
/* Basic popup styling */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 0;
  width: 800px;
  max-width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  position: relative;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.popup-header h5 {
  text-align: center;
  font-weight: 500;
  margin: 0px 0;
  padding-top: 4vh;
  letter-spacing: 2px;
}

.popup-header h3 {
  text-align: center;
  font-weight: bold;
  /* width: 25%; */
  width: 45%;
  border-bottom: 1px solid #222;
  margin: 5px auto;
  font-size: 24px;
}

.popup-header p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
}

#pop-metre {
  position: absolute;
  left: 80px;
  font-weight: 600;
}
#pop-metre::before {
  content: url("../images/horizontal.png");
  position: absolute;
  top: 25%;
  margin-left: -50px;
  transform: translateY(-50%);
}

form {
  padding: 4vh 0 5vh;
  max-width: 80%;
  margin: 0 auto;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  align-items: center;
  width: 48%;
  margin: 2vh 0;
  border-bottom: 1px solid #222;
}

.form-group img {
  height: 17px;
  width: auto;
  padding-right: 7px;
  border-right: 1px solid #22222248;
}

.form-group.full-width {
  width: 100%;
}

select {
  width: 100%;
  color: #7d7d7d;
}

label img {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

input,
select,
textarea {
  padding: 0 0 0 4px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  letter-spacing: 2px;
  outline: none;
  font-family: "Jost";
}

select option {
  background-color: #222; /* Background color for the options */
  color: #fff; /* Text color for the options */
  font-size: 18px;
  font-family: "Jost";
  letter-spacing: 2px;
}

textarea {
  height: 80px;
  resize: none;
  font-family: "Jost";
  width: 100%;
}

form button {
  position: absolute;
  width: 20%;
  font-family: "Jost";
  padding: 10px;
  right: 12.5%;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 0;
  font-size: 18px;
  margin-top: 10px;
}

form button:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .hero-mid {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /* background: url(../images/living.jpg); */
    background-position: center;
    min-height: 60vh;
    padding-top: 20%;
  }

  .hero-mid h1,
  .hero-mid h5 {
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: 500;
    letter-spacing: 8px;
  }

     .hero-mid h1{
    font-size: 30px;
  }
  .hero-mid h5 {
    font-weight: 400;
  }

  .stan-section {
    padding: 3% 5%;
    display: flex;
    flex-direction: column;
    gap: 3vw;
  }

  .stan-section-left {
    width: 100%;
  }

  .stan-section-right {
    width: 100%;
  }

  .stan-section-left span {
    position: relative;
    padding-left: 60px;
  }
  .stan-section-left span::before {
    content: url("../images/horizontal.png");
    position: absolute;
    top: 25%;
    margin-left: -50px;
    transform: translateY(-50%);
  }

  .stan-section-left h2 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 8px;
  }

  .stan-section-left p {
    font-size: 16px;
    margin: 3vh 0;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .vercial-line-sec {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .eco-pdf-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    margin: 2vh 0;
  }

  .eco-pdf-link img {
    margin-right: 10px;
  }

  /* General Swiper Styles */
  .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 20vh;
    object-fit: cover;
  }

  /* Specific Styles for each Swiper Pair */

  /* Swiper Pair 1 */
  .mySwiper2a {
    height: 100%;
    width: 100%;
  }

  .mySwipera {
    height: 100%;
    box-sizing: border-box;
    padding: 10px 0;
  }
  .mySwipera img {
    height: auto;
  }

  .mySwipera .swiper-slide {
    width: 25%;

    height: 100%;
    opacity: 0.4;
    transition: opacity 0.3s;
  }

  .mySwipera .swiper-slide-thumb-active {
    opacity: 1;
  }

  /* Swiper Pair 2 */
  .mySwiper2b {
    height: 60%;
    width: 100%;
  }

  .mySwiperb img {
    height: auto;
  }

  .mySwiperb {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
  }

  .mySwiperb .swiper-slide {
    width: 25%;
    margin-top: 1vh;
    height: 100%;
    opacity: 0.4;
    transition: opacity 0.3s;
  }

  .mySwiperb .swiper-slide-thumb-active {
    opacity: 1;
  }

  /* Swiper Pair 3 */
  .mySwiper2c {
    height: 0%;
    width: 100%;
  }
  .mySwiperc img {
    height: auto;
  }

  .mySwiperc {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
  }

  .mySwiperc .swiper-slide {
    width: 25%;
    margin-top: 1vh;
    height: 100%;
    opacity: 0.4;
    transition: opacity 0.3s;
  }

  .mySwiperc .swiper-slide-thumb-active {
    opacity: 1;
  }

  .stan-section2 {
    display: flex;
    flex-direction: column-reverse;
    gap: 3vw;
    padding: 3% 5%;
    background-color: #f6f6f6;
  }

  .stan-section2 .stan-section-left {
    width: 100%;
  }
  .stan-section2 .stan-section-right {
    width: 100%;
  }

  .stan-section-right span {
    position: relative;
    padding-left: 60px;
  }
  .stan-section-right span::before {
    content: url("../images/horizontal.png");
    position: absolute;
    top: 25%;
    margin-left: -50px;
    transform: translateY(-50%);
  }

  .stan-section-right h2 {
    font-size: 45px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 8px;
  }

  .stan-section-right p {
    font-size: 20px;
    margin: 3vh 0;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .popup-op {
    cursor: pointer;
  }
  /* Basic popup styling */
  .popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
  }

  .popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 0;
    width: 800px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
  }

  .popup-header h5 {
    text-align: center;
    font-weight: 500;
    margin: 0px 0;
    padding-top: 4vh;
    letter-spacing: 2px;
  }

  .popup-header h3 {
    text-align: center;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px solid #222;
    margin: 5px auto;
    font-size: 24px;
  }

  .popup-header p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0;
  }

  #pop-metre {
    position: absolute;
    left: 80px;
    font-weight: 600;
  }
  #pop-metre::before {
    content: url("../images/horizontal.png");
    position: absolute;
    top: 25%;
    margin-left: -50px;
    transform: translateY(-50%);
  }

  form {
    padding: 4vh 0 5vh;
    max-width: 80%;
    margin: 0 auto;
  }

  .form-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .form-group {
    display: flex;
    align-items: center;
    /* width: 48%; */
    width: 100%;
    margin: 2vh 0;
    border-bottom: 1px solid #222;
  }

  .form-group img {
    height: 17px;
    width: auto;
    padding-right: 7px;
    border-right: 1px solid #22222248;
  }

  .form-group.full-width {
    width: 100%;
  }

  select {
    width: 100%;
    color: #7d7d7d;
  }

  label img {
    margin-right: 10px;
    width: 16px;
    height: 16px;
  }

  input,
  select,
  textarea {
    padding: 0 0 0 4px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    letter-spacing: 2px;
    outline: none;
    font-family: "Jost";
  }

  select option {
    background-color: #222; /* Background color for the options */
    color: #fff; /* Text color for the options */
    font-size: 18px;
    font-family: "Jost";
    letter-spacing: 2px;
  }

  textarea {
    height: 80px;
    resize: none;
    font-family: "Jost";
    width: 100%;
  }

  form button {
    position: absolute;
    width: 20%;
    font-family: "Jost";
    padding: 10px;
    right: 12.5%;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0;
    font-size: 18px;
    margin-top: 10px;
  }

  form button:hover {
    background-color: #333;
  }
}

.iti-mobile .iti--container{
  z-index: 9999;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 5vh 0;
    font-weight: 500;
    color: #222222a2;
    font-size: 20px;
    font-family: 'Jost';
    letter-spacing: 4px;
              list-style: none;
              padding-left: 0;
}
.pagination li {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.pagination li img {
    width: 30px; /* Adjust size as needed */
    height: auto;
    display: block;
}
.pagination li a{
    text-decoration: none;
    font-weight: bold;
    color: #000;
        font-size: 20px;
    font-family: 'Jost';
    letter-spacing: 4px;
}