@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Muli:400,400i,600,700,800&display=swap");

@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: "SCRIPTIN";
  src: url("../fonts/SCRIPTIN.ttf") format("woff2"), url("../fonts/SCRIPTIN.ttf") format("tff");
  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: "Muli";
  color: #848892;
  background-color: #fff;
  font-size: 15px;
  font-size: 1rem;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #848892;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #002642;
  font-family: "Futura PT";
  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;
  }
}

.swiper-button-prev:after,
.swiper-button-next::after {
  display: none;
}

.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: 70px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

/*** 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: #86a0b6;
  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: rgba(134, 160, 182, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #86a0b6;
  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: #86a0b6;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/** 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: 40px;
  }
}

.wpo-section-title span,
.wpo-section-title-s2 span {
  text-transform: capitalize;
  font-size: 20px;
  color: #738ea5;
  font-family: "Muli";
}

@media (max-width: 575px) {

  .wpo-section-title span,
  .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;
  text-transform: uppercase;
  font-family: "Futura PT";
  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: #86a0b6;
}

@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 #86a0b6;
  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: #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;
}

.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 #fff;
  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: #cde0ef;
}

.theme-btn.theme-btn-s3:after,
.theme-btn-s3.theme-btn-s3:after,
.theme-btn-s4.theme-btn-s3:after {
  border: 1px solid #cde0ef;
}

.theme-btn.theme-btn-s4,
.theme-btn-s3.theme-btn-s4,
.theme-btn-s4.theme-btn-s4 {
  background: #86a0b6;
  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 #86a0b6;
}

.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: #86a0b6;
  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 #86a0b6;
}

.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;
}

.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: #86a0b6;
  -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: #86a0b6;
}

.preloader {
  background-color: #4a6f8e;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  overflow: hidden;
}

.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: 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: left;
  font-size: 0;
}

.preloader * {
  transition: all 0.3s;
}

.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}

.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.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;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-slider,
.static-hero,
.wpo-hero-slider-s2,
.wpo-hero-slider-s3 {
  width: 100%;
  height: 790px;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2,
  .wpo-hero-slider-s3 {
    height: 600px;
  }
}

@media (max-width: 767px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2,
  .wpo-hero-slider-s3 {
    height: 500px;
  }
}

.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: rgba(134, 160, 182, 0.3);
  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/shape.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/shape2.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 h2,
.static-hero .slide-title h2,
.wpo-hero-slider-s2 .slide-title h2 {
  font-size: 100px;
  font-weight: 500;
  line-height: 60px;
  margin: 10px 0 35px;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 1199px) {

  .wpo-hero-slider .slide-title h2,
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 50px;
    font-size: 3.3333333333rem;
  }
}

@media (max-width: 991px) {

  .wpo-hero-slider .slide-title h2,
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 40px;
    font-size: 2.6666666667rem;
    line-height: 55px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {

  .wpo-hero-slider .slide-title h2,
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 30px;
    font-size: 2rem;
    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;
}

@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: 18px;
}

.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: 780px;
}

@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: #86a0b6;
  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: #86a0b6;
}

.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: #edf3f8;
  height: 780px;
  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: 700px;
  }
}

.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: 710px;
  position: relative;
  height: 840px;
  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: none;
  }
}

.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: 0;
    text-align: center;
  }
}

.static-hero-s2 .text-grid h3 {
  font-size: 35px;
  font-size: 2.3333333333rem;
  margin: 0 0 0.7em;
}

@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 .bride {
  padding-left: 0;
  text-align: right;
}

@media (max-width: 767px) {
  .static-hero-s2 .bride {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.static-hero-s2 .bride .couple-img {
  margin-bottom: 20px;
}

.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 {
  padding-right: 0;
}

.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: #86a0b6;
}

.static-hero-s2 .flower-shape-1 {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
}

@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;
}

@media (max-width: 1399px) {
  .static-hero-s2 .flower-shape-2 img {
    width: 70%;
  }
}

.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 #86a0b6;
  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;
  }
}

/* 3.4 wpo-video-section*/
.wpo-video-section,
.wpo-video-section-s2 {
  position: relative;
  z-index: 1;
}

.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: rgb(67 81 94 / 25%);
}

.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: 130px;
  height: 130px;
  border: 5px solid #904e27;
  text-align: center;
  border-radius: 50%;
  line-height: 120px;
  background: rgba(255, 255, 255, .8);
}

