* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}
body p {
  color: #797a7e !important;
}
body h1, body h2, body h3, body h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.f-col {
  flex-direction: column;
}

.f-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.p-bot {
  padding-bottom: 20px;
}

.w33 {
  width: calc(33% - 10px);
}

.w30 {
  width: calc(30% - 10px);
}

.w50 {
  width: calc(50% - 10px);
}

.w65 {
  width: calc(65% - 20px);
}

.w70 {
  width: calc(70% - 20px);
}

.w35 {
  width: 35%;
}

.w100 {
  width: 100%;
}

.pad {
  padding: 50px 8rem;
}
@media screen and (max-width: 768px) {
  .pad {
    padding: 50px 4rem !important;
  }
}
@media screen and (max-width: 500px) {
  .pad {
    padding: 50px 2rem !important;
  }
}

.relative {
  position: relative;
  z-index: 1;
}

.absolute {
  position: absolute;
}

.heading {
  text-align: center;
  font-weight: 400;
  padding-bottom: 30px;
}
.heading h1 {
  color: #46141b;
}

/* Common classes <--*/
.header {
  padding: 15px 4rem;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 999;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.927);
}
.header ul {
  padding: 10px 0rem;
}
.header ul li {
  list-style: none;
  margin: 0px 5px;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
}
.header ul li a {
  text-decoration: none;
  color: black;
  border-radius: 10px;
  position: relative;
  padding: 10px 20px;
}
.header ul li::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -100%;
  right: 0;
  height: 2px;
  width: 100%;
  background-color: #46141b;
  transition: all ease 0.3s;
}
.header ul li:hover::before {
  left: 0;
}
.header ul li:hover a {
  transition: all ease 0.4s;
}
@media screen and (max-width: 900px) {
  .header #nav ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .header #nav ul li {
    margin: 10px 0;
  }
}
.header .ham {
  position: absolute;
  right: 5%;
  top: 15px;
  display: none;
  cursor: pointer;
}
.header .ham .line {
  background-color: #1a1a1a;
  width: 30px;
  height: 3px;
  margin: 5px;
}
@media screen and (max-width: 900px) {
  .header .ham {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .header {
    flex-direction: column;
    align-items: center;
  }
}

.banner {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  padding: 10px 8rem;
  background-image: url(../images/couple3.jpg);
}
@media only screen and (max-width: 768px) {
  .banner {
    padding: 3rem 2rem;
  }
}
.banner::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}
.banner h1 {
  color: white;
  font-size: 60px;
  text-align: center;
  z-index: 3;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }
}
.banner h2 {
  color: white;
  z-index: 3;
  margin-bottom: 10px;
}
.banner p {
  color: white !important;
  text-align: center;
  width: 60%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .banner p {
    width: 100%;
  }
}

.services-container .services-text {
  margin: 20px 0;
}
.services-container .services-text h2 {
  margin: 5px 0px 8px;
  color: #46141b;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .services-container .services-text h2 {
    font-size: 2.5rem;
  }
}
.services-container .services-text h2 span {
  display: block;
  font-size: 18px;
}
.services-container .services-text ul {
  margin-left: 4%;
  color: #333;
  font-size: 15px;
}
.services-container .services-text ul li {
  line-height: 1.6;
}
.services-container .w50 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-container .w50 img {
  width: 80%;
}
@media screen and (max-width: 1200px) {
  .services-container .w50 img {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .services-container .w50 img {
    width: 60%;
  }
}
@media screen and (max-width: 1000px) {
  .services-container .w50 {
    width: 100%;
  }
}

.why-us {
  position: relative;
}
.why-us::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.3;
}
.why-us .w33 .features {
  border: 1px solid rgba(70, 20, 27, 0.7843137255);
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin: 10px 0;
}
.why-us .w33 .features img {
  width: 100px;
}
.why-us .w33 .features img:hover {
  transition: all ease 0.5s;
  transform: scale(1.1);
}
.why-us .w33 .features .why-us-text {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .why-us .w33 {
    width: 50%;
  }
}
@media screen and (max-width: 550px) {
  .why-us .w33 {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .why-us {
    padding: 50px 4rem;
  }
}

#venues {
  margin-bottom: 4rem;
}

