/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
  --lh_primary-color: #000000;
  --lh_secondary-color: #b40f0d; 
  --lh_heading-font: 'Philosopher', sans-serif; /*'Saira', sans-serif*/
  --lh_body-font: 'Saira', sans-serif;
  --black: #000;
  --white: #fff;
  --grey: #f7f7f7;
  --dark-grey: #7a7a7a;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  font-size: 20px; /*18px*/  
  font-family: var(--lh_body-font);
  line-height: 1.7;
  margin: 0 auto; 
  position: relative;
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 36px; }

h3, .h3 {
  font-size: 28px;/*30px*/ }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 24px;/*20px*/ }

h6, .h6 {
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--black);/*var(--dark-green) #8cb87e*/
  clear: both;
  font-family: var(--lh_heading-font);
  font-weight: 700; /* 600*/ 
  line-height: 1.3;
  margin-bottom: 5px;  
}

p {
  color: var(--black);
  margin-bottom: 0.5em;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
.black-bg {
  background-color: var(--black);
}
.white-bg {
  background-color: var(--white);
}
.grey-bg {
  background-color: var(--grey);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.at-btn {  
  padding: 15px 28px;
  text-transform: uppercase;
  border: 1px solid var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--black);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.at-btn:hover {
  border: 1px solid var(--black);
  text-decoration: none;
}
.btn--primary {
  z-index: 1;
  color: var(--white);
}
.btn--secondary {
  z-index: 1;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 0px;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 0px;
  height: 100%;
  background-color: var(--black);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 0px;
}
.btn--primary:hover {
  color: var(--black);
  background-color: var(--white);
}
.btn--primary:hover::before { 
  width: 0%;
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--black);
}
.btn--secondary:hover::before { 
  width: 100%;
}

.btn--white {
  z-index: 1;
  color: var(--black);/*var(--dark-green)*/
  border: 1px solid var(--white);
}
.btn--white:hover {
  border: 1px solid var(--white);
}
.btn--white::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 0px;
}
.btn--white:hover {
  color: var(--white);
}
.btn--white:hover::before { 
  width: 0%;
}
.pad-tb {
  padding: 50px 0;
}
.top_bar {
  background: var(--black); /*var(--dark-green)*/
  padding: 10px 0; /*8px 0*/
  overflow: hidden;
}
.top_bar ul {
  margin-bottom: 0;
  list-style: none;
  float: right;
  position: relative;
  color: var(--white);
  z-index: 999;
  margin-left: 0;
  padding-inline-start: 0; /*ec*/
  margin-right: 20px; /*ec*/
}
.top_bar ul > li {
  margin-left: 0px; /*15px*/
  float: left;    
  line-height: 1.4;
}
.top_bar ul > li a {
  color: var(--white); /*#fff*/
  font-size: 17px;
  position: relative;
  padding-left: 20px;
}
.top_bar ul > li a:after {
  position: absolute;
  content: "";
  top: 0;
  right: -10px;
  border-right: 1px solid #999;
  width: 100%;
  height: 100%;
 /* margin-left: 15px;*/
}
.top_bar ul > li:last-child a:after {
  display: none;
}
.top_bar ul > li a i {
  margin-right: 8px;
}
.top_bar ul > li a:hover, .top_bar a:hover {
  text-decoration: none;/*underline*/
}
/*.top_bar ul > li:last-child a {
  padding-right: 0px;
}*/
header {
  background: #fff;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); /*0 1px 5px 0 rgba(83, 83, 83, 0.4)*/
  box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); /*0 1px 5px 0 rgba(83, 83, 83, 0.4)*/
  /*position: -webkit-sticky;*/
  position: relative;/*sticky*/
  top: 0;
  z-index: 1000;
  padding: 0px;/*8px 0*/
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  position: absolute;
  top: 0;
  background: var(--white);
  padding: 5px 5px 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header nav {
  float: right;
  padding: 30px 0;
}
header .logo {
  position: relative;
}
header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  /*font-size: 17px; */
  padding: 12px 1.8vw;/*25px 1vw*/
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  /*text-transform: uppercase;*/
}
header .main-menu > li.active > a {
  color: var(--black);
}
header .main-menu > li:hover > a {
  color: var(--black);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--black);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
