@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Loveme - Wedding & Wedding Planner HTML5 Template (adapted)
Version:        1.0.0

Crown Jewel Parties, 2026-07-30: the unused parts of the theme demo were
removed - 1,157 rule blocks, 538 KB -> 238 KB. Specifically the 12-palette
colour switcher (.color2-.color12, 224 KB on its own - eleven near-identical
copies of every colour in the theme, applied by a .color-switcher-wrap widget
that exists in no file here), plus the shop/cart/checkout, blog/single-post/
comments and team-page sections.

A rule was removed only where EVERY comma-part of its selector sat under a
container class verified absent from all markup, all vendor stylesheets and all
JS string literals - so nothing a library injects at runtime could be affected.
The TABLE OF CONTENTS below is the theme original and now has gaps where those
sections were. Backup: ~/backups/css-cull-20260730/
NOTE: .wpo-event-section was NOT removed - /work-with-us/ reuses it.
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 topbar
	2.2 navigation

3. content
	3.1 wpo-hero-slider
	3.2 wpo-partners-section
	3.3 wpo-service-section
	3.4 wpo-video-section
	3.5 wpo-fun-fact-section
	3.6 wpo-portfolio-section
	3.7 wpo-testimonials-section
	3.8 wpo-product-section
	3.9 wpo-cta-section
	3.10 wpo-pricing-section
	3.11 wpo-banner-section
	3.12 wpo-contact-section
	3.13 wpo-blog-section

4. wpo-footer

5. Home-style-2
   5.1 wpo-about-section
   5.2 wpo-service-section-s2
   5.3 wpo-fun-fact-section-s2
   5.4 wpo-team-section
   5.5 wpo-cta-section-s2
   5.6 wpo-blog-section-s2
   5.7 wpo-partners-section-s2

 6. Home-style-3 
  6.1 wpo-wedding-date
	6.2 couple-section
	6.3 wpo-video-section-s2
	6.4 story-section
	6.5 wpo-portfolio-section-s2
	6.6 wpo-cta-section-s3
	6.7 wpo-event-section
	6.8 wpo-partners-section-s3
	6.9 wpo-blog-section-s2

 7. Home-style-4
    7.1 wpo-portfolio-section-s3

 8. Home-style-7
	8.1 wpo-product-section-s2
	8.2 wpo-category-section
	8.3 wpo-product-section-s3
	8.4 wpo-offer-banner-section

9. wpo-about-section

10. wpo-service-single

11. coming-soon-section

12. wpo-cart-page-style

13. wpo-checkout-page-style

14. wpo-shop-page

15. wpo-shop-single-page

16. wpo-team-single

17. wpo-portfolio-single-section

18. wpo-blog-pg-section

19. wpo-blog-single-section

20. wpo-contact-pg-section

21. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
/* Fonts are declared with <link> in includes/header.php (Dongle + Cinzel Decorative)
   and Cloudflare Fonts rewrites those to self-hosted /cf-fonts/ URLs.
   Do NOT add @import here. Cloudflare rewrites HTML only, never CSS, so an @import
   escapes that optimisation and adds a blocking round-trip to fonts.googleapis.com
   that the browser cannot even discover until this file has downloaded and parsed.
   Removed 2026-07-30: @import of Cinzel Decorative (a duplicate of the <link>) and
   of Cinzel, whose 4 weights were fetched for a single rule that sets font-family
   on a Fillout <iframe> wrapper — where it can never render any text. */
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Demi.woff2") format("woff2"), url("../fonts/FuturaPT-Demi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Heavy.woff2") format("woff2"), url("../fonts/FuturaPT-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Medium.woff2") format("woff2"), url("../fonts/FuturaPT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* 1.1	Theme Reset Style */
html {
  font-size: 15px;
}
:root {
  scroll-behavior: unset;
}
body {
  font-family: "Dongle", sans-serif;
  color: #848892;
  background-color: #fff;
  font-size: 15px;
  font-size: 1rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
p {
  font-family: "Dongle";
  font-style: normal;
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 20px;
}
h1, h2, h3, h4, h5, h6 {
  color: #002642;
  font-family: "Dongle";
  font-weight: 600;
}
ul {
  padding-left: 0;
  margin: 0;
}
a {
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
}
.wpo-box-style {
  padding: 0 60px;
}
@media (max-width: 991px) {
  .wpo-box-style {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .wpo-box-style {
    padding: 0 0px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1170px;
  }
}
.hidden {
  display: none;
}
.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}
/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}
.wow {
  visibility: hidden;
}
.fi:before {
  margin: 0;
}
.section-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}
/* Section Spacing Utility */
.section-spacing {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .section-spacing {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .section-spacing {
    margin-bottom: 30px;
  }
}
/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
.contact-validation-active label.error {
  color: red;
  font-size: 0.9333333333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}
.contact-validation-active #c-loader, .contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}
.contact-validation-active #c-loader i, .contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #ffabce;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
.contact-validation-active #success, .contact-validation-active #c-success, .contact-validation-active #c-error, .contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-validation-active #success, .contact-validation-active #c-success, .contact-validation-active #c-error, .contact-validation-active #error {
    font-size: 15px;
  }
}
.contact-validation-active #c-success, .contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-validation-active #c-error, .contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}
@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}
/*** back to top **/
.back-to-top {
  background-color: #b76789;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #ffabce;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-to-top:hover {
  background-color: #ffabce;
}
.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/*** WhatsApp button **/
.whatsapp-button {
  background-color: #ffabce;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, .5);
  position: fixed;
  z-index: 999;
  left: 15px;
  bottom: 15px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  text-decoration: none;
}
@media (max-width: 991px) {
  .whatsapp-button {
    width: 58px;
    height: 58px;
    padding: 10px;
  }
}
.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, .6);
}
.whatsapp-button svg {
  pointer-events: none;
  display: block;
  height: 40px;
  width: 40px;
}
@media (max-width: 991px) {
  .whatsapp-button svg {
    height: 35px;
    width: 35px;
  }
}
/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}
.fancybox-wrap {
  z-index: 99999 !important;
}
.wpo-section-title, .wpo-section-title-s2 {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .wpo-section-title, .wpo-section-title-s2 {
    margin-bottom: 80px;
  }
}
.wpo-section-title span, .wpo-section-title-s2 span {
  font-size: 25px;
  color: #FFABCE;
  letter-spacing: 1px;
}
@media (max-width: 575px) {
  .wpo-section-title-s2 span {
    font-size: 16px;
  }
}
.wpo-section-title h2, .wpo-section-title-s2 h2 {
  font-size: 40px;
  line-height: 55px;
  margin: 0;
  margin: 15px 0;
  position: relative;
  font-family: 'Cinzel Decorative';
  font-weight: 500;
}
@media (max-width: 767px) {
  .wpo-section-title h2, .wpo-section-title-s2 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .wpo-section-title h2, .wpo-section-title-s2 h2 {
    font-size: 22px;
  }
}
.wpo-section-title p, .wpo-section-title-s2 p {
  font-size: 18px;
}
.wpo-section-title .section-title-img, .wpo-section-title-s2 .section-title-img {
  max-width: 200px;
  margin: 0 auto;
  position: relative;
}
.wpo-section-title .section-title-img::before, .wpo-section-title .section-title-img::after, .wpo-section-title-s2 .section-title-img::before, .wpo-section-title-s2 .section-title-img::after {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 100px;
  height: 1px;
  /* background: #ffabce; */
}
@media (max-width: 575px) {
  .wpo-section-title .section-title-img::before, .wpo-section-title .section-title-img::after, .wpo-section-title-s2 .section-title-img::before, .wpo-section-title-s2 .section-title-img::after {
    width: 60px;
    left: -20px;
  }
}
.wpo-section-title .section-title-img::after, .wpo-section-title-s2 .section-title-img::after {
  right: -70px;
  left: auto;
}
@media (max-width: 575px) {
  .wpo-section-title .section-title-img::after, .wpo-section-title-s2 .section-title-img::after {
    right: -20px;
  }
}
.wpo-section-title-s2 .section-title-img .round-ball {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #ffabce;
  border-radius: 50%;
  transform: translateX(-50%);
  top: -5px;
}
.wpo-section-title-s2 .section-title-img:after, .wpo-section-title-s2 .section-title-img:before {
  width: 144px;
}
@media (max-width: 575px) {
  .wpo-section-title-s2 .section-title-img:after, .wpo-section-title-s2 .section-title-img:before {
    width: 80px;
  }
}
.theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4 {
  background: #FFABCE;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 27px;
  font-family: 'Dongle';
  /* font-size: 1.0666666667rem; */
  transition: all 0.3s;
}
.theme-btn:after, .view-cart-btn:after, .theme-btn-s3:after, .theme-btn-s4:after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #FFABCE;
  z-index: -1;
  transition: all 0.3s;
}
.theme-btn.theme-btn-s3, .theme-btn-s3.theme-btn-s3, .theme-btn-s4.theme-btn-s3 {
  background: #FFABCE;
  padding-top: 3px;
  padding-bottom: 3px;
  letter-spacing: 1px;
  font-family: 'Dongle';
}
.theme-btn.theme-btn-s3:after, .theme-btn-s3.theme-btn-s3:after, .theme-btn-s4.theme-btn-s3:after {
  border: 1px solid #FFABCE;
}
.theme-btn.theme-btn-s4, .theme-btn-s3.theme-btn-s4, .theme-btn-s4.theme-btn-s4 {
  background: #ffabce;
  color: #fff;
}
.theme-btn.theme-btn-s4:after, .theme-btn-s3.theme-btn-s4:after, .theme-btn-s4.theme-btn-s4:after {
  border: 1px solid #ffabce;
}
.theme-btn:hover, .view-cart-btn:hover, .theme-btn:focus, .view-cart-btn:focus, .theme-btn:active, .view-cart-btn:active, .theme-btn-s3:hover, .theme-btn-s3:focus, .theme-btn-s3:active, .theme-btn-s4:hover, .theme-btn-s4:focus, .theme-btn-s4:active {
  background: #ffabce;
  color: #fff;
}
.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn:focus:after, .view-cart-btn:focus:after, .theme-btn:active:after, .view-cart-btn:active:after, .theme-btn-s3:hover:after, .theme-btn-s3:focus:after, .theme-btn-s3:active:after, .theme-btn-s4:hover:after, .theme-btn-s4:focus:after, .theme-btn-s4:active:after {
  border: 1px solid #ffabce;
}
.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn-s3:hover:after, .theme-btn-s4:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4 {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4 {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.theme-btn-s2 {
  background: #f7fefa;
  color: #002642;
  display: inline-block;
  font-weight: 600;
  padding: 15px 45px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-size: 1.0666666667rem;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
  background: #7694ac;
  color: #fff;
}
@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}
.theme-btn-s4:hover {
  background: #7391aa;
}
.theme-btn-s4:hover:after {
  border: 1px solid #7391aa;
}
.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
  background: #ffabce;
  color: #fff;
}
.view-cart-btn:after {
  display: none;
}
.view-cart-btn:hover {
  background-color: #6d8ca7;
}
.view-cart-btn.s1 {
  background: rgba(134, 160, 182, 0.2);
  color: #738ea5;
}
/* Custom Overrides for Project Pages */
.wpo-section-title-s2 h2 {
  font-size: 40px;
  line-height: 55px;
  margin: 15px 0;
  position: relative;
  text-transform: uppercase;
  font-family: "Dongle", sans-serif;
  font-weight: 500;
  color: #FFABCE;
}
.character-title h4 {
  font-family: "Dongle", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #848892;
  margin-top: 15px;
}
/* Round Ball Section Title Style Overrides */
.wpo-section-title-s2 .section-title-img {
  max-width: 200px;
  margin: 0 auto;
  position: relative;
}
.wpo-section-title-s2 .section-title-img::before {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 144px;
  height: 1px;
  background-color: #ffabce;
}
.wpo-section-title-s2 .section-title-img::after {
  position: absolute;
  right: -70px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 144px;
  height: 1px;
  background-color: #ffabce;
}
.wpo-section-title-s2 .section-title-img .round-ball {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #ffabce;
  border-radius: 50%;
  transform: translateX(-50%);
  top: -5px;
}
.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}
.form input, .form textarea, .form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: #ffabce;
  -o-box-shadow: 0 0 5px 0 #a6b9c9;
  -ms-box-shadow: 0 0 5px 0 #a6b9c9;
  box-shadow: 0 0 5px 0 #a6b9c9;
}
.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}
.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}
.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}
.form ::-moz-placeholder {
  font-style: normal;
}
.form ::placeholder {
  font-style: normal;
}
.social-links {
  overflow: hidden;
}
.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}
.social-links li a {
  background-color: #a6b9c9;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #ffabce;
}
.wpo-breadcumb-area {
  background: url(../images/breadcrumb.jpg) no-repeat center top/cover;
  min-height: 150px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
  display: inline-block;
  padding: 0px 5px;
  color: #002642;
  position: relative;
  font-size: 20px;
}
@media (max-width: 767px) {
  .wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
    font-size: 18px;
  }
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:after {
  content: "/";
  position: relative;
  left: 7px;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:last-child span {
  color: #002642;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:last-child:after {
  display: none;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a {
  color: #002642;
  font-size: 20px;
  transition: all 0.3s;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a:hover {
  color: #ffabce;
}
.wpo-page-title {
  background: url(/assets/images/page-title.webp) no-repeat center top/cover;
  min-height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 767px) {
  .wpo-page-title {
    min-height: 250px;
  }
}
.wpo-page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #083051;
  content: "";
  z-index: -1;
  opacity: 0.4;
}
.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
}
.wpo-page-title .wpo-breadcumb-wrap h1,
.wpo-page-title .wpo-breadcumb-wrap h2 {
  font-size: 60px;
  color: #fff;
  font-family: 'Cinzel Decorative', sans-serif;
  line-height: 60px;
  margin-bottom: 20px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h1,
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    margin-bottom: 10px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}
.wpo-page-title .wpo-breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Futura PT";
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 18px;
  }
}
.wpo-page-title .wpo-breadcumb-wrap ol li:after {
  content: "/";
  position: relative;
  left: 7px;
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}
.wpo-page-title .wpo-breadcumb-wrap ol li:last-child:after {
  display: none;
}
.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}
.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #ffabce;
}
/* Corrected class name for enquiry-form page */
.wpo-page-title .wpo-breadcrumb-wrap {
  text-align: center;
}
.wpo-page-title .wpo-breadcrumb-wrap h1,
.wpo-page-title .wpo-breadcrumb-wrap h2 {
  font-size: 60px;
  color: #fff;
  font-family: 'Cinzel Decorative', sans-serif;
  line-height: 60px;
  margin-bottom: 20px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcrumb-wrap h1,
  .wpo-page-title .wpo-breadcrumb-wrap h2 {
    margin-bottom: 10px;
  }
}
.wpo-page-title .wpo-breadcrumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}
.wpo-page-title .wpo-breadcrumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-family: "Futura PT";
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcrumb-wrap ol li {
    font-size: 18px;
  }
}
.wpo-page-title .wpo-breadcrumb-wrap ol li:after {
  content: "/";
  position: relative;
  left: 7px;
}
.wpo-page-title .wpo-breadcrumb-wrap ol li:last-child span {
  color: #cbd4fd;
}
.wpo-page-title .wpo-breadcrumb-wrap ol li:last-child:after {
  display: none;
}
.wpo-page-title .wpo-breadcrumb-wrap ol li a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}
.wpo-page-title .wpo-breadcrumb-wrap ol li a:hover {
  color: #ffabce;
}
.preloader {
  background-color: #ffabce;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  overflow: hidden;
}
.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0;
}
.preloader * {
  transition: all 0.3s;
}
.preloader .preloader-crown {
  max-width: 300px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: gentle-pulse 1.5s ease-in-out infinite;
}
@keyframes gentle-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
@media (max-width: 767px) {
  .preloader .preloader-crown {
    max-width: 200px;
  }
}
.preloader #particles-background, .preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}
.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.preloader [not-existing] {
  zoom: 1;
}
.preloader lesshat-selector {
  -lh-property: 0;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.preloader [not-existing] {
  zoom: 1;
}
/*------------------------------------
	shop sidebar
------------------------------------*/
.wpo-shop-sidebar {
  /*** search-widget ***/
  /*** widget_price_filter ***/
  /*** widget_product_categories ***/
}
@media (max-width: 991px) {
  .wpo-shop-sidebar {
    margin-top: 50px;
  }
}
.wpo-shop-sidebar .widget h3 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.5em;
  position: relative;
  text-transform: none;
  text-transform: uppercase;
  font-family: "Dongle", sans-serif;
}
.wpo-shop-sidebar > .widget + .widget {
  margin-top: 65px;
}
.wpo-shop-sidebar .search-widget form div {
  position: relative;
}
.wpo-shop-sidebar .search-widget input {
  font-size: 14px;
  font-size: 0.9333333333rem;
  width: 100%;
  height: 60px;
  border: 1px solid #e4ebf2;
  padding: 10px;
}
.wpo-shop-sidebar .search-widget input:focus {
  outline: none;
  border-color: #ffabce;
}
.wpo-shop-sidebar .search-widget form button {
  background-color: #ffabce;
  color: #fff;
  padding: 0;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 0;
  width: 60px;
  height: 60px;
}
.wpo-shop-sidebar .search-widget form button i {
  font-size: 18px;
  font-size: 1.2rem;
}
.wpo-shop-sidebar .widget_product_categories, .wpo-shop-sidebar .woocommerce-widget-layered-nav {
  font-family: "Dongle", sans-serif;
}
.wpo-shop-sidebar .widget_product_categories .product-categories a, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list a, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories a, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list a {
  color: #6e6e6e;
}
.wpo-shop-sidebar .widget_product_categories .product-categories, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories {
  list-style: none;
}
.wpo-shop-sidebar .widget_product_categories .product-categories li, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li {
  margin-top: 10px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4ebf2;
}
.wpo-shop-sidebar .widget_product_categories .product-categories li:first-child, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li:first-child, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li:first-child, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li:first-child {
  margin-top: 0;
}
.wpo-shop-sidebar .widget_product_categories .product-categories li:last-child, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li:last-child, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li:last-child, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.wpo-shop-sidebar .widget_product_categories .product-categories li a, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a {
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  position: relative;
}
.wpo-shop-sidebar .widget_product_categories .product-categories li a:hover, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a:hover, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a:hover, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a:hover {
  text-decoration: underline;
  color: #000;
}
.wpo-shop-sidebar .widget_product_categories .product-categories li a:hover:before, .wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a:hover:before, .wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a:hover:before, .wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a:hover:before {
  border-color: #000;
}
/*** widget_best-seller ***/
.widget_best-seller .wpo-best-seller-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.widget_best-seller .wpo-best-seller-item:last-child {
  margin-bottom: 0;
}
.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text {
  margin-left: 20px;
}
.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #6e6e6e;
  font-family: "Dongle", sans-serif;
}
.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text span {
  font-size: 16px;
  color: #8d8d8d;
}
.page-wrap.padding-default {
  padding: 100px 0px;
}
/*** instagram-widget ***/
.wpo-instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.wpo-instagram-widget ul li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.wpo-instagram-widget ul li img {
  width: 100%;
}
/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}
.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}
.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}
.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}
.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 600;
  color: #002642;
  background: #ebf4fc;
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1rem;
  }
}
.pagination-wrapper .pg-pagination .active a, .pagination-wrapper .pg-pagination li a:hover {
  background: #ffabce;
  border-color: #ffabce;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 1rem;
}
.pagination-wrapper-left {
  text-align: left;
}
.pagination-wrapper-right {
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}
/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
  background: #ffabce;
  padding: 0 50px;
  font-size: 16px;
  color: #e5e3e3;
  margin: 0;
}
@media (max-width: 991px) {
  .topbar {
    text-align: center;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header-style-1 {
    text-align: center;
    padding: 20px 0;
  }
}
.topbar ul {
  overflow: hidden;
  list-style: none;
  float: right;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .topbar ul {
    float: none;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.topbar ul li {
  font-size: 24px;
  float: left;
  padding: 15px 10px;
  color: #fff;
  line-height: 1em;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .topbar ul li {
    padding: 15px 10px;
  }
}
.contact-info .clearfix li a {
  align-items: center;
  text-align: center;
  padding-left: 17px;
}
.topbar .contact-info ul li a {
  color: #fff;
  top: 3px;
  position: relative;
}
.topbar .contact-info ul li a:hover {
  color: #ffabce;
}
.topbar ul li:first-child {
  padding-left: 0;
}
.topbar .contact-intro ul {
  float: left;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .topbar .contact-intro ul {
    float: none;
  }
}
@media (max-width: 1200px) {
  .topbar ul li {
    font-size: 12px;
    padding: 15px 10px;
  }
}
@media (max-width: 991px) {
  .topbar ul li {
    font-size: 13px;
  }
  .topbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .topbar ul li {
    float: left;
    border: none;
    padding: 10px 8px;
    font-size: 14px;
  }
  .topbar .contact-intro ul li a {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 180px;
    display: inline-block;
  }
}
@media (max-width: 590px) {
  .topbar ul li {
    padding: 8px 5px;
  }
  .topbar .contact-info ul li {
    float: left;
  }
  .topbar ul {
    flex-wrap: wrap;
    gap: 4px;
  }
  .topbar .contact-intro ul {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }
  .topbar .contact-info ul {
    width: 100%;
    justify-content: center;
  }
  .topbar .contact-intro ul li a {
    max-width: 150px;
  }
}
.topbar .theme-btn-s2 {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: -3px;
  color: #fff !important;
}
.topbar ul .fi {
  position: relative;
  top: 2px;
  display: inline-block;
  padding-right: 6px;
}
.topbar ul .fi:before {
  font-size: 15px;
  font-size: 1rem;
  color: #fff;
}
/* 2.2 navigation */
.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  box-shadow: 0 -5px 15px #086ad84a;
}
.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}
.wpo-site-header .navigation > .container {
  position: relative;
}
.wpo-site-header .row {
  width: 100%;
}
@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}
.wpo-site-header #navbar {
  transition: all 0.5s;
}
.wpo-site-header #navbar > ul li a:hover, .wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #ffabce;
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    justify-content: center;
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ffabce;
    content: "";
    opacity: 0;
    visibility: hidden;
    /* transition: all 0.3s; */
    /* border-radius: 3px; */
  }
  .wpo-site-header #navbar > ul > li > a:hover:before, .wpo-site-header #navbar > ul > li.current-menu-item a:before, .wpo-site-header #navbar > ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}
.wpo-site-header .container-fluid {
  padding-right: 0;
}
@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .wpo-site-header .header-right {
    right: -10px;
  }
  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}
.wpo-site-header #navbar ul {
  list-style: none;
  padding-left: 0;
  position: relative;
  top: 2px;
}
@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul {
    z-index: 101;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover, .wpo-site-header #navbar ul li.current a {
    color: #ffabce;
  }
  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .wpo-site-header .navbar-toggler .first-angle, .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }
  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }
  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }
  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .wpo-site-header .navbar-header .collapse, .wpo-site-header .navbar-toggle {
    display: block;
  }
  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
  }
  .wpo-site-header .navbar-right {
    float: none;
  }
  .wpo-site-header .navbar-nav {
    float: none;
  }
  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}
