/* Nunito fonts */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Sail&display=swap");
:root {
  --primary: #101010;
  --primaryLight: #f16e2085;
  --secondary: #9b5675;
  --secondary-2: #c8a898;
  --secondaryDark: #99275a;
  --secondaryLight: #c8a898;
  --whiteColor: #ffffff;
  --dark: #14183e;
  --light: #f4f7fe;
  --transition: 0.5s;
}
/* Default style **/
body {
  font-family: "Nunito", sans-serif;
  background-color: #fff;
  font-optical-sizing: auto;
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-family: "Sail", cursive;
  font-weight: 600;
}
.section {
  position: relative;
}
.top-header {
  background-color: var(--whiteColor);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.main-logo {
  color: var(--primary);
  font-weight: 600;
  font-size: 40px;
}
.main-logo span {
  color: var(--secondary);
}
.main-logo img {
  max-width: 200px;
  width: 100%;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ptb-100 {
  padding: 100px 0;
}
img {
  max-width: 100%;
}
.section-padding {
  padding: 100px 0;
}
.lightBg {
  background: #f8f8f8;
}
.lightBg-1 {
  background: #b9d2b033;
}
.darkBg {
  background: var(--secondaryLight);
}
.bounce-object {
  animation: bounceobject 3s linear infinite;
  -webkit-animation: bounceobject 3s linear infinite;
}
.btn-white {
  color: var(--primary);
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
}
.btn-primary {
  color: var(--whiteColor);
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn-primary:active:focus {
  box-shadow: none;
}
.btn-primary:hover {
  background-color: var(--secondaryDark) !important;
  border-color: var(--secondaryDark) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
h2 {
  font-size: 46px;
  color: var(--primary);
  line-height: 56px;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
}
/*  Main page style */
.landing-page .version-img {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--primary);
  position: relative;
}
.landing-page .version-img img {
  object-fit: cover;
  width: 100%;
  transform: translateY(0);
  transition: 5s ease-out;
}
.landing-page .version-img:hover img {
  object-fit: cover;
  width: 100%;
  transform: translateY(calc(-100% + 400px));
  transition: 5s ease-out;
}
.landing-page h3,
.demo-page h2 {
  color: var(--secondary);
}

/* Hero banner style */
.hero-header {
  padding: 30px 0;
}
.hero-header h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 60px;
  margin: 10px 0 35px;
}
.hero-header h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}
#clock .time {
  font-family: "Sail", cursive;
  font-size: 65px;
  font-size: 4.3333333333rem;
  line-height: 1em;
  padding-top: 15px;
  color: #585858;
}
#clock span {
  color: #585858;
  font-size: 25px;
}
.clock-style-2 .clock-counter {
  width: 120px;
  padding: 10px 20px;
  background-color: var(--secondary);
  border-radius: 100%;
  -webkit-border-radius: 100%;
}
.hero-header p {
  font-size: 25px;
  color: #fff;
  line-height: 45px;
  max-width: 780px;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 30px;
  color: #585858;
  margin: 0;
  text-transform: uppercase;
}
.hero-image {
  padding: 30px;
  box-shadow: 0px 0px 6.1px 3.9px rgba(28, 31, 86, 0.06);
  background: #fff;
  border-radius: 40% 20% 40% 20%;
  -webkit-border-radius: 40% 20% 40% 20%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.hero-image img {
  border-radius: 40% 20% 40% 20%;
  -webkit-border-radius: 40% 20% 40% 20%;
}
.hero-image .flower-coutout {
  position: absolute;
  bottom: -10px;
  z-index: 9;
  right: -80px;
  max-width: 310px;
}
.hero-header h1 span {
  color: var(--primary);
}
.hero-header .btn.border {
  border-color: var(--primary) !important;
  color: var(--primary);
}
@media (max-width: 991px) {
  #clock {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  #clock {
    gap: 16px !important;
  }
  .clock-style-2 .clock-counter {
    width: auto;
    background-color: transparent;
    padding: 5px;
  }
  .hero-image .flower-coutout {
    bottom: -60px;
    right: 0;
    max-width: 250px;
  }
}
@media (max-width: 620px) {
  .hero-header h1 {
    font-size: 40px;
  }
  .hero-header h2 {
    font-size: 36px;
    font-weight: 600;
  }
  .hero-header p {
    font-size: 18px;
  }
  #clock .time {
    font-size: 35px;
  }
}