header .main-menu > li:last-child > a { 
  color: var(--white);
  background: var(--black);
  border-radius: 50px;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 220px;/*180px*/
  overflow: hidden;
  border-top: 2px solid var(--black);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
header .main-menu .sub-menu a {
  padding: 11px 10px;
  display: block;
  color: var(--black);
  font-size: 17px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--black);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--black);
  width: 28px;
}
/* #call-action .call-action {
  color: #001b4f;
  font-weight: 700;
  font-size: 23px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
#call-action .call-action:hover {
  color: #10bd3b;
} */
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 15000;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--black);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: var(--black); 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: #fff;
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.footer {
  position: relative;
  background-color: #000; /*222*/
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;/*0.6*/
  background: url(../images/footer_bg_white.png);
}
footer.footer:after {
  position: absolute;
  content: "";
  background: url(../images/footer_shape.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: .15;/*.2*/
  animation: serviceAnimi linear 3s infinite alternate;
  -webkit-animation: serviceAnimi linear 3s infinite alternate;
}
.footer-top {
  padding: 70px 0 50px;/*50px 0 30px*/
  position: relative;
  z-index: 1;
}
.footer-top .footer-short-info p {
  margin-top: 1rem;
  margin-bottom: 0;
}
.footer-widget {
  margin-bottom: 15px;
}
.footer-widget h3 {
  color: var(--white);
  padding-bottom: 12px;
  margin-bottom: 15px;
  position: relative;
  font-weight: 500;
}
.footer-widget h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: #bbb;
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 10px;
}
.footer-widget ul.widget-links > li:hover {
  padding-left: 10px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  padding-left: 25px;
  display: block;
} 
.footer-widget ul.widget-links > li a:hover {
  color: var(--white);
  text-decoration: none;
} 
.footer-widget ul.widget-links > li a:before {
  font-family: "Font Awesome 6 Free";
  content:"\f105";
  position: absolute;
  left: 0;
  font-weight: 600;
}
@keyframes serviceAnimi {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  to {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 12px;
}
.icn {
  position: absolute;
  left: 0;
  color: #fff;
}
.txt {
  padding-left: 30px;
  color: #fff;
}
.txt a:hover {
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid #333; /*444*/    
  padding: 30px 0;position: relative;
  z-index: 1;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #444;/*var(--dark-green)*/
  color: var(--white);
  display: inline-block;
  font-size: 19px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: #555;  
}
.working-hours {
  margin-bottom: 1.2rem;
}
.breadcrumb_wrap {
  padding: 110px 0;
  background-color: #eee;
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
}
.breadcrumb_title h1 {
  text-transform: uppercase;
  font-size: 54px;
  color: var(--white);
  position: relative;
}
.breadcrumb_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
} 
/*.design-by {
  display: none;
}*/
.hero {
  position: relative;
  height: calc(90vh - 90px);/*calc(100vh - 90px)*/
  min-height: 500px; /*700px*/
  overflow: hidden;
}
.static-hero {
  background: url(../images/slide-1.jpg) center center/cover no-repeat local;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
}
.static-hero:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.jquery-ripples {
  position: relative;
  z-index: 0;
}
.ripple, .particleground, .video-player, .surface-shader {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}
.hero .wedding-announcement {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 101;
  text-align: center;
  display: table;
}
.hero .wedding-announcement .couple-name-merried-text {
  display: table-cell;
  vertical-align: middle;
}
.hero .wedding-announcement .couple-name-merried-text h2, 
.hero .wedding-announcement .couple-name-merried-text h3 {
  font-size: 5rem;
  color: #fff;
  margin: 0 0 0.2em;/*0 0 0.4em*/
  position: relative;
  z-index: 10;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}