.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}
.wpo-site-header .header-right button {
  padding: 0;
  border: 0;
  outline: 0;
}
.wpo-site-header .header-right > div {
  float: left;
  position: relative;
  margin-right: 8px;
}
.wpo-site-header .header-right .close-form .theme-btn, .wpo-site-header .header-right .close-form .view-cart-btn {
  padding: 10px 25px;
}
@media (max-width: 1400px) {
  .wpo-site-header .header-right .close-form .theme-btn, .wpo-site-header .header-right .close-form .view-cart-btn {
    padding: 10px 15px;
    font-size: 15px;
  }
}
@media (max-width: 450px) {
  .wpo-site-header .header-right > div {
    margin-right: 10px;
  }
  .wpo-site-header .header-right {
    /* right: -30px; */
  }
}
.wpo-site-header .header-right > div:last-child {
  margin: 0 0 0 10px;
  position: relative;
}
@media (max-width: 767px) {
  .wpo-site-header .header-right > div:last-child {
    margin: 3px 0 0 10px;
  }
}
.wpo-site-header .header-right .header-search-form-wrapper {
  position: relative;
}
.wpo-site-header .header-right .header-search-form-wrapper .fi:before {
  font-size: 18px;
}
@media (max-width: 450px) {
  .wpo-site-header .header-right .cart-toggle-btn {
    display: none;
  }
}
.wpo-site-header .header-right .search-toggle-btn, .wpo-site-header .header-right .cart-toggle-btn {
  color: #002642;
  background: none;
}
.wpo-site-header .header-right .search-toggle-btn .fi:before, .wpo-site-header .header-right .cart-toggle-btn .fi:before {
  font-size: 25px;
}
.wpo-site-header .header-right .search-toggle-btn .ti-close, .wpo-site-header .header-right .cart-toggle-btn .ti-close {
  display: block;
  line-height: 20px;
  position: relative;
  top: -2px;
}
.wpo-site-header .header-right .search-toggle-btn .fi:before {
  font-size: 20px;
}
/*** cart-search-contact ***/
.cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}
.cart-search-contact .fi {
  font-size: 30px;
  font-size: 2rem;
  color: #002642;
}
.cart-search-contact > div {
  float: left;
  position: relative;
}
.cart-search-contact > div + div {
  margin-left: 12px;
}
.cart-search-contact .header-search-form {
  position: absolute;
  width: 350px;
  right: 0;
  top: 75px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px #999999;
}
@media (max-width: 991px) {
  .cart-search-contact .header-search-form {
    top: 65px;
  }
}
@media (max-width: 767px) {
  .cart-search-contact .header-search-form {
    right: 15px;
  }
}
@media (max-width: 575px) {
  .cart-search-contact .header-search-form {
    width: 260px;
    padding: 15px;
  }
}
.cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 18px;
  font-size: 1.2rem;
}
.cart-search-contact form div {
  position: relative;
}
.cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.cart-search-contact form div button .fi:before {
  font-size: 18px !important;
}
.cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ebebeb;
}
.cart-search-contact input:focus {
  box-shadow: none;
  border-color: #ffabce;
}
.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: scale(1);
}
.mini-cart .cart-count {
  background: #ffabce;
  width: 19px;
  height: 19px;
  font-size: 10px;
  font-size: 0.5333333333rem;
  line-height: 17px;
  color: white;
  position: absolute;
  top: -2px;
  right: -5px;
  border-radius: 50%;
  font-weight: 600;
}
.mini-cart-content-toggle, .mini-wislist-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}
@media (max-width: 991px) {
  .page-wrapper {
    transition: all 0.3s;
  }
  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.3s;
  }
}
.header-search-area {
  background: #fff;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
.header-search-area h3 {
  font-size: 45px;
  margin: 0 0 1em;
}
.header-search-area form {
  position: relative;
}
.header-search-area input {
  height: 50px;
  font-size: 18px;
  font-size: 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  box-shadow: none;
}
.header-search-area input:focus {
  box-shadow: none;
  border-color: #ffabce;
}
.header-search-area form button {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-size: 1.33333rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.header-search-area form button:focus {
  border: none;
  outline: none;
}
.header-search-area .close-form {
  position: absolute;
  right: 35px;
  top: 35px;
  bottom: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}
.header-search-area .close-form button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-size: 0.86667rem;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  z-index: 99;
}
.header-search-area .close-form button:focus {
  border: 0;
  outline: 0;
}
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  background-color: #fff;
}
.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.wpo-site-header .navigation > .container {
  position: relative;
}
@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}
.wpo-site-header #navbar {
  transition: all 0.5s;
}
.wpo-site-header #navbar > ul li a:hover, .wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #7694ac;
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a {
    font-size: 16px;
    padding: 35px 20px;
    display: block;
    color: #232f4b;
    font-weight: 600;
    position: relative;
    font-family: "Futura PT";
    text-transform: uppercase;
  }
}
@media screen and (min-width: 992px) and (max-width: 1870px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 35px 18px;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 240px;
    position: absolute;
    padding: 20px;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    font-size: 1.0666666667rem;
    display: inline-block;
    padding: 5px 0px;
    color: #002642;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    transition: all 0.5s;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 0px;
    bottom: 5px;
    width: 0px;
    height: 1px;
    content: "";
    background: #ffabce;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a.active {
    color: #002642;
    font-weight: 700;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:hover:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 120%;
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children:before {
    font-family: "themify";
    content: "";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 110%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li {
    position: relative;
    display: block;
    width: 100%;
  }
  .wpo-site-header #navbar > ul > li a {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
    padding: 16px 30px;
    position: relative;
    z-index: 10;
    width: 100%;
    text-decoration: none;
    line-height: 0.5;
  }
  .wpo-site-header #navbar > ul > li.current-menu-item > a,
  .wpo-site-header #navbar > ul > li.current_page_item > a {
    background: #fff !important;
    color: #ffabce !important;
    font-weight: 700 !important;
  }
  .wpo-site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children {
    position: relative;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:hover, .wpo-site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate {
    color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header .open-btn {
    display: none;
  }
  .wpo-site-header #navbar .close-navbar {
    display: none;
  }
}
.wpo-site-header .menu-close {
  display: none;
}
@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .container {
    width: 100%;
  }
  .wpo-site-header .mobile-menu button {
    background-color: #ffabce;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    outline: 0;
    position: relative;
    z-index: 20;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .wpo-site-header .mobile-menu button:focus {
    outline: none;
    box-shadow: none;
  }
  .wpo-site-header .mobile-menu button .icon-bar {
    background-color: #fff !important;
    width: 22px !important;
    display: block !important;
    height: 2px !important;
    margin: 0 !important;
  }
  .wpo-site-header .mobile-menu button span:not(.sr-only) {
    background-color: #fff;
    width: 22px;
    display: block;
    height: 2px;
  }
  .wpo-site-header #navbar {
    background: #ffabce;
    display: block !important;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }
  .wpo-site-header #navbar > ul {
    position: relative;
    z-index: 101;
    padding-top: 90px;
    margin: 0;
    list-style: none;
  }
  .wpo-site-header #navbar > ul > li:first-child {
    margin-top: 30px;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover, .wpo-site-header #navbar ul li.current a {
    color: #ffabce;
  }
  .wpo-site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }
  .wpo-site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }
  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .wpo-site-header .menu-close {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    height: 44px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .wpo-site-header .menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
  }
  .wpo-site-header .menu-close svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .wpo-site-header .menu-close .close-text {
    line-height: 1;
  }
  .wpo-site-header .menu-close svg,
  .wpo-site-header .menu-close svg *,
  .wpo-site-header .menu-close .close-text {
    pointer-events: none;
  }
  .wpo-site-header .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .wpo-site-header .navbar-toggler .first-angle, .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }
  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }
  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}
.wpo-site-header .navbar-header .navbar-brand img {
  max-width: 119px;
}
@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }
  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .wpo-site-header .navbar-header .collapse, .wpo-site-header .navbar-toggle {
    display: block;
  }
  .wpo-site-header .navbar-header {
    float: none;
  }
  .wpo-site-header .navbar-right {
    float: none;
  }
  .wpo-site-header .navbar-nav {
    float: none;
  }
  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}
