*{
  margin-left: 0;
  margin-right: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  background: ivory;
  color: #aaa;
}

.container {
  padding: 5% 10% 0;
}


/* HEADING PAGE */

#header {
  width: 100%;
  height: 100vh;
}

#header .container{
  padding-top: 2.5%;
}

#header .container a img{
  width: 20%;
  display: block;
  margin: 0 auto;
}

/* NAV HOME */



nav ul{
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4%;
  height: max-content;
  padding-top: 4%;
  padding-left: 15vw;
}

nav ul li {
  display: inline-block;
  list-style: none;
}

nav ul li a {
  color: #D24545;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  width: 0;
  height: 1px;
  background: #D24545;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

nav ul li a:hover::after {
  width: 100%;
} 


/* image panel */

.image-panel {
  width: 100%;
  height: 50vh; /* 50% of the viewport height */
  overflow: hidden;
  position: relative;
}
  
.images-container {
  margin: 2vh 0 0;
  padding: 0px;
  width: max-content;
  white-space: nowrap;
  transition: transform 0.5s ease;
}
  
.images-container .x2{
  width: 35vw;
}

.images-container img {
  width: 20vw; /* 20% of the viewport width */
  height: 50vh; /* 30% of the viewport height */
}
  
button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(100, 10, 30, 0.5);
  color: ivory;
  font-size: 1.7rem;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
  height: 7vh;
}
  
#prevBtn {
  left: 0;
}
  
#nextBtn {
  right: 0;
}
  

#tag{
  width: 100%;
  text-align: center;
  padding: 3vh 0;
  background: #A0153E;
  font-weight: 300;
  font-size: 1.3rem;
  margin-top: 5.2vh;
  color: ivory;
}

.flower-divider {
  background-color: #A0153E;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh 0;
}

.hr-left, .hr-right {
  width: 40vw;
  margin: 0;
  border: none;
  height: 1px;
  background-color: ivory;
}

.flower-icon {
  font-size: 2rem;
  color: ivory;
  margin: 0 10px;
}


/* contact us */

#aboutUs .content #contactUs #contactDet p{
  padding-left: 2vw;
}
#aboutUs .content #contactUs #contactDet p span{
  padding-left: 2vw;
}
#aboutUs .content #contactUs p{
  font-size: 1.1rem;
}

#aboutUs .content #contactUs h3{
  margin-top: 0vh;
  text-align: center;
  font-size: 2rem;
  padding-top: 3vh;
  padding-bottom: 1vh;
}


/* ABOUT US */

#aboutUs {
  background: #A0153E;
  color: ivory;
  padding: 1vh 0;
  text-align: center;
}

#aboutUs h2 {
  font-size: 2rem;
  margin-bottom: 4vh;
}

#aboutUs .content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

#aboutUs .content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

#aboutUs .content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
}

#aboutUs .content ol,
#aboutUs .content ul {
  padding-left: 20px;
}

#aboutUs .content li {
  margin-bottom: 10px;
}

#aboutUs .content ul li:before {
  content: "\2022"; /* Bullet character */
  color: #fff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#aboutUs .content ul {
  list-style-type: none;
}

#aboutUs .content ol {
    list-style-type: none; /* Remove default numbering */
}

#aboutUs .content ol li:before {
    content: ""; /* Remove default bullet */
}

#aboutUs .content ol ul {
  list-style-type: circle;
}

#aboutUs .content ol li p{
  margin: 0 0 0 1vw;
}


#aboutEnd{
  padding-bottom: 2vh;
  padding-top: 4vh;
  font-size: 1.3rem;
  text-align: center;
  font-style: italic;
}


/* .tagline i {
  color: #fff;
  transition: color 0.5s;
  font-size: 1.3rem;
}

.tagline i:hover {
  color: #A0153E;
} */



/* Media Query for larger screens */
@media screen and (min-width: 1550px) {
  #tag{
    padding-top: 3.5vh;
    font-size: 2rem;
  }
}
/* Small Screen 600 px */


/* Small Screen 500 px */

@media (max-width: 500px) {

  .container {
    padding: 5% 5% 0;
  }

  #header .container a img {
    width: 80%;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  .image-panel {
    height: 25vh; /* 25% of the viewport height */
  }

  .images-container .x2 {
    width: 70vw;
  }

  .images-container img {
    width: 50vw; /* 50% of the viewport width */
    height: 25vh; /* 25% of the viewport height */
  }

  button {
    font-size: 1rem;
    height: 4vh;
  }

  #tag {
    font-size: 1rem;
  }

  .flower-divider .hr-left, .flower-divider .hr-right {
    width: 20vw;
  }

  .flower-icon {
    font-size: 1.2rem;
  }

  #aboutUs h2 {
    font-size: 1.3rem;
  }

  #aboutUs .content {
    padding: 0 5%;
  }

  #aboutUs .content h3 {
    font-size: 1.2rem;
  }

  #aboutUs .content p {
    font-size: 0.9rem;
  }

  #aboutUs .content #contactUs p {
    font-size: 0.9rem;
  }

  #aboutUs .content #contactUs h3 {
    font-size: 1.3rem;
  }

}