/* Hero banner slider */

.hero-slider {
  position: relative;
  height: 800px;
}

.hero-slider {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.wedding-announcement {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 9;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
}
.wedding-announcement h2 {
  color: var(--whiteColor);
  font-size: 90px;
  line-height: 100px;
}
.hero-slider .wedding-announcement .couple-text p {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
}
.hero-slider #clock .time {
  color: var(--whiteColor);
}
.hero-slider #clock span {
  color: var(--whiteColor);
}
.hero-slider .swiper-slide {
  overflow: hidden;
}
.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero-slider .slide-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0e0f30;
  content: "";
  opacity: 0.4;
  z-index: -1;
}
.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.7;
  text-align: center;
  transition: all 0.3s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.swiper-container .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px solid var(--whiteColor);
}
.swiper-container .swiper-pagination-bullet-active {
  background-color: var(--whiteColor);
}
@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
  .wedding-announcement h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
  .wedding-announcement h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .hero-slider .wedding-announcement .couple-text p {
    font-size: 18px;
  }
}

/*  Couple section */
#couple .container {
  position: relative;
}
.couple-image {
  flex: 0 0 200px;
  position: relative;
}
.couple-image:before {
  content: "";
  position: absolute;
  left: 4%;
  top: 3%;
  width: 92%;
  height: 94%;
  border: 1px solid var(--whiteColor);
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.couple-info h3 {
  font-size: 35px;
  font-weight: 500;
}
.couple-info .social ul {
  list-style: none;
  justify-content: end;
  padding-left: 0;
}
.couple-info .social ul li a {
  color: var(--secondary);
}
.bg-heart {
  position: absolute;
  top: 0;
  z-index: -1;
  max-width: 200px;
}
@media (max-width: 767px) {
  .couple-detail {
    flex-direction: column;
  }
  .couple-order {
    flex-direction: column-reverse;
  }
  .couple-info .social ul {
    justify-content: center !important;
  }
  .couple-info {
    margin-bottom: 30px;
  }
}

/*  Couple section style 2 */
.couple-area-style-2 .couple-img {
  width: 350px;
  height: 350px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.couple-area-style-2 .couple-img:before {
  content: "";
  position: absolute;
  left: 4%;
  top: 3%;
  width: 92%;
  height: 94%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 1px solid var(--whiteColor);
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.couple-area-style-2 .couple-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.couple-area-style-2 .couple-wrap:hover .couple-img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.couple-area-style-2 .couple-wrap:hover .couple-img:before {
  border-color: var(--secondary-2);
}
.couple-area-style-2 .couple-info {
  padding: 20px 60px;
  text-align: center;
}
.couple-area-style-2 .couple-info .social ul {
  justify-content: center;
}
.couple-area-style-2 .couple-info .social ul li a {
  color: var(--secondary-2);
}
.couple-area-style-2 .heart-img img {
  animation: pulse infinite 2000ms;
}
.love-bg:before {
  content: "";
  background-image: url("../../images/love-bg.jpg");
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  top: 0;
  left: 0;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 820px) {
  .couple-area-style-2 .couple-img {
    width: 320px;
    height: 320px;
  }
  .couple-area-style-2 .couple-info {
    padding: 20px;
  }
}
/* Welcome Area */
.welcome-area {
  background: linear-gradient(rgb(161 86 115 / 20%), rgb(161 86 115 / 40%)),
    transparent url("../../images/couple-bg.jpg") 50% / cover no-repeat fixed;
  padding: 100px 0;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}
.welcome-area h2,
.welcome-area p {
  color: var(--whiteColor);
}
/*  Gallery */
.gallery__thumb {
  position: relative;
}
.gallery__thumb.style-two {
  padding: 40px;
}
.gallery__thumb:before {
  position: absolute;
  left: 2%;
  top: 2%;
  width: 96%;
  height: 96%;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.3s;
  transform: scale(0);
}
.gallery__thumb:hover:before {
  opacity: 1;
  transform: scale(1);
}
.gallery__thumb .hover-content {
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  width: 260px;
}
.gallery__thumb:hover .hover-content {
  opacity: 1;
}
.gallery__thumb .hover-content i {
  font-size: 30px;
  color: #101010;
}
.floating-leaves {
  width: 220px;
  height: 360px;
  background-image: url("../../images/leaves.png");
  background-repeat: no-repeat;
}
.gallery-section .floating-leaves {
  position: absolute;
  left: 0;
  top: 50%;
}
.gallery-section .flip-leave {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
}
@media (max-width: 767px) {
  .gallery-section .floating-leaves {
    top: 90%;
  }
  .gallery__thumb {
    border: 3px solid var(--whiteColor);
  }
  .gallery__thumb.style-two {
    padding: 0;
  }
}
/*  Story section */
.story-section .story-item {
  display: flex;
  align-items: center;
}
.story-section .story-item .story-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 400px;
  text-align: center;
}
.story-section .story-item .story-img-wrap .story-img {
  border-radius: 40% 20% 40% 20%;
  -webkit-border-radius: 40% 20% 40% 20%;
  position: relative;
}
.story-section .story-item .story-img-wrap .story-img:before {
  position: absolute;
  left: 4%;
  top: 3%;
  width: 92%;
  height: 94%;
  border-radius: 40% 20% 40% 20%;
  -webkit-border-radius: 40% 20% 40% 20%;
  content: "";
  border: 1px solid #fff;
  z-index: 1;
}
.story-section .story-item .story-img-wrap .story-img img {
  border-radius: 40% 20% 40% 20%;
  -webkit-border-radius: 40% 20% 40% 20%;
}
.story-section .story-item .story-content {
  flex-basis: 50%;
  -webkit-flex-basis: 50%;
  position: relative;
  max-width: 385px;
  margin-left: 80px;
}
.story-section .story-item .story-content .story-content-inner span {
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #657150;
  margin-bottom: 10px;
  display: block;
}
.story-section .story-item .story-content .story-content-inner h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}
.story-section .story-item .story-content .story-content-inner p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #585858;
  margin-bottom: 0;
}
.story-section .story-item + .story-item {
  margin-top: -60px;
}
.story-section .story-item:nth-child(even) .story-img-wrap {
  order: 2;
  -webkit-order: 2;
  -moz-order: 2;
}
.story-section .story-item .story-img-wrap .img-shape {
  position: absolute;
  width: auto;
  right: -50px;
  bottom: -50px;
  z-index: 1;
}
.story-section .story-item .story-img-wrap .img-shape img {
  max-width: 250px;
}
.story-section .story-item:nth-child(even) .story-content {
  order: 1;
  -webkit-order: 1;
  -moz-order: 1;
  flex: 1;
  margin-left: 0;
  position: relative;
  padding-left: 0;
  margin-left: auto;
  margin-right: 80px;
}
@media (max-width: 991px) {
  .story-section .story-item {
    flex-wrap: wrap;
    padding-top: 80px;
  }
  .story-section .story-item .story-img-wrap {
    flex-basis: 100%;
    margin: 0 auto;
  }
  .story-section .story-item .story-content {
    padding-left: 0px;
    margin-left: 0;
    text-align: center;
    margin: 0 auto;
    flex-basis: 100%;
    position: relative;
    max-width: 100%;
    margin-top: 70px;
  }
  .story-section .story-item + .story-item {
    margin-top: 0;
  }
  .story-section .story-item:nth-child(even) .story-img-wrap {
    order: unset;
    -webkit-order: unset;
    -moz-order: unset;
  }
  .story-section .story-item:nth-child(even) .story-content {
    padding: 20px;
    order: unset;
    -webkit-order: unset;
    -moz-order: unset;
    flex-basis: 100%;
    margin-right: 0;
    text-align: center;
    flex-basis: 100%;
    position: relative;
    max-width: 100%;
  }
}
@media (max-width: 620px) {
  .story-section .story-item .story-img-wrap .img-shape {
    right: 0;
  }
}