.venues {
  gap: 20px;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
.venues .active {
  transition: ease-in-out 0.1s;
  position: relative;
}
.venues .active::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
}
.venues .active p {
  transition: all ease 0.5s;
}
.venues .active h2 {
  transition: all ease 0.5s;
}
.venues .w22 {
  width: 23%;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 2rem 20px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.venues .w22:hover::before {
  opacity: 0.7;
}
.venues h2 {
  color: #46141b;
  margin-top: 10px;
  position: relative;
}
.venues img {
  width: 100%;
}
.venues p {
  position: relative;
  margin-top: 1rem;
}

@media only screen and (max-width: 992px) {
  .w22 {
    width: 45% !important;
  }
}
@media only screen and (max-width: 500px) {
  .w22 {
    width: 100% !important;
  }
}
.about-container {
  padding: 50px 8rem;
  background-image: url(../images/bg3.jpg);
  background-size: cover;
}
.about-container .heading {
  padding-bottom: 1rem;
  position: relative;
}
.about-container .about {
  position: relative;
  width: 90%;
  padding: 50px;
}
.about-container .about::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-color: color(srgb 0.9664 0.9565 0.9352);
  opacity: 0.7;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.about-container .about p {
  position: relative;
  text-align: left;
  line-height: 1.7;
  color: #1a1a1a !important;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about-container .about p {
    font-size: 12px;
  }
}
.about-container .about button {
  position: relative;
  color: white;
  background-color: #46141b;
  border: none;
  font-size: 16px;
  margin-top: 2rem;
  padding: 15px 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .about-container {
    padding: 50px 4rem;
  }
}

#comma {
  position: absolute;
  width: 100px;
  bottom: -4%;
  right: 10%;
}

form {
  padding: 15px 30px;
  border: 2px solid #46141b;
}
form .inputBox {
  padding-bottom: 15px;
  text-align: left;
}
form .inputBox label {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  form .inputBox label {
    font-size: 12px;
  }
}
form .inputBox input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #46141b;
  outline: none;
  margin-top: 8px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  form .inputBox input {
    font-size: 12px;
  }
}
form .inputBox input[type=time] {
  padding: 8px;
}
form .inputBox textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #46141b;
  outline: none;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  form .inputBox textarea {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  form .w50 {
    width: 100%;
  }
}
form .w100 {
  text-align: center;
}
form .w100 button {
  background-color: #46141b;
  border: none;
  padding: 15px 30px;
  color: white;
  cursor: pointer;
  font-size: 16px;
}
form .w100 button:hover {
  background-color: rgb(85, 18, 27);
}

.footer {
  padding: 30px 8rem;
  color: rgb(0, 0, 0);
  background-color: rgb(236, 236, 236);
}
@media only screen and (max-width: 992px) {
  .footer {
    padding: 30px 1rem;
    text-align: center;
  }
}

.our-offering {
  display: flex;
  flex-wrap: wrap;
  margin: 5rem auto;
  width: 80%;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .our-offering {
    width: 90%;
  }
}
.our-offering img {
  max-width: 100%;
}
.our-offering .offering-head {
  margin-bottom: 2rem;
}
.our-offering .offering-head h2 {
  font-size: 4rem;
  width: 100%;
  text-align: center;
  color: #46141b;
}
@media only screen and (max-width: 500px) {
  .our-offering .offering-head h2 {
    font-size: 2rem;
    width: 90%;
  }
}
.our-offering .offering-head p {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.our-offering .offering {
  width: 32%;
  padding: 1.5rem;
  border: 1px solid #ddd;
}
.our-offering .offering:hover {
  background-color: #46141b;
  border: none;
}
.our-offering .offering:hover img {
  border: 5px solid #fff;
}
.our-offering .offering:hover h3 {
  color: #fff;
}
.our-offering .offering:hover p {
  color: #fff !important;
}
@media only screen and (max-width: 992px) {
  .our-offering .offering {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .our-offering .offering {
    width: 100%;
  }
}
.our-offering .offering h3 {
  font-size: 1.5rem;
  color: #46141b;
  margin: auto;
  margin-top: 1.5rem;
}
.our-offering .offering p {
  margin-top: 1rem;
  font-size: 16px;
}
@media only screen and (max-width: 500px) {
  .our-offering .offering p {
    width: 90%;
  }
}

.package-head {
  margin-bottom: 2rem;
}
.package-head h2 {
  font-size: 4rem;
  width: 100%;
  text-align: center;
  color: #46141b;
  margin: auto;
}
@media only screen and (max-width: 500px) {
  .package-head h2 {
    font-size: 2rem;
    width: 90%;
  }
}
.package-head p {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-top: 1rem;
}
@media only screen and (max-width: 500px) {
  .package-head p {
    width: 90%;
  }
}

.contact-info {
  margin-bottom: 2rem;
  border-bottom: 2px solid #282828;
  width: 90%;
}
.contact-info h4 {
  font-size: 2rem;
  background-color: #f8c292;
  display: inline-block;
}
.contact-info h2 {
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
}
@media screen and (max-width: 500px) {
  .contact-info h2 {
    font-size: 2rem;
  }
}
.contact-info h2 a {
  color: #282828;
  display: block;
  text-decoration: none;
}
.contact-info h2 a:hover {
  color: #46141b;
}

@media only screen and (max-width: 992px) {
  .contact .w50 {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .contact .w50 {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .inputBox input {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .features {
    border: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */