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

:root {
  --primary-font: "Cinzel";
  --secondary-font: "Discover";
  --tertiary-font: "Trajan Pro";
  --primary-color: #9e7f53;
  --secondary-color: #c4a15c;
  --tertiary-color: #6e4b1a;
  --white-color: #fff;
  --black-color: #0f102e;
  --transition: all 320ms ease-in-out;
}

body {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  color: #0f102e;
}
img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/* === Footer Area Styles === */
.footer {
  background: url(../img/footer-bg.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--white-color);
  padding: 50px 0 25px 0;
  position: relative;
}
.logo-area img {
  width: 260px;
}
.logo-area address a {
  color: var(--white-color);
  text-decoration: none;
  display: block;
  font-size: 18px;
  margin-top: 15px;
  transition: var(--transition);
}
.logo-area address a:hover {
  color: var(--primary-color);
}
.footer-link-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}
.footer-link-list li:not(:last-of-type) {
  margin-bottom: 12px;
}
.footer-link-list li a {
  font-size: 18px;
  font-family: var(--secondary-font);
  text-decoration: none;
  color: var(--white-color);
  transition: var(--transition);
}
.footer-link-list li a:hover {
  color: var(--primary-color);
}

/* === Header Area Styles === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.84);
  padding: 10px 0;
  transition: top 360ms;
}
.header-logo {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

/* === Banner Area Styles === */
.banner-sec {
  position: relative;
  color: var(--white-color);
  padding-bottom: 40px;
}
.header-spacing {
  padding-top: 98px;
}
.banner-bkgd {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: url(../img/wedding-at-surya-palace.jpg);
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.banner-bkgd::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 00.53);
}
.banner-content-container {
  padding-top: 40px;
}
.banner-content h1 {
  font-family: var(--tertiary-font);
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 7px;
  font-weight: 600;
  max-width: 96%;
}
.banner-content p {
  font-size: 16px;
  line-height: 1.3;
}
.banner-form {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 9px;
  color: var(--black-color);
}
.form-title h6 {
  font-family: var(--tertiary-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}
.form-title p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}
#contact-form {
  margin-top: 15px;
}
.form-control,
.form-select {
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
  padding: 10px 15px 12px 15px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 0;
  margin-bottom: 20px;
}
.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 20px;
}
.form-group {
  display: block;
  margin-bottom: 15px;
}
.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form-group label {
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 340ms ease-in-out;
  font-family: var(--tertiary-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  display: table-caption;
}
.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  background-color: #fff;
  padding: 9.5px;
  display: inline-block;
  position: relative;
  top: -2px;
  vertical-align: middle;
  cursor: pointer;
}
.form-group label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 50%;
  width: 5.5px;
  height: 12px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0) translateX(-50%);
  transition: var(--transition);
}
.form-group input:checked + label:after {
  transform: rotate(45deg) scale(1) translateX(-50%);
}
.custom-btn-link.form-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* === Gallery Area Styles === */
.gallery-sec {
  padding: 40px 0;
}
.small-text-title {
  font-family: var(--tertiary-font);
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  font-size: 30px;
  margin-bottom: 0;
  line-height: 1.1;
}
.gallery-container {
  margin-top: 25px;
}
.gallery-single-item {
  overflow: hidden;
  margin-bottom: 20px;
}

/* === CTA Area === */
.custom-btn-link {
  display: block;
}
.custom-btn-link {
  padding: 12px 25px 14px 25px;
  border-radius: 22px;
  color: #9d9fa2;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid var(--secondary-color);
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
  transition: var(--transition);
}
.custom-btn-link:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.btn-link-border {
  position: relative;
  display: inline-block;
}
.btn-link-border::before,
.btn-link-border::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 0.5px;
  background-color: var(--secondary-color);
  pointer-events: none;
}
.btn-link-border::before {
  left: -54px;
}
.btn-link-border::after {
  right: -54px;
}
.cta-sec {
  background-color: var(--primary-color);
  padding: 35px 0;
  color: var(--white-color);
}
.cta-title {
  font-family: var(--tertiary-font);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}
.custom-btn-white {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}
.btn-link-border.custom-btn-white::before,
.btn-link-border.custom-btn-white::after {
  background-color: var(--white-color);
}

/* === Wedding Features Area Styles === */
.features-sec {
  padding: 40px 0;
}
.features-sec .title-area {
  margin-bottom: 20px;
}
.medium-title {
  font-family: var(--primary-font);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.15;
  position: relative;
}
.single-feature-item {
  margin-bottom: 40px;
}
.features-content {
  margin-top: 15px;
}
.features-content h6 {
  font-family: var(--tertiary-font);
  color: var(--primary-color);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 7px;
}
.features-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 0;
}

/* === About Area Styles === */
.about-sec {
  padding: 40px 0 0 0;
}
.about-img {
  margin-left: auto;
  margin-right: auto;
  max-width: 94%;
}
.about-content h2 {
  font-family: var(--tertiary-font);
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.23;
  margin-bottom: 6px;
}
.about-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 0;
}

/* === Counter Area Styles === */
.counter-sec {
  background-color: var(--primary-color);
  padding: 40px 0;
  color: var(--white-color);
  overflow: hidden;
  position: relative;
}
.counter-sec::before {
  content: "";
  background: url(../img/flower.png);
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  height: 210px;
  width: 210px;
  position: absolute;
  top: 50%;
  left: -105px;
  transform: translateY(-50%) rotate(-46.5deg);
}
.counter-sec::after {
  content: "";
  background: url(../img/flower.png);
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  height: 210px;
  width: 210px;
  position: absolute;
  top: 50%;
  right: -105px;
  transform: translateY(-50%) rotate(133.5deg);
}
.counter-title {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--tertiary-font);
  line-height: 1.3;
  text-align: center;
}
.counter-wrapper {
  text-align: center;
  margin-top: 45px;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  overflow: hidden;
}
.single-counter-item {
  margin-bottom: 35px;
}
.single-counter-item h6 {
  font-family: var(--tertiary-font);
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 3px;
}
.single-counter-item p {
  font-family: var(--tertiary-font);
  font-size: 18px;
  font-weight: 400;
}

/* === Testimonial Area Styles === */
.testimonial-sec {
  padding: 40px 0;
}
.testimonial-area {
  position: relative;
  background: url(../img/testimonial-bkgd.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 35px 0;
  margin-top: 20px;
}
.testimonialSlider::before {
  content: "";
  background: url(../img/quotes-icon.svg);
  display: block;
  background-size: 100%;
  width: 60px;
  height: 44px;
  margin: 0 auto 10px;
  background-repeat: no-repeat;
  background-position: center center;
}
.testimonial-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 10px;
}
.testimonial-content span {
  display: block;
  text-align: center;
  font-size: 17px;
  color: #656363;
  font-weight: 600;
}
.custom-swiper-pagination {
  position: relative;
  margin-top: 13px;
}
.custom-swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background-color: #c8c8c8;
  border-radius: 0;
  opacity: 1;
}
.custom-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* === Bottom About Us Area Styles === */
.btm-abt-sec {
  padding: 30px 0 50px 0;
}
.btm-about-img img {
  width: 106%;
  max-width: 106%;
}
.btm-abt-content p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: var(--black-color);
  margin-bottom: 0;
}

/* === CTA Two Area Styles === */
.cta-two-sec {
  background-color: var(--primary-color);
  padding: 35px 0;
  color: var(--white-color);
}

/* === Thank You === */
.thank-you-container {
  margin-top: 50px;
  margin-bottom: 50px;
}
.icon-holder {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-content h1 {
  font-family: var(--primary-font);
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: #3e3d3d;
}
.thank-you-content p {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: 400;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
  color: inherit;
  color: #3e3d3d;
}
.thank-you-content p a {
  color: var(--primary-color);
  text-decoration: none;
}
.thank-you-content p a:hover {
  color: var(--primary-color);
}

.custom-select {
  position: relative;
}
.custom-select select {
  display: none;
}
