* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}



body {
  overflow: hidden;
  font-family: "Noto Sans", sans-serif;
    background-color: #FDFBF8;
}

.navbar {
    z-index: 1;
}

.navbar-expand-lg .navbar-nav {
    display: ruby;
}

@media  (max-width: 991px) {
    .navbar-expand-lg .navbar-nav {
        display: block;
        flex-direction: row !important; 
    }
}


.wrapperimg {
  width: 100%;
  height: auto;
  background: #f0f0f0;
}

ul {
  padding-left: 1rem;
  list-style: none;
}

li {
  flex-shrink: 0;
  width: clamp(500px, 60vw, 800px);
  padding-right: 1rem;
}

header {height: 95vh}



.df {display: flex}
.aic {align-items: center}
.jcc {justify-content: center}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  color: white;
  z-index: 1000;
}

.demo-wrapper {
  overflow-x: hidden;
}

.wrapper {
  display: flex;
}

.demo-gallery:not(.last) {
  padding-bottom: 1rem;
}

.demo-text .text {
  font-size: clamp(8rem, 15vw, 16rem);
  line-height: 1;
  font-weight: 900;
}

.hero-img {
    position: absolute;
    top: 0%;
    left: 55%;

}

.hero-img img {
    width: 55vh;
    height: 65vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 5%;
}

.hero-desc {
    font-size: 20px;
}
.herodecor {
   font-size: 15px; 
   padding: 10px; 
   color: #CFAE69; 
}

.scroller {
    position: absolute;
    top: 80%;
    left: 47%;
    transform: translate(0, -50);
    text-decoration: none;
  color: #000000;
} 
.scroller a {
    text-decoration: none;
    color: #000000;
}
.scroller a span {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #000000;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroller a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #000000;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 1280px)  {
    .hero-img {
        position: absolute;
        top: 10%;
        left: 62%;
    }
}

@media (max-width: 991px) {
    .hero-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100vh;
    }
    .hero-img img {
        width: 100%;
        height: 100vh;
        z-index: -1;
        object-fit: cover;
    }
    .navbar {
        background-color: #FDFBF8;
    }
    .hero {   
        color: #FDFBF8;
    }
    .hero-text {
        background-color: #ffffff5d;
        margin: 10px 3px 10px -20px;
        padding: 40px 40px;
        color: #000000;
    }
    .herodecor {
        color:#7b5400;
    }
    .scroller a {
    text-decoration: none;
    color: #ffffff;
    }
    .scroller a span {
        border: 2px solid #fff;
    }
    .scroller a span::before {
        background-color: #ffffff;
    }
}

.title {
    text-align: center;
}

.row{
    display: flex;
    flex-wrap: wrap;
    padding: 0px 100px 100px 100px;
}
.column{
    flex: 25%;
    max-width: 25%;
}
.img-hover-zoom{
    height: auto;
    overflow: hidden;
    border: 5px solid #ffff;
}
.img-hover-zoom img{
    vertical-align: middle;
    margin: 0;
    padding: 0;
    border: 0;
    transition:  transform .5s ease;
}
.img-hover-zoom:hover img{
    transform: scale(1.5);
}

@media screen and (max-width: 800px) {
    .column{
        flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .column{
        flex: 100%;
        max-width: 100%;
    }
}

  #myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}