@media (max-width: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 119px;
  }
}
@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 98px;
  }
}
@media (max-width: 1500px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 15px;
  }
}
@media (max-width: 1400px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 10px;
  }
}
@media (max-width: 1200px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 6px;
    font-size: 16px;
  }
  .wpo-site-header .header-right .theme-btn, .wpo-site-header .header-right .view-cart-btn {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .header-right .theme-btn, .header-right .view-cart-btn {
    /* padding: 20px 12px; */
  }
  .wpo-site-header .header-right .close-form {
    display: none;
  }
}
.wpo-header-style-2 {
  position: absolute;
  left: 3%;
  width: 94%;
  z-index: 99;
  background: #fff;
  top: 30px;
}
@media (max-width: 767px) {
  .wpo-header-style-2 {
    left: 2%;
    width: 96%;
    top: 10px;
  }
}
.wpo-header-style-2 .navigation {
  background: transparent;
}
.wpo-header-style-2 .navigation.sticky-on {
  background: #fff;
}
.wpo-header-style-2 #navbar > ul > li > a {
  color: #002642;
}
.wpo-header-style-2 .header-right .cart-toggle-btn .fi, .wpo-header-style-2 .header-right .search-toggle-btn .fi {
  color: #002642;
}
.wpo-header-style-3 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.1);
}
.wpo-header-style-3 .navigation {
  background: rgba(255, 255, 255, 0.1);
}
.wpo-header-style-3 .navigation.sticky-on {
  background: #738ea5;
}
.wpo-header-style-3 #navbar > ul > li > a {
  color: #fff;
}
@media (min-width: 991px) {
  .wpo-header-style-3 #navbar > ul > li > a:before {
    background: #fff;
  }
}
.wpo-header-style-3 #navbar > ul > li > a:hover, .wpo-header-style-3 #navbar > ul > li > a:focus {
  color: #fff;
}
.wpo-header-style-3 .header-right .cart-toggle-btn .fi, .wpo-header-style-3 .header-right .search-toggle-btn .fi {
  color: #fff;
}
@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 15px 30px;
  }
}
@media (max-width: 991px) {
  .wpo-site-header, .wpo-header-style-2 {
    z-index: 99999;
  }
}
.wpo-site-header .navigation.sticky-header {
  padding: 0 80px;
}
@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 0px;
  }
}
@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    /* padding: 0 20px; */
  }
}
@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px 10px;
  }
}
/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
/* Hero background wrapper with Bg-2.png */
.hero-bg-wrap {
  width: 100%;
  height: 1003px;
  margin: 0 auto;
  position: relative;
  background: url("../images/slider/Bg-2.png");
  padding: 0 60px 103px 60px;
  overflow: hidden;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-wrap .wpo-hero-slider {
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
}
.wpo-hero-slider, .static-hero, .wpo-hero-slider-s2, .wpo-hero-slider-s3 {
  width: 100%;
  height: 900px;
  display: flex;
  position: relative;
  z-index: 0;
}
.elementor-14 {
  padding: 300px 0px 300px 0px;
}
@media (max-width: 1024px) {
  .hero-bg-wrap {
    padding: 0px 0px 0px 0px;
    background: none;
  }
}
@media (max-width: 991px) {
  .hero-bg-wrap {
    width: 100%;
    height: 600px;
    padding: 0 30px 60px 30px;
  }
  .wpo-hero-slider, .static-hero, .wpo-hero-slider-s2, .wpo-hero-slider-s3 {
    height: 600px;
  }
}
/* Full width at 768px screen */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-bg-wrap {
    padding: 0 !important;
  }
  .hero-bg-wrap .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .hero-bg-wrap {
    width: 100%;
    height: 500px;
    padding: 0 20px 40px 20px;
  }
  .wpo-hero-slider, .static-hero, .wpo-hero-slider-s2, .wpo-hero-slider-s3 {
    height: 500px;
  }
}
/* Full width at 425px and small screens */
@media (max-width: 425px) {
  .hero-bg-wrap {
    padding: 0 !important;
  }
  .hero-bg-wrap .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.wpo-hero-slider .swiper-slide, .static-hero .swiper-slide, .wpo-hero-slider-s2 .swiper-slide, .wpo-hero-slider-s3 .swiper-slide {
  overflow: hidden;
}
.wpo-hero-slider .swiper-container, .wpo-hero-slider .hero-container, .static-hero .swiper-container, .static-hero .hero-container, .wpo-hero-slider-s2 .swiper-container, .wpo-hero-slider-s2 .hero-container, .wpo-hero-slider-s3 .swiper-container, .wpo-hero-slider-s3 .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.wpo-hero-slider .slide-inner, .wpo-hero-slider .hero-inner, .static-hero .slide-inner, .static-hero .hero-inner, .wpo-hero-slider-s2 .slide-inner, .wpo-hero-slider-s2 .hero-inner, .wpo-hero-slider-s3 .slide-inner, .wpo-hero-slider-s3 .hero-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;
}
.wpo-hero-slider .slide-inner:before, .wpo-hero-slider .hero-inner:before, .static-hero .slide-inner:before, .static-hero .hero-inner:before, .wpo-hero-slider-s2 .slide-inner:before, .wpo-hero-slider-s2 .hero-inner:before, .wpo-hero-slider-s3 .slide-inner:before, .wpo-hero-slider-s3 .hero-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00315f;
  content: "";
  opacity: 0.25;
  z-index: -1;
}
.wpo-hero-slider .slide-inner .slide-content, .wpo-hero-slider .hero-inner .slide-content, .static-hero .slide-inner .slide-content, .static-hero .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content, .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s3 .slide-inner .slide-content, .wpo-hero-slider-s3 .hero-inner .slide-content {
  padding: 60px 70px;
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
  background: #ffabcea8;
  position: relative;
}
@media (max-width: 1199px) {
  .wpo-hero-slider .slide-inner .slide-content, .wpo-hero-slider .hero-inner .slide-content, .static-hero .slide-inner .slide-content, .static-hero .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content, .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s3 .slide-inner .slide-content, .wpo-hero-slider-s3 .hero-inner .slide-content {
    max-width: 800px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-slider .slide-inner .slide-content, .wpo-hero-slider .hero-inner .slide-content, .static-hero .slide-inner .slide-content, .static-hero .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content, .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s3 .slide-inner .slide-content, .wpo-hero-slider-s3 .hero-inner .slide-content {
    max-width: 530px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider .slide-inner .slide-content, .wpo-hero-slider .hero-inner .slide-content, .static-hero .slide-inner .slide-content, .static-hero .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content, .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s3 .slide-inner .slide-content, .wpo-hero-slider-s3 .hero-inner .slide-content {
    max-width: 385px;
    padding: 80px 30px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-slider .slide-inner .slide-content, .wpo-hero-slider .hero-inner .slide-content, .static-hero .slide-inner .slide-content, .static-hero .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content, .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s3 .slide-inner .slide-content, .wpo-hero-slider-s3 .hero-inner .slide-content {
    padding: 30px 20px;
  }
}
.wpo-hero-slider .slide-inner .slide-content:before, .wpo-hero-slider .hero-inner .slide-content:before, .static-hero .slide-inner .slide-content:before, .static-hero .hero-inner .slide-content:before, .wpo-hero-slider-s2 .slide-inner .slide-content:before, .wpo-hero-slider-s2 .hero-inner .slide-content:before, .wpo-hero-slider-s3 .slide-inner .slide-content:before, .wpo-hero-slider-s3 .hero-inner .slide-content:before {
  position: absolute;
  left: -40px;
  top: 0;
  height: 100%;
  content: "";
  width: 60px;
  background: url(../images/slider/Sidebar-1.png) no-repeat center center;
}
@media (max-width: 575px) {
  .wpo-hero-slider .slide-inner .slide-content:before, .wpo-hero-slider .hero-inner .slide-content:before, .static-hero .slide-inner .slide-content:before, .static-hero .hero-inner .slide-content:before, .wpo-hero-slider-s2 .slide-inner .slide-content:before, .wpo-hero-slider-s2 .hero-inner .slide-content:before, .wpo-hero-slider-s3 .slide-inner .slide-content:before, .wpo-hero-slider-s3 .hero-inner .slide-content:before {
    display: none;
  }
}
.wpo-hero-slider .slide-inner .slide-content:after, .wpo-hero-slider .hero-inner .slide-content:after, .static-hero .slide-inner .slide-content:after, .static-hero .hero-inner .slide-content:after, .wpo-hero-slider-s2 .slide-inner .slide-content:after, .wpo-hero-slider-s2 .hero-inner .slide-content:after, .wpo-hero-slider-s3 .slide-inner .slide-content:after, .wpo-hero-slider-s3 .hero-inner .slide-content:after {
  position: absolute;
  right: -40px;
  top: 0;
  height: 100%;
  content: "";
  width: 60px;
  background: url(../images/slider/Sidebar-2.png) no-repeat center center;
}
@media (max-width: 575px) {
  .wpo-hero-slider .slide-inner .slide-content:after, .wpo-hero-slider .hero-inner .slide-content:after, .static-hero .slide-inner .slide-content:after, .static-hero .hero-inner .slide-content:after, .wpo-hero-slider-s2 .slide-inner .slide-content:after, .wpo-hero-slider-s2 .hero-inner .slide-content:after, .wpo-hero-slider-s3 .slide-inner .slide-content:after, .wpo-hero-slider-s3 .hero-inner .slide-content:after {
    display: none;
  }
}
.wpo-hero-slider .swiper-button-prev, .wpo-hero-slider .swiper-button-next, .static-hero .swiper-button-prev, .static-hero .swiper-button-next, .wpo-hero-slider-s2 .swiper-button-prev, .wpo-hero-slider-s2 .swiper-button-next, .wpo-hero-slider-s3 .swiper-button-prev, .wpo-hero-slider-s3 .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;
}
.wpo-hero-slider .swiper-button-prev:hover, .wpo-hero-slider .swiper-button-next:hover, .static-hero .swiper-button-prev:hover, .static-hero .swiper-button-next:hover, .wpo-hero-slider-s2 .swiper-button-prev:hover, .wpo-hero-slider-s2 .swiper-button-next:hover, .wpo-hero-slider-s3 .swiper-button-prev:hover, .wpo-hero-slider-s3 .swiper-button-next:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .wpo-hero-slider .swiper-button-prev, .wpo-hero-slider .swiper-button-next, .static-hero .swiper-button-prev, .static-hero .swiper-button-next, .wpo-hero-slider-s2 .swiper-button-prev, .wpo-hero-slider-s2 .swiper-button-next, .wpo-hero-slider-s3 .swiper-button-prev, .wpo-hero-slider-s3 .swiper-button-next {
    display: none;
  }
}
.wpo-hero-slider .swiper-button-prev, .static-hero .swiper-button-prev, .wpo-hero-slider-s2 .swiper-button-prev, .wpo-hero-slider-s3 .swiper-button-prev {
  left: 25px;
}
.wpo-hero-slider .swiper-button-prev:before, .static-hero .swiper-button-prev:before, .wpo-hero-slider-s2 .swiper-button-prev:before, .wpo-hero-slider-s3 .swiper-button-prev:before {
  font-family: "themify";
  content: "";
  font-size: 20px;
  color: #fff;
}
.wpo-hero-slider .swiper-button-next, .static-hero .swiper-button-next, .wpo-hero-slider-s2 .swiper-button-next, .wpo-hero-slider-s3 .swiper-button-next {
  right: 25px;
}
.wpo-hero-slider .swiper-button-next:before, .static-hero .swiper-button-next:before, .wpo-hero-slider-s2 .swiper-button-next:before, .wpo-hero-slider-s3 .swiper-button-next:before {
  font-family: "themify";
  content: "";
  font-size: 20px;
  color: #fff;
}
@media (max-width: 991px) {
  .wpo-hero-slider .swiper-button-prev, .wpo-hero-slider .swiper-button-next, .static-hero .swiper-button-prev, .static-hero .swiper-button-next, .wpo-hero-slider-s2 .swiper-button-prev, .wpo-hero-slider-s2 .swiper-button-next, .wpo-hero-slider-s3 .swiper-button-prev, .wpo-hero-slider-s3 .swiper-button-next {
    display: none;
  }
}
.wpo-hero-slider .swiper-pagination-bullet, .static-hero .swiper-pagination-bullet, .wpo-hero-slider-s2 .swiper-pagination-bullet, .wpo-hero-slider-s3 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 992px) {
  .wpo-hero-slider .swiper-pagination-bullet, .static-hero .swiper-pagination-bullet, .wpo-hero-slider-s2 .swiper-pagination-bullet, .wpo-hero-slider-s3 .swiper-pagination-bullet {
    display: none;
  }
}
.wpo-hero-slider .swiper-pagination-bullet-active, .static-hero .swiper-pagination-bullet-active, .wpo-hero-slider-s2 .swiper-pagination-bullet-active, .wpo-hero-slider-s3 .swiper-pagination-bullet-active {
  color: #fff;
  background: #fff;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
}
.wpo-hero-slider .swiper-container-horizontal > .swiper-pagination-bullets, .wpo-hero-slider .swiper-pagination-custom, .wpo-hero-slider .swiper-pagination-fraction, .static-hero .swiper-container-horizontal > .swiper-pagination-bullets, .static-hero .swiper-pagination-custom, .static-hero .swiper-pagination-fraction, .wpo-hero-slider-s2 .swiper-container-horizontal > .swiper-pagination-bullets, .wpo-hero-slider-s2 .swiper-pagination-custom, .wpo-hero-slider-s2 .swiper-pagination-fraction, .wpo-hero-slider-s3 .swiper-container-horizontal > .swiper-pagination-bullets, .wpo-hero-slider-s3 .swiper-pagination-custom, .wpo-hero-slider-s3 .swiper-pagination-fraction {
  bottom: 30px;
}
.wpo-hero-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .static-hero .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .wpo-hero-slider-s2 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .wpo-hero-slider-s3 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
@media (max-width: 1199px) {
  .wpo-hero-slider, .static-hero, .wpo-hero-slider-s2 {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-slider, .static-hero, .wpo-hero-slider-s2 {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider, .static-hero, .wpo-hero-slider-s2 {
    height: 500px;
  }
}
.wpo-hero-slider .gradient-overlay, .static-hero .gradient-overlay, .wpo-hero-slider-s2 .gradient-overlay {
  background: linear-gradient(left, #002642 45%, transparent 65%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0.6;
}
.wpo-hero-slider .gradient-overlay + .container, .static-hero .gradient-overlay + .container, .wpo-hero-slider-s2 .gradient-overlay + .container {
  position: relative;
  z-index: 11;
}
.wpo-hero-slider .swiper-slide, .static-hero .swiper-slide, .wpo-hero-slider-s2 .swiper-slide {
  position: relative;
  z-index: 11;
}
.wpo-hero-slider .wpo-hero-title-top span, .static-hero .wpo-hero-title-top span, .wpo-hero-slider-s2 .wpo-hero-title-top span {
  font-size: 22px;
  color: #e4e4e4;
  font-family: "Futura PT";
}
@media (max-width: 767px) {
  .wpo-hero-slider .wpo-hero-title-top span, .static-hero .wpo-hero-title-top span, .wpo-hero-slider-s2 .wpo-hero-title-top span {
    font-size: 15px;
  }
}
.wpo-hero-slider .slide-title h1, .wpo-hero-slider .slide-title h2, .static-hero .slide-title h1, .static-hero .slide-title h2, .wpo-hero-slider-s2 .slide-title h1, .wpo-hero-slider-s2 .slide-title h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 60px;
  margin: 10px 0 35px;
  color: #fff;
  font-family: "Cinzel Decorative", sans-serif !important;
}
@media (max-width: 1199px) {
  .wpo-hero-slider .slide-title h1, .wpo-hero-slider .slide-title h2, .static-hero .slide-title h1, .static-hero .slide-title h2, .wpo-hero-slider-s2 .slide-title h1, .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 40px;
    font-size: 2.6666666667rem;
  }
}
@media (max-width: 991px) {
  .wpo-hero-slider .slide-title h1, .wpo-hero-slider .slide-title h2, .static-hero .slide-title h1, .static-hero .slide-title h2, .wpo-hero-slider-s2 .slide-title h1, .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 35px;
    font-size: 2.3333333333rem;
    line-height: 55px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider .slide-title h1, .wpo-hero-slider .slide-title h2, .static-hero .slide-title h1, .static-hero .slide-title h2, .wpo-hero-slider-s2 .slide-title h1, .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 28px;
    font-size: 1.8666666667rem;
    line-height: 36px;
  }
}
.wpo-hero-slider .slide-text p, .static-hero .slide-text p, .wpo-hero-slider-s2 .slide-text p {
  font-size: 30px;
  color: #fff;
  line-height: 45px;
  max-width: 780px;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 30px;
  font-family: 'Dongle', sans-serif !important;
}
@media (max-width: 991px) {
  .wpo-hero-slider .slide-text p, .static-hero .slide-text p, .wpo-hero-slider-s2 .slide-text p {
    font-size: 18px;
    font-size: 1.2rem;
    line-height: 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider .slide-text p, .static-hero .slide-text p, .wpo-hero-slider-s2 .slide-text p {
    font-size: 16px;
    font-size: 1.0666666667rem;
    line-height: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-slider .slide-btns, .static-hero .slide-btns, .wpo-hero-slider-s2 .slide-btns {
    max-width: 400px;
  }
}
.wpo-hero-slider .slide-btns .theme-btn, .wpo-hero-slider .slide-btns .view-cart-btn, .static-hero .slide-btns .theme-btn, .static-hero .slide-btns .view-cart-btn, .wpo-hero-slider-s2 .slide-btns .theme-btn, .wpo-hero-slider-s2 .slide-btns .view-cart-btn {
  border-radius: 0;
  font-weight: 600;
  font-size: 22px;
}
.wpo-hero-slider .slide-btns .theme-btn:after, .wpo-hero-slider .slide-btns .view-cart-btn:after, .static-hero .slide-btns .theme-btn:after, .static-hero .slide-btns .view-cart-btn:after, .wpo-hero-slider-s2 .slide-btns .theme-btn:after, .wpo-hero-slider-s2 .slide-btns .view-cart-btn:after {
  border-radius: 0;
}
.wpo-hero-slider .slide-btns .hero-video-btn, .static-hero .slide-btns .hero-video-btn, .wpo-hero-slider-s2 .slide-btns .hero-video-btn {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .wpo-hero-slider .slide-btns .hero-video-btn, .static-hero .slide-btns .hero-video-btn, .wpo-hero-slider-s2 .slide-btns .hero-video-btn {
    margin-left: 20px;
  }
}
.wpo-hero-slider-s2 {
  height: 900px;
}
@media (max-width: 1199px) {
  .wpo-hero-slider-s2 {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-slider-s2 {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider-s2 {
    height: 500px;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content {
  max-width: 760px;
  position: relative;
  background: none;
  padding: 80px 70px;
}
@media (max-width: 991px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content {
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content, .wpo-hero-slider-s2 .slide-inner .slide-content {
    max-width: 450px;
    padding: 40px 50px;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content .border-1, .wpo-hero-slider-s2 .slide-inner .slide-content .border-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 67%;
  height: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-1, .wpo-hero-slider-s2 .slide-inner .slide-content .border-1 {
    width: 44%;
  }
}
@media (max-width: 450px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-1, .wpo-hero-slider-s2 .slide-inner .slide-content .border-1 {
    width: 36%;
  }
}
@media (max-width: 400px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-1, .wpo-hero-slider-s2 .slide-inner .slide-content .border-1 {
    width: 30%;
  }
}
@media (max-width: 370px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-1, .wpo-hero-slider-s2 .slide-inner .slide-content .border-1 {
    width: 15%;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content .border-2, .wpo-hero-slider-s2 .slide-inner .slide-content .border-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 67%;
  height: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-2, .wpo-hero-slider-s2 .slide-inner .slide-content .border-2 {
    width: 44%;
  }
}
@media (max-width: 450px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-2, .wpo-hero-slider-s2 .slide-inner .slide-content .border-2 {
    width: 36%;
  }
}
@media (max-width: 400px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-2, .wpo-hero-slider-s2 .slide-inner .slide-content .border-2 {
    width: 30%;
  }
}
@media (max-width: 370px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-2, .wpo-hero-slider-s2 .slide-inner .slide-content .border-2 {
    width: 15%;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content .border-3, .wpo-hero-slider-s2 .slide-inner .slide-content .border-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 70%;
  width: 1px;
  background: #fff;
}
@media (max-width: 1199px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-3, .wpo-hero-slider-s2 .slide-inner .slide-content .border-3 {
    height: 67%;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-3, .wpo-hero-slider-s2 .slide-inner .slide-content .border-3 {
    height: 41%;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content .border-4, .wpo-hero-slider-s2 .slide-inner .slide-content .border-4 {
  position: absolute;
  left: 0;
  top: 0;
  height: 70%;
  width: 1px;
  background: #fff;
}
@media (max-width: 1199px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-4, .wpo-hero-slider-s2 .slide-inner .slide-content .border-4 {
    height: 67%;
  }
}
@media (max-width: 767px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content .border-4, .wpo-hero-slider-s2 .slide-inner .slide-content .border-4 {
    height: 41%;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content .s-img-1, .wpo-hero-slider-s2 .slide-inner .slide-content .s-img-1 {
  position: absolute;
  top: -55px;
  right: 0;
}
.wpo-hero-slider-s2 .hero-inner .slide-content .s-img-2, .wpo-hero-slider-s2 .slide-inner .slide-content .s-img-2 {
  position: absolute;
  bottom: -54px;
  left: 0;
}
.wpo-hero-slider-s2 .hero-inner .slide-content:before, .wpo-hero-slider-s2 .hero-inner .slide-content:after, .wpo-hero-slider-s2 .slide-inner .slide-content:before, .wpo-hero-slider-s2 .slide-inner .slide-content:after {
  display: none;
}
.wpo-hero-slider-s2 .hero-inner .slide-content h2, .wpo-hero-slider-s2 .slide-inner .slide-content h2 {
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .wpo-hero-slider-s2 .hero-inner .slide-content h2, .wpo-hero-slider-s2 .slide-inner .slide-content h2 {
    margin-bottom: 10px;
  }
}
.wpo-hero-slider-s2 .hero-inner .slide-content p, .wpo-hero-slider-s2 .slide-inner .slide-content p {
  margin-bottom: 0;
}
/*-------------------------------------------
	hero style 1
--------------------------------------------*/
.static-hero {
  background: #edf3f8;
  height: 830px;
  display: flex;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.static-hero .hero-inner::before {
  display: none;
}
@media (max-width: 1199px) {
  .static-hero {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .static-hero {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .static-hero {
    height: 400px;
  }
}
.static-hero .slide-title {
  padding-top: 35px;
}
@media (max-width: 1440px) {
  .static-hero .slide-title {
    padding-top: 0;
  }
}
.static-hero .slide-title h2 {
  font-size: 60px;
  color: #002642;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .static-hero .slide-title h2 {
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1440px) {
  .static-hero .slide-title h2 {
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .static-hero .slide-title h2 {
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 10px;
  }
}
.static-hero .slide-title h2 span {
  color: #738ea5;
}
.static-hero .wpo-static-hero-inner {
  padding-left: 70px;
}
@media (max-width: 1750px) {
  .static-hero .wpo-static-hero-inner {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .static-hero .wpo-static-hero-inner {
    padding-left: 0px;
  }
}
.static-hero .slide-text p {
  font-size: 22px;
  color: #737373;
}
@media (max-width: 1400px) {
  .static-hero .slide-text p {
    max-width: 600px;
    margin: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .static-hero .slide-text p {
    font-size: 16px;
  }
}
.static-hero .static-hero-slide-img {
  position: relative;
  right: 0px;
  max-width: 1130px;
}
.static-hero .static-hero-slide-img img {
  border: 2px solid #fff;
}
@media (max-width: 991px) {
  .static-hero .static-hero-slide-img img {
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 1600px) {
  .static-hero .static-hero-slide-img {
    right: 0;
  }
}
@media (max-width: 767px) {
  .static-hero .static-hero-slide-img {
    display: none;
  }
}
.static-hero .static-hero-slide-img .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.static-hero .static-hero-slide-img .owl-nav [class*=owl-] {
  padding: 0;
  margin: 0;
  color: #ffabce;
  transition: all 0.3s;
  border: 0;
  background: none;
}
.static-hero .static-hero-slide-img .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
  color: #738ea5;
}
.static-hero .static-hero-slide-img .owl-nav .owl-prev, .static-hero .static-hero-slide-img .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .static-hero .static-hero-slide-img .owl-nav .owl-prev, .static-hero .static-hero-slide-img .owl-nav .owl-next {
    display: none;
  }
}
.static-hero .static-hero-slide-img .owl-nav .owl-prev {
  left: 15px;
}
.static-hero .static-hero-slide-img .owl-nav .owl-next {
  right: 15px;
}
.static-hero .static-hero-slide-img .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.static-hero .static-hero-slide-img .owl-dots button {
  width: 10px;
  height: 12px;
  border: 0;
  background: #d4e6f5;
  margin-right: 10px;
  border-radius: 50%;
}
.static-hero .static-hero-slide-img .owl-dots .owl-dot.active {
  background-color: #ffabce;
}
.static-hero .static-hero-slide-img:hover .owl-nav .owl-prev, .static-hero .static-hero-slide-img:hover .owl-nav .owl-next {
  opacity: 1;
}
@-webkit-keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
  }
  to {
    box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
  }
}
@keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
  }
  to {
    box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
  }
}
/*-------------------------------------------
	static-hero-s2
--------------------------------------------*/
.static-hero-s2 {
  background: #FFABCE26;
  /* height: 900px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .static-hero-s2 {
    height: 720px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s2 {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 {
    height: auto;
    min-height: auto;
  }
}
.static-hero-s2 .hero-inner {
  padding-top: 120px;
}
.static-hero-s2 .hero-inner .row {
  justify-content: center;
}
.static-hero-s2 .couple-area > div {
  float: left;
}
@media (max-width: 991px) {
  .static-hero-s2 .couple-area > div {
    float: none;
  }
}
.static-hero-s2 .middle-couple-pic {
  width: 651px;
  position: relative;
  height: 740px;
  bottom: -60px;
}
@media (max-width: 1399px) {
  .static-hero-s2 .middle-couple-pic {
    width: 550px;
    height: 510px;
    bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s2 .middle-couple-pic {
    width: 492px;
    height: 520px;
    bottom: -16px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .middle-couple-pic {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 30px auto;
    bottom: 0;
  }
  .static-hero-s2 .middle-couple-pic img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.static-hero-s2 .text-grid {
  width: 20%;
  padding: 140px 80px 40px;
}
@media (max-width: 1500px) {
  .static-hero-s2 .text-grid {
    padding: 70px 35px 40px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s2 .text-grid {
    width: 25%;
    padding: 70px 35px 40px;
  }
}
@media (max-width: 1199px) {
  .static-hero-s2 .text-grid {
    padding: 10px 20px 40px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .text-grid {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .text-grid {
    width: 100%;
    padding: 20px;
    text-align: center;
    order: 1;
  }
  .static-hero-s2 .text-grid.bride {
    order: 1;
  }
  .static-hero-s2 .text-grid.groom {
    order: 3;
  }
  .static-hero-s2 .middle-couple-pic {
    order: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    bottom: 0;
  }
  .static-hero-s2 .middle-couple-pic img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.static-hero-s2 .text-grid h3 {
  font-size: 32px;
  font-family: 'Cinzel Decorative', sans-serif;
  font-weight: 200;
  color: #ff88ba;
  text-align: end;
}
@media (max-width: 1199px) {
  .static-hero-s2 .text-grid h3 {
    font-size: 25px;
    font-size: 1.6666666667rem;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .text-grid p {
    max-width: 550px;
    margin: 0 auto;
  }
  .static-hero-s2 .text-grid h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .static-hero-s2 .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .static-hero-s2 .hero-inner .row {
    flex-direction: column;
    display: flex;
  }
}
.static-hero-s2 .bride {
  background-color: #eba4c636;
  padding: 20px;
}
@media (max-width: 767px) {
  .static-hero-s2 .bride {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    order: 1;
  }
}
.static-hero-s2 .bride .couple-img {
  margin-bottom: 20px;
  text-align: end;
}
.static-hero-s2 .bride .social {
  float: right;
}
@media (max-width: 767px) {
  .static-hero-s2 .bride .social {
    float: none;
    display: flex;
    justify-content: center;
  }
}
.static-hero-s2 .groom {
  height: 472px;
  background-color: #eba4c636;
  padding: 20px;
}
@media (max-width: 767px) {
  .static-hero-s2 .groom {
    height: auto;
    text-align: center;
    margin: 20px auto 0;
    order: 3;
  }
}
.static-hero-s2 .groom .couple-img {
  margin-bottom: 20px;
}
.static-hero-s2 ul {
  list-style: none;
  overflow: hidden;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .static-hero-s2 ul {
    padding-top: 10px;
    display: flex;
    justify-content: center;
  }
}
.static-hero-s2 ul li {
  float: left;
}
.static-hero-s2 ul > li + li {
  margin-left: 25px;
}
.static-hero-s2 ul li a {
  display: block;
  text-align: center;
  color: #738ea5;
}
.static-hero-s2 ul li a:hover {
  color: #ffabce;
}
.static-hero-s2 .flower-shape-1 {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  width: 284px;
  height: 323px;
}
@media (max-width: 1399px) {
  .static-hero-s2 .flower-shape-1 img {
    width: 70%;
  }
}
.static-hero-s2 .flower-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  text-align: right;
  width: 284px;
  height: 323px;
}
@media (max-width: 1399px) {
  .static-hero-s2 .flower-shape-2 img {
    width: 70%;
  }
}
.text-grid-content {
  font-size: 20px;
  font-family: 'Dongle';
  color: #000;
  font-weight: 500;
  line-height: 1.7em;
  margin: 0 0 1.5em;
  text-align: right;
}
@media (max-width: 767px) {
  .text-grid-content {
    text-align: center;
    padding: 0 10px;
    margin: 0 auto 20px;
  }
  .text-grid.groom .text-grid-content {
    text-align: center !important;
  }
}
.elementor-hidden-mobile {
  display: block;
}
@media (max-width: 767px) {
  .elementor-hidden-mobile {
    display: none !important;
  }
}
.wpo-hero-style-3 {
  position: relative;
  height: 980px;
}
@media (max-width: 1399px) {
  .wpo-hero-style-3 {
    height: 720px;
  }
}
@media (max-width: 1199px) {
  .wpo-hero-style-3 {
    height: 680px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-style-3 {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-style-3 {
    height: 800px;
  }
}
.wpo-hero-style-3 .slide-inner:before {
  opacity: 0.3;
}
.wpo-hero-style-3 .wedding-announcement {
  padding-top: 75px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  text-align: center;
  display: table;
}
@media screen and (min-width: 992px) {
  .wpo-hero-style-3 .wedding-announcement {
    width: 80%;
    left: 10%;
  }
}
.wpo-hero-style-3 .wedding-announcement .couple-text {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
.wpo-hero-style-3 .wedding-announcement .couple-text h2 {
  font-size: 100px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text h2 {
    font-size: 40px;
  }
}
.wpo-hero-style-3 .wedding-announcement .couple-text p {
  font-size: 30px;
  font-family: "Futura PT";
  color: #fff;
  font-weight: 500;
}
@media (max-width: 767px) {
  .wpo-hero-style-3 .wedding-announcement .couple-text p {
    font-size: 18px;
  }
}
.wpo-hero-style-3 .wpo-wedding-date {
  padding-top: 30px;
}
@media (max-width: 575px) {
  .wpo-hero-style-3 .wpo-wedding-date {
    padding-top: 10px;
  }
}
@media (max-width: 700px) {
  .wpo-hero-style-3 .wpo-wedding-date #clock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.wpo-hero-style-3 .wpo-wedding-date #clock > div {
  width: 180px;
  height: 163px;
  background: url("../images/clock-bg2.png") center center/cover no-repeat local;
  float: left;
  display: table;
}
@media (max-width: 1199px) {
  .wpo-hero-style-3 .wpo-wedding-date #clock > div {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .wpo-hero-style-3 .wpo-wedding-date #clock > div:last-child {
    right: 0;
  }
}
@media (max-width: 1399px) {
  .wpo-hero-style-3 .wpo-wedding-date #clock div + div {
    margin-left: 10px;
  }
}
.wpo-hero-style-3 .wpo-wedding-date #clock .time {
  color: #fff;
}
.wpo-hero-style-3 .wpo-wedding-date #clock span {
  color: #fff;
}
/*-------------------------------------------
	static-hero-s3
--------------------------------------------*/
.static-hero-s3, .static-hero-s4 {
  height: 100vh;
  min-height: 920px;
  background: url(../images/slider/slide-10.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 550px) {
  .static-hero-s3, .static-hero-s4 {
    min-height: 750px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3, .static-hero-s4 {
    min-height: 550px;
  }
}
.static-hero-s3 .hero-inner, .static-hero-s4 .hero-inner {
  padding-top: 120px;
}
.static-hero-s3 .hero-inner .row, .static-hero-s4 .hero-inner .row {
  justify-content: center;
}
.static-hero-s3 .wpo-event-item, .static-hero-s4 .wpo-event-item {
  padding: 20px;
  position: relative;
  margin-bottom: 40px;
  background: url(../images/slider/frame.png) no-repeat center center;
  width: 530px;
  height: 730px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  background-size: contain;
}
@media (max-width: 550px) {
  .static-hero-s3 .wpo-event-item, .static-hero-s4 .wpo-event-item {
    width: 420px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .wpo-event-item, .static-hero-s4 .wpo-event-item {
    width: 310px;
  }
}
.static-hero-s3 .wpo-event-item .wpo-event-text, .static-hero-s4 .wpo-event-item .wpo-event-text {
  padding: 40px 35px;
  text-align: center;
}
@media (max-width: 1200px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text, .static-hero-s4 .wpo-event-item .wpo-event-text {
    padding: 25px 15px;
  }
}
.static-hero-s3 .wpo-event-item .wpo-event-text h2, .static-hero-s4 .wpo-event-item .wpo-event-text h2 {
  font-size: 60px;
  font-weight: 500;
}
@media (max-width: 550px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text h2, .static-hero-s4 .wpo-event-item .wpo-event-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text h2, .static-hero-s4 .wpo-event-item .wpo-event-text h2 {
    font-size: 25px;
  }
}
.static-hero-s3 .wpo-event-item .wpo-event-text p, .static-hero-s4 .wpo-event-item .wpo-event-text p {
  font-size: 20px;
  color: #5c778e;
}
@media (max-width: 550px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text p, .static-hero-s4 .wpo-event-item .wpo-event-text p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.static-hero-s3 .wpo-event-item .wpo-event-text ul, .static-hero-s4 .wpo-event-item .wpo-event-text ul {
  list-style: none;
  max-width: 260px;
  margin: auto;
}
.static-hero-s3 .wpo-event-item .wpo-event-text ul li, .static-hero-s4 .wpo-event-item .wpo-event-text ul li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 30px;
  margin-left: 0;
  float: none;
  color: #7b7b7b;
}
@media (max-width: 550px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text ul li, .static-hero-s4 .wpo-event-item .wpo-event-text ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (max-width: 450px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text ul li, .static-hero-s4 .wpo-event-item .wpo-event-text ul li {
    margin-bottom: 2px;
  }
}
.static-hero-s3 .wpo-event-item .wpo-event-text ul li:last-child, .static-hero-s4 .wpo-event-item .wpo-event-text ul li:last-child {
  margin-bottom: 0;
}
.static-hero-s3 .wpo-event-item .wpo-event-text ul li a, .static-hero-s4 .wpo-event-item .wpo-event-text ul li a {
  font-weight: 700;
  color: #8facc2;
  position: relative;
  display: inline-block;
  margin-top: 20px;
}
@media (max-width: 450px) {
  .static-hero-s3 .wpo-event-item .wpo-event-text ul li a, .static-hero-s4 .wpo-event-item .wpo-event-text ul li a {
    margin-top: 10px;
  }
}
.static-hero-s3 .wpo-event-item .wpo-event-text ul li a:before, .static-hero-s4 .wpo-event-item .wpo-event-text ul li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #8facc2;
}
/*-------------------------------------------
wpo-hero-slider-s3
--------------------------------------------*/
.wpo-hero-slider-s3 .slide-inner .slide-content {
  background: #fff;
  max-width: 620px;
  margin: unset;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content {
    padding: 50px 40px;
  }
}
@media (max-width: 1400px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content {
    right: -100px;
  }
}
@media (max-width: 1200px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content {
    margin: 0 auto;
    right: 0;
  }
}
@media (max-width: 575px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content .slide-btns {
    margin: 0 auto;
  }
}
.wpo-hero-slider-s3 .slide-inner .slide-content .site-border {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 94%;
  height: 90%;
  border: 1px solid #ffabce;
  content: "";
  z-index: -1;
}
@media (max-width: 767px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content .site-border {
    left: 15px;
    top: 15px;
  }
}
@media (max-width: 450px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content .site-border {
    left: 10px;
  }
}
.wpo-hero-slider-s3 .slide-inner .slide-content:after, .wpo-hero-slider-s3 .slide-inner .slide-content:before {
  display: none;
}
.wpo-hero-slider-s3 .slide-inner .slide-content h2 {
  color: #002642;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content h2 {
    font-size: 25px;
  }
}
.wpo-hero-slider-s3 .slide-inner .slide-content p {
  color: #6e6e6e;
  font-size: 22px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .wpo-hero-slider-s3 .slide-inner .slide-content p {
    font-size: 15px;
  }
}
/*-------------------------------------------
static-hero-s4
--------------------------------------------*/
@media (max-width: 600px) {
  .static-hero-s4 {
    min-height: 1050px;
  }
}
/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
  background: #ffabce26;
  position: relative;
  font-size: 15px;
  overflow: hidden;
}
.wpo-site-footer ul {
  list-style: none;
}
.wpo-site-footer p {
  color: #525252;
  line-height: 1.3em;
  margin: 0px 0 1.5em;
  font-family: 'Dongle';
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 400
}
.wpo-site-footer li {
  color: #525252;
  line-height: 1.8em;
}
.wpo-site-footer .container {
  position: relative;
}
.wpo-site-footer .wpo-upper-footer {
  padding: 100px 150px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1800px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 80px 50px;
  }
}
.wpo-site-footer .wpo-upper-footer:before {
  position: absolute;
  left: 1%;
  top: 4%;
  border: 1px solid #ffabce;
  content: "";
  width: 98%;
  height: 92%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .wpo-site-footer .wpo-upper-footer:before {
    height: 96%;
    top: 2%;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 60px 30px 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 30px 20px 0;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}
.wpo-site-footer .widget-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wpo-site-footer .widget-title {
    margin-bottom: 20px;
  }
}
.wpo-site-footer .widget-title h3 {
  font-size: 25px;
  color: #ffabce;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  font-family: "Dongle";
  font-weight: 400;
}
.widget.link-widget {
  font-family: "Dongle";
  font-weight: 700;
  font-style: normal;
}
.wpo-site-footer .about-widget .logo {
  max-width: 270px;
  position: relative;
  left: 0;
}
.wpo-site-footer .about-widget .logo .footer-logo-rotate {
  display: block;
  width: 250px;
  height: 250px;
  max-width: 100%;
  object-fit: contain;
  -webkit-animation: footer-logo-spin 10s linear infinite;
  animation: footer-logo-spin 10s linear infinite;
  transform-origin: center;
}
@keyframes footer-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes footer-logo-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .about-widget .logo {
    left: 0;
    height: 0px;
  }
}
@media (max-width: 1500px) {
  .wpo-site-footer .about-widget {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.wpo-site-footer .about-widget p {
  line-height: 1.3em;
  margin: 0px 0 5.5em;
  font-family: 'Dongle';
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 400;
}
.wpo-site-footer .about-widget p:last-child {
  margin-bottom: 0;
}
.wpo-site-footer .about-widget ul {
  overflow: hidden;
  padding-top: 10px;
}
.wpo-site-footer .about-widget ul li {
  font-size: 22px;
  float: left;
}
.wpo-site-footer .about-widget ul li a {
  color: #002642;
  width: 36px;
  height: 36px;
  line-height: 40px;
  background: #fff;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}
.wpo-site-footer .about-widget ul li a:hover {
  background: #002642;
  color: #fff;
}
.wpo-site-footer .about-widget ul li + li {
  margin-left: 25px;
}
@media screen and (max-width: 1600px) {
  .wpo-site-footer .about-widget ul li + li {
    margin-left: 10px;
  }
}
@media (max-width: 1600px) {
  .wpo-site-footer .about-widget .logo .footer-logo-rotate {
    width: 220px !important;
    height: 220px !important;
  }
}
@media (max-width: 1200px) {
  .wpo-site-footer .about-widget .logo .footer-logo-rotate {
    width: 200px !important;
    height: 200px !important;
  }
}
@media (max-width: 992px) {
  .wpo-site-footer .about-widget .logo .footer-logo-rotate {
    width: 220px !important;
    height: 220px !important;
  }
}
@media (max-width: 576px) {
  .wpo-site-footer .about-widget .logo .footer-logo-rotate {
    width: 180px !important;
    height: 180px !important;
  }
}
@media (max-width: 425px) {
  .wpo-site-footer .about-widget .logo .footer-logo-rotate {
    width: 150px !important;
    height: 150px !important;
  }
}
.wpo-site-footer .link-widget {
  overflow: hidden;
}
@media screen and (min-width: 1500px) {
  .wpo-site-footer .link-widget {
    padding-left: 75px;
  }
}
@media (max-width: 1199px) {
  .wpo-site-footer .link-widget {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .link-widget {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .link-widget {
    max-width: 350px;
  }
}
@media (max-width:425px) {
  .wpo-site-footer p {
    font-size: 16px;
  }
}
.wpo-site-footer .link-widget ul li {
  position: relative;
}
.wpo-site-footer .link-widget ul li a {
  color: #575757;
  font-size: 22px;
  font-family: "Dongle", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}
.wpo-site-footer .link-widget ul li a:hover {
  text-decoration: underline;
}
.wpo-site-footer .link-widget ul li + li {
  padding-top: 15px;
}
.wpo-site-footer .contact-ft {
  margin-top: 20px;
  padding-right: 60px;
}
@media (max-width: 1024px) {
  .wpo-site-footer .contact-ft {
    padding-right: 0;
    text-align: left;
  }
  .wpo-site-footer .contact-ft ul.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
  }
  .wpo-site-footer .contact-ft ul.footer-contact-list .footer-contact-icon {
    flex-shrink: 0;
  }
  .wpo-site-footer .contact-ft ul.footer-contact-list .footer-contact-text {
    display: inline-block;
    line-height: 1.3;
    word-break: break-word;
    /* makes long email wrap nicely */
  }
}
@media (max-width: 767px) {
  .wpo-site-footer .contact-ft ul.footer-contact-list li {
    font-size: 18px;
    gap: 6px;
  }
}
@media (max-width: 425px) {
  .wpo-site-footer .contact-ft ul.footer-contact-list li {
    font-size: 16px;
    flex-wrap: wrap;
  }
  .wpo-site-footer .contact-ft ul.footer-contact-list .footer-contact-text {
    width: 100%;
    margin-top: 4px;
  }
}
@media (max-width: 1500px) {
  .wpo-site-footer .contact-ft {
    padding-right: 0px;
  }
}
.wpo-site-footer .contact-ft ul li {
  padding-bottom: 15px;
  position: relative;
  /* padding-left: 35px; */
  color: #5880a2;
  font-size: 25px;
}
.wpo-site-footer .contact-ft ul li i {
  position: absolute;
  left: 0;
  top: 0;
}
.wpo-site-footer .contact-ft ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}
@media (max-width: 1200px) {
  .wpo-site-footer .instagram {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .wpo-site-footer .instagram {
    margin-top: 0px;
  }
}
.about-widget p {
  font-size: 27px;
  line-height: 1.3em;
  /* margin:0px 0 7.5em; */
}
.about-us-footer-image {
  margin-top: -3em;
  margin-bottom: 50.5px;
}
@media (max-width: 1600px) {
  .wpo-site-footer .about-us-footer-image img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1200px) {
  .wpo-site-footer .about-us-footer-image img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 992px) {
  .wpo-site-footer .about-us-footer-image img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .wpo-site-footer .about-us-footer-image img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .wpo-site-footer .about-us-footer-image img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 425px) {
  .wpo-site-footer .about-us-footer-image img {
    width: 120px;
    height: 120px;
  }
}
.wpo-site-footer .instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}
.wpo-site-footer .instagram ul li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}
.wpo-site-footer .instagram ul li img {
  width: 100%;
}
/* 3.2 wpo-partners-section */
.wpo-partners-section .container, .wpo-partners-section-s2 .container, .wpo-partners-section-s3 .container {
  position: relative;
  padding: 60px 0px;
}
.wpo-partners-section .grid, .wpo-partners-section-s2 .grid, .wpo-partners-section-s3 .grid {
  text-align: center;
}
.wpo-partners-section .grid img, .wpo-partners-section-s2 .grid img, .wpo-partners-section-s3 .grid img {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.wpo-partners-section .owl-nav, .wpo-partners-section-s2 .owl-nav, .wpo-partners-section-s3 .owl-nav {
  display: none;
}
/* 3.3 wpo-service-section */
.wpo-service-section {
  padding-bottom: 60px;
}
.wpo-service-section .wpo-service-item {
  background: #edf3f8;
  padding: 6px;
}
.wpo-service-section .wpo-service-item .wpo-service-img {
  position: relative;
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  width: 240px;
  text-align: center;
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text .s-icon {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text .s-icon:before, .wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text .s-icon:after {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: #ffabce;
  content: "";
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text .s-icon:after {
  left: auto;
  right: -50px;
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text .s-icon .fi:before {
  font-size: 30px;
  color: #ffabce;
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text a {
  color: #002642;
  font-size: 20px;
  font-weight: 600;
  display: block;
}
.wpo-service-section .wpo-service-item .wpo-service-img .wpo-service-text a:hover {
  color: #ffabce;
}
.wpo-service-section .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpo-service-section .owl-nav [class*=owl-] {
  padding: 0;
  margin: 0;
  color: #ffabce;
  transition: all 0.3s;
  border: 0;
  background: none;
}
.wpo-service-section .owl-nav [class*=owl-] .fi::before {
  font-size: 30px;
  color: #c3d5e3;
}
.wpo-service-section .owl-nav .owl-prev, .wpo-service-section .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .wpo-service-section .owl-nav .owl-prev, .wpo-service-section .owl-nav .owl-next {
    display: none;
  }
}
.wpo-service-section .owl-nav .owl-prev {
  left: -35px;
}
.wpo-service-section .owl-nav .owl-next {
  right: -35px;
}
.wpo-service-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.wpo-service-section .owl-dots button {
  width: 10px;
  height: 12px;
  border: 0;
  background: #d4e6f5;
  margin-right: 10px;
  border-radius: 50%;
}
.wpo-service-section .owl-dots .owl-dot.active {
  background-color: #ffabce;
}
/* 3.4 wpo-video-section*/
.wpo-video-section, .wpo-video-section-s2 {
  position: relative;
  z-index: 1;
}
.wpo-video-section-s2 {
  padding-top: 0;
}
.wpo-video-section-s2:before {
  display: none;
}
.wpo-video-section::before, .wpo-video-section-s2::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70%;
  content: "";
  background-color: #edf3f8;
  z-index: -1;
}
@media (min-width: 1600px) {
  .wpo-video-section .container, .wpo-video-section-s2 .container {
    max-width: 1400px;
  }
}
.wpo-video-section .wpo-video-img, .wpo-video-section-s2 .wpo-video-img {
  position: relative;
}
.wpo-video-section .wpo-video-img::before, .wpo-video-section-s2 .wpo-video-img::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 49, 95, 0.05);
}
.wpo-video-section .wpo-video-img .video-btn, .wpo-video-section-s2 .wpo-video-img .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid #ffabce;
  text-align: center;
  border-radius: 50%;
  line-height: 76px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .wpo-video-section .wpo-video-img .video-btn, .wpo-video-section-s2 .wpo-video-img .video-btn {
    width: 50px;
    height: 50px;
    line-height: 47px;
  }
}
.wpo-video-section .wpo-video-img .video-btn .fi, .wpo-video-section-s2 .wpo-video-img .video-btn .fi {
  position: relative;
  right: -3px;
}
@media (max-width: 575px) {
  .wpo-video-section .wpo-video-img .video-btn .fi, .wpo-video-section-s2 .wpo-video-img .video-btn .fi {
    right: 0;
  }
}
.wpo-video-section .wpo-video-img .video-btn .fi:before, .wpo-video-section-s2 .wpo-video-img .video-btn .fi:before {
  font-size: 30px;
  color: #ffabce;
}
@media (max-width: 575px) {
  .wpo-video-section .wpo-video-img .video-btn .fi:before, .wpo-video-section-s2 .wpo-video-img .video-btn .fi:before {
    font-size: 20px;
  }
}
/* 3.5 wpo-fun-fact-section */
.wpo-fun-fact-section, .wpo-fun-fact-section-s2 {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section, .wpo-fun-fact-section-s2 {
    padding-bottom: 80px;
  }
}
.wpo-fun-fact-section .container, .wpo-fun-fact-section-s2 .container {
  position: relative;
}
@media (min-width: 1600px) {
  .wpo-fun-fact-section .container, .wpo-fun-fact-section-s2 .container {
    max-width: 1400px;
  }
}
.wpo-fun-fact-section .wpo-fun-fact-grids, .wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
  border: 1px solid #e4ebf2;
  padding: 80px 100px;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .wpo-fun-fact-grids, .wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    padding: 40px 30px 0;
  }
}
.wpo-fun-fact-section .f-shape-1, .wpo-fun-fact-section .f-shape-2, .wpo-fun-fact-section-s2 .f-shape-1, .wpo-fun-fact-section-s2 .f-shape-2 {
  position: absolute;
  left: -160px;
  top: -35px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .wpo-fun-fact-section .f-shape-1, .wpo-fun-fact-section .f-shape-2, .wpo-fun-fact-section-s2 .f-shape-1, .wpo-fun-fact-section-s2 .f-shape-2 {
    top: -55px;
  }
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .f-shape-1, .wpo-fun-fact-section .f-shape-2, .wpo-fun-fact-section-s2 .f-shape-1, .wpo-fun-fact-section-s2 .f-shape-2 {
    top: -65px;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .f-shape-1, .wpo-fun-fact-section .f-shape-2, .wpo-fun-fact-section-s2 .f-shape-1, .wpo-fun-fact-section-s2 .f-shape-2 {
    top: -35px;
  }
}
@media (max-width: 575px) {
  .wpo-fun-fact-section .f-shape-1, .wpo-fun-fact-section .f-shape-2, .wpo-fun-fact-section-s2 .f-shape-1, .wpo-fun-fact-section-s2 .f-shape-2 {
    display: none;
  }
}
.wpo-fun-fact-section .f-shape-2, .wpo-fun-fact-section-s2 .f-shape-2 {
  left: auto;
  right: -160px;
}
.wpo-fun-fact-section .wpo-fun-fact-grids .grid, .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
  width: 25%;
  float: left;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .wpo-fun-fact-grids .grid, .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    width: 50%;
    margin-bottom: 50px;
  }
}
.wpo-fun-fact-section .grid h3, .wpo-fun-fact-section-s2 .grid h3 {
  font-size: 70px;
  font-size: 4.6666666667rem;
  line-height: 40px;
  font-weight: 500;
  color: #ffabce;
  margin: 0 0 0.1em;
  font-family: "Futura PT";
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpo-fun-fact-section .grid h3 span, .wpo-fun-fact-section-s2 .grid h3 span {
  font-family: "Futura PT";
}
@media (max-width: 1200px) {
  .wpo-fun-fact-section .grid h3, .wpo-fun-fact-section-s2 .grid h3 {
    font-size: 50px;
    ont-size: 3.3333333333rem;
  }
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .grid h3, .wpo-fun-fact-section-s2 .grid h3 {
    font-size: 40px;
    font-size: 2.6666666667rem;
  }
}
@media (max-width: 767px) {
  .wpo-fun-fact-section .grid h3, .wpo-fun-fact-section-s2 .grid h3 {
    font-size: 35px;
    font-size: 2.3333333333rem;
  }
}
.wpo-fun-fact-section .grid h3 + p, .wpo-fun-fact-section-s2 .grid h3 + p {
  font-size: 20px;
  font-size: 1.3333333333rem;
  margin: 0;
  color: #002642;
  font-family: "Dongle", sans-serif;
  text-align: center;
  margin-top: -20px;
}
@media (max-width: 1200px) {
  .wpo-fun-fact-section .grid h3 + p, .wpo-fun-fact-section-s2 .grid h3 + p {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
  .wpo-fun-fact-section .grid h3 + p, .wpo-fun-fact-section-s2 .grid h3 + p {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}
/*--------------------------------------------------------------
3.6 wpo-portfolio-section
--------------------------------------------------------------*/
.wpo-portfolio-section, .wpo-portfolio-section-s2, .wpo-portfolio-section-s3, .wpo-portfolio-section-s4 {
  padding: 0 60px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s4 {
    padding: 90px 40px 80px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s4 {
    padding: 0;
  }
}
.wpo-portfolio-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 115px 60px 120px 60px;
}
@media (max-width: 1800px) {
  .wpo-portfolio-section {
    padding: 80px 0px 80px 0px;
  }
}
.wpo-portfolio-section .portfolio-grids, .wpo-portfolio-section-s2 .portfolio-grids, .wpo-portfolio-section-s3 .portfolio-grids, .wpo-portfolio-section-s4 .portfolio-grids {
  margin: 0 -7.5px;
}
.wpo-portfolio-section .portfolio-grids .grid, .wpo-portfolio-section-s2 .portfolio-grids .grid, .wpo-portfolio-section-s3 .portfolio-grids .grid, .wpo-portfolio-section-s4 .portfolio-grids .grid {
  width: 25%;
  float: left;
  padding: 0 7.5px 15px;
}
@media (max-width: 1500px) {
  .wpo-portfolio-section .portfolio-grids .grid, .wpo-portfolio-section-s2 .portfolio-grids .grid, .wpo-portfolio-section-s3 .portfolio-grids .grid, .wpo-portfolio-section-s4 .portfolio-grids .grid {
    padding: 0 5.5px 10px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-section .portfolio-grids .grid, .wpo-portfolio-section-s2 .portfolio-grids .grid, .wpo-portfolio-section-s3 .portfolio-grids .grid, .wpo-portfolio-section-s4 .portfolio-grids .grid {
    padding: 0 4.5px 8px;
  }
}
.wpo-portfolio-section .portfolio-grids .grid:last-child, .wpo-portfolio-section-s2 .portfolio-grids .grid:last-child, .wpo-portfolio-section-s3 .portfolio-grids .grid:last-child, .wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
  width: 50%;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .portfolio-grids .grid:last-child, .wpo-portfolio-section-s2 .portfolio-grids .grid:last-child, .wpo-portfolio-section-s3 .portfolio-grids .grid:last-child, .wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .wpo-portfolio-section .portfolio-grids .grid, .wpo-portfolio-section-s2 .portfolio-grids .grid, .wpo-portfolio-section-s3 .portfolio-grids .grid, .wpo-portfolio-section-s4 .portfolio-grids .grid {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .wpo-portfolio-section .portfolio-grids .grid, .wpo-portfolio-section-s2 .portfolio-grids .grid, .wpo-portfolio-section-s3 .portfolio-grids .grid, .wpo-portfolio-section-s4 .portfolio-grids .grid {
    width: 100%;
  }
}
.wpo-portfolio-section .portfolio-grids .grid img, .wpo-portfolio-section-s2 .portfolio-grids .grid img, .wpo-portfolio-section-s3 .portfolio-grids .grid img, .wpo-portfolio-section-s4 .portfolio-grids .grid img {
  width: 100%;
  height: auto;
  display: block;
}
.wpo-portfolio-section .grid .img-holder, .wpo-portfolio-section-s2 .grid .img-holder, .wpo-portfolio-section-s3 .grid .img-holder, .wpo-portfolio-section-s4 .grid .img-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.wpo-portfolio-section .grid .img-holder img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.wpo-portfolio-section .grid .img-holder .hover-content, .wpo-portfolio-section-s2 .grid .img-holder .hover-content, .wpo-portfolio-section-s3 .grid .img-holder .hover-content, .wpo-portfolio-section-s4 .grid .img-holder .hover-content {
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  text-align: center;
  width: 260px;
}
.wpo-portfolio-section .grid .img-holder .hover-content span, .wpo-portfolio-section-s2 .grid .img-holder .hover-content span, .wpo-portfolio-section-s3 .grid .img-holder .hover-content span, .wpo-portfolio-section-s4 .grid .img-holder .hover-content span {
  color: #fff;
}
.wpo-portfolio-section .grid .img-holder .hover-content h4, .wpo-portfolio-section-s2 .grid .img-holder .hover-content h4, .wpo-portfolio-section-s3 .grid .img-holder .hover-content h4, .wpo-portfolio-section-s4 .grid .img-holder .hover-content h4 {
  font-size: 30px;
  font-weight: 600;
}
.wpo-portfolio-section .grid .img-holder .hover-content h4 a {
  text-transform: uppercase;
  font-style: "Dongle";
  font-weight: 200;
  font-size: 44px;
}
.wpo-portfolio-section .grid .img-holder .hover-content h4 a, .wpo-portfolio-section-s2 .grid .img-holder .hover-content h4 a, .wpo-portfolio-section-s3 .grid .img-holder .hover-content h4 a, .wpo-portfolio-section-s4 .grid .img-holder .hover-content h4 a {
  color: #fff;
}
.wpo-portfolio-section .grid .img-holder .hover-content h4 a:hover, .wpo-portfolio-section-s2 .grid .img-holder .hover-content h4 a:hover, .wpo-portfolio-section-s3 .grid .img-holder .hover-content h4 a:hover, .wpo-portfolio-section-s4 .grid .img-holder .hover-content h4 a:hover {
  color: #fff;
}
.wpo-portfolio-section .grid .img-holder:before, .wpo-portfolio-section-s2 .grid .img-holder:before, .wpo-portfolio-section-s3 .grid .img-holder:before, .wpo-portfolio-section-s4 .grid .img-holder:before {
  position: absolute;
  left: 2%;
  top: 2%;
  width: 96%;
  height: 96%;
  content: "";
  background: #ffabce73;
  opacity: 0;
  transition: all 0.3s;
  transform: scale(0);
}
.wpo-portfolio-section .img-holder:hover .hover-content, .wpo-portfolio-section-s2 .img-holder:hover .hover-content, .wpo-portfolio-section-s3 .img-holder:hover .hover-content, .wpo-portfolio-section-s4 .img-holder:hover .hover-content {
  opacity: 1;
}
.wpo-portfolio-section .img-holder:hover:before, .wpo-portfolio-section-s2 .img-holder:hover:before, .wpo-portfolio-section-s3 .img-holder:hover:before, .wpo-portfolio-section-s4 .img-holder:hover:before {
  opacity: 1;
  transform: scale(1);
}
/* Christmas Banner Inner Section within Portfolio */
.wpo-portfolio-section .wpo-christmas-banner-inner {
  background: #FFABCE;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  margin-top: 0;
}
.wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-content {
  max-width: 100%;
  margin: 0 auto;
}
.wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-title {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-family: "Dongle", sans-serif;
  line-height: 1.2;
}
.wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-title a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-block;
}
.wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-title a:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .wpo-portfolio-section .wpo-christmas-banner-inner {
    padding: 35px 20px;
  }
  .wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section .wpo-christmas-banner-inner {
    padding: 30px 15px;
  }
  .wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-section .wpo-christmas-banner-inner {
    padding: 25px 15px;
  }
  .wpo-portfolio-section .wpo-christmas-banner-inner .christmas-banner-title {
    font-size: 36px;
  }
}
/*--------------------------------------------------------------
3.7 wpo-testimonials-section
--------------------------------------------------------------*/
.wpo-testimonials-section {
  padding: 0 60px 0 60px;
  margin: 0 auto;
  position: relative;
}
.wpo-testimonials-background-overlay {
  padding: 120px 0px 120px 0px;
  background: #FFABCE26;
}
@media (max-width: 1800px) {
  .wpo-testimonials-section {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .wpo-testimonials-section {
    padding: 0 30px 0 30px;
  }
  .wpo-testimonials-background-overlay {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767px) {
  .wpo-testimonials-section {
    padding: 0 20px 0 20px;
  }
  .wpo-testimonials-background-overlay {
    padding: 60px 0px 60px 0px;
  }
  .wpo-testimonials-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .wpo-testimonials-section {
    padding: 0px;
  }
  .wpo-testimonials-background-overlay {
    padding: 50px 0px 50px 0px;
  }
}
.wpo-testimonials-section .wpo-testimonials-shape {
  position: absolute;
  right: 95px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .wpo-testimonials-section .wpo-testimonials-shape {
    display: none;
  }
}
.wpo-testimonials-section .wpo-testimonials-img {
  width: 438px;
  height: 438px;
  position: relative;
  left: -60px;
}
@media (max-width: 1500px) {
  .wpo-testimonials-section .wpo-testimonials-img {
    left: auto;
    right: -40px;
    width: 338px;
    height: 338px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .wpo-testimonials-section .wpo-testimonials-img {
    width: 438px;
    height: 438px;
    left: 0;
    right: auto;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .wpo-testimonials-section .wpo-testimonials-img {
    width: 338px;
    height: 338px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .wpo-testimonials-section .wpo-testimonials-img {
    width: 250px;
    height: 250px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
/* Square frame + cover: avoids stretched height from old 115% × 100% shape box */
.wpo-testimonials-section .wpo-testimonials-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}
.wpo-testimonials-section .wpo-testimonials-img .wpo-testimonials-img-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.wpo-testimonials-section .wpo-testimonials-img .wpo-testimonials-img-shape img {
  border-radius: 50%;
}
.wpo-testimonials-section .wpo-testimonials-wrap {
  width: 100%;
}
@media (max-width: 991px) {
  .wpo-testimonials-section .wpo-testimonials-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .wpo-testimonials-section .wpo-testimonials-wrap {
    padding: 0 10px;
  }
}
.wpo-testimonials-section .wpo-testimonials-wrap h2 {
  font-size: 30px;
  font-weight: 500;
  font-family: "Cinzel Decorative", sans-serif;
  padding-bottom: 55px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .wpo-testimonials-section .wpo-testimonials-wrap h2 {
    font-size: 30px;
  }
}
.wpo-testimonials-section .wpo-testimonials-wrap h2:before {
  position: absolute;
  bottom: 0;
  left: 3px;
  font-family: "flaticon" !important;
  content: "\f11f";
  font-size: 40px;
}
.wpo-testimonials-section .wpo-testimonials-wrap h2:after {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100px;
  height: 1px;
  background: #ffabce;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-stage-outer {
  padding: 10px;
}
@media (max-width: 767px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-stage-outer {
    padding: 5px;
  }
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active p {
  font-size: 25px;
  color: #002642;
  font-weight: 500;
}
@media (max-width: 767px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active p {
    font-size: 18px;
    line-height: 1.6;
    padding: 0 5px;
  }
}
@media (max-width: 575px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active p {
    font-size: 25px;
    line-height: 1.5;
  }
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-left: 10px;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img {
  margin-right: 20px;
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img:before {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 110%;
  height: 109%;
  content: "";
  background: #ffabce;
  z-index: -1;
  border-radius: 50px;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-img img {
  border-radius: 50%;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text h5 {
  font-family: "Dongle", sans-serif;
  color: #e380a2;
  font-size: 28px;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .wpo-testimonial-info .wpo-testimonial-info-text span {
  color: #ffabce;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-nav {
  display: none;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
  margin-top: 30px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots {
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots button {
  width: 10px;
  height: 12px;
  border: 0;
  background: #dd5e89;
  margin-right: 10px;
  border-radius: 50%;
}
.wpo-testimonials-section .wpo-testimonials-wrap .wpo-testimonials-active .owl-dots .owl-dot.active {
  background-color: #ffabce;
}
/*--------------------------------------------------------------
3.7.1 wpo-application-form-section
--------------------------------------------------------------*/
.wpo-application-form-section {
  padding: 0 60px 0 60px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .wpo-application-form-section {
    padding: 0px;
    margin-bottom: 20px;
  }
}
.wpo-application-form-background-overlay {
  padding: 70px 0px 41px 0px;
  background: #FFABCE26;
}
@media (max-width: 1800px) {
  .wpo-application-form-section {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .wpo-application-form-section {
    padding: 0 30px 0 30px;
  }
  .wpo-application-form-background-overlay {
    padding: 50px 0px 30px 0px;
  }
}
@media (max-width: 767px) {
  .wpo-application-form-section {
    padding: 0px;
  }
  .wpo-application-form-background-overlay {
    padding: 40px 0px 20px 0px;
  }
}
/* 3.9 wpo-cta-section */
.wpo-cta-section, .wpo-cta-section-s2, .wpo-cta-section-s3 {
  padding: 145px 0;
  background: url(../images/cta/bg.jpg) no-repeat center center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wpo-cta-section, .wpo-cta-section-s2, .wpo-cta-section-s3 {
    padding: 90px 0;
  }
}
.wpo-cta-section:before, .wpo-cta-section-s2:before, .wpo-cta-section-s3:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00315f;
  content: "";
  opacity: 0.3;
  z-index: -1;
}
.wpo-cta-section-s3 {
  background: url(../images/cta/bg-3.jpg) no-repeat center center;
}
.wpo-cta-section-s3 .wpo-cta-item h2 {
  margin-bottom: 10px;
  margin-top: 0;
}
.wpo-cta-section-s3 .wpo-cta-item p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wpo-cta-section-s3 .wpo-cta-item p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .wpo-cta-section-s3 .wpo-cta-item p {
    font-size: 14px;
  }
}
.wpo-cta-section .wpo-cta-item, .wpo-cta-section-s2 .wpo-cta-item, .wpo-cta-section-s3 .wpo-cta-item {
  text-align: center;
}
.wpo-cta-section .wpo-cta-item h2, .wpo-cta-section-s2 .wpo-cta-item h2, .wpo-cta-section-s3 .wpo-cta-item h2 {
  font-size: 75px;
  color: #fff;
  margin: 10px 0 30px;
}
@media (max-width: 991px) {
  .wpo-cta-section .wpo-cta-item h2, .wpo-cta-section-s2 .wpo-cta-item h2, .wpo-cta-section-s3 .wpo-cta-item h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .wpo-cta-section .wpo-cta-item h2, .wpo-cta-section-s2 .wpo-cta-item h2, .wpo-cta-section-s3 .wpo-cta-item h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .wpo-cta-section .wpo-cta-item h2, .wpo-cta-section-s2 .wpo-cta-item h2, .wpo-cta-section-s3 .wpo-cta-item h2 {
    font-size: 30px;
    margin: 10px 0 20px;
  }
}
.wpo-cta-section .wpo-cta-item span, .wpo-cta-section-s2 .wpo-cta-item span, .wpo-cta-section-s3 .wpo-cta-item span {
  display: block;
  position: relative;
  left: -10px;
}
/* 3.10 wpo-pricing-section */
.wpo-pricing-section .wpo-pricing-wrap {
  padding-top: 23px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item {
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}
@media (max-width: 991px) {
  .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item {
    margin-bottom: 115px;
  }
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top {
  padding: 30px;
  text-align: center;
  padding-top: 0;
  border-bottom: 1px solid #e4ebf2;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-img {
  width: 170px;
  height: 170px;
  padding: 10px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  top: -85px;
  margin-bottom: -50px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-img img {
  border-radius: 50%;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h4 {
  font-size: 25px;
  text-transform: none;
  font-weight: 500;
  font-family: 'Cinzel Decorative';
  margin-bottom: 8px;
  padding-top: 51px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 {
  font-size: 35px;
  color: #ffabce;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 span {
  font-size: 16px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom {
  padding: 40px;
  padding-top: 35px;
  text-align: center;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul {
  list-style: none;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul li {
  color: #7b7b7b;
  padding-bottom: 15px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text a {
  /* font-size: 16px; */
  /* color: #002642; */
  font-weight: 700;
  display: inline-block;
  margin-top: 15px;
  position: relative;
  padding-bottom: 5px;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  /* background: #002642; */
  content: "";
  transition: all 0.3s;
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text a:hover {
  /* color: #ffabce; */
}
.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text a:hover:before {
  background-color: #ffabce;
}
.wpo-pricing-section .wpo-pricing-wrap .col:last-child .wpo-pricing-item {
  margin-bottom: 0;
}
/* 3.11 wpo-banner-section */
.wpo-banner-section {
  background: url(../images/banner.jpg) no-repeat center center;
  height: 280px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  padding: 30px;
}
@media (max-width: 575px) {
  .wpo-banner-section {
    height: 200px;
  }
}
.wpo-banner-section h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .wpo-banner-section h4 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-banner-section h4 {
    font-size: 20px;
  }
}
/* 3.11.2 christmas-parties-content-section */
.christmas-parties-content-section {
  padding: 60px 0;
}
.christmas-parties-content-section .christmas-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.christmas-parties-content-section .christmas-title-wrapper {
  margin-bottom: 40px;
}
.christmas-parties-content-section .christmas-main-title {
  font-size: 48px;
  font-weight: 600;
  color: #FFABCE;
  font-family: "Dongle", sans-serif;
  margin: 15px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.christmas-parties-content-section .section-title-img {
  max-width: 200px;
  margin: 0 auto;
  position: relative;
}
.christmas-parties-content-section .section-title-img::before, .christmas-parties-content-section .section-title-img::after {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 100px;
  height: 2px;
  background: #FFABCE;
}
.christmas-parties-content-section .section-title-img::after {
  right: -120px;
  left: auto;
}
.christmas-parties-content-section .section-title-img .round-ball {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid #FFABCE;
  border-radius: 50%;
  transform: translateX(-50%);
  top: -5px;
  background: #fff;
}
.christmas-parties-content-section .coming-soon-image-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.christmas-parties-content-section .coming-soon-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .christmas-parties-content-section .christmas-main-title {
    font-size: 38px;
  }
  .christmas-parties-content-section .section-title-img::before, .christmas-parties-content-section .section-title-img::after {
    width: 80px;
    left: -100px;
  }
  .christmas-parties-content-section .section-title-img::after {
    right: -100px;
  }
}
@media (max-width: 767px) {
  .christmas-parties-content-section .christmas-main-title {
    font-size: 32px;
  }
  .christmas-parties-content-section {
    padding: 40px 0;
  }
  .christmas-parties-content-section .section-title-img::before, .christmas-parties-content-section .section-title-img::after {
    width: 60px;
    left: -80px;
  }
  .christmas-parties-content-section .section-title-img::after {
    right: -80px;
  }
}
@media (max-width: 575px) {
  .christmas-parties-content-section .christmas-main-title {
    font-size: 26px;
  }
  .christmas-parties-content-section .section-title-img::before, .christmas-parties-content-section .section-title-img::after {
    width: 40px;
    left: -50px;
  }
  .christmas-parties-content-section .section-title-img::after {
    right: -50px;
  }
}
/* 3.12 wpo-contact-section */
/* 3.12 wpo-contact-section */
.wpo-contact-section .wpo-contact-section-wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
  background: #fff;
}
@media (max-width: 1200px) {
  .wpo-contact-section .wpo-contact-section-wrapper {
    max-width: 570px;
  }
}
@media (max-width: 1200px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-section-title {
    margin-bottom: 20px;
  }
}
.wpo-contact-section .wpo-contact-section-wrapper .vector-1 {
  position: absolute;
  left: -59%;
  bottom: 0;
  z-index: 111;
}
@media (max-width: 1200px) {
  .wpo-contact-section .wpo-contact-section-wrapper .vector-1 {
    left: -68%;
  }
}
@media (max-width: 767px) {
  .wpo-contact-section .wpo-contact-section-wrapper .vector-1 {
    left: -76%;
  }
}
@media (max-width: 575px) {
  .wpo-contact-section .wpo-contact-section-wrapper .vector-1 {
    display: none;
  }
}
.wpo-contact-section .wpo-contact-section-wrapper .vector-2 {
  position: absolute;
  right: -38%;
  top: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .wpo-contact-section .wpo-contact-section-wrapper .vector-2 {
    display: none;
  }
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area {
  padding: 60px 40px;
  border: 30px solid #cde0ef;
  position: relative;
  z-index: 99;
}
@media (max-width: 1200px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area {
    padding: 40px 20px;
  }
}
@media (max-width: 575px) {
  .wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area {
    border-width: 10px;
    padding: 20px 10px;
  }
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: 1px solid #cde0ef;
  background: transparent;
  border-radius: 0;
  color: #738ea5;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #738ea5;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::-moz-placeholder {
  color: #738ea5;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .form-control::placeholder {
  color: #738ea5;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area select.form-control {
  color: #6c757d;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .nice-select {
  padding-left: 10px;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .nice-select:after {
  border-bottom: 1px solid #738ea5;
  border-right: 1px solid #738ea5;
  width: 7px;
  height: 7px;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .select.last {
  margin-bottom: 50px;
}
.wpo-contact-section .wpo-contact-section-wrapper .wpo-contact-form-area .submit-area {
  margin-top: 40px;
  text-align: center;
}
/*======================================
 5. Home-style-2 
 =======================================*/
/* 5.1 wpo-about-section */
.wpo-about-section .wpo-about-wrap, .wpo-about-section-s2 .wpo-about-wrap {
  position: relative;
  z-index: 1;
}
.wpo-about-section .wpo-about-wrap .wpo-about-item, .wpo-about-section .wpo-about-wrap .wpo-about-item-s2, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item-s2 {
  padding: 15px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
  background: #fff;
  max-width: 465px;
}
.wpo-about-section .wpo-about-wrap .wpo-about-item .wpo-about-img, .wpo-about-section .wpo-about-wrap .wpo-about-item-s2 .wpo-about-img, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item .wpo-about-img, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item-s2 .wpo-about-img {
  padding: 20px;
  background: #ffabce;
}
.wpo-about-section .wpo-about-wrap .about-single-item, .wpo-about-section-s2 .wpo-about-wrap .about-single-item {
  position: absolute;
  transition: all 5s;
}
.wpo-about-section .wpo-about-wrap .ab-shape, .wpo-about-section-s2 .wpo-about-wrap .ab-shape {
  position: absolute;
  z-index: 0;
}
.wpo-about-section .wpo-about-text, .wpo-about-section-s2 .wpo-about-text {
  padding-left: 100px;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-text, .wpo-about-section-s2 .wpo-about-text {
    padding-left: 0;
    padding-top: 50px;
  }
}
.wpo-about-section .wpo-about-text .wpo-about-icon-content h2, .wpo-about-section-s2 .wpo-about-text .wpo-about-icon-content h2 {
  font-size: 40px;
  font-weight: normal;
  margin: 15px 0 40px;
  font-family: "Cinzel Decorative", sans-serif;
}
@media (max-width: 425px) {
  .wpo-about-section .wpo-about-text .wpo-about-icon-content h2, .wpo-about-section-s2 .wpo-about-text .wpo-about-icon-content h2 {
    font-size: 35px;
    line-height: 1.6em;
  }
}
/* Index page - wpo-about-section: 27px font size */
.wpo-about-section .wpo-about-text .wpo-about-icon-content p {
  margin-bottom: 20px;
  line-height: 1.3em;
  margin: 0px 0 1.5em;
  font-family: 'Dongle';
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 400;
}
/* About page - wpo-about-section-s2: 20px font size */
.wpo-about-section-s2 .wpo-about-text .wpo-about-icon-content p {
  margin-bottom: 20px;
  margin: 0px 0 1.5em;
  font-family: 'Dongle', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;
}
/* Work With Us page - separate styling to avoid conflicts */
.work-with-us-section {
  padding: 100px 60px 50px 60px;
}
.work-with-us-section .wpo-about-text .wpo-about-icon-content p {
  margin-bottom: 20px;
  margin: 0px 0 1.5em;
  font-family: 'Dongle', sans-serif;
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .work-with-us-section {
    padding: 90px 30px 40px 30px;
  }
  .work-with-us-section .wpo-about-text {
    padding-left: 0;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .work-with-us-section {
    padding: 80px 20px 30px 20px;
  }
}
@media (max-width: 425px) {
  /* Mobile: Both sections use 20px */
  .wpo-about-section .wpo-about-text .wpo-about-icon-content p, .wpo-about-section-s2 .wpo-about-text .wpo-about-icon-content p {
    font-size: 20px;
  }
  .work-with-us-section {
    padding: 70px 15px 20px 15px;
  }
  .work-with-us-section .wpo-about-text .wpo-about-icon-content h2 {
    font-size: 35px;
    line-height: 1.6em;
  }
}
.wpo-about-section .wpo-about-text .theme-btn-s3, .wpo-about-section-s2 .wpo-about-text .theme-btn-s3 {
  margin-top: 20px;
}
/* 5.2 wpo-service-section-s2 */
.wpo-service-section-s2, .wpo-service-section-s3 {
  background: #fff;
  padding-bottom: 100px;
}
.wpo-service-section-s3 .wpo-service-item {
  box-shadow: 0px 2px 8.4px 1.6px rgba(13, 32, 133, 0.05);
}
@media (max-width: 1200px) {
  .wpo-service-section-s2, .wpo-service-section-s3 {
    padding-bottom: 60px;
  }
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item {
  padding: 55px 50px;
  background: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .wpo-service-section-s2 .wpo-service-wrap .wpo-service-item, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item {
    padding: 35px 15px;
  }
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text {
  text-align: center;
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon:before, .wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon:after, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon:before, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon:after {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: #ffabce;
  content: "";
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon:after, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon:after {
  left: auto;
  right: -50px;
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon .fi:before, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text .s-icon .fi:before {
  font-size: 30px;
  color: #ffabce;
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text a, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text a {
  color: #002642;
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text a:hover, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text a:hover {
  color: #ffabce;
}
.wpo-service-section-s2 .wpo-service-wrap .wpo-service-item .wpo-service-text p, .wpo-service-section-s3 .wpo-service-wrap .wpo-service-item .wpo-service-text p {
  margin-bottom: 0;
}
/* 5.3 wpo-fun-fact-section-s2 */
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
  padding: 80px 20px;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    padding-bottom: 0px;
    padding-top: 50px;
  }
}
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
  position: relative;
}
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  content: "";
  background: #ffabce;
}
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(2)::before {
    display: none;
  }
}
/* 5.5 wpo-cta-section-s2 */
.wpo-cta-section-s2 {
  background: url(../images/cta/bg-2.jpg) no-repeat center center;
}
/* 5.7 wpo-partners-section-s2*/
.wpo-partners-section-s2 {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .wpo-partners-section-s2 {
    padding-bottom: 0;
  }
}
/*======================================
 6. Home-style-3 
 =======================================*/
/*--------------------------------------------------------------
6.1 wpo-wedding-date
--------------------------------------------------------------*/
.wpo-wedding-date {
  text-align: center;
  padding-bottom: 0;
}
.wpo-wedding-date #clock {
  overflow: hidden;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.wpo-wedding-date #clock > div {
  width: 180px;
  height: 163px;
  background: url("../images/clock-bg.png") center center/cover no-repeat local;
  float: left;
  display: table;
}
@media (max-width: 1200px) {
  .wpo-wedding-date #clock > div {
    width: 144px;
    height: 140px;
  }
}
@media (max-width: 991px) {
  .wpo-wedding-date #clock > div {
    width: 120px;
    height: 110px;
  }
}
@media (max-width: 767px) {
  .wpo-wedding-date #clock > div {
    width: calc(50% - 20px);
    margin: 10px;
    padding-bottom: 15px;
    height: 110px;
  }
  .wpo-wedding-date #clock > div:last-child {
    position: relative;
    right: -70px;
  }
}
.wpo-wedding-date #clock > div > div {
  display: table-cell;
  vertical-align: middle;
}
.wpo-wedding-date #clock > div + div {
  margin-left: 50px;
}
@media (max-width: 991px) {
  .wpo-wedding-date #clock > div + div {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .wpo-wedding-date #clock > div + div {
    margin-left: 10px;
  }
}
.wpo-wedding-date #clock .time {
  font-family: "Futura PT";
  font-size: 54px;
  font-size: 3.6rem;
  line-height: 1em;
  padding-top: 15px;
  color: #5880a2;
}
@media (max-width: 1200px) {
  .wpo-wedding-date #clock .time {
    font-size: 40px;
    font-size: 2.6666666667rem;
  }
}
@media (max-width: 991px) {
  .wpo-wedding-date #clock .time {
    font-size: 30px;
    font-size: 2rem;
  }
}
.wpo-wedding-date #clock span {
  color: #365872;
}
/*--------------------------------------------------------------
6.2 couple-section
--------------------------------------------------------------*/
.couple-section .couple-area > div {
  float: left;
}
@media (max-width: 991px) {
  .couple-section .couple-area > div {
    float: none;
  }
}
.couple-section .middle-couple-pic {
  width: 470px;
  position: relative;
  height: 690px;
}
@media (max-width: 1399px) {
  .couple-section .middle-couple-pic {
    width: 350px;
    height: 510px;
  }
}
@media (max-width: 1199px) {
  .couple-section .middle-couple-pic {
    width: 270px;
    height: 380px;
  }
}
.couple-section .middle-couple-pic .frame-img {
  position: absolute;
  left: -54px;
  top: -54px;
  width: 130%;
  height: 130%;
}
@media (max-width: 1199px) {
  .couple-section .middle-couple-pic .frame-img {
    left: -33px;
    top: -30px;
    width: 124%;
  }
}
.couple-section .middle-couple-pic img {
  border-radius: 235px;
}
@media (max-width: 991px) {
  .couple-section .middle-couple-pic {
    margin: 50px auto;
  }
}
.couple-section .text-grid {
  width: 29%;
  padding: 140px 80px 40px;
}
@media (max-width: 1399px) {
  .couple-section .text-grid {
    width: 34%;
    padding: 70px 80px 40px;
  }
}
@media (max-width: 1199px) {
  .couple-section .text-grid {
    padding: 10px 56px 40px;
  }
}
@media (max-width: 991px) {
  .couple-section .text-grid {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.couple-section .text-grid h3 {
  font-size: 22px;
  font-size: 1.4666666667rem;
  margin: 0 0 0.8em;
}
.couple-section .text-grid .couple-img {
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.couple-section .text-grid .couple-img:before {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  content: "";
  border: 1px solid #fff;
  z-index: 1;
}
.couple-section .text-grid .couple-img img {
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .couple-section .text-grid .couple-img {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.couple-section .bride {
  padding-left: 0;
  text-align: right;
}
@media (max-width: 991px) {
  .couple-section .bride {
    text-align: center;
    margin: 0 auto;
  }
}
.couple-section .bride .social {
  float: right;
}
@media (max-width: 991px) {
  .couple-section .bride .social {
    float: none;
    display: flex;
    justify-content: center;
  }
}
.couple-section .bride .couple-img {
  margin: 0;
  margin-bottom: 20px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .couple-section .bride .couple-img {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.couple-section .groom {
  padding-right: 0;
}
.couple-section ul {
  list-style: none;
  overflow: hidden;
  padding-top: 15px;
}
@media (max-width: 991px) {
  .couple-section ul {
    padding-top: 10px;
    display: flex;
    justify-content: center;
  }
}
.couple-section ul li {
  float: left;
}
.couple-section ul > li + li {
  margin-left: 25px;
}
.couple-section ul li a {
  display: block;
  text-align: center;
  color: #738ea5;
}
.couple-section ul li a:hover {
  color: #ffabce;
}
/*--------------------------------------------------------------
6.3 wpo-video-section-s2
--------------------------------------------------------------*/
/*--------------------------------------------------------------
6.4 story-section
--------------------------------------------------------------*/
.story-section .story-timeline {
  position: relative;
}
.story-section .story-timeline:after {
  content: "";
  background: #cee0ef;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .story-section .story-timeline:after {
    display: none;
  }
}
.story-section .story-timeline .round-shape {
  background: #fff;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 0;
  border: 1px solid #738ea5;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}
.story-section .story-timeline .round-shape:before {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  content: "";
  background: #738ea5;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .story-section .story-timeline .round-shape {
    display: none;
  }
  .story-section .story-timeline .round-shape:before {
    display: none;
  }
}
.story-section .story-timeline .img-holder {
  max-width: 330px;
  padding: 10px;
  border: 1px dashed #ffabce;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: #fff;
  margin: 0 auto;
}
.story-section .story-timeline .img-holder:before {
  position: absolute;
  left: -103px;
  top: 195px;
  width: 90%;
  height: 90%;
  border: 1px dashed #738ea5;
  content: "";
  border-radius: 50%;
  z-index: -1;
  border-bottom: 0;
  border-right: 0;
  border-top: 0;
  transform: rotate(66deg);
}
@media (max-width: 1439px) {
  .story-section .story-timeline .img-holder:before {
    left: -140px;
  }
}
@media (max-width: 1399px) {
  .story-section .story-timeline .img-holder:before {
    left: -96px;
  }
}
@media (max-width: 1199px) {
  .story-section .story-timeline .img-holder:before {
    left: -65px;
  }
}
@media (max-width: 991px) {
  .story-section .story-timeline .img-holder:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .story-section .story-timeline .img-holder.left-site {
    margin-bottom: 40px;
  }
}
.story-section .story-timeline .img-holder.left-site:before {
  position: absolute;
  left: auto;
  right: -102px;
  transform: rotate(102deg);
}
@media (max-width: 1439px) {
  .story-section .story-timeline .img-holder.left-site:before {
    right: -140px;
  }
}
@media (max-width: 1399px) {
  .story-section .story-timeline .img-holder.left-site:before {
    right: -96px;
  }
}
@media (max-width: 1199px) {
  .story-section .story-timeline .img-holder.left-site:before {
    right: -65px;
  }
}
.story-section .story-timeline .img-holder img {
  border-radius: 50%;
}
.story-section .story-timeline .img-holder .story-shape-img {
  position: absolute;
  bottom: -45px;
  left: 55px;
}
.story-section .story-timeline .img-holder .story-shape-img img {
  border-radius: 0;
}
.story-section .story-timeline > .row {
  position: relative;
}
.story-section .story-timeline > .row .horizontal-line {
  background: rgba(134, 160, 182, 0.1);
  width: 70%;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.story-section .story-timeline > .row:last-child .col {
  padding-top: 0 !important;
}
@media (max-width: 991px) {
  .story-section .story-timeline > .row:last-child {
    padding: 0 !important;
    margin: 0 !important;
  }
}
.story-section .story-timeline > .row + .row {
  margin-top: 50px;
  padding-top: 15px;
}
@media (max-width: 991px) {
  .story-section .story-timeline > .row + .row {
    padding-top: 30;
  }
}
.story-section .story-timeline > .row > .col:first-child {
  padding: 0 45px 0 100px;
}
@media (max-width: 1199px) {
  .story-section .story-timeline > .row > .col:first-child {
    padding: 0 45px 0 70px;
  }
}
@media (max-width: 991px) {
  .story-section .story-timeline > .row > .col:first-child {
    padding: 0 15px;
  }
}
.story-section .story-timeline > .row > .col:last-child {
  padding: 0 100px 0 45px;
}
@media (max-width: 1199px) {
  .story-section .story-timeline > .row > .col:last-child {
    padding: 0 70px 0 45px;
  }
}
@media (max-width: 991px) {
  .story-section .story-timeline > .row > .col:last-child {
    padding: 0 15px;
  }
}
.story-section .story-timeline .story-text {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .story-section .story-timeline .story-text {
    background: rgba(134, 160, 182, 0.05);
    padding: 35px 25px;
    text-align: center;
  }
}
.story-section .story-timeline .left-site .story-text {
  padding-left: 0px;
  padding-right: 50px;
}
@media (max-width: 991px) {
  .story-section .story-timeline .left-site .story-text {
    background: rgba(134, 160, 182, 0.05);
    padding: 35px 25px;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .story-section .story-timeline .right-align-text {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .story-section .story-timeline .story-text.right-align-text {
    padding-left: 0;
    margin-right: 50px;
  }
}
.story-section .story-timeline .text-holder {
  padding-top: 45px !important;
  position: relative;
}
@media (max-width: 991px) {
  .story-section .story-timeline .text-holder {
    border: 0;
    padding-top: 0 !important;
  }
}
.story-section .story-timeline .text-holder .heart {
  background-color: #e7eff6;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  position: absolute;
  left: -22px;
  top: -22px;
  border-radius: 50%;
  z-index: 10;
}
@media (max-width: 991px) {
  .story-section .story-timeline .text-holder .heart {
    display: none;
  }
}
.story-section .story-timeline .text-holder .fi {
  color: #738ea5;
}
.story-section .story-timeline .right-heart .heart {
  left: auto;
  right: -22px;
}
.story-section .story-timeline h3 {
  font-size: 22px;
  font-size: 1.4666666667rem;
  font-weight: 500;
  color: #002642;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .story-section .story-timeline h3 {
    font-size: 20px;
    font-size: 1.3333333333rem;
  }
}
@media (max-width: 767px) {
  .story-section .story-timeline h3 {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
.story-section .story-timeline .date {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
  color: #8ab1d2;
}
.story-section .story-timeline p {
  margin-bottom: 0;
}
.story-section .story-timeline img {
  display: inline-block;
}
/*--------------------------------------------------------------
6.5 wpo-portfolio-section-s2
--------------------------------------------------------------*/
/* .wpo-portfolio-section-s2,
@media (max-width: 767px) {

  .wpo-portfolio-section-s2,
  .wpo-portfolio-section-s4 {
    padding: 0;
  }
} */
.wpo-portfolio-section-s2 .portfolio-grids .grid img, .wpo-portfolio-section-s4 .portfolio-grids .grid img {
  max-height: 460px;
}
.wpo-portfolio-section-s2 .portfolio-grids .grid:first-child, .wpo-portfolio-section-s4 .portfolio-grids .grid:first-child {
  width: 50%;
}
@media (max-width: 1200px) {
  .wpo-portfolio-section-s2 .portfolio-grids .grid:first-child, .wpo-portfolio-section-s4 .portfolio-grids .grid:first-child {
    width: 100%;
  }
}
.wpo-portfolio-section-s2 .portfolio-grids .grid:last-child, .wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
  width: 50%;
}
@media (max-width: 1200px) {
  .wpo-portfolio-section-s2 .portfolio-grids .grid:last-child, .wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
    width: 100%;
  }
}
.wpo-portfolio-section-s2 .portfolio-grids .grid .img-holder .hover-content i, .wpo-portfolio-section-s4 .portfolio-grids .grid .img-holder .hover-content i {
  font-size: 30px;
  color: #002642;
}
.wpo-portfolio-section-s4 .portfolio-grids .grid img {
  max-height: 460px;
}
.wpo-portfolio-section-s4 .portfolio-grids .grid:nth-child(6) {
  width: 50%;
}
@media (max-width: 1200px) {
  .wpo-portfolio-section-s4 .portfolio-grids .grid:nth-child(6) {
    width: 100%;
  }
}
.wpo-portfolio-section-s4 .portfolio-grids .grid:nth-child(7) {
  width: 50%;
}
@media (max-width: 1200px) {
  .wpo-portfolio-section-s4 .portfolio-grids .grid:nth-child(7) {
    width: 100%;
  }
}
.wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
  width: 25%;
}
@media (max-width: 1199px) {
  .wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .wpo-portfolio-section-s4 .portfolio-grids .grid:last-child {
    width: 100%;
  }
}
/* 6.7 wpo-event-section */
.wpo-event-section {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .wpo-event-section {
    padding-bottom: 70px;
  }
}
.wpo-event-section .wpo-event-wrap .wpo-event-item {
  padding: 20px;
  border: 2px solid #b0c7d9;
  position: relative;
  margin-bottom: 40px;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text {
  padding: 40px 35px;
  text-align: center;
  background: #FFABCE26;
}
@media (max-width: 1200px) {
  .wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text {
    padding: 25px 15px;
  }
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text h2 {
  font-size: 25px;
  text-transform: uppercase;
  border-bottom: 1px solid #FFABCE;
  padding-bottom: 30px;
  margin-bottom: 40px;
  font-weight: normal;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text ul {
  list-style: none;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text ul li {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 1px;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text ul li:last-child {
  margin-bottom: 0;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text ul li a {
  font-weight: 700;
  color: #8facc2;
  position: relative;
  display: inline-block;
  margin-top: 20px;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text ul li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #8facc2;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .event-shape-1 {
  position: absolute;
  right: -5px;
  top: -20px;
  background: #fff;
  padding: 5px;
}
.wpo-event-section .wpo-event-wrap .wpo-event-item .event-shape-2 {
  position: absolute;
  left: -5px;
  bottom: -20px;
  background: #fff;
  padding: 5px;
}
.wpo-event-section .wpo-event-wrap .row > * {
  padding-right: calc(var(--bs-gutter-x)/ 1);
  padding-left: calc(var(--bs-gutter-x)/ 1);
}
@media (max-width: 1200px) {
  .wpo-event-section .wpo-event-wrap .row > * {
    padding-right: calc(var(--bs-gutter-x)/ 2);
    padding-left: calc(var(--bs-gutter-x)/ 2);
  }
}
/* 6.8 wpo-partners-section-s3 */
.wpo-partners-section-s3 {
  background: #edf3f8;
}
/* 6.9 wpo-blog-section-s2 */
/*======================================
 7. Home-style-4 
 =======================================*/
/*--------------------------------------------------------------
7.1 wpo-portfolio-section-s3
--------------------------------------------------------------*/
.wpo-portfolio-section-s3 {
  padding-bottom: 0;
}
.wpo-portfolio-section-s3 .portfolio-grids .grid {
  width: 33.33%;
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s3 .portfolio-grids .grid {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-section-s3 .portfolio-grids .grid {
    width: 100%;
  }
}
.wpo-portfolio-section-s3 .portfolio-grids .grid:last-child {
  width: 33.33%;
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s3 .portfolio-grids .grid:last-child {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .wpo-portfolio-section-s3 .portfolio-grids .grid:last-child {
    width: 100%;
  }
}
.wpo-portfolio-section-s3 .portfolio-grids .grid .img-holder .hover-content i {
  font-size: 30px;
  color: #002642;
}
/*--------------------------------------------------------------
8.2 wpo-category-section
--------------------------------------------------------------*/
.wpo-category-section .wpo-category-wrap .wpo-category-item .wpo-category-text {
  text-align: center;
}
.wpo-category-section .wpo-category-wrap .wpo-category-item .wpo-category-text a {
  display: inline-block;
  padding: 10px 35px;
  background: #fff;
  border: 1px solid #ffabce;
  font-size: 22px;
  color: #002642;
  font-weight: 600;
  top: -26px;
  position: relative;
}
.wpo-category-section .wpo-category-wrap .wpo-category-item .wpo-category-text a:hover {
  background: #738ea5;
  color: #fff;
}
/*--------------------------------------------------------------
8.3 wpo-product-section-s3
--------------------------------------------------------------*/
/*--------------------------------------------------------------
8.4 wpo-offer-banner-section 
--------------------------------------------------------------*/
.wpo-offer-banner-section {
  background: url(../images/offer.jpg) no-repeat center center;
  height: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .wpo-offer-banner-section {
    height: 300px;
  }
}
.wpo-offer-banner-section .offer-banner-text h3 {
  font-size: 30px;
  font-weight: 500;
  color: #61829e;
}
@media (max-width: 767px) {
  .wpo-offer-banner-section .offer-banner-text h3 {
    font-size: 20px;
  }
}
.wpo-offer-banner-section .offer-banner-text h2 {
  font-size: 100px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .wpo-offer-banner-section .offer-banner-text h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .wpo-offer-banner-section .offer-banner-text h2 {
    font-size: 40px;
  }
}
.wpo-offer-banner-section .offer-banner-text h2 span {
  font-size: 40px;
  position: relative;
  top: -50px;
  color: #6e6e6e;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .wpo-offer-banner-section .offer-banner-text h2 span {
    font-size: 20px;
    top: -30px;
  }
}
@media (max-width: 767px) {
  .wpo-offer-banner-section .offer-banner-text h2 span {
    top: -20px;
  }
}
.pt-160 {
  padding-top: 160px;
}
@media (max-width: 1200px) {
  .pt-160 {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  .pt-160 {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .pt-160 {
    padding-top: 80px;
  }
}
/*==========================================
9. wpo-about-section
===========================================*/
.wpo-about-section .wpo-about-icon-content ul, .wpo-about-section-s2 .wpo-about-icon-content ul {
  list-style: none;
}
.wpo-about-section .wpo-about-icon-content ul li, .wpo-about-section-s2 .wpo-about-icon-content ul li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}
.wpo-about-section .wpo-about-icon-content ul li:before, .wpo-about-section-s2 .wpo-about-icon-content ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  content: "";
  background: #ffabce;
  border-radius: 50%;
}
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-item {
  max-width: 505px;
}
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-item .wpo-about-img img {
  width: 100%;
}
.wpo-about-section-s2 .wpo-about-text {
  padding-left: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-70 {
  padding-top: 70px;
}
/*=====================================================
10. wpo-service-single
======================================================*/
@media (min-width: 1440px) {
  .wpo-service-details-area .container {
    max-width: 1320px;
  }
}
.theme-accordion-s1 {
  margin-bottom: 0;
}
.accordion-button {
  font-size: 18px;
}
.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #002642;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  margin-bottom: 30px;
  border: 0;
}
.accordion-collapse {
  border-top: 1px solid #ebebeb;
}
.accordion-collapse p {
  font-size: 20px;
}
/* FAQ Page Accordion Styling */
.wpo-faq-section .accordion-item {
  border: none;
  margin-bottom: 20px;
  box-shadow: 0px 5px 15px 0px rgb(62 65 159 / 10%);
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}
.wpo-faq-section .accordion-button {
  font-size: 24px;
  color: #292929;
  letter-spacing: 1px;
  background-color: #fff;
  padding: 20px;
  box-shadow: none;
  border-left: 3px solid #fff;
  transition: all 0.3s ease;
}
.wpo-faq-section .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
  border-left: 3px solid #ffabce;
}
.wpo-faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: #ffabce;
}
.wpo-faq-section .accordion-body {
  padding: 20px;
  color: #666;
  line-height: 1.6;
  border-left: 3px solid #ffabce;
}
.wpo-faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffabce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: scale(1.2);
}
.wpo-faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffabce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.wpo-faq-section .wpo-faq-image img {
  width: 100%;
  height: auto;
}
.wpo-faq-section {
  padding: 50px 0;
}
.theme-accordion-s1 .panel-default {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.theme-accordion-s1 .panel-heading {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.theme-accordion-s1 .panel + .panel {
  margin-top: 15px;
}
.theme-accordion-s1 .panel-heading a {
  background: #999;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  display: block;
  padding: 18px 25px;
  position: relative;
}
@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading a {
    font-size: 16px;
    font-size: 1rem;
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .theme-accordion-s1 .panel-heading a {
    padding: 12px 15px;
  }
}
.theme-accordion-s1 .panel-heading a:before {
  font-family: "themify";
  content: "";
  font-size: 15px;
  font-size: 0.9375rem;
  position: absolute;
  right: 25px;
  transform: rotate(180deg);
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading a:before {
    font-size: 18px;
    font-size: 1.125rem;
    right: 20px;
  }
}
.theme-accordion-s1 .panel-heading a:focus {
  text-decoration: none;
}
.theme-accordion-s1 .panel-heading .collapsed {
  background-color: #fff;
  color: #242f6c;
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}
.theme-accordion-s1 .panel-heading .collapsed:before {
  transform: rotate(0);
}
.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
  background-color: #fff;
  border: 0;
  padding: 40px 25px 15px;
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}
@media (max-width: 991px) {
  .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
    padding: 20px 25px 10px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .all-wpo-services {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
    padding: 15px 15px 8px;
  }
}
.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body p {
  margin-bottom: 1.3em;
}
.wpo-minimal-wrap {
  position: relative;
  margin-bottom: 50px;
}
.wpo-minimal-wrap .minimals-img img {
  width: 100%;
}
.minimals-img img {
  width: 100%;
}
.wpo-minimal-wrap .video-holder {
  position: relative;
  text-align: center;
}
.wpo-minimal-wrap .video-holder:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(10, 67, 149, 0.51);
}
.wpo-minimal-wrap .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 83px;
  height: 83px;
  border-radius: 83px;
  display: inline-block;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  z-index: 99;
}
.wpo-minimal-wrap .video-holder a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #002642;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wpo-minimal-wrap .video-holder {
  position: absolute;
  left: 50%;
  top: 50%;
}
.wpo-minimal-wrap .video-holder a, .video-holder a {
  background-color: #fff;
  -webkit-animation: spineerb 2s infinite;
  animation: spineerb 2s infinite;
}
@-webkit-keyframes spineerb {
  0% {
    -webkit-box-shadow: 0 0 0 0 #a9a5f8;
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes spineerb {
  0% {
    box-shadow: 0 0 0 0 #a9a5f8;
  }
  70% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
.wpo-minimal-wrap:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(34, 32, 71, 0.5);
  transition: all 0.3s;
}
.wpo-service-details-text {
  text-align: center;
  padding: 40px;
  background: #738ea5;
}
.wpo-service-details-text-3 {
  text-align: center;
  padding: 40px;
  background: #64819b;
}
.wpo-service-details-list .col {
  padding: 0;
}
.wpo-service-details-list .row {
  margin: 0 0px;
}
.wpo-service-details-text h2, .wpo-service-details-text-3 h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 0;
}
.wpo-service-details-text span, .wpo-service-details-text-3 span {
  font-size: 16px;
  color: #fafafa;
  display: block;
  margin-bottom: 10px;
}
.wpo-p-details-section {
  margin-top: 50px;
}
.wpo-p-details-section ul {
  list-style: none;
}
.wpo-p-details-section h5 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}
.wpo-p-details-section .process-wrap {
  margin-top: 50px;
}
.wpo-p-details-section .process-wrap .process-item {
  margin-bottom: 30px;
  padding: 26px;
  border: 1px solid #ebebeb;
}
.wpo-p-details-section .process-wrap .process-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.wpo-p-details-section .process-wrap .process-item p {
  font-size: 15px;
}
.wpo-p-details-section .process-wrap .process-item .process-icon {
  margin-bottom: 10px;
}
.wpo-p-details-section .process-wrap .process-item .process-icon .fi:before {
  font-size: 45px;
  color: #ffabce;
}
.wpo-p-details-section p {
  margin-bottom: 30px;
  font-size: 16px;
}
.wpo-p-details-section p:nth-child(2) {
  margin-bottom: 20px;
}
.wpo-p-details-quote {
  padding: 40px;
  background: #ffabce;
  margin-top: 30px;
  padding-left: 80px;
  position: relative;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.wpo-p-details-quote:before {
  font-family: "Flaticon";
  content: "";
  font-size: 40px;
  color: #fafafa;
  margin-left: 0;
  position: absolute;
  left: 5%;
  top: 22%;
  transform: translate(-50%, -50%);
}
.wpo-p-details-img {
  margin-bottom: 30px;
}
.wpo-p-details-img img {
  width: 100%;
}
.wpo-p-details-quote p {
  color: #fff;
  margin-bottom: 20px;
}
.wpo-p-details-quote span {
  color: #fddada;
  text-decoration: underline;
}
.wpo-faq-section {
  padding-top: 60px;
}
.wpo-faq-section h4 {
  font-size: 30px;
  margin-bottom: 30px;
}
.wpo-faq-section p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
Enquiry Form Section
--------------------------------------------------------------*/
.enquiry-form-section {
  background-color: #FFABCE26;
  padding: 40px;
}
.enquiry-form-section .form-container {
  width: 100%;
}
.enquiry-form-section .fillout-embed-wrapper {
  width: 100%;
  height: 2400px;
  position: relative;
  transition: height 150ms;
  font-family: 'Dongle', 'Helvetica Neue', Helvetica, Arial, sans-serif;   /* was Cinzel; see the Fonts note at the top of this file */
}
.enquiry-form-section .fillout-embed-standard {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.enquiry-form-section .fillout-embed-iframe-container {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.enquiry-form-section .fillout-embed-iframe-container iframe {
  border: 0px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .enquiry-form-section .fillout-embed-wrapper {
    height: 2600px;
  }
}
@media (max-width: 991px) {
  .enquiry-form-section {
    padding: 30px 20px;
  }
  .enquiry-form-section .fillout-embed-wrapper {
    height: 2400px;
  }
}
@media (max-width: 768px) {
  .enquiry-form-section {
    padding: 0 !important;
  }
  .enquiry-form-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .enquiry-form-section .form-container {
    padding: 0;
  }
  .enquiry-form-section .fillout-embed-wrapper {
    height: 2800px;
  }
}
@media (max-width: 575px) {
  .enquiry-form-section .fillout-embed-wrapper {
    height: 3000px;
  }
}
@media (max-width: 1200px) {
  .wpo-service-details-text h2, .wpo-service-details-text-3 h2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .wpo-service-details-text h2, .wpo-service-details-text-3 h2 {
    margin-bottom: 30px;
  }
  .wpo-service-details-text-3 {
    border: none;
  }
  .wpo-service-details-list {
    padding-bottom: 10px;
    background: #002642;
  }
}
@media (max-width: 530px) {
  .wpo-p-details-quote:before {
    left: 12%;
    top: 17%;
  }
}
/*=======================================================
8. wpo-service-single-section
========================================================*/
.wpo-service-sidebar .all-wpo-services {
  background-color: #f8f8f8;
  padding: 60px 30px;
}
.wpo-service-sidebar .all-wpo-services ul {
  list-style: none;
}
.wpo-service-sidebar .widget h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 1em;
  padding-bottom: 17px;
  text-transform: capitalize;
  position: relative;
}
.wpo-service-sidebar .widget h3:before {
  content: "";
  background-color: #ffabce;
  width: 55px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}
.wpo-service-sidebar .widget h3:after {
  content: "";
  background-color: #e4e1e1;
  width: 80%;
  height: 4px;
  position: absolute;
  left: 65px;
  bottom: 0;
  border-radius: 10px;
}
.wpo-service-sidebar .all-wpo-services ul a {
  margin-top: 15px;
  padding-bottom: 15px;
  display: block;
  border-bottom: 1px solid #e1e1e1;
  color: #666;
}
.wpo-service-sidebar .all-wpo-services ul a:hover, .wpo-service-sidebar .all-wpo-services ul li.current a {
  color: #ffabce;
}
.wpo-service-sidebar .all-wpo-services ul > li:last-child a {
  border: 0;
  padding: 0;
}
.wpo-service-sidebar > .widget + .widget {
  margin-top: 55px;
}
.wpo-service-sidebar .contact-widget {
  background: #002642;
  padding: 60px 15px;
  text-align: center;
  position: relative;
}
.wpo-service-sidebar .contact-widget h5 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #dad9d9;
  margin: 0;
  margin-bottom: 30px;
}
.wpo-service-sidebar .contact-widget h4 {
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0.5em 0 0;
  color: #fff;
}
.wpo-p-details-section h4 {
  font-size: 40px;
  color: #121127;
  margin-bottom: 30px;
}
.wpo-p-details-section p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .wpo-service-sidebar {
    margin-bottom: 40px;
  }
}
@media (max-width: 530px) {
  .wpo-service-sidebar .contact-widget h4 {
    font-size: 25px;
  }
  .wpo-service-sidebar .contact-widget h5 {
    font-size: 16px;
  }
  .wpo-p-details-section h4 {
    font-size: 35px;
  }
}
.wpo-minimal-img img {
  width: 100%;
}
.wpo-portfolio-section-s3.tb-padding {
  padding: 120px 0 110px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section-s3.tb-padding {
    padding: 90px 0 80px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section-s3.tb-padding {
    padding: 70px 0 60px;
  }
}
.wpo-portfolio-section.pt-120 {
  padding: 120px 0 110px;
}
@media (max-width: 991px) {
  .wpo-portfolio-section.pt-120 {
    padding: 90px 0 80px;
  }
}
@media (max-width: 767px) {
  .wpo-portfolio-section.pt-120 {
    padding: 70px 0 60px;
  }
}
/*--------------------------------------------------------------
11. coming-soon-section
--------------------------------------------------------------*/
.coming-soon-section .wpo-wedding-date {
  padding: 30px 0 60px;
}
@media (max-width: 767px) {
  .coming-soon-section .wpo-wedding-date {
    padding: 0px 0 15px;
  }
}
.coming-soon-section .coming-soon-text {
  text-align: center;
}
.coming-soon-section .coming-soon-text h2 {
  font-size: 60px;
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-text h2 {
    font-size: 30px;
  }
}
.coming-soon-section .wpo-coming-contact .form-control {
  width: 100%;
  height: 55px;
  background: none;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
.coming-soon-section .wpo-coming-contact .form-control:focus {
  outline: none;
  box-shadow: none;
}
.coming-soon-section .wpo-coming-contact button {
  height: 55px;
  background: #738ea5;
  border: none;
  color: #fff;
  width: 100%;
}
.wpo-shop-page .sorting-section {
  padding-bottom: 20px;
}
.wpo-shop-page .sorting-section ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.wpo-shop-page .sorting-section ul li {
  margin: 10px 0;
}
.wpo-shop-page .sorting-section .nice-select ul {
  display: block;
}
.rating-wrapper .theme-btn-s2 {
  background: #738ea5;
  color: #fff;
}
.rating-wrapper .theme-btn-s2:hover {
  background: #627f98;
}
/*==========================================
16. wpo-team-single
===========================================*/
.team-pg-area {
  max-width: 1080px;
  margin: 0 auto;
}
.team-info-img {
  padding: 25px;
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}
@media (max-width: 991px) {
  .team-info-img {
    margin-bottom: 40px;
  }
}
.team-info-img img {
  width: 100%;
  height: 465px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991px) {
  .team-info-img img {
    height: 100%;
  }
}
.team-info-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 50px;
  text-align: center;
}
.team-info-text {
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
  padding: 58px 50px;
}
.team-info-text ul li {
  font-size: 17px;
  color: #1d2327;
  font-weight: 700;
  margin-bottom: 22px;
  list-style: none;
}
.team-info-text ul li:last-child {
  padding-bottom: 0;
}
.team-info-text ul li span {
  font-size: 16px;
  color: #8c8c8c;
  display: inline-block;
  position: relative;
  padding-left: 5px;
}
.team-info-text ul li:last-child {
  margin-bottom: 0;
}
.at-progress {
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px 0;
}
@media (max-width: 991px) {
  .at-progress {
    padding-bottom: 0;
  }
}
.team-info-text h2 {
  font-size: 27px;
  font-weight: 700;
  color: #1d2327;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  background: #eee;
  padding: 20px;
}
.team-info-wrap ul {
  padding-left: 0;
}
.exprience-wrap p {
  color: #5d5851;
}
.exprience-wrap h2 {
  margin-bottom: 20px;
}
/*progress-design*/
.progress {
  width: 150px;
  height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
  overflow: unset;
}
.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #ebebeb;
  position: absolute;
  top: 0;
  left: 0;
}
.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress .progress-left {
  left: 0;
}
.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}
.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  transform-origin: center left;
}
.progress .progress-right {
  right: 0;
}
.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  transform-origin: center right;
  -webkit-animation: loading-1 1.8s linear forwards;
  animation: loading-1 1.8s linear forwards;
}
.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #fff;
  font-size: 40px;
  color: #ffabce;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: -5%;
  left: 5%;
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
}
.progress .progress-bar {
  border-color: #ffabce;
}
.progress-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25%;
  width: 100%;
  text-align: center;
}
.progress-name span {
  font-size: 15px;
  color: #131058;
  line-height: 15px;
}
.progress.blue .progress-left .progress-bar {
  -webkit-animation: loading-2 1.5s linear forwards 1.8s;
  animation: loading-2 1.5s linear forwards 1.8s;
}
.progress.yellow .progress-left .progress-bar {
  -webkit-animation: loading-3 1s linear forwards 1.8s;
  animation: loading-3 1s linear forwards 1.8s;
}
.progress.pink .progress-left .progress-bar {
  -webkit-animation: loading-4 0.4s linear forwards 1.8s;
  animation: loading-4 0.4s linear forwards 1.8s;
}
.progress.green .progress-left .progress-bar {
  -webkit-animation: loading-5 1.2s linear forwards 1.8s;
  animation: loading-5 1.2s linear forwards 1.8s;
}
@-webkit-keyframes loading-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes loading-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes loading-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes loading-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@-webkit-keyframes loading-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(120deg);
  }
}
@keyframes loading-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(120deg);
  }
}
@-webkit-keyframes loading-4 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(46deg);
  }
}
@keyframes loading-4 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(46deg);
  }
}
@-webkit-keyframes loading-5 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(36deg);
  }
}
@keyframes loading-5 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(36deg);
  }
}
@media only screen and (max-width: 990px) {
  .progress {
    margin-bottom: 60px;
  }
}
.progress:before {
  position: absolute;
  left: -14px;
  top: -15px;
  width: 120%;
  height: 120%;
  background: #fff;
  content: "";
  border-radius: 50%;
}
.education-area {
  max-width: 600px;
}
.education-area ul {
  list-style: none;
}
.education-area ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.education-area ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffabce;
  content: "";
}
.ex-wiget {
  padding-top: 60px;
}
.ex-wiget ul {
  list-style: none;
}
.ex-wiget h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
}
.wpo-contact-area .quote-form {
  padding-left: 0;
  margin-left: -10px;
}
.wpo-contact-area button {
  border-radius: 0;
}
.wpo-contact-area button:after {
  display: none;
}
.wpo-contact-area .quote-form .form-control {
  height: 55px;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  padding: 15px;
}
.wpo-contact-area .quote-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #ffabce;
}
.wpo-contact-area .quote-form textarea.form-control {
  height: 125px;
}
.half-col {
  float: left;
  width: 50%;
  padding: 0 10px 5px;
}
.full-col {
  padding: 0 10px 5px;
}
.exprience-area {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .team-info-text {
    padding: 40px 20px;
  }
  .team-info-img {
    padding: 40px;
  }
  .team-info-img img {
    width: 100%;
  }
  .custom-grid {
    float: left;
    width: 50%;
  }
  .exprience-area {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .half-col {
    float: none;
    width: 100%;
  }
  .lawyer-about.pt-150 {
    padding-top: 100px !important;
  }
}
@media (max-width: 375px) {
  .custom-grid {
    float: none;
    width: 100%;
  }
}
.service-sidebar .wpo-contact-widget {
  border: 0;
  background: url(../images/bg-2.html) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.service-sidebar .wpo-contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
}
.service-sidebar .wpo-contact-widget h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}
.service-sidebar .wpo-contact-widget h2::before {
  background: #fff;
}
.service-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}
.service-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-right: 90px;
  position: relative;
  margin-top: 10px;
}
.service-sidebar .wpo-contact-widget a::before {
  font-family: "themify";
  content: "";
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
/*--------------------------------------------------------------
17. wpo-portfolio-single-section
--------------------------------------------------------------*/
.wpo-portfolio-single-section .portfolio-single-wrap {
  margin-bottom: 30px;
}
.wpo-portfolio-single-section .portfolio-single-img {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .wpo-portfolio-single-section .portfolio-single-img {
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .wpo-portfolio-single-section .portfolio-single-text {
    padding-top: 40px;
  }
}
.wpo-portfolio-single-section .portfolio-single-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 550px) {
  .wpo-portfolio-single-section .portfolio-single-text h2 {
    font-size: 20px;
  }
}
.wpo-portfolio-single-section .portfolio-single-text span {
  color: #5880a2;
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 550px) {
  .wpo-portfolio-single-section .portfolio-single-text span {
    margin-bottom: 20px;
  }
}
.wpo-portfolio-single-section .portfolio-single-text p {
  margin-bottom: 30px;
}
.wpo-portfolio-single-section .wpo-portfolio-single-content-des {
  max-width: 380px;
  flex-basis: 35%;
}
@media (max-width: 1200px) {
  .wpo-portfolio-single-section .wpo-portfolio-single-content-des {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
}
.wpo-portfolio-single-section .wpo-portfolio-single-content-des ul {
  list-style: none;
  margin-top: 40px;
}
.wpo-portfolio-single-section .wpo-portfolio-single-content-des ul li {
  display: flex;
  padding: 15px 0;
  font-size: 16px;
  color: #002642;
  font-weight: 600;
  border-bottom: 1px solid #ebebeb;
  position: relative;
  justify-content: space-between;
  font-weight: 600;
}
.wpo-portfolio-single-section .wpo-portfolio-single-content-des ul li span {
  flex-basis: 70%;
  color: #848892;
  font-weight: 400;
  margin-bottom: 0;
}
.wpo-portfolio-single-section .wpo-portfolio-single-content-des ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.wpo-portfolio-single-section .wpo-portfolio-single-content-des ul li:first-child {
  padding-top: 0;
}
.wpo-portfolio-single-section .pagi {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .wpo-portfolio-single-section .pagi {
    padding-top: 30px;
  }
}
.wpo-portfolio-single-section .pagi ul {
  overflow: hidden;
  list-style: none;
}
.wpo-portfolio-single-section .pagi ul li {
  width: 50%;
  float: left;
  text-align: center;
  border: 1px solid #d8e0f1;
}
.wpo-portfolio-single-section .pagi ul li i {
  margin: 0 10px;
}
.wpo-portfolio-single-section .pagi ul > li:last-child {
  margin-left: -1px;
}
.wpo-portfolio-single-section .pagi ul a {
  display: flex;
  padding: 20px;
  color: #6e6e6e;
  align-items: center;
  justify-content: center;
}
.wpo-portfolio-single-section .pagi ul a:hover {
  background-color: #ffabce;
  color: #fff;
}
.wpo-portfolio-single-section .project-content .pagi {
  padding-top: 0;
}
@-webkit-keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
/*--------------------------------------------------------------
20. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
  padding-bottom: 0px;
}
.wpo-contact-pg-section .wpo-contact-title {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-title {
    margin-bottom: 30px;
  }
}
.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 35px;
  font-size: 2.3333333333rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 25px;
    font-size: 1.6666666667rem;
  }
}
.wpo-contact-pg-section form input, .wpo-contact-pg-section form select, .wpo-contact-pg-section form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}
@media (max-width: 991px) {
  .wpo-contact-pg-section form input, .wpo-contact-pg-section form select, .wpo-contact-pg-section form textarea {
    height: 45px;
  }
}
.wpo-contact-pg-section form input:focus, .wpo-contact-pg-section form select:focus, .wpo-contact-pg-section form textarea:focus {
  border-color: #ffabce;
  background: transparent;
}
.wpo-contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}
.wpo-contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}
.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}
.wpo-contact-pg-section form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: 1rem;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.wpo-contact-pg-section form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}
.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}
.wpo-contact-pg-section form .submit-area .theme-btn, .wpo-contact-pg-section form .submit-area .view-cart-btn {
  border-radius: 0px;
  font-family: "Dongle", sans-serif;
  font-size: 16px;
}
.wpo-contact-pg-section form .submit-area .theme-btn:after, .wpo-contact-pg-section form .submit-area .view-cart-btn:after {
  border-radius: 0px;
}
.wpo-contact-pg-section form > div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}
@media (max-width: 600px) {
  .wpo-contact-pg-section form > div {
    width: calc(100% - 25px);
    float: none;
  }
}
.wpo-contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}
.wpo-contact-pg-section .office-info {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .office-info {
    padding-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}
.wpo-contact-pg-section .office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon .icon .fi:before {
  font-size: 35px;
  color: #738ea5;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
  margin-bottom: 0;
}
.wpo-contact-pg-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  padding-bottom: 0;
  margin-bottom: -125px;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}
.wpo-contact-map-section .wpo-contact-map {
  height: 550px;
}
.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: grayscale(100%);
}
.wpo-contact-map-section h2.hidden {
  display: none;
}
/*--------------------------------------------------------------
21. error-404-section
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}
.error-404-section .error-message {
  margin-top: 70px;
  padding: 0 200px;
}
@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}
.error-404-section .error-message h3 {
  font-size: 30px;
  font-size: 2rem;
  margin: 0 0 0.8em;
}
.error-404-section .error-message p {
  margin-bottom: 1.8em;
}
/*# sourceMappingURL=style.css.map */
.wpo-about-section .wpo-about-wrap, .wpo-about-section-s2 .wpo-about-wrap {
  position: relative;
  z-index: 1;
}
.wpo-about-section .wpo-about-wrap .wpo-about-item, .wpo-about-section .wpo-about-wrap .wpo-about-item-s2, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item-s2 {
  padding: 15px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
  background: #fff;
  max-width: 465px;
}
.wpo-about-section .wpo-about-wrap .wpo-about-item .wpo-about-img, .wpo-about-section .wpo-about-wrap .wpo-about-item-s2 .wpo-about-img, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item .wpo-about-img, .wpo-about-section-s2 .wpo-about-wrap .wpo-about-item-s2 .wpo-about-img {
  padding: 20px;
  background: #FFABCE;
}
.wpo-about-section .wpo-about-wrap .wpo-about-item .wpo-about-img img, .wpo-about-section .wpo-about-wrap .wpo-about-item-s2 .wpo-about-img img {
  width: 100%;
  height: auto;
}
/* Index page - Make secondary image larger to match WordPress layout */
.wpo-about-section .wpo-about-wrap .about-single-item {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 5s;
  transform: rotate(10deg);
  width: 100%;
  max-width: 465px;
}
.wpo-about-section .wpo-about-wrap .about-single-item .wpo-about-item-s2 {
  max-width: 100%;
  width: 100%;
  padding: 15px;
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.wpo-about-section .wpo-about-wrap .about-single-item .wpo-about-img {
  padding: 20px;
  background: #ffabce;
}
.wpo-about-section .wpo-about-wrap .about-single-item .wpo-about-img img {
  width: 100%;
  height: auto;
  display: block;
}
/* Keep original for about-section-s2 */
.wpo-about-section-s2 .wpo-about-wrap .about-single-item {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 5s;
  transform: rotate(10deg);
}
.wpo-about-section .wpo-about-wrap .ab-shape, .wpo-about-section-s2 .wpo-about-wrap .ab-shape {
  position: absolute;
  left: -55%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-wrap .ab-shape, .wpo-about-section-s2 .wpo-about-wrap .ab-shape {
    left: -35%;
  }
}
.wpo-about-section .wpo-about-text, .wpo-about-section-s2 .wpo-about-text {
  padding-left: 100px;
}
@media (max-width: 991px) {
  .wpo-about-section .wpo-about-text, .wpo-about-section-s2 .wpo-about-text {
    padding-left: 0;
    padding-top: 50px;
  }
}
.wpo-about-section .wpo-about-text .theme-btn-s3, .wpo-about-section-s2 .wpo-about-text .theme-btn-s3 {
  margin-top: 20px;
}
.wpo-about-icon .icon img {
  max-width: 100px !important;
  width: 100px !important;
  height: 100px !important;
  object-fit: contain;
  display: block;
}
.wpo-about-section-s2 .wpo-about-wrap {
  position: relative;
  z-index: 1;
  padding: 0;
}
.wpo-about-section-s2 .wpo-about-item {
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  box-shadow: none;
  max-width: 100%;
}
.wpo-about-section-s2 .wpo-about-item .wpo-about-img {
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: 3px solid #FFABCE;
  border-radius: 0;
  overflow: visible;
}
.wpo-about-section-s2 .wpo-about-item .wpo-about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.wpo-about-section-s2 .ab-shape {
  top: 32%;
  max-width: 120%;
  height: auto;
  pointer-events: none;
}
.wpo-about-section-s2 .ab-shape img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wpo-about-section-s2 .wpo-about-icon {
  margin-bottom: 15px;
  text-align: left;
}
.wpo-about-section-s2 .wpo-about-icon .icon {
  display: inline-block;
}
.wpo-about-section-s2 .wpo-about-icon .icon img {
  margin: 0;
  max-width: 98px !important;
  width: 98px !important;
  height: 98px !important;
}
.wpo-about-section-s2 .wpo-about-text {
  padding-left: 0px !important;
}
@media (max-width: 991px) {
  .wpo-about-section-s2 .wpo-about-text {
    padding-left: 0 !important;
    padding-top: 50px;
    margin-top: 50px;
  }
  .wpo-about-section-s2 .wpo-about-icon .icon img {
    margin: 0 auto;
  }
}
.wpo-about-section-s2 .wpo-about-icon-content h2 {
  font-size: 36px;
  line-height: 1.3;
  margin: 15px 0 30px;
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: 500;
  color: #002642;
}
@media (max-width: 767px) {
  .wpo-about-section-s2 .wpo-about-icon-content h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}
.magical-moments-section {
  position: relative;
  background-image: url('../images/scroll/Packages-1-scaled-1-1-copy.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  margin-top: 65px;
  margin-bottom: 65px;
  padding: 300px 0px 300px 0px;
}
.magical-moments-section .elementor-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  opacity: 0.5;
}
.magical-moments-section .container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 15px;
}
.magical-moments-section .elementor-container {
  width: 100%;
  margin: 0 auto;
}
.magical-scroll-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}
.magical-moments-section .elementor-widget-wrap {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.magical-moments-section .elementor-widget-image img, .magical-moments-section .magical-logo-img {
  max-width: 121px !important;
  width: 121px !important;
  height: 121px !important;
  object-fit: contain;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.magical-moments-section .magical-heading {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 1.4px;
  color: #FFABCE;
  font-family: "Cinzel Decorative", sans-serif;
  max-width: 100%;
  margin-bottom: 25px;
  text-align: center;
  padding: 0px 0px 23px 0px;
}
.magical-moments-section .elementor-widget-text-editor {
  margin-bottom: 30px;
  width: 100%;
  max-width: 550px;
}
.magical-moments-section .elementor-widget-text-editor p {
  line-height: 1.4;
  margin: 0 0 1.5em;
  font-family: 'Dongle', sans-serif;
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #848892;
  text-align: center;
}
.magical-moments-section .custom-enquiry-btn {
  background-color: #FFABCE !important;
  color: #fff !important;
  padding: 15px 40px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  margin-top: 10px;
  border: 2px solid #FFABCE !important;
  border-radius: 4px;
}
.magical-moments-section .custom-enquiry-btn:hover {
  background-color: #c2185b !important;
  border-color: #c2185b !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
  color: #fff !important;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .magical-moments-section {
    padding: 320px 0px;
  }
}
@media (max-width: 1199px) {
  .magical-moments-section {
    padding: 250px 0px;
  }
  .magical-moments-section .magical-heading {
    font-size: 28px;
  }
  .magical-moments-section .elementor-widget-text-editor p {
    font-size: 24px;
  }
  .magical-moments-section .custom-enquiry-btn {
    font-size: 17px;
    padding: 14px 35px;
  }
}
@media (max-width: 991px) {
  .magical-moments-section {
    padding: 200px 0px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .magical-moments-section .elementor-widget-wrap {
    max-width: 500px;
    padding: 0 20px;
  }
  .magical-moments-section .elementor-widget-image img, .magical-moments-section .magical-logo-img {
    max-width: 100px !important;
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 25px;
  }
  .magical-moments-section .magical-heading {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .magical-moments-section .elementor-widget-text-editor {
    max-width: 450px;
  }
  .magical-moments-section .elementor-widget-text-editor p {
    font-size: 22px;
    line-height: 1.3;
  }
  .magical-moments-section .custom-enquiry-btn {
    font-size: 16px;
    padding: 13px 32px;
  }
}
@media (max-width: 767px) {
  .magical-moments-section {
    padding: 180px 0px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .magical-moments-section .elementor-widget-wrap {
    max-width: 320px;
    padding: 0 20px;
  }
  .magical-moments-section .elementor-widget-image img, .magical-moments-section .magical-logo-img {
    max-width: 70px !important;
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 15px;
  }
  .magical-moments-section .magical-heading {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
  }
  .magical-moments-section .elementor-widget-text-editor {
    max-width: 300px;
    margin-bottom: 20px;
  }
  .magical-moments-section .elementor-widget-text-editor p {
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 1em;
  }
  .magical-moments-section .custom-enquiry-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}
@media (max-width: 575px) {
  .magical-moments-section {
    padding: 160px 0px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .magical-moments-section .elementor-widget-wrap {
    max-width: 280px;
    padding: 0 15px;
  }
  .magical-moments-section .elementor-widget-image img, .magical-moments-section .magical-logo-img {
    max-width: 65px !important;
    width: 65px !important;
    height: 65px !important;
    margin-bottom: 12px;
  }
  .magical-moments-section .magical-heading {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
  }
  .magical-moments-section .elementor-widget-text-editor {
    max-width: 260px;
    margin-bottom: 18px;
  }
  .magical-moments-section .elementor-widget-text-editor p {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 0.8em;
  }
  .magical-moments-section .custom-enquiry-btn {
    font-size: 13px;
    padding: 9px 22px;
  }
}
@media (max-width: 479px) {
  .magical-moments-section {
    padding: 140px 0px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .magical-moments-section .elementor-widget-wrap {
    max-width: 250px;
    padding: 0 12px;
  }
  .magical-moments-section .elementor-widget-image img, .magical-moments-section .magical-logo-img {
    max-width: 55px !important;
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 10px;
  }
  .magical-moments-section .magical-heading {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .magical-moments-section .elementor-widget-text-editor {
    max-width: 230px;
    margin-bottom: 15px;
  }
  .magical-moments-section .elementor-widget-text-editor p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 0.6em;
  }
  .magical-moments-section .custom-enquiry-btn {
    font-size: 12px;
    padding: 8px 20px;
  }
}
.crown-party-slider-section {
  position: relative;
}
.crown-party-slider-section .wpo-section-title {
  margin-bottom: 50px;
}
.crown-party-slider-section .container-fluid {
  padding: 0 30px;
  max-width: 1920px;
  margin: 0 auto;
}
.crown-image-carousel {
  padding: 20px 0 50px;
}
.crown-image-carousel .swiper-slide {
  width: auto !important;
  max-width: 562px;
  height: auto;
}
.crown-image-carousel .swiper-slide-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(183, 103, 137, 0.15);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  width: 100%;
}
.crown-image-carousel .swiper-slide-image {
  width: 100%;
  height: 843px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 12px;
}
.crown-image-carousel .swiper-slide:hover .swiper-slide-inner {
  box-shadow: 0 20px 30px rgba(183, 103, 137, 0.3);
  transform: translateY(-10px);
}
.crown-image-carousel .swiper-slide:hover .swiper-slide-image {
  transform: scale(1.05);
}
.crown-image-carousel .slide-caption {
  text-align: center;
  margin-top: 20px;
  font-family: "Cinzel Decorative", sans-serif;
  font-size: 24px;
  color: #b76789;
  font-weight: 700;
  transition: color 0.3s ease;
}
.crown-image-carousel .swiper-slide:hover .slide-caption {
  color: #ffabce;
}
@media (max-width: 1400px) {
  .crown-image-carousel .swiper-slide-image {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .crown-image-carousel .swiper-slide-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .crown-image-carousel .swiper-slide-image {
    height: 450px;
  }
  .crown-party-slider-section .container-fluid {
    padding: 0 15px;
  }
}
.character-slider-section {
  padding: 35px 0;
  background: linear-gradient(90deg, #ffe6f2 0%, #fff7fb 50%, #ffe6f2 100%);
  position: relative;
}
.character-slider-title {
  text-align: center;
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: normal;
  font-size: 30px;
  margin-bottom: 40px;
}
.character-carousel {
  padding: 0px;
}
.character-carousel .swiper-wrapper {
  align-items: stretch;
}
.character-carousel .swiper-slide {
  width: 280px;
}
.character-slide {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: block;
}
.character-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.character-slide figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  color: #4a4a4a;
  font-weight: 500;
  font-family: "Dongle", sans-serif;
  background: transparent;
}
@media (max-width: 1200px) {
  .character-carousel .swiper-slide {
    width: 240px;
  }
}
@media (max-width: 991px) {
  .character-slider-section {
    padding: 60px 0;
  }
  .character-carousel .swiper-slide {
    width: 220px;
  }
}
@media (max-width: 575px) {
  .character-slider-title {
    font-size: 24px;
    line-height: 1.2;
  }
  .character-carousel .swiper-slide {
    width: 80%;
  }
}
.contact-ft .footer-contact-list {
  padding-left: 0;
  margin: 0;
}
.contact-ft .footer-contact-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-ft .footer-contact-icon {
  display: inline-block;
  width: 32px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.contact-ft .footer-mail-icon {
  background-image: url('../images/contact/email-contact-icon.svg');
}
.contact-ft .footer-call-icon {
  background-image: url('../images/contact/phone-contact-icon.svg');
}
.contact-ft .footer-contact-text {
  color: #ffaccf !important;
  font-size: 25px;
  font-family: "Dongle", sans-serif !important;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
}
.contact-ft .footer-contact-text:hover {
  color: #ffaccf !important;
}
.about-bottom-banner {
  padding: 0px 60px 0px 60px;
  margin-bottom: 20px;
}
.about-bottom-banner .elementor-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.about-bottom-banner__column {
  width: 100%;
}
.about-bottom-banner__column-inner {
  background-image: url("../images/Footer-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px 100px 0px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.about-bottom-banner__content {
  text-align: center;
}
.about-bottom-banner__heading {
  font-family: 'Cinzel Decorative', sans-serif;
  font-size: 32px;
  font-weight: normal;
  color: #232F4B;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .about-bottom-banner__heading {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1024px) {
  .about-bottom-banner {
    padding: 0px 0px 0px 0px;
  }
}
.premium-packages .container, .enhancements-section .container {
  width: 100%;
  max-width: 1400px;
}
.premium-packages .package-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}
.premium-packages .package-card {
  border: 2px solid #FFABCE;
  background: #fff;
  overflow: hidden;
  position: relative;
  flex: 0 0 440px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 10px;
}
.premium-packages .package-card .package-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.premium-packages .package-card .package-image img {
  width: 100%;
  height: auto;
  display: block;
}
.premium-packages .package-card .package-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 171, 206, 0.4);
  z-index: 1;
}
.premium-packages .package-card .package-image h3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 30px;
  font-weight: normal;
  margin: 0;
  text-align: center;
  font-family: 'Cinzel Decorative';
  width: 100%;
  line-height: 1.2;
}
.premium-packages .package-card .package-image p {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 24px;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  font-family: "Dongle", sans-serif;
  width: 100%;
  font-weight: 500;
  line-height: 1.2;
}
.premium-packages .package-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #FFABCE;
  margin-top: 20px;
}
.premium-packages .package-card table th {
  background: #FFABCE;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border: 1px solid #FFABCE;
  border-top: none;
  font-size: 20px;
  font-family: "Dongle", sans-serif;
  letter-spacing: 0.5px;
}
.premium-packages .package-card table td {
  background: #fff;
  color: #838383;
  text-align: center;
  border: 1px solid rgba(255, 171, 206, 0.5);
  font-size: 20px;
  font-family: "Dongle", sans-serif;
  font-weight: 500;
}
.premium-packages .package-card table tr:last-child td {
  border-bottom: none;
}
.premium-packages .package-card ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  background: #fff;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.premium-packages .package-card ul li {
  color: #848892;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Dongle", sans-serif;
  line-height: 1.2;
}
.premium-packages .package-card ul li:last-child {
  margin-bottom: 0;
}
.premium-packages .package-card ul li i, .premium-packages .package-card ul li span.elementor-icon-list-icon, .premium-packages .package-card ul li i.fas.fa-check-circle {
  color: #FFABCE !important;
  margin-right: 12px;
  font-size: 17px;
  flex-shrink: 0;
  font-family: "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 767px) {
  .premium-packages .package-card ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.enhancements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}
.enhancements-card {
  border: 2px solid #FFABCE;
  background: #fff;
  overflow: hidden;
  position: relative;
  flex: 0 0 440px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}
.enhancements-card .card-header {
  background: #FFABCE;
  color: #fff;
  padding: 27px;
  text-align: center;
  border-bottom: 1px solid #f3e9f0;
}
.enhancements-card .card-header h3 {
  color: #fff;
  margin: 0;
  font-size: 25px;
  line-height: 37px;
  font-weight: normal;
  letter-spacing: 0.5px;
  font-family: 'Cinzel Decorative';
}
.enhancements-card .card-header .eyebrow {
  margin: 14.5px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: "Dongle", sans-serif;
}
.enhancements-card .card-body {
  padding: 30px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.enhancements-card .card-body .lead {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 6px;
  font-family: "Dongle", sans-serif;
}
.enhancements-card .card-body h5 {
  margin: 14px 0 6px;
  font-size: 27px;
  font-weight: 400;
  color: #FFABCE;
  font-family: "Dongle", sans-serif;
}
.enhancements-card .card-body p {
  margin: 0;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 1px;
  color: #848892;
  font-family: "Dongle", sans-serif;
}
.pricing_section {
  padding: 120px 0px 120px 0px;
}
@media (max-width: 767px) {
  .pricing_section {
    padding: 80px 0px 80px 0px;
    display: block !important;
  }
}
.pricing_section > .container {
  width: 100%;
  max-width: 2200px;
  padding-left: 40px;
  padding-right: 40px;
}
@media(max-width:767px) {
  .pricing_section > .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.pricing_section .wpo-section-title span, .pricing_section .wpo-section-title h2 {
  color: #f29ab8;
}
.pricing_section .wpo-section-title h2 {
  letter-spacing: 1px;
}
.pricing_section .wpo-pricing-section {
  width: 100%;
}
.pricing_section .wpo-pricing-wrap {
  width: 100%;
}
.pricing_section .wpo-pricing-wrap .wpo-pricing-item {
  border: 1px solid #f3e9f0;
  padding-left: 10px;
  padding-right: 10px;
}
.pricing_section .wpo-pricing-text h4 {
  color: #FFABCE;
  font-size: 20px;
  text-transform: uppercase;
}
.pricing_section .wpo-pricing-text h2 {
  color: #f29ab8;
  font-size: 32px;
  font-weight: 700;
}
.pricing_section .wpo-pricing-text h2 span {
  font-size: 16px;
  margin-left: 8px;
}
.pricing_section .wpo-pricing-bottom-text h5 {
  color: #ffabce;
  font-size: 27px;
  font-weight: 400;
}
.pricing_section .wpo-pricing-bottom-text p {
  color: #848892;
  font-size: 24px;
  line-height: 1.7em;
  margin: 0 0 1.5em;
  font-weight: 400;
}
.pricing_section .wpo-pricing-bottom {
  padding-top: 55px;
}
.pricing_section .wpo-pricing-img {
  width: 190px;
  height: 190px;
}
.offer-section {
  margin: 10px auto;
  text-align: center;
}
.offer-section .container {
  max-width: 1500px;
}
.offer-section img {
  width: 100%;
  height: auto;
  display: block;
}
.offer-section .offer-image {
  position: relative;
}
.offer-section .offer-cta {
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  width: auto;
}
.offer-section .offer-cta a {
  display: inline-block;
}
.note-section {
  margin: 50px auto 70px;
  text-align: center;
}
.note-section .wpo-section-title span {
  display: block;
  color: #000;
}
.specialty-section {
  margin: 70px auto;
  text-align: center;
}
.specialty-section .wpo-section-title span, .specialty-section .wpo-section-title h2 {
  color: #ffabce;
}
.specialty-section .wpo-section-title span {
  display: block;
  margin-bottom: 8px;
}
.how-it-works-section {
  position: relative;
  background-color: #FFABCE;
  margin: 70px auto;
  overflow: hidden;
  width: 1170px;
}
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.how-it-works-heading {
  text-align: center;
  padding: 50px 0px 50px 0px;
}
.how-it-works-heading h2 {
  color: #fff;
  font-family: 'Cinzel Decorative', serif;
  font-size: 27px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 1px;
}
.how-it-works-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.how-it-works-column {
  flex: 1;
  min-width: 250px;
  padding: 10px 0px;
  max-width: 33.333%;
}
.how-it-works-item {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 15px;
  padding: 0px 0px 30px 0px;
}
.how-it-works-item i, .how-it-works-item i.fas.fa-check-circle {
  color: #fff !important;
  font-size: 18px;
  font-family: "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.how-it-works-text {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-family: 'Dongle', sans-serif;
  font-weight: 400;
}
.how-it-works-heart {
  position: absolute;
  color: #f29ab8;
  font-size: 60px;
  z-index: 1;
  opacity: 0.8;
}
.how-it-works-heart-1 {
  top: 20px;
  right: 30px;
  font-size: 50px;
}
.how-it-works-heart-2 {
  top: 80px;
  right: 10px;
  font-size: 80px;
}
@media (max-width: 1024px) {
  .how-it-works-section {
    width: 95%;
    padding: 50px 30px;
    margin: 70px auto;
  }
  .how-it-works-container {
    padding: 0;
  }
  .how-it-works-content {
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .how-it-works-column {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 0px 0px 20px 0px;
  }
  .how-it-works-heading {
    padding: 50px 0px 50px 0px;
  }
  .how-it-works-heading h2 {
    font-size: 27px;
  }
  .how-it-works-text {
    font-size: 24px;
    line-height: 1.5;
  }
  .how-it-works-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
    align-items: center;
  }
  .how-it-works-item i {
    font-size: 18px;
    height: 40px;
    margin-bottom: 0;
  }
  .how-it-works-heart-1 {
    font-size: 50px;
    top: 20px;
    right: 30px;
  }
  .how-it-works-heart-2 {
    font-size: 80px;
    top: 80px;
    right: 10px;
  }
}
@media (max-width: 991px) {
  .how-it-works-section {
    width: 90%;
    padding: 50px;
  }
  .how-it-works-container {
    padding: 0;
  }
  .how-it-works-content {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .how-it-works-column {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 0px 0px 20px 0px;
  }
  .how-it-works-heading {
    padding: 50px 0px 50px 0px;
  }
  .how-it-works-heading h2 {
    font-size: 27px;
  }
  .how-it-works-text {
    font-size: 24px;
    line-height: 1.5;
  }
  .how-it-works-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
    align-items: center;
  }
  .how-it-works-item i {
    font-size: 18px;
    height: 40px;
    margin-bottom: 0;
  }
  .how-it-works-heart-1 {
    font-size: 50px;
    top: 20px;
    right: 30px;
  }
  .how-it-works-heart-2 {
    font-size: 80px;
    top: 80px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .how-it-works-section {
    width: 95%;
    padding: 30px 0;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .how-it-works-container {
    padding: 0;
  }
  .how-it-works-content {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .how-it-works-column {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 0px 10px;
  }
  .how-it-works-heading {
    padding: 20px;
  }
  .how-it-works-heading h2 {
    font-size: 27px;
  }
  .how-it-works-text {
    font-size: 24px;
    line-height: 1.5;
  }
  .how-it-works-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    align-items: center;
  }
  .how-it-works-item i {
    font-size: 18px;
    height: 40px;
    margin-bottom: 0;
  }
  .how-it-works-heart-1 {
    font-size: 50px;
    top: 20px;
    right: 30px;
  }
  .how-it-works-heart-2 {
    font-size: 80px;
    top: 80px;
    right: 10px;
  }
}
.corporate-invitations-section .container {
  max-width: 1200px !important;
}
.corporate-invitations-section .elementor-section, .corporate-invitations-section .elementor-container {
  max-width: 1200px !important;
}
.corporate-invitations-section .elementor-column {
  padding: 0 15px !important;
}
.corporate-invitations-section .elementor-widget-heading .elementor-heading-title {
  color: #ffabce !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  font-family: 'Dongle', sans-serif !important;
  letter-spacing: 1px !important;
  text-align: center !important;
}
.corporate-invitations-section .elementor-widget-text-editor p {
  color: #4a4a4a !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin-bottom: 30px !important;
  font-family: 'Dongle', sans-serif !important;
  text-align: center !important;
}
.corporate-invitations-section .elementor-widget-html .header-search-form-wrapper {
  display: flex !important;
  justify-content: center !important;
  padding-bottom: 20px !important;
  margin-top: auto !important;
}
.corporate-invitations-wrapper {
  position: relative !important;
  background: #fff !important;
  border: 2px solid #ffabce !important;
  border-radius: 15px !important;
  overflow: visible !important;
  padding: 0 !important;
  display: block !important;
  width: 100% !important;
}
.corporate-invitations-wrapper .row {
  margin: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}
.corporate-invitations-wrapper .row [class*="col-"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.corporate-invitations-section .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.corporate-invitations-section .row [class*="col-"] {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 20px !important;
}
.corporate-invitations-item {
  background: #fff !important;
  padding: 25px !important;
  min-height: 100% !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  border-style: solid;
  border-width: 2px;
  border-radius: 12px;
  border-color: #FFABCE;
  justify-content: space-between !important;
}
.corporate-events-item {
  border-right: 1px solid #ffabce !important;
}
.party-invitations-item {
  border-left: none !important;
}
.corporate-invitations-item h2 {
  color: #ffabce !important;
  font-size: 27px !important;
  margin-bottom: 20px !important;
  font-weight: normal;
  font-family: 'Cinzel Decorative';
  text-align: center;
  letter-spacing: 1px !important;
}
.corporate-invitations-item p {
  color: #848892 !important;
  font-size: 24px !important;
  line-height: 1.6 !important;
  font-weight: 400;
  margin-bottom: 30px !important;
  text-align: center;
  font-family: 'Dongle', sans-serif !important;
}
.corporate-invitations-item .header-search-form-wrapper {
  display: flex !important;
  justify-content: center !important;
  margin-top: auto !important;
  width: 100% !important;
}
.corporate-invitations-item .theme-btn, .corporate-invitations-item .custom-enquiry-btn {
  background: #ffabce !important;
  color: #fff !important;
  border: 1px solid #ffabce !important;
  padding: 12px 30px !important;
  font-size: 18px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-weight: 600 !important;
  font-family: 'Dongle', sans-serif !important;
}
.corporate-invitations-item .theme-btn:hover, .corporate-invitations-item .custom-enquiry-btn:hover {
  background: #f29ab8 !important;
  border-color: #f29ab8 !important;
  color: #fff !important;
}
.corporate-invitations-item .custom-enquiry-btn-event {
  background: #ffabce !important;
  color: #9a9a9a !important;
  border: 1px solid #ffabce !important;
  padding: 12px 30px !important;
  font-size: 20px !important;
  border-radius: 8px !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-weight: 600 !important;
}
.corporate-invitations-item .custom-enquiry-btn-event:hover {
  background: #f29ab8 !important;
  border-color: #f29ab8 !important;
  color: #fff !important;
}

.corporate-invitations-item .choose-plan-btn {
  background: #FFABCE !important;
  color: #fff !important;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  letter-spacing: 1px !important;
  font-family: 'Dongle' !important;
  font-size: 27px !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  display: inline-block !important;
  text-transform: capitalize !important;
  -webkit-backface-visibility: hidden !important;
  z-index: 1 !important;
  position: relative !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
}
.corporate-invitations-item .choose-plan-btn:after {
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  width: 100% !important;
  height: 100% !important;
  content: "" !important;
  border: 1px solid #FFABCE !important;
  z-index: -1 !important;
  transition: all 0.3s !important;
}
.corporate-invitations-item .choose-plan-btn:hover {
  background: #ffabce !important;
  color: #fff !important;
}
.corporate-invitations-item .choose-plan-btn:hover:after {
  border: 1px solid #ffabce !important;
  opacity: 1 !important;
}
.customisation-notice-section {
  margin: 50px auto !important;
}
.customisation-notice-content {
  text-align: center !important;
  margin: 0 auto !important;
}
.customisation-notice-content p {
  color: #000 !important;
  font-size: 25px !important;
  line-height: 1.8 !important;
  font-weight: 400;
  font-family: 'Dongle', sans-serif !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .corporate-events-item {
    border-right: none !important;
    border-bottom: 1px solid #ffabce !important;
  }
  .party-invitations-item {
    border-left: none !important;
    border-top: none !important;
  }
}
.wpo-site-header .topbar {
  background: #ffabce !important;
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
}
.wpo-site-header .topbar ul li {
  padding: 9px 10px;
  font-size: 10px;
  line-height: 1em !important;
}
.wpo-site-header .navigation .container-fluid {
  padding: 0 50px !important;
  margin: 0 auto !important;
}
.wpo-site-header .navigation .container-fluid .row.align-items-center {
  padding: 2.3px;
  width: 100% !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
}
.wpo-site-header .site-logo.has_menu img {
  max-height: 77px !important;
  width: 92px !important;
}
/* Optimize logo positioning: Move logo to left edge and reduce padding for more menu space */
@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .wpo-site-header .site-logo.has_menu {
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
  }
  .wpo-site-header .site-logo.has_menu .custom-logo-link {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    line-height: 0 !important;
  }
  .wpo-site-header .site-logo.has_menu img.custom-logo {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    vertical-align: top !important;
  }
  /* Target the logo column - col-lg-1 containing navbar-header */
  .wpo-site-header .navigation .container-fluid .row.align-items-center > div.col-lg-1 {
    padding-left: 0 !important;
    padding-right: 15px !important;
    flex: 0 0 auto !important;
    max-width: none !important;
    width: auto !important;
  }
  /* Target the menu column - col-lg-9 */
  .wpo-site-header .navigation .container-fluid .row.align-items-center > div.col-lg-9 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: 1 1 auto !important;
  }
}
/* Additional optimization for screens 1260px-1420px */
@media screen and (min-width: 992px) and (max-width: 1420px) {
  .wpo-site-header .navigation .container-fluid .row.align-items-center > div.col-lg-1 {
    padding-right: 10px !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
  .wpo-site-header .navigation .container-fluid .row.align-items-center > div.col-lg-1 {
    padding-right: 8px !important;
  }
}
.wpo-site-header .contact-introwork-with-us {
  margin-top: 0 !important;
}
.wpo-site-header .contact-introwork-with-us ul {
  margin-bottom: 0 !important;
}
.wpo-site-header .contact-introwork-with-us ul li {
  margin-top: 6px;
  padding: 9px 10px !important;
}
@media (max-width: 767px) {
  .wpo-site-header .contact-introwork-with-us ul li {
    padding: 8px 8px !important;
    margin-top: 4px;
  }
  .wpo-site-header .contact-introwork-with-us ul li a {
    font-size: 14px;
  }
}
@media (max-width: 590px) {
  .wpo-site-header .contact-introwork-with-us {
    width: 100%;
    text-align: center;
    margin-top: 4px !important;
  }
  .wpo-site-header .contact-introwork-with-us ul {
    justify-content: center;
  }
  .wpo-site-header .contact-introwork-with-us ul li {
    padding: 6px 8px !important;
  }
}
.icon-text-1 {
  color: #fff !important;
  font-size: 24px !important;
  padding: 9px 10px !important;
}
.wpo-site-header .icon-text {
  color: #fff !important;
  font-size: 24px !important;
}
.wpo-site-header .theme-btn-s3.custom-enquiry-btn {
  background-color: #FFABCE !important;
  border: 1px solid #FFABCE !important;
  color: #fff !important;
}
.wpo-site-header #menu-main-menu .menu-item a, .wpo-site-header #navbar > ul > li > a, .wpo-site-header #navbar ul a, .wpo-site-header #navbar ul li a {
  font-weight: 700 !important;
  font-family: "Cinzel Decorative", sans-serif !important;
  font-style: normal !important;
  font-size: 15px;
  text-transform: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
  border-bottom: none !important;
  padding: 35px 17px !important;
  display: inline-block !important;
  text-decoration: none !important;
}
.wpo-site-header #menu-main-menu .menu-item a:hover, .wpo-site-header #menu-main-menu .menu-item a:focus {
  color: #FFABCE !important;
  border-bottom: none !important;
  text-decoration: none !important;
}
.wpo-site-header #navbar > ul li a:hover, .wpo-site-header #navbar > ul li a:focus {
  color: #FFABCE !important;
  border-bottom: none !important;
  font-family: "Cinzel Decorative", sans-serif !important;
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul > li > a {
    position: relative !important;
  }
  .wpo-site-header #navbar ul li a::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 0 !important;
    height: 4px !important;
    background-color: #FFABCE !important;
    transition: width 0.3s ease !important;
  }
  .wpo-site-header #navbar ul li a:hover::before, .wpo-site-header #navbar ul li a:focus::before {
    width: 100% !important;
  }
  .wpo-site-header #navbar > ul > li.current-menu-item > a::before,
  .wpo-site-header #navbar > ul > li.current_page_item > a::before {
    width: 100% !important;
  }
  .wpo-site-header #navbar > ul > li.current-menu-item > a,
  .wpo-site-header #navbar > ul > li.current_page_item > a {
    color: #FFABCE !important;
  }
}
@media screen and (min-width: 992px) {
  .wpo-site-header #navbar > ul > li > a, .wpo-site-header #navbar ul li a, .wpo-site-header #navbar ul a {
    font-family: "Cinzel Decorative", sans-serif !important;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .mobile-menu button {
    background-color: #ffabce !important;
  }
  .wpo-site-header #navbar {
    background: #ffabce !important;
    width: 85% !important;
    max-width: 350px !important;
    min-width: 280px !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
  }
  .wpo-site-header #navbar ul {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .wpo-site-header #navbar ul li {
    width: 100% !important;
    display: block !important;
  }
  .wpo-site-header #navbar ul a, .wpo-site-header #navbar ul li a, .wpo-site-header #navbar > ul > li > a {
    font-family: "Cinzel Decorative", sans-serif !important;
    width: 100% !important;
    display: block !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
  }
  .wpo-site-header #navbar .navbar-nav {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .wpo-site-header .menu-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    margin: 0 !important;
  }
}
@media (max-width: 480px) {
  .wpo-site-header #navbar {
    width: 90% !important;
    max-width: 320px !important;
  }
}
@media (max-width: 360px) {
  .wpo-site-header #navbar {
    width: 95% !important;
    max-width: 300px !important;
  }
}
.wpo-site-header #site-navigation #navbar #menu-main-menu .menu-item a, .wpo-site-header #site-navigation #navbar ul.menu li.menu-item a {
  font-family: "Cinzel Decorative", sans-serif !important;
}
.wpo-site-header .contact-intro .contact-icon {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  margin-right: 8px !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  filter: brightness(0) invert(1) !important;
}
.wpo-site-header .contact-intro .mail-icon {
  background-image: url('../images/contact/mail-icon-2.svg') !important;
}
.wpo-site-header .contact-intro .call-icon {
  background-image: url('../images/contact/call-icon-1.svg') !important;
}
.wpo-site-header .contact-intro {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}
.wpo-site-header .contact-intro ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.wpo-site-header .contact-intro ul li {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding-left: 0;
}
.wpo-site-header .contact-intro ul li .contact-icon {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.wpo-site-header .contact-intro .icon-text {
  font-size: 24px !important;
  white-space: nowrap !important;
}
@media (max-width: 991px) {
  .wpo-site-header .contact-intro {
    justify-content: flex-start !important;
  }
  .wpo-site-header .contact-intro ul {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .wpo-site-header .contact-intro ul li {
    width: 100% !important;
    padding: 8px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .wpo-site-header .contact-intro ul li .contact-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
  }
  .wpo-site-header .contact-intro .icon-text {
    font-size: 24px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .wpo-site-header .contact-intro .icon-text {
    font-size: 24px !important;
  }
  .wpo-site-header .contact-intro ul li {
    padding: 6px 0 !important;
    justify-content: center !important;
  }
}
@media (max-width: 480px) {
  .wpo-site-header .contact-intro .icon-text {
    font-size: 24px !important;
  }
  .wpo-site-header .contact-intro .contact-icon {
    width: 20px !important;
    height: 20px !important;
    margin-right: 6px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
@media (max-width: 991px) {
  .wpo-site-header .topbar {
    height: auto !important;
    min-height: 42px !important;
    padding: 6px 12px !important;
    width: 100% !important;
  }
  .wpo-site-header .contact-intro ul li {
    padding: 6px 8px !important;
    font-size: 14px !important;
    line-height: 1.1em !important;
  }
  .wpo-site-header .contact-intro .contact-icon {
    width: 20px !important;
    height: 20px !important;
    margin-right: 5px !important;
  }
  .wpo-site-header .contact-intro .icon-text {
    font-size: 24px !important;
    white-space: normal !important;
  }
  .wpo-site-header .contact-info ul li {
    padding: 6px 8px !important;
  }
  .wpo-site-header .navigation .container-fluid {
    padding: 0 12px !important;
    width: 100% !important;
  }
  .wpo-site-header .navigation .container-fluid .row.align-items-center {
    height: auto !important;
    padding: 10px 0 !important;
  }
}
@media (max-width: 575px) {
  .wpo-site-header .topbar {
    padding: 6px 10px !important;
  }
  .wpo-site-header .contact-intro ul {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .wpo-site-header .contact-intro ul li {
    width: 100% !important;
    padding: 13px 0 !important;
  }
  .wpo-site-header .navigation .container-fluid {
    padding: 0 10px !important;
  }
}
@media (max-width: 425px) {
  .fillout-embed-wrapper {
    height: 2200px !important;
  }
}

/* Meet Our Team — team.php */
.cjp-team-page .container {
  max-width: 1470px;
}
.cjp-team-kicker {
  font-family: "Dongle", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffabce;
  margin: 0 0 8px;
  line-height: 1.2;
}
.cjp-team-role {
  font-family: "Dongle", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #848892;
  margin: 0 0 22px;
  letter-spacing: 0.04em;
}
.cjp-team-founder {
  background: rgba(255, 171, 206, 0.1);
  padding-top: 80px;
  padding-bottom: 80px;
}
.cjp-team-founder__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cjp-team-founder__portrait {
  max-width: 400px;
  margin: 0 auto;
}
.cjp-team-founder__frame {
  padding: 10px;
  background: #fff;
  border: 2px solid #ffabce;
}
.cjp-team-founder__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.cjp-team-founder__copy h2 {
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
  color: #002642;
  margin: 0 0 4px;
}
.cjp-team-bio {
  font-size: 20px;
  color: #848892;
  font-weight: 400;
  margin: 0;
  max-width: 520px;
  line-height: 1.45;
}
.cjp-team-roster {
  padding-bottom: 40px;
  background: #fff;
}
.cjp-team-roster__intro {
  text-align: center;
  padding: 72px 24px 56px;
  background: linear-gradient(180deg, rgba(255, 171, 206, 0.18) 0%, #fff 100%);
}
.cjp-team-roster__eyebrow {
  font-family: "Dongle", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffabce;
  margin: 0 0 10px;
  line-height: 1.2;
}
.cjp-team-roster__intro h2 {
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.15;
  color: #002642;
  margin: 0 0 24px;
}
.cjp-team-roster__lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 22px;
  line-height: 1.7;
  color: #6e6e6e;
}
.cjp-team-roster__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 340px;
  margin: 0 auto;
}
.cjp-team-roster__divider span {
  flex: 1;
  height: 1px;
  background: #ffabce;
}
.cjp-team-roster__divider img {
  display: block;
  flex-shrink: 0;
}
.cjp-team-owner {
  padding: 0 24px 64px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 171, 206, 0.2) 100%);
}
.cjp-team-owner__card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px 48px;
  background: #fff;
  border: 2px solid #ffabce;
  box-shadow: 0 20px 48px rgba(255, 171, 206, 0.28);
  text-align: center;
}
.cjp-team-owner__badge {
  display: inline-block;
  margin: 0 0 22px;
  padding: 10px 22px 8px;
  background: #ffabce;
  color: #fff;
  font-family: "Dongle", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.cjp-team-owner__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  text-align: left;
}
.cjp-team-owner__portrait {
  position: relative;
  flex: 0 0 400px;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}
.cjp-team-owner__frame {
  padding: 14px;
  background: #fff;
  border: 2px solid #ffabce;
  box-shadow: inset 0 0 0 6px rgba(255, 171, 206, 0.15);
}
.cjp-team-owner__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.cjp-team-owner__crown {
  position: absolute;
  right: -18px;
  bottom: -12px;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(255, 171, 206, 0.4));
}
.cjp-team-owner__copy {
  flex: 1;
  min-width: 0;
}
.cjp-team-owner__copy h2 {
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: #002642;
  margin: 0 0 20px;
  text-align: left;
}
.cjp-team-owner__lead {
  font-size: 23px;
  line-height: 1.65;
  color: #002642;
  margin: 0 0 18px;
}
.cjp-team-owner__copy p {
  font-size: 22px;
  line-height: 1.7;
  color: #6e6e6e;
  margin: 0 0 18px;
}
.cjp-team-owner__copy p:last-child {
  margin-bottom: 0;
}
.cjp-team-roster__subhead {
  text-align: center;
  padding: 48px 24px 16px;
  background: #fff;
}
.cjp-team-roster__subtitle {
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #002642;
  margin: 8px 0 0;
}
.cjp-team-profile {
  padding: 72px 0;
}
.cjp-team-profile:nth-of-type(even) {
  background: rgba(255, 171, 206, 0.08);
}
.cjp-team-profile__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 1400px;
  margin: 0 auto;
}
.cjp-team-profile--reverse .cjp-team-profile__inner {
  flex-direction: row-reverse;
}
.cjp-team-profile__portrait {
  flex: 0 0 340px;
  width: 340px;
  max-width: 100%;
}
.cjp-team-profile__copy {
  flex: 1;
  min-width: 0;
  max-width: 760px;
}
.cjp-team-profile--reverse .cjp-team-profile__portrait,
.cjp-team-profile--reverse .cjp-team-profile__copy {
  order: unset;
}
.cjp-team-profile__frame {
  padding: 12px;
  background: #fff;
  border: 2px solid #ffabce;
  box-shadow: 0 14px 32px rgba(255, 171, 206, 0.22);
}
.cjp-team-profile__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.cjp-team-profile__copy h3 {
  font-family: "Cinzel Decorative", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: #002642;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.cjp-team-profile__copy h3::before,
.cjp-team-profile__copy h3::after {
  display: none;
  content: none;
}
.cjp-team-profile__lead {
  font-size: 23px;
  line-height: 1.65;
  color: #002642;
  font-weight: 400;
  margin: 0 0 18px;
}
.cjp-team-profile__copy p {
  font-size: 22px;
  line-height: 1.7;
  color: #6e6e6e;
  margin: 0 0 18px;
}
.cjp-team-profile__copy p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cjp-team-roster__intro {
    padding: 56px 20px 44px;
  }
  .cjp-team-roster__intro h2 {
    font-size: 32px;
  }
  .cjp-team-owner {
    padding: 0 16px 48px;
  }
  .cjp-team-owner__card {
    padding: 48px 28px 32px;
  }
  .cjp-team-owner__inner {
    flex-direction: column;
    gap: 32px;
  }
  .cjp-team-owner__portrait {
    flex: none;
    width: 100%;
    max-width: 340px;
  }
  .cjp-team-owner__copy h2 {
    font-size: 28px;
    text-align: center;
  }
  .cjp-team-owner__copy {
    text-align: center;
  }
  .cjp-team-roster__subtitle {
    font-size: 26px;
  }
  .cjp-team-profile {
    padding: 52px 0;
  }
  .cjp-team-profile__inner,
  .cjp-team-profile--reverse .cjp-team-profile__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .cjp-team-profile__portrait {
    flex: none;
    width: 100%;
    max-width: 340px;
  }
  .cjp-team-profile__copy {
    max-width: none;
    width: 100%;
    text-align: center;
  }
  .cjp-team-profile__copy h3 {
    font-size: 26px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .cjp-team-roster__intro h2 {
    font-size: 26px;
  }
  .cjp-team-roster__eyebrow {
    font-size: 20px;
  }
  .cjp-team-roster__lead {
    font-size: 20px;
  }
  .cjp-team-profile__copy h3 {
    font-size: 22px;
  }
  .cjp-team-profile__lead,
  .cjp-team-profile__copy p,
  .cjp-team-owner__lead,
  .cjp-team-owner__copy p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cjp-team-founder {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cjp-team-founder__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cjp-team-founder__copy h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .cjp-team-founder__copy h2 {
    font-size: 24px;
  }
  .cjp-team-kicker {
    font-size: 18px;
  }
}