:root {
  --primary-color: #2696E9;
  --second-color: #04487c;
  --white-font-color: #fff;
  --black-color: #121212;
  --dark-font-color: #ddd;
  --light-mode: #fff;
  --theme-btn: #fff;
  --nav-bar-color: #fff;
  --background-color: #121212;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --footer-color: #ddd;
  --font_2: normal normal normal 28px/1.4em raleway,sans-serif;
  --font_8: normal normal normal 20px/1.4em raleway,sans-serif;
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  --font: 'Poppins', sans-serif;
}

.dark-theme{
  --primary-color: #2696E9;
  --second-color: #04487c;
  --white-font-color: #000;
  --dark-font-color: #222;
  --theme-btn: #222;
  --black-color: #fff;
  --background-color: #fff;
  --nav-bar-color: #222;
  --footer-color: #222;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  --font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  align-items: center;
}

 #interiorr{
  height: 500vh;
}

 #exterior{
  height: 200vh !important;
}

 #floorPlans{
  height: 220vh;
}

.image-layout{
  width: 1700px !important;
  margin-right: auto;
  margin-left: auto;
}

.image-layout h1{
  text-align: center;
  font-size: 2em;
  color: var(--white-font-color);
  margin-bottom: 20px;
}

.image-layout .container {
  width: 95% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  align-items: center !important;
}

.image-layout .heading-text {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.image-layout .heading-text span {
  font-weight: 100;
}

.image-layout ul {
  list-style: none;
}

/* Responsive image gallery rules begin*/
.image-layout .image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-layout .image-gallery > li {
  height: 300px;
  cursor: pointer;
  position: relative;
}

.image-layout .image-gallery::after {
  content: "";
  flex-grow: 999;
}

.image-layout .image-gallery li img {
  object-fit: cover;
  margin: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 0px;
}

.image-layout .overlay {
  position: absolute;
  font-size: 50px;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  border-radius: 5px;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.image-layout .image-gallery li:hover .overlay {
  transform: scale(1);
}

.image-layout .popup-img{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .9);
  height: 100%;
  width: 100%;
  z-index: 99999;
  display: none;
}

.image-layout .popup-img span{
  position: absolute;
  top: 10px;
  right: 30px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  z-index: 999999;
}

.image-layout .popup-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  width: 70%;
  object-fit: cover;
  z-index: 99999;
}

@media (max-width:768px) {
  .image-layout{
    width: 100% !important;
  }

  .image-layout .popup-img img{
    width: 80%;
  }

  .image-layout .image-gallery {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
  }
  

  .image-layout .image-gallery li img {
    width: 100% !important;
  }

  #interiorr{
    height: 1450vh !important;
  }
  
  #exterior{
    height: 400vh !important;
  }

  #floorPlans{
    height: 400vh !important;
  }
}