/*  Story style 2 */
.story-timeline {
  position: relative;
}
.story-section .story-timeline:after {
  content: "";
  background: rgba(94, 154, 142, 0.1);
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.story-section .story-timeline .text-holder .heart {
  color: var(--secondary);
  background-color: var(--secondary-2);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 2px solid var(--secondary);
  position: absolute;
  left: -22px;
  top: -22px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 10;
  animation: pulse infinite 2000ms;
}
.story-section .story-timeline .right-heart .heart {
  left: auto;
  right: -22px;
}
.story-section .date {
  color: var(--secondary);
}
.story-section .story-timeline .text-holder {
  border-top: 1px solid rgba(94, 154, 142, 0.1);
  padding-top: 45px !important;
  position: relative;
}
.story-section .story-timeline > .row > .column:first-child {
  padding: 0 45px 0 100px;
}
.story-section .story-timeline > .row > .column:last-child {
  padding: 0 100px 0 45px;
}
.story-section .story-timeline .img-holder {
  max-height: 350px;
  overflow: hidden;
  position: relative;
}
.story-section .story-timeline .img-holder img {
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
}
.story-section .story-timeline .img-holder:before {
  position: absolute;
  left: 4%;
  top: 3%;
  width: 92%;
  height: 94%;
  content: "";
  border: 1px solid var(--whiteColor);
  z-index: 1;
}
.story-section .story-timeline .img-holder:hover img {
  transform: scale(1.2) rotate(5deg);
  -webkit-transform: scale(1.2) rotate(5deg);
}
@media (max-width: 767px) {
  .story-section .story-timeline > .row > .column:first-child,
  .story-section .story-timeline > .row > .column:last-child {
    padding: 0;
  }
  .story-section .story-timeline .text-holder .heart {
    display: none;
  }
  .story-section .story-timeline:after {
    display: none;
  }
}
/*  Event section */
.event-section .event-item {
  text-align: center;
  max-width: 410px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.event-section .event-item .event-img .event-img-inner {
  overflow: hidden;
}
.event-section .event-item .event-img .event-img-inner img {
  transition: all 0.3s;
  transform: scale(1);
}
.event-section .event-item:hover .event-img .event-img-inner img {
  transform: scale(1.2) rotate(5deg);
}
.event-section .event-item .event-text {
  max-width: 368px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  margin-top: -80px;
  padding: 20px 50px 0;
}
.event-section .event-item .event-text h2 {
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #c8a898;
  padding-bottom: 20px;
}
.event-section .event-item .event-text ul {
  list-style: none;
  max-width: 245px;
  margin: 0 auto;
  margin-top: 30px;
  padding-left: 0;
}
.event-section .event-item .event-text ul li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150.2%;
  margin-bottom: 20px;
}
.event-section .event-item .event-text ul li:last-child {
  margin-bottom: 0;
}
.event-section .event-item .event-text ul li a {
  color: #c8a898;
  position: relative;
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
}
.event-section .event-item .event-text ul li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #c8a898;
}
@media (max-width: 1399px) {
  .event-section .event-item .event-text {
    max-width: 330px;
  }
}
@media (max-width: 1199px) {
  .event-section .event-item .event-text {
    max-width: 270px;
    padding: 20px 30px 0;
  }
}
@media (max-width: 1199px) {
  .event-section .event-item .event-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 757px) {
  .event-section .event-item .event-text h2 {
    font-size: 25px;
  }
}