.hero .wedding-announcement .couple-name-merried-text h2 span {
  font-size: 3rem;
  display: block;
}
.hero .wedding-announcement .couple-name-merried-text h3 {
  font-size: 3.5rem;
  margin: 0 0 0.3em;
}
.hero .wedding-announcement .married-text h4 {
  font-size: 2rem;/*1.44444rem*/
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 2.5rem; /*0*/
  display: inline-block; /*inline*/
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 12px 20px;
  position: relative;
  z-index: 10;
  letter-spacing: 2px;
}
.events-area {
  position: relative;    
  background-color: #ede5e3; /*#e5f4f4  fff8f8  #ffefe5*/
  /*padding: 90px 0 110px; */
  overflow-x: hidden;
}
.events-wrap {
  background: url(../images/events-bg.png);
  position: relative;
  background-repeat: no-repeat;
  padding: 90px 0 90px;
}
.events-area .container {
  position: relative;
  z-index: 1;
}
.sec-title {
  position: relative;
  margin-bottom: 0.8rem;
}
.sec-title .sub-text {
  font-size: 34px;/*25px*/
  font-weight: 700;/*500*/
  line-height: 42px; /*30px*/
  color: #000;
  text-transform: uppercase;
  margin: 0 0 0px;/*0 0 10px*/
  display: block;
  font-family: 'Philosopher', sans-serif;
}
.sec-title .title {
  font-size: 3.5rem; /*45px*/
  font-weight: 600;
  color: #000;
  margin: 0;
}
.pr-56 {
  padding-right: 56px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-80 {
  margin-top: 80px;
}
.events-area .events-item .events-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.events-area .events-item .events-img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 8, 45, 0);
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.events-area .events-item .events-img a {
  cursor: default;
}
.events-area .events-item .events-img .p-icon a {
  text-align: center;
  border-radius: 50px;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.events-area .events-item .events-img .p-icon a i {
  min-width: 45px;
  min-height: 45px;
  border-radius: 45px;
  line-height: 40px;
  border: 1px solid transparent;
  text-align: center;
  display: inline-block;
  position: relative;
  left: 10px;
  border-color: #fff;
  transition: 0.4s;
}
.events-area .events-item .events-content {
  padding: 20px 0px 0px 0px;
}
.events-area .events-item .events-content .category {
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.events-area .events-item .events-content .category a {
  color: #049adf;
}
.events-area .events-item .events-content .category a:hover, 
.events-area .events-item .events-content .title a:hover, 
.events-area .events-item .events-img .p-icon a:hover {
  text-decoration: none;
}
.events-area .events-item .events-content .title {
  font-size: 40px; /*35px*/
  line-height: 45px;
  /*font-weight: 600;*/
  /*text-transform: uppercase;*/
  margin-bottom: 0.2em;
}
.events-area .events-item .events-content .title a {
  color: #000; cursor: default;
}
.events-area .events-item:hover .events-img:before {
  /*background-color: rgb(33 33 33 / 75%);
  opacity: 1;
  visibility: visible;*/
}
.events-area .events-item .events-content p {
  color: #000000;
  text-align: justify;    
  margin-bottom: 1rem;
}
.events-area .events-item:hover .events-img .p-icon a {
  opacity: 1;
  visibility: visible;
}
.events-area .events-item:hover .events-img .p-icon a i {
  left: 20px;
}
.events-area .pro-animate .animation-style {
  position: absolute;
}
.events-area .pro-animate .animation-style.left-side {
  left: -5%;
  top: 0%;
}
.events-area .pro-animate .animation-style.right-side {
  right: 0%;
  bottom: 0%;
}
.horizontal {
  animation: horizontal 2s alternate infinite;
  -webkit-animation: horizontal 2s alternate infinite;
}
@keyframes horizontal {
  0% {
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
  }
  0% {
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
  }
}
.events-area .events-item .events-content a {
  color: #000;
}   
.events-area .events-item .events-content a i {
  min-width: 45px;
  min-height: 45px;
  border-radius: 45px;
  line-height: 40px;
  border: 1px solid transparent;
  text-align: center;
  display: inline-block;
  position: relative;
  left: 10px;
  border-color: #000;
  transition: 0.4s;
}
.events-area .events-item .events-content a:hover {
  text-decoration: none; 
} 
.star {
  animation: star 10s ease-out infinite;
}
.events-area .events-img1 {
  position: absolute;
  left: -9px;
  top: 60px; /*77px*/
}
.events-area .events-img2 {
  position: absolute;
  right: -12px;
  bottom: 45px;/*67px*/
}
@keyframes star {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(-0.75em);
  }
  20% {
    opacity: 1;
  }
  89% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translateZ(-1000em);
  }
}
.events-area .events-img3 {
  position: absolute;
  left: 0px;
  bottom: 45px;
}
.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.countdown-section {
  position: relative;
  padding: 120px 0;
}
.countdown-section .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  /*margin-top: -275px;
  margin-bottom: 25px;*/
}
.countdown-section .content-box .inner-column .image-box {
  position: relative;
  /*margin-bottom: 120px;*/
}
.countdown-section .content-box .inner-column .image-box .image img {
  border-radius: 50%;
}
.countdown-section .content-box .inner-column .image-box .icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.countdown-section .content-box .inner-column .image-box .icon-box .icon-flowers-1 {
  width: 669px;
  height: 641px;
  background-image: url(../images/flowers-1.png);
  -webkit-animation: fa-spin 100s infinite linear;
  animation: fa-spin 100s infinite linear;
}
.countdown-section .content-box .inner-column .image-box .icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.intro-wrap {
  position: relative;
  padding: 110px 0 110px;
  overflow: hidden;
}
.intro-wrap .intro-img1 {
  position: absolute;
  bottom: -15px;
  left: 0;
  opacity: 0.8;
  z-index: -1;
}
.intro-wrap .intro-img2 {
  position: absolute;
  bottom: -60px;/*-120px*/
  right: 15px;
  opacity: 0.8;
  z-index: -1;
}
.zoom-one {
  -webkit-animation: zoom-one 10s infinite linear;
  animation: zoom-one 10s infinite linear;
}
.intro-wrap .sec-title .title {
  font-size: 4rem; 
}
.intro-img3 {
  position: relative;
  margin: 35px auto 35px;
}
.intro-subwrap {
  padding: 0 300px;
}
@-webkit-keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
ul.list-item {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}
ul.list-item > li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
ul.list-item > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";/*f14a*/
  position: absolute;
  left: 0;
  font-weight: 400; /*600*/
}
.img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.img-wrap img {
  transition: all 10s;
  -moz-transition: all 10s;
  -webkit-transition: all 10s;
  -o-transition: all 10s;
}
.img-wrap:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.event-steps-wrap {
  background: #f6f6f6;/*#00515f*/    
  position: relative;
}
.event-steps-wrap .col-lg-3 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.333333%;
}
.event-steps-wrap .stepsbg-pattern {
  /*position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/stepsbg-pattern.png);*/
}
.event-steps-wrap .single-work-process {
  text-align: center;
  /*cursor: pointer;*/
}
.event-steps-wrap .work-process-icon {
  text-align: center;
  width: 124px;
  height: 124px;
  line-height: 124px;
  border: 1px solid #000; /*04b7d6*/
  border-radius: 50%;
  background-color: #fff; /*0b6e80*/
  width: 124px;
  height: 124px;
  margin: 0 auto;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  margin-bottom: 20px;
  position: relative;
  /*opacity: 0;*/
}
.event-steps-wrap .work-process-icon:before {
  position: absolute;
  content: "";
  top: 50%;
  width: 370%;/*70% 175%*/
  height: 1px;
  background-color: #000; /*02cfd1*/
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  right: -370%; /*-70% -370%*/
  opacity: .5;
}
.event-steps-wrap .work-process-icon.work-process-noicon:before {
  display: none;
}
.event-steps-wrap .single-work-process .work-process-icon img {
  width: 70px;/*55px*/
}
.event-steps-wrap .single-work-process:hover .work-process-icon {
  border-color: #000; /*04b7d6*/
  background-color: #fff; /*67949d*/
  -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,.1);
  box-shadow: 0 5px 15px 0 rgba(0,0,0,.1);
}
.event-steps-wrap .single-work-process h4 {
  color: #000;
  margin-bottom: 5px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  font-size: 30px;
}
.event-steps-wrap .single-work-process h4 a {
  color: #000;
}
.event-steps-wrap .sec-title {
  margin-bottom: 2rem;
}
.event-steps-wrap .single-work-process p {
  font-size: 16px;
  padding: 0px 15px;
  color: #000;
}
.intro-wrap.about-wrap {
  padding: 80px 0 80px;
} 
.amenities-wrap {
  background: #f7f7f7;
}
.accordion .card-header:after {
    font-family: 'FontAwesome';  /*Font Awesome 6 Free*/
    content: "\f106";
    float: right; 
}
.accordion .card-header.collapsed:after {
    content: "\f107"; 
}
.faq-wrap .card {
  border: none;
}
.faq-wrap .card-header {
  margin-top: 1rem!important;
  border:1px solid rgba(0,0,0,.125);
  cursor: pointer;
  margin-bottom: 0!important;
}
.faq-wrap .card-body {
  background: #fff;
  border: 1px solid rgba(0,0,0,.125);
}
.faq-wrap .card-body p {
  text-align: justify;
  margin-bottom: 0;
}
.faq-wrap .card-header:first-of-type {
  margin-top: 0!important;
}
.contact-info {
  padding: 50px 0 0;
}
.contact-info-wrap {
  position: relative;
  padding: 25px 25px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.10);    
  margin-bottom: 30px;    
  min-height: 262px;
}
.contact-info-wrap .contact-info-icon {
  margin-bottom: 20px;
}
.contact-info-wrap p {
  margin-bottom: 0;
}
.map-wrap {
  padding: 30px 0 50px;
}
.events-gallery-wrap {
  padding: 50px 0;    
  position: relative;
}
.events-gallery-wrap .sec-title {
  margin-bottom: 3rem;
}
.gallery-section .masonry-gallery {
  margin: 0 -7.5px;
}
.gallery-section .masonry-gallery .grid {
  width: 25%;/*33.33%*/
  float: left;
  padding: 0 7.5px 15px;
}
.gallery-section .grid img {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.call_toaction {
  display: none;
}
.booking-wrap {
  padding: 50px 0;
}
.booking-wrap .form-control {
  height: 50px;    
  font-size: 1.2rem;
  color: #000000;    
  border: 1px solid #bbb;
}
.booking-wrap textarea.form-control {
  height: 100px;    
}
.booking-wrap .form-control:focus {
  box-shadow: none;
  border-color: #000;
}
.booking-wrap label {
  display: block;
  margin-bottom: 0.2rem;
}
.img-wrap video {
  border-radius: 10px;
}
.ogallery.events-gallery-wrap .sec-title {
    margin-bottom: 1rem;
}
.ogallery.events-gallery-wrap video {
  border-radius: 10px;
}
.ogallery.events-gallery-wrap .img-wrap {
  border-radius: 10px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
	    max-width: 95%;/*1170px*/
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
	body {
		font-size: 16px;
		overflow-x: hidden;
	}
	h2, .h2 {
	    font-size: 32px;
	}
	h3, .h3 {
	    font-size: 24px;
	}
	h4, .h4 {
	    font-size: 22px;
	}
	header .main-menu > li > a, header .main-menu .sub-menu a {
		font-size: 16px;
	}
	ul.social-links > li a {
	    width: 40px;
	    height: 40px;
	    line-height: 40px;
	    font-size: 16px;
	}
	header .header-logo {
	    width: 85%;
	}
	.hero .wedding-announcement .married-text h4 {
	    font-size: 1.7rem;
	}
	header nav {
	    padding: 25px 0;
	}
	.intro-wrap {
	    overflow: hidden;
	}
	.intro-subwrap {
	    padding: 0px 175px;
	}
	.intro-wrap .sec-title .title, 
	.sec-title .title {
	    font-size: 3rem;
	}
	.intro-wrap .intro-img1 {
	    left: -125px;
	}
	.intro-wrap .intro-img2 {
	    right: -115px;
	}
	.events-area .events-item .events-content .title {
	    font-size: 35px;
	    line-height: 40px; 
	}
	.events-area .events-item .events-content p {
	    margin-bottom: 0.8rem;
	}
	.events-wrap {
	    padding: 80px 0 80px;
	}
	.event-steps-wrap .single-work-process h4 {
	    font-size: 26px;
	}
	.event-steps-wrap .single-work-process p {
	    font-size: 15px; 
	}
	footer.footer:after {
	    opacity: 0.25;
	}
	.event-steps-wrap .work-process-icon:before {
	  width:280%;
	  right: -280%; 
	}
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.container {
	   max-width: 94%;
	}
	body {
		font-size: 19px;
	}
	h2, .h2 {
	    font-size: 32px;
	}
	h3, .h3, .footer-widget h3, .team-member h3 {
	    font-size: 24px;
	}
	h4, .h4 {
	    font-size: 22px;
	}
	.event-steps-wrap .work-process-icon:before {
	  width:350%;
	  right: -350%;
	}
	.intro-wrap .sec-title .title {
	    font-size: 3.1rem;
	}	
	.intro-wrap .intro-img1 {
		left: -85px;
	}
	.intro-wrap .intro-img2 {
		right: -75px;
	}

}
@media only screen and (min-width: 1600px) {
	.container {
	    max-width: 90%;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
	.container, .container-lg, .container-md, .container-sm {
		max-width: 99%;
	}
	header .main-menu > li > a {
		padding: 6px 1.8vw;    
		font-size: 17px;
	}
	body {
		font-size: 16px;
	}
	h2, .h2 {
	    font-size: 28px;
	}
	h3, .h3 {
	    font-size: 24px;
	}
	h4, .h4 {
	    font-size: 22px;
	}
	h5, .h5 {
	    font-size: 20px;
	}
	.event-steps-wrap .work-process-icon:before {
	  width:260%;
	  right: -260%; 
	}
	.sec-title .title {
	    font-size: 2.8rem;
	}
	.contact-info-wrap {
		padding: 20px 12px;
	}
	.breadcrumb_wrap {
	    padding: 95px 0; 
	}
	.breadcrumb_title h1 {
		font-size: 45px;
	}
	.intro-subwrap {
	    padding: 0 150px;
	}
	.intro-wrap .intro-img2 {
		right: -150px;
    	opacity: 0.6;
	}
	.intro-wrap .intro-img1 {
		left: -150px;
    	opacity: 0.6;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 {
		font-size: 4rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 span {
		font-size: 2rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 3rem;
	}
	.hero .wedding-announcement .married-text h4 {
		font-size: 1.3rem;
	}
	.intro-wrap .sec-title .title {
	    font-size: 2.8rem;
	}
	.events-area .events-item .events-content .title {
	    font-size: 32px;
	    line-height: 42px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	.container, .container-md, .container-sm {
	    max-width: 98%;
	}
	body {
		font-size: 16px;
	}
	h2, .h2 {
	    font-size: 28px;
	}
	h3, .h3, .footer-widget h3 {
	    font-size: 24px;
	}
	h4, .h4 {
	    font-size: 22px;
	}
	h5, .h5 {
	    font-size: 20px;
	}
	.side-menu-logo {
		width: 85%;
	}
	.booking-wrap .img-wrap {
		margin-top: 30px;
	}
	.footer-top {
	    padding: 50px 0 25px;
	}
	.footer-widget {
    	margin-bottom: 30px;
	}
	.sec-title .title {
	    font-size: 3rem;
	}
	.faq-wrap .col-lg-8 {
		-ms-flex: 0 0 83.333333%;
    	flex: 0 0 83.333333%;
    	max-width: 83.333333%;
	}
	.breadcrumb_wrap {
	    padding: 90px 0;
	}
	.contact-info-wrap {
		min-height: auto;
	}
	.breadcrumb_title h1 {
		font-size: 45px;
	}
	.intro-subwrap {
	    padding: 0 100px;
	}
	.intro-wrap .intro-img1 {
		left: -290px;
	}
	.intro-wrap .intro-img2 {
		right: -290px;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 {
		font-size: 4rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 span {
		font-size: 2rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 3rem;
	}
	.intro-wrap .sec-title .title {
	    font-size: 3rem;
	}
	.intro-wrap {
		padding: 80px 0 80px;
	}
	.pr-56 {
	    padding-right: 15px;
	}
	.events-area .mt-80 {
	    margin-top: 50px;
	}
	.event-steps-wrap .work-process-icon:before {
		width: 200%;
		right: -200%;
	}
}
@media only screen and (max-width: 767px) {
	body {
		font-size: 16px;
	}
    header {
    	padding: 5px 10px;
    }
    header .header-logo img {
    	width: 100%;
    }
    .events-area .pr-56 {
	    padding-right: 15px;
	}
	.events-area .mt-80 {
	    margin-top: 50px;
	}
	.breadcrumb_title h1 {
		font-size: 35px;
	}
	.call_toaction {
		display: block;
	    position: fixed;
	    bottom: 0;
	    width: 100%;
	    z-index: 99999;
	    clear: both;
	}
	.call_toaction ul { 
	    display: flex;
	    list-style: none;
        justify-content: center;
        margin-bottom: 0;
        padding-inline-start: 0;
        margin-block-start: 0em;
		margin-block-end: 0em;
	}
	.call_toaction ul > li { 
		width: 50%;
		text-align: center;
	}
	.call_toaction ul > li:first-child a {
		background: #2a8802;
	    display: block;
	    color: #fff;
	    padding: 10px 0;
	}
	.call_toaction ul > li:last-child a {
		background: #16488a; 
	    display: block;
	    color: #fff;
	    padding: 10px 0; 
	}
	.call_toaction ul > li a i { 
		padding-right: 5px;
	}
	.call_toaction ul > li:last-child a i {
		font-weight: 600;
	}
	.call_toaction ul > li a {
		font-size: 20px;
	} 
	.event-steps-wrap .col-lg-3 {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.event-steps-wrap .single-work-process {
		margin-bottom: 25px;
	}
	.event-steps-wrap .work-process-icon {
		margin-bottom: 15px;
	}
	.event-steps-wrap .work-process-icon:before {
		display: none;
	}
	.footer-bottom {
		padding: 30px 0 70px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	.container {
		max-width: 100%;
	}
	h2, .h2 {
	    font-size: 28px;
	}
	h3, .h3, .footer-widget h3 {
	    font-size: 24px;
	}
	h4, .h4 {
	    font-size: 22px;
	}
	h5, .h5 {
	    font-size: 20px;
	}
	header .header-logo {
		padding: 0px 2px 5px;    
		width: 30%;
	}
	.side-menu-logo {
		width: 85%;
	}
	.breadcrumb_wrap {
	    padding: 90px 0;
	}
	.sec-title .title , 
	.intro-wrap .sec-title .title{
	    font-size: 2.5rem;
	}
	.booking-wrap .img-wrap {
		margin-top: 25px;
	}
	.footer-top {
	    padding: 50px 0 25px;
	}
	.footer-widget {
    	margin-bottom: 30px;
	}
	.contact-info-wrap {
		min-height: auto;
	}
	.intro-subwrap {
	    padding: 0 0px;
	}
	.intro-wrap .intro-img1, .intro-wrap .intro-img2 {
		opacity: 0.2;
	}
	.intro-wrap.about-wrap, .intro-wrap {
	    padding: 45px 0 45px;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 {
		font-size: 3rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 span {
		font-size: 2rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 2.5rem;
	}
}
@media only screen and (max-width: 575px) {
	.top_bar .col-lg-12 {
		padding: 0;
	}
	h2, .h2 {
	    font-size: 30px;
	}
	h3, .h3, .footer-widget h3 {
	    font-size: 26px;
	}
	h4, .h4 {
	    font-size: 22px;
	}
	h5, .h5 {
	    font-size: 20px;
	}
	header .header-logo {
		padding: 0px 2px 5px;    
		width: 42%;
	}
	.intro-subwrap {
	    padding: 0 0px;
	}
	.events-area .pr-56 {
	    padding-right: 15px;
	}
	.events-area .mt-80 {
	    margin-top: 50px;
	}
	.footer-widget {
	    margin-bottom: 25px;
	}
	.footer-top {
	    padding: 50px 0 35px;
	}
	.events-area .events-img2 {
		right: 0;
	}
	.events-area .events-img1 {
		left: 0px;
	}
	.intro-wrap .intro-img2 {
		right: 0;
	}
	.intro-wrap .intro-img1, .intro-wrap .intro-img2 {
		opacity: 0.2;
	}	
	.intro-wrap {
		padding: 40px 0;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 {
		font-size: 2.8rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 span {
		font-size: 2rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 2.1rem;
	}
	.hero .wedding-announcement .married-text h4 {
		font-size: 1.3rem;
	}
	.side-menu-logo {
		width: 85%;
	}
	.facilities-wrap .img-wrap, .booking-wrap .img-wrap {
    	margin-top: 20px;
	}
	.top_bar ul {
		float: none; padding: 0; margin-right: 0; margin-top: 0px;
	}
	.top_bar ul > li {
	    margin-left: 0;
	    float: none; margin-bottom: 5px;
	}
	.top_bar ul > li a {
		padding: 0;
	}
	.top_bar ul > li a:after {
		display: none;
	}
	.top_bar {
		text-align: center; padding: 10px 0 5px;
	}
	.sec-title .title , 
	.intro-wrap .sec-title .title {
	    font-size: 2.5rem;
	}
	.events-area .events-item .events-content .title {
	    font-size: 32px;
	    line-height: 42px;
	}
	.event-steps-wrap {
    	padding: 40px 0 35px;
	}
	.pad-tb, .intro-wrap.about-wrap, .events-gallery-wrap, .booking-wrap {
		padding: 40px 0;
	}
	.breadcrumb_wrap {
	    padding: 110px 0 70px; 
	}
	.contact-info {
		padding: 40px 0 0;
	}
	.map-wrap {
	    padding: 20px 0 40px;
	}
	.contact-info-wrap {
		padding: 25px 15px;    
		min-height: auto;
	}
	.events-wrap {
		padding: 65px 0 65px;
	}
	body {
		line-height: 1.6;
	}
}	
@media only screen and (max-width: 480px) { 
	.hero .wedding-announcement .couple-name-merried-text h2 {
	    font-size: 2.6rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 span {
		font-size: 2rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 2.1rem;
	}
	.sec-title .title, .intro-wrap .sec-title .title {
	    font-size: 2rem;
	}
	.hero {
		height: calc(80vh - 90px);
	}
	.gallery-section .masonry-gallery .grid {
	    width: 50%;
	}
	ul.list-item > li {
	    margin-bottom: 8px;
	}
	.footer-top {
	    padding: 40px 0 30px;
	}
	.intro-img3 {
		margin: 15px auto 15px;
	}
	.breadcrumb_title h1 {
	    font-size: 30px;
	}
	.hero .wedding-announcement .married-text h4 {
		margin: 0 0 1.5rem;
	}
}
@media only screen and (max-width: 393px) {
	.hero .wedding-announcement .couple-name-merried-text h2 {
	    font-size: 2.4rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h2 span {
		font-size: 1.4rem;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 1.8rem;
	}
	.hero .wedding-announcement .married-text h4 {
	    font-size: 1.2rem;
	    line-height: 1.5;
	}
	.hero {
		height: calc(65vh - 0px);
	}
	.breadcrumb_title h1 {
	    font-size: 28px;
	}
	.events-area .mb-50 {
	    margin-bottom: 35px;
	}
	.events-area .mt-80 {
		margin-top: 35px;
	}
	.events-area .events-item .events-content .title {
		line-height: 38px;
	}
}
@media only screen and (max-width: 375px) {
	.sec-title .title, .intro-wrap .sec-title .title {
	    font-size: 1.8rem;
	}
	.events-area .events-item .events-content .title {
	    font-size: 30px;
	    line-height: 35px;
	}
	.breadcrumb_wrap {
	    padding: 90px 0 50px;
	}
	.event-steps-wrap .single-work-process h4 {
		font-size: 24px;
	}
	.card-header {
	    padding: 0.75rem 1rem;
	}
}
@media only screen and (max-width: 360px) { 
	.hero .wedding-announcement .couple-name-merried-text h2 {
	    font-size: 2.1rem;
	}
	.hero .wedding-announcement .married-text h4 {
		padding: 10px 5px;
	}
	.hero {
	    height: calc(60vh - 0px);
	}
	.txt {
	    padding-left: 22px;
	}
	.breadcrumb_title h1 {
	    font-size: 24px;
	}
}
@media only screen and (max-width: 320px) { 
	.top_bar ul > li a {
		font-size: 16px;
	}
	.events-area .events-item .events-content .title {
	    font-size: 26px;
	    line-height: 32px;
	}
	.contact-info-wrap {
	    padding: 20px 5px;
	}
	.hero .wedding-announcement .couple-name-merried-text h3 {
	  font-size: 1.7rem;
	}
}