@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: 61px;
  color: #904e27;
}

@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;
  }

  .wpo-video-section-s2 .wpo-video-img img {
    width: 190%;
    height: 300px;
    max-width: unset;
  }
}

/*--------------------------------------------------------------
3.6 wpo-portfolio-section
--------------------------------------------------------------*/
.wpo-portfolio-section,
.wpo-portfolio-section-s2,
.wpo-portfolio-section-s3,
.wpo-portfolio-section-s4 {
  padding-top: 0;
}

.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%;
}

.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;
}

.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: 0;
  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: #6788a7;
}

.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,
.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: #002642;
}

.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: #86a0b6;
}

.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: rgba(255, 255, 255, 0.8);
  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);
}


/* 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;
}

/*======================================
 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: #86a0b6;
}

/*--------------------------------------------------------------
6.3 wpo-video-section-s2
--------------------------------------------------------------*/
.wpo-video-section-s2 {
  padding-top: 0;
}

.wpo-video-section-s2:before {
  display: none;
}

/*--------------------------------------------------------------
6.5 wpo-portfolio-section-s2
--------------------------------------------------------------*/
.wpo-portfolio-section-s2 {
  padding: 0 60px;
}

@media (max-width: 767px) {
  .wpo-portfolio-section-s2 {
    padding: 0;
  }
}

.wpo-portfolio-section-s2 .portfolio-grids .grid img {
  max-height: 460px;
}

.wpo-portfolio-section-s2 .portfolio-grids .grid:first-child {
  width: 25%;
}

@media (max-width: 1200px) {
  .wpo-portfolio-section-s2 .portfolio-grids .grid:first-child {
    width: 100%;
  }
}

.wpo-portfolio-section-s2 .portfolio-grids .grid:last-child {
  width: 25%;
}

@media (max-width: 1200px) {
  .wpo-portfolio-section-s2 .portfolio-grids .grid:last-child {
    width: 100%;
  }
}

.wpo-portfolio-section-s2 .portfolio-grids .grid .img-holder .hover-content i {
  font-size: 30px;
  color: #002642;
}

/* 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;
  height: 100%;
}

.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text {
  padding: 100px 35px;
  text-align: center;
  background: #edf3f8;
  height: 100%;
  position: relative;
}

.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text h1 {
  font-size: 4.5em;
}

.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text .wpo-event-text-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text {
    padding: 100px 15px;
  }
  #menu a {
    font-size: .7em;
    padding: 0 3px;
  }
}

.wpo-event-section .wpo-event-wrap .wpo-event-item .wpo-event-text h2 {
  font-size: 25px;
  text-transform: uppercase;
  border-bottom: 1px solid #c4d8e4;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.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: 18px;
  line-height: 30px;
}

.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);
  }
}

.section-bg,
.section-bg .wpo-event-wrap .wpo-event-item .event-shape-1,
.section-bg .wpo-event-wrap .wpo-event-item .event-shape-2 {
  background-color: #edf3f8;
}

@media (min-width: 768px) {
  #slider-1 {
    background-image: url('../../assets/images/slider/slide-1.jpg');
  }
}
@media (max-width: 767px) { 
  #slider-1 {
    background-image: url('../../assets/images/slider/slide-1-mobile.jpg');
  }
}
.bg-orange {
  background: #e09782 !important;
}
.bg-mung-cuoi {
  background: #e09782 !important;
  border-radius: 2px !important;
  padding: 50px 25px !important;
}

.bg-mung-cuoi h2 {
  margin-bottom: 20px !important;
  padding-top: 20px !important;
}
.text-link {
  color: #e09782;
}
#menu ul li
{
  list-style-type: none;
  display: inline;

}

#menu ul li a {
  padding-left: 5px;
  padding-right: 5px;
  color: #002642;
}
.font-wedding {
  font-family: "SCRIPTIN" !important;
}

.modal-content {
  border: none;
  background: none;
}
.modal-title {
  font-size: 3.5rem;
}

.modal-body {
  background: url("../../assets/images/letter-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  border-radius: 10px;
  border: none;
}
.thuongmen {
  font-weight: 300;
  margin-bottom: 30px;
}
.letter-content p {
  color: #4f5461;
  text-align: justify;
}

.letter-content .small p {
  font-size: 12px;
  margin: 0;
}
.signature p {
  font-style: italic;
}