/* Event section style 2 */
.event-style-2 .event-img {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.event-style-2 .event-img:before {
  position: absolute;
  left: 4%;
  top: 3%;
  width: 92%;
  height: 94%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  content: "";
  border: 1px solid var(--whiteColor);
  z-index: 1;
}

/*** Navbar ***/
.navbar .navbar-nav .nav-link {
  padding: 0 20px;
  color: var(--secondary);
  font-weight: 600;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
@media (max-width: 991.98px) {
  .navbar .navbar-collapse.show {
    max-height: 400px;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 50px;
  }
  .navbar .navbar-collapse.show .btn {
    margin-top: 16px;
  }
  .navbar .navbar-nav {
    padding: 0 15px;
    align-items: baseline !important;
    margin-bottom: 20px;
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    min-width: 15rem;
    padding: 15px 0;
    margin: 0;
    top: 105%;
    background-color: #ffffff;
    border: none;
    -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    border-radius: 10px;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.4s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
  .navbar .dropdown-item:active {
    background-color: var(--primary);
  }
}
/** Page Title **/
.main-page-title h1 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 10px !important;
}
.main-page-title h1:after {
  content: "";
  width: 300px;
  height: 3px;
  background-color: var(--whiteColor);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.page-title-area {
  background-image: url("../../images/bg-2.jpeg");
  z-index: 1;
  padding-bottom: 120px;
  position: relative;
  padding-top: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.page-title-area:before {
  content: "";
  background-color: var(--dark);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
.page-title-content {
  text-align: center;
  position: relative;
}
.page-title-content h1 {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 45px;
}
.object-rotate {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.moveleftbounce {
  animation: moveleftbounce 5s linear infinite;
}

/** About CSS **/
.about-area {
  position: relative;
  overflow: hidden;
}

.single-box {
  text-align: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 5px;
  -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single-box:hover {
  background: var(--primary);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.single-box:hover p,
.single-box:hover h3 {
  color: #ffffff;
}

.single-box:hover .read-more-btn {
  color: #ffffff;
}

.single-box:hover .read-more-btn::before {
  background: #ffffff;
}

.single-box .icon {
  background: #f4f6fd;
  display: inline-block;
  width: 100px;
  height: 100px;
  font-size: 40px;
  color: var(--primary);
  line-height: 100px;
  -webkit-clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
}

.single-box p {
  margin-bottom: 20px;
}

.single-box p,
.single-box h3 {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.read-more-btn {
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  color: var(--primary);
  z-index: 1;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 11px;
  width: 55px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.read-more-btn:hover,
.read-more-btn:focus {
  color: #283a5e;
}

.read-more-btn:hover::before,
.read-more-btn:focus::before {
  left: -20px;
  opacity: 1;
  visibility: visible;
}

.about-image {
  margin-top: 50px;
  position: relative;
}

.about-image .col-lg-6:first-child .image img {
  border-radius: 25px 0 0 0;
}

.about-image .col-lg-6:nth-child(2) .image img {
  border-radius: 0 25px 0 0;
}

.about-image .col-lg-6:nth-child(3) .image img {
  border-radius: 0 0 0 25px;
}

.about-image .col-lg-6:last-child .image img {
  border-radius: 0 0 25px 0;
}

.about-image .image img {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(130, 136, 147, 0.15);
  box-shadow: 0px 10px 20px 0px rgba(130, 136, 147, 0.15);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.about-image .image:hover img {
  -webkit-animation: bounceobject 3s linear infinite;
  animation: bounceobject 2s linear infinite;
}
.about-text {
  margin-top: 100px;
  padding-left: 30px;
}
.about-text h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0 25px;
  line-height: 40px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text .read-more-btn {
  margin-top: 10px;
}
/** About Area CSS **/
.about-content {
  padding-left: 45px;
}

.about-content span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(185, 208, 241, 0.14);
  border-radius: 5px;
  color: #76baaf;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.about-content span:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.about-content .list {
  padding: 0;
  margin-top: 18px;
  margin-bottom: 0;
}

.about-content .list li {
  list-style-type: none;
  color: #002c60;
  font-size: 18px;
  position: relative;
  margin-bottom: 15px;
  padding-left: 0;
}
.about-content .list li i {
  margin-right: 10px;
}

.about-content .list li:last-child {
  margin-bottom: 0;
}

.about-content .list li img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #76baaf;
  font-size: 28px;
}

.about-content .about-btn {
  margin-top: 25px;
}

.about-content .about-btn .default-btn {
  background-color: #8f6dff;
}

/*  CTA Section */
.cta-section {
  position: relative;
  width: 100%;
  display: block;
  background-image: url("../../images/bg-1.jpeg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

.cta-section:before {
  position: absolute;
  content: "";
  background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 40%));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cta-section .container {
  position: relative;
}
.cta-section .cta-wrapper {
  padding: 50px 80px;
  background: rgb(0 0 0 / 21%);
  z-index: 99;
  position: relative;
}
.cta-section .cta-wrapper:before {
  position: absolute;
  content: "";
  left: -8px;
  top: -6px;
  width: 100%;
  height: 100%;
  border: 1px solid hsla(0, 0%, 100%, 0.4);
}

/* CTA section style 2 */
.cta-section-style-2 {
  background-image: url("../../images/bg-2.jpeg");
  background-attachment: unset;
  background-position: center;
}
.cta-section-style-2:before {
  background: linear-gradient(rgb(161 86 115 / 0%), rgb(161 86 115 / 32%));
}
.cta-section-style-2 .cta-wrapper {
  padding: 50px 20px;
  background: var(--whiteColor);
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.cta-section-style-2 .cta-wrapper:before {
  border-radius: 100%;
  -webkit-border-radius: 100%;
}
.cta-section-style-2 .img-shape {
  position: absolute;
  width: 220px;
  bottom: -60px;
  right: 10px;
  transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
}
/*section-title*/
.section-header {
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.section-header span {
  color: var(--primary);
}
.section-header .sub-title,
.sub-title {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 15.5px;
  font-weight: 700;
}
.section-header p {
  max-width: 600px;
  font-size: 16px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}
.section-header .learn-more-btn {
  margin-top: 20px;
}
/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}
.form-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  color: var(--whiteColor);
  text-transform: capitalize;
  background-image: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  padding: 20px 30px;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s;
}
.form-btn:hover {
  background-image: linear-gradient(
    to right,
    var(--secondary) 0%,
    var(--primary) 50%,
    var(--secondary) 100%
  );
}
/*  Patterns **/
.bg-purple {
  background-color: rgba(111, 66, 193, 0.1) !important;
}
.bg-blue {
  background-color: rgba(29, 59, 83, 0.1) !important;
}
.circle-pattern-2 {
  opacity: 0.5;
  height: 500px;
  position: absolute;
  width: 550px;
  bottom: 10px;
  left: -10px;
  background: #ffdd6e;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  -webkit-animation: bounceobject 3s linear infinite;
  animation: bounceobject 3s linear infinite;
  z-index: -1;
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotatemetwo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes bounceobject {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes bounceobject {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ff9118;
    box-shadow: 0 0 0 0 #ff9118;
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ff9118;
    box-shadow: 0 0 0 0 #ff9118;
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}

.accordion-header {
  line-height: inherit;
}
/***   Contact us css    ***/
.rsvp-section {
  background: linear-gradient(rgb(161 86 115 / 0%), rgb(161 86 115 / 0%)),
    transparent url("../../images/couple-bg.jpg") 50% / cover no-repeat fixed;
  padding: 100px 0;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}
.contact-us {
  padding: 100px 0;
}

.contact-info .contact-info-box {
  margin-bottom: 40px;
}

.contact-info .contact-info-box:last-child {
  margin-bottom: 0;
}

.contact-info-box .contact-info-title {
  margin-bottom: 20px;
}

.contact-info-box .contact-info-title h2 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-info-box .contact-info-title p {
  margin: 0;
}

.contact-info-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
}

.contact-info-item a {
  text-decoration: underline;
  color: var(--primary);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon-box {
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-info-item .contact-info-content p {
  color: var(--primary);
  text-transform: capitalize;
  margin: 0;
}

.contact-form {
  background: var(--whiteColor);
  border: 1px solid #ffdcc8;
  border-radius: 16px;
  padding: 40px;
}

.contact-form-content p {
  margin-bottom: 20px;
}

.contact-form .form-control {
  padding: 15px 20px;
  background-color: #fef4f3;
  color: var(--primary);
  box-shadow: none;
  border: none;
  border-radius: 10px;
}

.contact-form .form-control::placeholder {
  color: var(--primary);
  text-transform: capitalize;
}
.contact-form .error,
.contact-form #form-error {
  font-size: 12px;
  color: #f00;
}
.contact-form button.form-btn {
  width: 100%;
}

/***    	Footer css		  ***/

.main-footer {
  background-color: #fbf9f8;
}

.about-footer {
  padding-right: 25px;
}

.footer-logo {
  margin-bottom: 30px;
}
.footer-contact-box .footer-info-box {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.footer-contact-box .footer-info-box:last-child {
  margin-bottom: 0;
}

.footer-info-box .icon-box {
  position: absolute;
  top: 2px;
  left: 0;
}

.footer-info-box .icon-box i {
  color: var(--secondary);
  font-size: 20px;
}

.footer-info-box p {
  color: var(--secondary);
  margin: 0;
}

.footer-links h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  font-size: 16px;
  color: var(--secondary);
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-copyright {
  padding: 20px 0;
  border-top: 1px solid #ffffff26;
}

.footer-copyright-text p,
.footer-copyright-text a {
  color: var(--secondary);
  margin: 0;
}

.footer-copyright .footer-social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}

.footer-copyright .footer-social-links ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-copyright .footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-copyright .footer-social-links ul li a {
  background-color: var(--whiteColor);
  text-decoration: none;
  color: var(--primary);
  height: 36px;
  width: 36px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-copyright .footer-social-links ul li a i {
  font-size: 18px;
}

.footer-copyright .footer-social-links ul li a:hover {
  background: var(--primary);
  color: var(--whiteColor);
}
@media (max-width: 768px) {
  .footer-links h3 {
    margin-top: 30px;
  }
  .footer-copyright-text,
  .footer-copyright .footer-social-links ul {
    text-align: center;
  }
  .footer-copyright-text {
    margin-bottom: 20px;
  }
}
