:root {
  --pp-main: #fb2f74;
  --pp-purple: #1e0425;
  --pp-primary: #f2bac4;
  --pp-secondary: #82ecf3;
  --pp-accent: #00b4ef;
  --pp-white: #ffffff;
  --pp-orange: #fe6a18;
  --pp-gradient: linear-gradient( 180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) );

  --font-heading: 'Open Sans', sans-serif;
  --font-body: 'Assistant', sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-heading);
  color: var(--pp-main);
  font-size: 16px;
}

a {
  color: var(--pp-main);
  text-decoration: none;
  cursor: pointer !important;
}

  a:hover {
    color: #3291e6;
    text-decoration: none;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

@media (max-width: 992px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--pp-white);
}

  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--pp-main);
    border-top-color: var(--pp-secondary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pwu-main {
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--pp-white);
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  display: inline-flex;
  height: var(--header-height);
  vertical-align: middle;
  align-items: center;
  top: 0px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

  #header .container-fluid {
    padding: 0 60px;
  }

  #header.header-scrolled {
    top: 0;
  }

  #header .logo {
    font-size: 30px;
    margin-bottom: 0 !important;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
  }

    #header .logo a {
      color: var(--pp-second);
      display: block;
      height: 2.5rem;
    }

    #header .logo img {
      max-height: 100%;
    }

@media (max-width: 1024px) {
  #header .container-fluid {
    padding: 0 30px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 60px;
  }

    .navbar > ul > li:last-child {
      padding: 0px;
      margin-left: 60px;
    }

  .navbar a {
    display: flex;
    align-items: center;
    justify-content: unset;
    font-size: 1.25rem;
    color: #fb2f74 !important;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #ffffff !important;
    padding: 5px 2px;
    font-family: var(--font-heading);
    font-weight: 700;
  }

    .navbar a i {
      font-size: 28px;
      line-height: 0;
      margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar li:hover > a {
      color: #fb2f74 !important;
      border-color: var(--pp-white);
      cursor: pointer;
    }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--pp-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown:not(:last-child) ul {
    left: calc(50% + 15px);
    transform: translateX(-50%);
    right: initial;
  }

    .navbar .dropdown ul li {
      min-width: 200px;
    }

    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 18px;
      text-transform: none;
      color: var(--pp-main);
      border: none;
    }

      .navbar .dropdown ul a i {
        font-size: 18px;
        width: 35px;
      }

      .navbar .dropdown ul a:hover,
      .navbar .dropdown ul .active:hover,
      .navbar .dropdown ul li:hover > a {
        color: var(--pp-main);
        cursor: pointer;
      }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

.nav-link {
  transition: none !important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (max-width: 990px) {
  .navbar a {
    justify-content: center;
  }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: var(--pp-second);
  font-size: 60px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
}

  .mobile-nav-toggle.bi-x {
    color: var(--pp-main);
  }

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar > ul > li:last-child {
    padding: 0px;
    margin-left: 0px;
  }
}

.navbar-mobile {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--pp-white);
  transition: 0.3s;
  z-index: 999;
  transform: translateY(100px);
}

  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: -85px;
    right: 30px;
    z-index: 99999999;
  }

  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--pp-white);
    overflow-y: auto;
    transition: 0.3s;
  }

  .navbar-mobile > ul > li {
    padding: 0;
  }

  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 24px;
    color: var(--pp-main);
    border: none;
  }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
      color: var(--pp-second);
    }

  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 0px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--pp-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

    .navbar-mobile .dropdown ul li {
      min-width: 200px;
    }

    .navbar-mobile .dropdown ul a {
      padding: 10px 20px;
    }

      .navbar-mobile .dropdown ul a i {
        font-size: 18px;
      }

      .navbar-mobile .dropdown ul a:hover,
      .navbar-mobile .dropdown ul .active:hover,
      .navbar-mobile .dropdown ul li:hover > a {
        color: var(--pp-second);
      }

  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  position: relative;
}

/*--------------------------------------------------------------
# Hero slider
--------------------------------------------------------------*/
.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.hero-slider .slide-item {
  width: 100%;
  display: inline-flex;
  min-height: 502px;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0px;
}

.hero-slider
.swiper-pagination-progressbar
.swiper-pagination-progressbar-fill {
  background: var(--pp-main);
}

.hero-slider
.swiper-container-horizontal > .swiper-pagination-bullets
.swiper-pagination-bullet::before,
.hero-slider
.swiper-container-horizontal > .swiper-pagination-bullets
.swiper-pagination-bullet,
[class^="swiper-button-"] {
  transition: all 0.3s ease;
}

.hero-slider [class^="swiper-button-"] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}

.hero-slider .swiper-button-prev {
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  transform: translateX(-50px);
}

.hero-slider .swiper-container:hover .swiper-button-prev,
.hero-slider .swiper-container:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  color: var(--pp-main);
}

.hero-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 106px;
  text-align: left;
  color: #FFFFFF;
  text-shadow: 5px 8px 7px rgba(243, 48, 113, 0.66);
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fb2f74;
  text-transform: uppercase;
  max-width: 831px;
}

.hero-text {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  text-align: left;
  color: #646161;
  margin-bottom: 0;
  margin-top: 30px;
  max-width: 451px;
}

.hero-btn {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  float: left;
  color: #FC7210;
  background: #FFFFFF;
  border: 1px solid #F33071;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px #4EEBF5;
  height: 55px;
  width: 275px;
  border-radius: 0;
  margin-top: 46px;
  text-transform: uppercase;
}

  .hero-btn:hover {
    background-color: transparent;
    color: var(--pp-main);
    border: 1px solid var(--pp-main);
  }

.hero-btn-icon {
  position: absolute;
  width: 80px;
  height: 80px;
}

@media (max-width: 767px) {
  .hero-slider .slide-item {
    min-height: 740px;
    background-position: Center;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-btn {
    padding: 15px 30px;
    font-size: 14px;
  }

  .hero-btn-icon {
    width: 50px;
    height: 50px;
  }
}

/*--------------------------------------------------------------
# Slider BG
--------------------------------------------------------------*/
/* Slider-1*/
.slider-1 {
  background-image: url(../img/herobg-1.jpg);
}

@media (max-width: 1024px) {
  .slider-1 {
    background-image: url(../img/herobg-1-tab.jpg);
  }
}

@media (max-width: 767px) {
  .slider-1 {
    background-image: url(../img/herobg-1-mo.jpg);
  }
}
/* Slider-2*/
.slider-2 {
  background-image: url(../img/herobg-1.jpg);
}

@media (max-width: 1024px) {
  .slider-2 {
    background-image: url(../img/herobg-1-tab.jpg);
  }
}

@media (max-width: 767px) {
  .slider-2 {
    background-image: url(../img/herobg-1-mo.jpg);
  }
}
/*--------------------------------------------------------------
# booking-process
--------------------------------------------------------------*/
.booking-process {
  padding: 150px 0px;
  text-align: center;
}

.process-icon {
  display: inline-flex;
  width: 100%;
  height: auto;
  padding-top: 36px;
}

  .process-icon img {
    max-width: 100%;
    width: 62px;
     height: 62px;
    margin: 0 auto;
  }

.process-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-top: 10px !important;
  color: #646161;
}

.number-img {
  position: absolute;
  top: -26px;
  left: -22px;
}

@media (max-width: 1024px) {
  .booking-process {
    padding: 90px 0px;
  }

  .process-icon {
    width: 100%;
    height: auto;
    padding: 10px;
  }

    .process-icon img {
      width: 80px;
      height: 80px;
    }

  .process-title {
    font-size: 18px;
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .process {
    margin: 10px 0;
  }

  .process-title {
    font-size: 18px;
    margin: 10px 0;
  }
}
/*--------------------------------------------------------------
# missions
--------------------------------------------------------------*/
.missions {
  padding: 87px 50px;
  color: var(--pp-white);
  text-align: center;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mission {
  padding: 20px;
}

.mission-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mission-text {
  font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 18px !important;
line-height: 26px;
text-align: center;
text-transform: capitalize;
color: #FFFFFF;
}

.btn-mission {
  padding: 10px 30px;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 22px;
  width: 190px;
  text-align: center;
  color: #FC7210;
  background: #FFFFFF;
  border: 5px solid #FC7210;
  box-sizing: border-box;
}

  .btn-mission:hover {
    color: #fb2f74;
    background: #FFFFFF;
    border: 5px solid #fb2f74;
  }

@media (max-width: 1024px) {
  .missions {
    padding: 90px 10px;
  }

  .mission-title {
    font-size: 32px;
  }

  .mission-text {
    font-size: 18px;
  }

  .btn-mission {
    padding: 12px 30px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# testimonial
--------------------------------------------------------------*/
.testimonial {
  padding: 90px 20px;
  align-items: center;
  vertical-align: middle;
  text-align: center;
}

.feedback-star {
  display: inline-block;
  padding: 30px 0px;
}

  .feedback-star i {
    font-size: 40px;
    font-weight: 900;
    color: var(--pp-main);
    padding: 5px;
  }

.feedback-text {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3em;
  text-align: center;
}

@media (max-width: 1024px) {
  .feedback-star i {
    font-size: 32px;
  }

  .feedback-text {
    font-size: 18px;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

@media (max-width: 1024px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 60px;
  }
}

/*Partner With Us Page*/
/*-----------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------
# Partner Hero Banner
--------------------------------------------------------------*/
#PartnerBanner .container-fluid {
  padding: 0 60px;
}

.partner-hero-banner {
  width: 100%;
  display: inline-flex;
  min-height: 740px;
  align-items: center;
  justify-content: center;
  background-image: url(../img/partner-hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0px;
}

.partner-hero-title {
  font-size: 120px;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--pp-white);
  text-shadow: 0px 0px 30px var(--pp-main);
  margin-bottom: 50px;
}

.partner-hero-btn {
  padding: 15px;
  background: var(--pp-main);
  color: var(--pp-white);
  border: 0;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  border-radius: 0;
}

  .partner-hero-btn:hover {
    background-color: var(--pp-main);
    color: var(--pp-white);
  }

@media (max-width: 1024px) {
  .partner-hero-banner {
    min-height: 520px;
  }

  .partner-hero-title {
    font-size: 70px;
    line-height: 1.3em;
    text-shadow: 0px 0px 20px var(--pp-main);
  }

  .partner-hero-btn {
    padding: 10px;
    font-size: 18px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 767px) {
  .partner-hero-banner {
    min-height: 680px;
  }

  .partner-hero-title {
    font-size: 70px;
    text-align: center;
    margin-top: -70px;
    margin-bottom: 60px;
  }

  .partner-hero-btn {
    padding: 10px;
    font-size: 18px;
    text-align: center;
    width: 80%;
    position: absolute;
    left: 10%;
    right: 10%;
    margin: 0 auto;
    bottom: 70px;
  }
}

/*--------------------------------------------------------------
# Messages
--------------------------------------------------------------*/
.message {
  width: 100%;
  display: inline-block;
  align-items: center;
  justify-content: center;
  background-color: var(--pp-white);
  padding: 50px 0px;
}

.message-title {
  font-size: 60px;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--pp-main);
  margin-top: 50px;
  margin-bottom: 50px;
}

.message-title-color {
  color: var(--pp-orange);
}

.message-bar {
  width: 280px;
  display: block;
  height: 7px;
  margin: 0 auto;
  background: var(--pp-orange);
}

@media (max-width: 1024px) {
  .message {
    padding: 50px 0px;
  }

  .message-title {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .message-bar {
    width: 200px;
    height: 5px;
  }
}

@media (max-width: 767px) {
  .message {
    padding: 30px 0px;
  }

  .message-title {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .message-bar {
    width: 180px;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/feature-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0px;
}

.feature-row {
  padding: 20px 0px;
}

.feature-item {
  text-align: center;
  border-radius: 30px;
  padding: 20px;
  margin: 20px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  background-color: var(--pp-white);
  box-shadow: 10px 10px 30px var(--pp-main);
  cursor: pointer;
}

  .feature-item:hover {
    box-shadow: 10px 10px 40px var(--pp-main);
  }

.feature-img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pp-main);
}

.feature-text {
  min-height: 130px;
  font-size: 18px;
  line-height: 1.5em;
  color: var(--pp-main);
}

@media (max-width: 1024px) {
  .features {
    padding: 50px 0px;
  }

  .feature-item {
    border-radius: 20px;
    padding: 10px;
    margin: 5px;
    box-shadow: 5px 5px 20px var(--pp-main);
  }

    .feature-item:hover {
      box-shadow: 5px 5px 30px var(--pp-main);
    }

  .feature-img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-text {
    min-height: 100px;
    font-size: 14px;
    line-height: 1.3em;
  }
}

@media (max-width: 767px) {
  .features {
    padding: 30px 0px;
  }

  .feature-item {
    padding: 10px 30px;
    margin: 15px 5px;
  }

  .feature-img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .feature-text {
    min-height: 50px;
  }
}

/*--------------------------------------------------------------
# Get Started
--------------------------------------------------------------*/
.getstarted {
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--pp-white);
  padding: 90px 0px;
}

.getstarted-image-right {
  margin: 0px 0px;
  align-items: center;
  justify-content: center;
}

.getstarted-title {
  font-size: 60px;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--pp-main);
  margin-top: 50px;
  margin-bottom: 10px;
}

.getstarted-text {
  font-size: 36px;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--pp-secondary);
  margin-top: 50px;
  margin-bottom: 50px;
}

.getstarted .icon-box {
  margin: 40px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: left;
}

  .getstarted .icon-box .icon {
    float: left;
    align-items: center;
    justify-content: center;
  }

    .getstarted .icon-box .icon img {
      width: 70px;
      height: 90px;
    }

  .getstarted .icon-box .title {
    margin-left: 30px;
    font-weight: 700;
    font-size: 24px;
  }

.getstarted-btn {
  padding: 15px 50px;
  margin-left: 20px;
  margin-top: 50px;
  display: block;
  box-shadow: 20px 20px 0px var(--pp-secondary);
  background-color: var(--pp-white);
  color: var(--pp-main);
  border: 1px solid black;
  border-radius: 0;
  font-family: var(--font-heading);
  text-align: center;
  font-size: 48px;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: normal;
}

  .getstarted-btn:hover,
  .getstarted-btn:after {
    background-color: var(--pp-white);
    color: var(--pp-secondary);
  }



@media (max-width: 1024px) {
  .getstarted {
    padding: 50px 0px;
  }

  .getstarted-image-right {
    margin-top: 90px;
  }

  .getstarted-title {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .getstarted-text {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .getstarted .icon-box {
    margin: 20px 0px;
  }

    .getstarted .icon-box .icon {
      float: left;
      align-items: center;
      justify-content: center;
    }

      .getstarted .icon-box .icon img {
        width: 50px;
        height: 70px;
      }

    .getstarted .icon-box .title {
      margin-left: 10px;
      font-size: 18px;
    }

  .getstarted-btn {
    padding: 10px 30px;
    margin-left: 20px;
    margin-top: 30px;
    box-shadow: 20px 20px 0px var(--pp-secondary);
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .getstarted {
    padding: 30px 0px;
  }

  .getstarted-image-right {
    margin-top: 50px;
  }

  .getstarted-title {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .getstarted-text {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .getstarted .icon-box {
    margin: 10px 0px;
    display: inline-block;
  }

    .getstarted .icon-box .icon {
      float: left;
      align-items: center;
      justify-content: center;
    }

      .getstarted .icon-box .icon img {
        width: 40px;
        height: 50px;
      }

    .getstarted .icon-box .title {
      margin-left: 10px;
      font-size: 18px;
    }

  .getstarted-btn {
    padding: 10px 30px;
    margin-left: 20px;
    margin-top: 30px;
    box-shadow: 15px 15px 0px var(--pp-secondary);
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
# Subscription Plans
--------------------------------------------------------------*/

.subscription {
  width: 100%;
  align-items: center;
  justify-content: center;
  background-image: url(../img/subscription-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  padding: 190px 0px 90px 0px;
}

.subscription-header {
  padding: 20px 0px;
}

.subscription-header-title {
  font-size: 60px;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--pp-main);
  margin-top: 50px;
  margin-bottom: 10px;
}

.subscription-header-text {
  font-size: 36px;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--pp-secondary);
  margin-top: 50px;
  margin-bottom: 50px;
}

.subscription-container {
  padding: 20px 0px;
  margin-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-card {
  text-align: center;
  border-radius: 0px;
  border: 1px solid var(--pp-orange);
  padding: 60px;
  margin: 4%;
  width: 30%;
  background-color: var(--pp-white);
  cursor: pointer;
}

.subscription-card-left {
  box-shadow: -20px 20px 0px var(--pp-secondary);
}

.subscription-card-right {
  box-shadow: 20px 20px 0px var(--pp-secondary);
}

.subscription-card-active {
  background-image: url(../img/feature-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  margin-top: 90px;
  margin-bottom: -90px;
  margin-left: -90px;
  margin-right: -90px;
  position: relative;
  cursor: pointer;
}

.subscription-title {
  font-size: 38px;
  margin-bottom: 20px;
  margin-top: 10px;
  font-weight: 700;
  color: var(--pp-main);
}

.subscription-text {
  font-size: 24px;
  line-height: 1.5em;
  color: var(--pp-main);
}

.subscription-price {
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  color: var(--pp-main);
  margin-bottom: 0px;
}

@media (max-width: 1024px) {
  .subscription {
    padding: 100px 0px 50px 0px;
  }

  .subscription-header-title {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .subscription-header-text {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .subscription-container {
    padding: 10px 0px;
    margin-bottom: 50px;
  }

  .subscription-card {
    padding: 20px;
    margin: 2%;
    width: 33%;
  }

  .subscription-card-left {
    box-shadow: -10px 10px 0px var(--pp-secondary);
  }

  .subscription-card-right {
    box-shadow: 10px 10px 0px var(--pp-secondary);
  }

  .subscription-card-active {
    box-shadow: none;
    margin-top: 50px;
    margin-bottom: -50px;
    margin-left: -50px;
    margin-right: -50px;
  }

  .subscription-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .subscription-text {
    font-size: 14px;
  }

  .subscription-price {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .subscription {
    padding: 50px 0px 30px 0px;
  }

  .subscription-header-title {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .subscription-header-text {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .subscription-container {
    padding: 10px 0px;
    margin-bottom: 0px;
    display: block;
  }

  .subscription-card {
    padding: 20px;
    margin: 0 auto;
    width: 100%;
  }

  .subscription-card-left {
    box-shadow: 0px 10px 0px var(--pp-secondary);
  }

  .subscription-card-right {
    box-shadow: 0px 10px 0px var(--pp-secondary);
  }

  .subscription-card-active {
    box-shadow: none;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .subscription-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .subscription-text {
    font-size: 14px;
  }

  .subscription-price {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.frequentlyaskedquestions {
  width: 100%;
  align-items: center;
  justify-content: center;
  background-image: url(../img/faq-bg_new.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0px;
}

.faq-header {
  padding: 20px 0px;
  text-align: center;
}

.faq-header-title {
  font-size: 60px;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--pp-main);
  margin-top: 50px;
  margin-bottom: 10px;
}


.faq-container {
  padding: 20px 0px;
  margin-top: 50px;
}

.frequentlyaskedquestions .faq-list {
  padding: 0px;
}

  .frequentlyaskedquestions .faq-list ul {
    padding: 0;
    list-style: none;
  }

  .frequentlyaskedquestions .faq-list li + li {
    margin-top: 15px;
  }

  .frequentlyaskedquestions .faq-list li {
    padding: 20px;
    background: var(--pp-white);
    border-radius: 0px;
    border: 1px solid var(--pp-orange);
    position: relative;
  }

  .frequentlyaskedquestions .faq-list a {
    display: block;
    position: relative;
    font-size: 28px;
    line-height: 1.4em;
    font-weight: 700;
    color: var(--pp-main);
    padding: 10px 50px 10px 10px;
    outline: none;
    cursor: pointer;
  }

  .frequentlyaskedquestions .faq-list .icon-show,
  .frequentlyaskedquestions .faq-list .icon-close {
    font-size: 32px;
    color: var(--pp-main);
    position: absolute;
    right: 0;
    top: 15px;
  }

  .frequentlyaskedquestions .faq-list p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 10px 30px 10px 10px;
    color: var(--pp-main);
  }

  .frequentlyaskedquestions .faq-list .icon-show {
    display: none;
  }

  .frequentlyaskedquestions .faq-list a.collapsed {
    color: var(--pp-main);
  }

    .frequentlyaskedquestions .faq-list a.collapsed:hover {
      color: var(--pp-main);
    }

    .frequentlyaskedquestions .faq-list a.collapsed .icon-show {
      display: inline-block;
    }

    .frequentlyaskedquestions .faq-list a.collapsed .icon-close {
      display: none;
    }

@media (max-width: 1024px) {
  .frequentlyaskedquestions {
    padding: 50px 0px;
  }

  .faq-header-title {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .faq-container {
    padding: 10px 0px;
    margin-top: 10px;
  }

  .frequentlyaskedquestions .faq-list a {
    font-size: 24px;
    padding: 10px 50px 10px 10px;
  }

  .frequentlyaskedquestions .faq-list .icon-show,
  .frequentlyaskedquestions .faq-list .icon-close {
    top: 10px;
  }

  .frequentlyaskedquestions .faq-list p {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 30px 10px 10px;
  }
}

@media (max-width: 767px) {
  .frequentlyaskedquestions {
    padding: 30px 0px;
  }

  .faq-header-title {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .faq-container {
    padding: 10px 0px;
    margin-top: 0px;
  }


  .frequentlyaskedquestions .faq-list a {
    font-size: 18px;
    padding: 5px 30px 5px 5px;
  }

  .frequentlyaskedquestions .faq-list .icon-show,
  .frequentlyaskedquestions .faq-list .icon-close {
    top: 5px;
  }

  .frequentlyaskedquestions .faq-list p {
    font-size: 14px;
    line-height: 18px;
    padding: 5px 10px 5px 5px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--pp-main);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

  .back-to-top i {
    font-size: 28px;
    color: var(--pp-white);
    line-height: 0;
  }

  .back-to-top:hover {
    background: var(--pp-primary);
    color: var(--pp-white);
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

.datepicker-dropdown {
  padding: 20px !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--pp-main);
  font-size: 1rem;
  letter-spacing: 1px;
  background: var(--pp-white);
  font-family: var(--font-heading);
  font-weight: 400;
}

#footer h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

#footer p {
  margin-right: 2rem;
}

  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: var(--pp-main);
    color: var(--pp-white);
  }

    #footer .footer-top h4 {
      font-size: 22px;
      letter-spacing: 1px;
      color: var(--pp-white);
      position: relative;
      padding-bottom: 20px;
    }

    #footer .footer-top .footer-links {
      margin-bottom: 30px;
    }

      #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

        #footer .footer-top .footer-links ul li {
          padding: 10px 0;
          display: flex;
          align-items: center;
        }

          #footer .footer-top .footer-links ul li:first-child {
            padding-top: 0;
          }

        #footer .footer-top .footer-links ul a {
          color: var(--pp-white);
          transition: none !important;
          display: inline-block;
          line-height: 1;
        }

          #footer .footer-top .footer-links ul a:hover {
            text-decoration: none;
            color: var(--pp-white);
          }

  #footer .footer-newsletter {
    font-size: 14px;
  }

    #footer .footer-newsletter h4 {
      font-size: 22px;
      letter-spacing: 1px;
      color: var(--pp-white);
      position: relative;
      padding-bottom: 20px;
    }

    #footer .footer-newsletter form {
      margin-top: 30px;
      background: var(--pp-white);
      padding: 6px 10px;
      position: relative;
      border-radius: 50px;
      max-width: 80%;
      text-align: left;
      border: 5px solid var(--pp-white);
    }

      #footer .footer-newsletter form input[type="email"] {
        border: 0;
        padding: 4px 8px;
        width: calc(100% - 100px);
        color: var(--pp-main);
        outline: none;
      }

      #footer .footer-newsletter form input[type="submit"] {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px;
        background: var(--pp-main);
        color: var(--pp-white);
        transition: 0.3s;
        border-radius: 50px;
      }

        #footer .footer-newsletter form input[type="submit"]:hover {
          background: var(--pp-secondary);
        }

  #footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: var(--pp-main);
  }

  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--pp-main);
    color: var(--pp-white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }

    #footer .social-links a:hover {
      background: var(--pp-secondary);
      color: var(--pp-white);
      text-decoration: none;
    }

  #footer .fc-1 {
    max-width: 40%;
  }

  #footer .fc-1,
  #footer .fc-2,
  #footer .fc-3,
  #footer .fc-4 {
    padding-right: 0px;
    padding-left: 0px;
  }

@media (max-width: 1023px) {
  #footer .footer-newsletter form {
    max-width: 90%;
  }

  #footer .fc-1 {
    max-width: 50%;
  }

  #footer .fc-1,
  #footer .fc-3 {
    padding-right: 20px;
  }

  #footer .fc-2,
  #footer .fc-4 {
    padding-left: 80px;
  }
}

@media (max-width: 767px) {
  #footer .footer-newsletter form {
    max-width: 100%;
  }

  #footer .fc-1 {
    max-width: 100%;
  }

  #footer .fc-1,
  #footer .fc-3 {
    padding-right: inherit;
  }

  #footer .fc-2,
  #footer .fc-4 {
    padding-left: inherit;
  }

  #footer .fc-1 {
    margin-bottom: 50px;
  }

  #footer .fc-2,
  #footer .fc-3 {
    width: 50%;
  }
}

@media (max-width: 370px) {
  #footer .fc-2,
  #footer .fc-3,
  #footer .fc-4 {
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  #footer .footer-newsletter {
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Place Holder
--------------------------------------------------------------*/
::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #F33071;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #F33071;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #F33071;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #F33071;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #F33071;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #F33071;
}
/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fade-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes size-in {
  from {
    transform: scale(0.5);
  }

  to {
    transform: scale(1);
  }
}

.fade-up {
  animation: fade-up 0.5s ease-out both;
}

.fade-in {
  animation: fade-in 0.5s ease-out both;
}

.size-in {
  animation: size-in 0.5s ease both;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
}

.delay-4 {
  animation-delay: 2s;
}

/*--------------------------------------------------------------
# Contact Us Page Hero
--------------------------------------------------------------*/

.contact-p {
  padding-left: 30px;
}

#heroPage-cu {
  position: relative;
  background-image: url(../img/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width:576px) {
  #heroPage-cu {
    padding: 0 !important;
  }
}

#heroPage-cu .ml-5 {
  margin-left: 3rem !important;
}

.responsive-form .mlm-5 {
  margin-left: 3rem;
}

#heroPage-cu .input-sm {
  border-bottom: 0.5px solid #B1B1B1 !important;
}

#heroPage-cu textarea {
  background-color: #E9E7E7;
}

#heroPage-cu .pp-input {
  border: 0;
  outline: 0;
  font-family: var(--font-heading) !important;
  padding: 5px 0px;
  width: 45%;
  font-size: 14px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

  #heroPage-cu .pp-input:focus {
    border: 0.1px solid #F33071;
    background-color: white;
  }

#heroPage-cu .hero-page-wrapper {
  height: 100%;
  width: 100%;
  padding: 90px 190px;
}

.form-description > :not(:last-child) {
  margin-bottom: 0;
}

@media (max-width:1024px) {
  #heroPage-cu .hero-page-wrapper {
    padding: 90px 80px;
  }
}

@media (max-width:768px) {
  #heroPage-cu .hero-page-wrapper {
    padding: 90px 0px;
  }
}

@media (max-width:576px) {
  #heroPage-cu .hero-page-wrapper {
    padding-bottom: 0 !important;
  }
}

#heroPage-cu .hero-page-wrapper .content {
  width: 100%;
}

  #heroPage-cu .hero-page-wrapper .content h1 {
    text-align: left !important;
    color: white;
    font-size: 3.5rem !important;
  }

  #heroPage-cu .hero-page-wrapper .content p {
    color: white;
    font-size: 1.2rem;
    font-family: var(--font-heading) !important;
  }

  #heroPage-cu .hero-page-wrapper .content .content-wrapper {
    margin-left: 0 !important;
  }

    #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left {
      padding: 15px 15px;
    }

      #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left form table {
        margin: auto;
        border-spacing: 0 10px;
        border-collapse: separate;
      }

      #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left form label {
        font-size: 14px;
        color: #F33071;
        font-family: var(--font-heading) !important;
        margin: 0;
      }

      #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left form #myfile {
        font-family: var(--font-heading) !important;
        color: #aaaaaa;
      }

        #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left form #myfile #file-upload-button {
          margin-right: 20px;
        }

      #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left form #form-button {
        background-color: #F33071;
        color: white;
        outline: none;
        border: none;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        font-size: 1.4rem;
        padding: 0px 20px;
        font-family: var(--font-heading);
      }

    #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right {
      background-color: #F33071;
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }

      #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper {
        padding: 20px;
        color: white;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
      }

        #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper .sub-wrapper h5 {
          margin: 0;
          text-transform: none;
          font-size: 1rem;
        }

#heroPage-cu .sub-wrapper a {
  color: white;
}

#heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper .sub-wrapper table {
  border-spacing: 0 10px;
  border-collapse: separate;
}

  #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper .sub-wrapper table tr {
    margin: 10px 0;
  }

#heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper .contact-item {
  margin: 5px 10px;
}

#heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper .contact-icon {
  margin-right: 20px;
}

.social-links {
  color: #a5999d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 40%;
  margin: 0 auto;
}

  .social-links .social-item {
    color: var(--pp-primary) !important;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 27px;
    height: 27px;
    font-size: 0.9rem;
  }

#heroPage-cu .social-item {
  color: var(--pp-main) !important;
}

#joinCommunity {
  padding: 50px 20px;
}

  #joinCommunity h2 {
    color: #e57096;
    margin-bottom: 50px;
  }

.slide-wrapper button:hover {
  background-color: transparent !important;
}

.slide-wrapper .slick-prev {
  left: -40px;
}

.slide-wrapper .slick-next {
  right: -40px;
}

.slide-wrapper .slick-prev:before {
  content: url(../img/arrow-circle-left-solid.svg);
}

.slide-wrapper .slick-next:before {
  content: url(../img/arrow-circle-right-solid.svg);
}

.slide-wrapper .slick-prev, .slide-wrapper .slick-next {
  top: 50%;
}

.slide-wrapper .slide-item img {
  padding-top: 0 !important;
  border: 0.2px solid #F33071;
  -webkit-box-shadow: 0px 0.5px 5px #333;
  box-shadow: 0px 0.5px 5px #333;
  width: 200px;
  margin: auto;
}



.slide-wrapper2 button:hover {
  background-color: transparent !important;
}

.slide-wrapper2 .slick-prev {
  left: -40px;
}

.slide-wrapper2 .slick-next {
  right: -40px;
}

.slide-wrapper2 .slick-prev:before {
  content: url(../img/arrow-circle-left-solid.svg);
}

.slide-wrapper2 .slick-next:before {
  content: url(../img/arrow-circle-right-solid.svg);
}

.slide-wrapper2 .slick-prev, .slide-wrapper .slick-next {
  top: 50%;
}

.slide-wrapper2 .slide-item img {
  padding-top: 0 !important;
  border: 0.2px solid #F33071;
  -webkit-box-shadow: 0px 0.5px 5px #333;
  box-shadow: 0px 0.5px 5px #333;
  width: 200px;
  margin: auto;
}
/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
#heroPage-au {
  padding-top: 260px;
  padding-bottom: 270px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

  #heroPage-au p {
    font-size: 18px !important;
    color: black;
    font-family: var(--font-heading) !important;
  }

  #heroPage-au .content-wrapper {
    margin-top: -60px;
  }

@media (min-width: 1440px) {
  #heroPage-au .content-wrapper {
    width: 1080px;
  }
}

#heroPage-au .content-wrapper .quote {
  margin-top: -20px;
  text-align: center;
  text-transform: none;
  color: white;
  font-family: var(--font-body);
  font-weight: bolder;
  max-width: 760px;
  margin: auto;
}

#heroPage-au .content-wrapper .npi-img {
  width: 15%;
  margin: auto;
  display: -ms-grid;
  display: grid;
}

#ourStory {
  position: relative;
  padding: 45px 100px;
  padding-top: 0;
  margin-top: -230px;
}

.bg-gray {
  background-color: #F1F1F1;
}

#ourStory p {
  font-size: 18px !important;
  color: #333;
  font-weight: lighter;
  font-family: var(--font-heading) !important;
}

#ourStory .story-card-wrapper {
  margin: 0 !important;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 45px;
}

  #ourStory .story-card-wrapper .story-left h1 {
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    text-transform: uppercase;
    font-size: 3.5rem;
    width: fit-content;
    color: #F33071;
    margin-bottom: 1.5rem;
  }

  #ourStory .story-card-wrapper .story-left p {
    line-height: 25px;
    text-align: justify;
    margin-top: 35px !important;
  }

  #ourStory .story-card-wrapper .story-right {
    position: relative;
  }

    #ourStory .story-card-wrapper .story-right .story-img {
      position: absolute;
      width: 465px !important;
      z-index: 2000;
      bottom: -18px;
      left: 55px;
    }

    #ourStory .story-card-wrapper .story-right .tran-div {
      width: 410px;
      height: 270px;
      background-color: rgba(243, 48, 113, 0.5);
      position: absolute;
      z-index: 1900;
      bottom: 45px;
      left: 110px;
    }

    #ourStory .story-card-wrapper .story-right .wpl-img {
      position: absolute;
      z-index: 2005;
      bottom: -35px;
      right: -40px;
    }

#ourStory #for-border {
  border-bottom: 5px solid cyan;
}

#bookingSection {
  padding: 20px 115px;
  background-color: white;
}


@media (min-width:1440px) {
  #bookingSection .row {
    width: 1143px;
    margin-left: auto;
    margin-right: auto;
  }
}

#bookingSection h1 {
  font-size: 3.3rem !important;
  text-transform: uppercase;
  color: #4EEBF5;
}

#bookingSection p {
  text-align: justify;
  color: #333;
  font-size: 18px;
  font-family: var(--font-heading) !important;
}

#bookingSection #booking-img {
  width: 60%;
  margin: auto;
  display: -ms-grid;
  display: grid;
}

#bookingSection #booking-btn {
  outline: none;
  border: 5px solid #F33071;
  padding: 5px 25px;
  color: #F33071;
  font-family: var(--font-heading);
  background-color: transparent;
  text-transform: uppercase;
  margin: 20px auto;
  margin-left: 90px;
  display: -ms-grid;
  display: grid;
  font-size: 1.4rem;
}

  #bookingSection #booking-btn:hover {
    background-color: #e57096;
    color: white;
  }

.au-jc {
  padding: 50px 115px !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

  .au-jc h2 {
    margin-bottom: 20px !important;
  }

  .au-jc .social-links {
    color: #FFD8E5 !important;
    margin-bottom: 20px;
    width: 15%;
  }

/*--------------------------------------------------------------
# Responsiveness for aboutUs and ContactUs
--------------------------------------------------------------*/
@media screen and (min-width: 1440px) {
  #heroPage-cu .hero-page-wrapper .content {
    width: 1325px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1440px) {
  #heroPage-cu .hero-page-wrapper .content {
    width: 100%;
  }
}

@media screen and (max-width: 1366px) {
  #heroPage-cu .hero-page-wrapper .content {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  #ourStory {
    padding: 45px 50px;
  }

    #ourStory .story-card-wrapper .story-right .story-img {
      width: 370px !important;
    }

    #heroPage-cu .hero-page-wrapper .content {
      width: 100%;
    }

      #heroPage-cu .hero-page-wrapper .content .wrapper .sub-wrapper {
        margin: 20px 0;
      }

  #bookingSection {
    padding: 20px 35px;
  }

    #bookingSection #booking-img {
      margin-top: 35px;
      width: 65%;
    }

  #joinCommunity {
    padding: 50px 70px !important;
  }
}

@media screen and (max-width: 768px) {
  .md-ml-0 {
    margin-left: 0 !important;
  }

  .responsive-br {
    display: none;
  }

  #heroPage-cu {
    background-image: url(../img/ipad-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  header .polish-nav--item img {
    width: 20%;
  }

  #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper {
    width: 100%;
  }

    #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper h4 {
      text-align: center;
    }

    #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper .social-links {
      width: 25%;
    }

  #bookingSection #booking-btn {
    margin: 20px auto !important;
  }

  .responsive-item {
    display: none !important;
  }

  #joinCommunity {
    padding: 50px 90px !important;
  }

  .slide-wrapper .slide-item img {
    width: 255px;
  }

  #heroPage-au {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .story-right {
    width: 100%;
    height: 400px;
  }

  #ourStory {
    padding: 45px 65px;
  }

    #ourStory .story-card-wrapper .story-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }

      #ourStory .story-card-wrapper .story-right .story-img {
        position: relative !important;
        left: 0;
      }

    #ourStory .story-card-wrapper {
      width: 100%;
    }

  #bookingSection {
    padding: 20px 40px;
  }

  .au-jc .social-links {
    width: 40%;
  }
}

@media screen and (max-width: 576px) {

  .md-ml-0 {
    margin-left: 20px !important;
  }

  header .polish-nav--item img {
    width: 40%;
  }

  .slide-wrapper .slick-next {
    right: -25px;
  }

  .slide-wrapper .slick-prev {
    left: -30px;
  }

  #heroPage-cu {
    background-image: url(../img/mobile-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

    #heroPage-cu .hero-page-wrapper {
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
    }

      #heroPage-cu .hero-page-wrapper .content {
        padding-bottom: 60px;
      }

      #heroPage-cu .hero-page-wrapper .content {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
      }

        #heroPage-cu .hero-page-wrapper .content h1, #heroPage-cu .hero-page-wrapper .content p {
          text-align: center !important;
        }

        #heroPage-cu .hero-page-wrapper .content .content-wrapper {
          margin-left: -15px !important;
          margin-right: -4px !important;
          margin-top: 35px;
        }

          #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-right .wrapper h4 {
            text-align: left;
          }

  .responsive-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

    .responsive-form .mlm-5 {
      margin-left: 0 !important;
    }

  .responsive-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

    .responsive-submit #form-button {
      margin-left: auto;
      margin-right: 0;
      margin-top: 15px;
      margin-bottom: 15px;
    }

  .input-sm {
    width: 100% !important;
  }

  #ourStory .story-card-wrapper {
    width: 100%;
  }

    #ourStory .story-card-wrapper .story-right .story-img {
      left: 2px !important;
      bottom: 5px !important;
      width: 315px !important;
    }

  #heroPage-cu .hero-page-wrapper .content .content-wrapper .content-left {
    padding: 25px 20px;
  }

  .slide-wrapper .slide-item img {
    width: 260px;
  }

  #joinCommunity {
    padding: 50px 70px !important;
  }

    #heroPage-au .content-wrapper .quote {
      font-size: 1.4rem !important;
      margin-bottom: 0;
      text-align: center !important;
      margin-top: -20px;
    }

    #heroPage-au .content-wrapper .npi-img {
      width: 35%;
      display: block;
    }

  @media screen and (max-width: 768px) {
    #ourStory {
      padding: 45px 0px;
    }
  }

  #ourStory .story-card-wrapper {
    top: 20px;
    padding: 20px 20px;
  }

  #bookingSection {
    padding: 20px 20px;
  }

    #bookingSection #booking-img {
      width: 85%;
    }

  .au-jc {
    padding: 50px 90px !important;
  }

    .au-jc .social-links {
      width: 40%;
    }
}

@media screen and (max-width: 375px) {
  .story-right {
    width: 100%;
    height: 300px !important;
  }

  #heroPage-au .content-wrapper .quote {
    font-size: 1.4rem !important;
    margin-bottom: 0;
    text-align: center !important;
    margin-top: -62px !important;
  }
}

@media screen and (max-width: 360px) {
  #joinCommunity {
    padding: 50px 50px !important;
  }

  #heroPage-au {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 320px) {
  #heroPage-cu {
    height: 200vh !important;
  }

  #heroPage-au {
    height: 100vh !important;
  }

  .au-jc {
    padding: 50px 80px !important;
  }
}

app-header.reg-header header nav {
  display: none !important;
}

.mat-form-field-label {
  color: rgba(243, 48, 113, 1) !important;
}

.mat-checkbox-inner-container {
  margin-top: 3px !important;
}

@media screen and (max-width: 812px) and (min-width: 376px) {
  .story-right {
    width: 100%;
    height: 360px !important;
  }
}

.reg-header nav {
  display: none;
}

.bg-gray {
  background-color: #F1F1F1;
}

.xlg-scale {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}



/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  position: relative;
}


/*__________________________________________
|
|
|            Profile Page
|__________________________________________*/
.pf-page-bg {
  background-color: #F1F1F1;
  overflow-x: hidden;
  padding-bottom: 100px;
}

.pf-landing {
  padding-top: 20px;
}

@media (max-width:768px) {
  .pf-page-bg {
    padding-bottom: 25px;
  }

  .pf-landing {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

    .pf-landing .row {
      margin: auto;
      width: 100%;
    }
}

@media (max-width:576px) {
  .pf-landing {
    padding-top: 0;
  }

    .pf-landing .landing-row {
      background-color: white;
    }
}

.pf-landing .first-col {
  width: 396px;
}

@media (min-width:1366px) {
  .pf-landing .first-col {
    padding-left: 0px;
  }
}

@media (max-width:1024px) {
  .pf-landing .first-col {
    width: 100%;
  }
}



.pf-information {
  background-color: white;
  padding: 40px 35px;
  width: 374.89px;
  height: 373px;
  padding-bottom: 0px;
}

@media (max-width:1024px) {
  .pf-information {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media (max-width:576px) {
  .pf-information {
    height: unset;
    padding-bottom: 20px;
    margin-bottom: 5px;
  }
}

.pf-information .pf-img {
  width: 102px;
  height: 102px;
  margin: auto;
  border-radius: 50%;
}

.pf-information .pf-img img {
  object-fit: cover;
}

.pf-information .pf-name-add {
  text-align: center;
}

  .pf-information .pf-name-add .name {
    font-size: 24px;
    margin-top: 20px !important;
  }

.pf-information p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  font-family: var(--font-body) !important;
}

.pf-information .pf-name-add .address {
  margin-top: 30px;
}

.pf-information .separator {
  width: 100%;
  height: 1px;
  background-color: rgba(177, 177, 177, 1);
}

.pf-information .pf-review .rating {
  color: #c4c4c4;
  font-size: 1.425rem;
  text-align: center;
  margin-top: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

@media (max-width:768px) {
  .pf-information .pf-review .rating {
    font-size: 1.125rem;
  }
}

.pf-information .pf-review .checked {
  color: #4EEBF5;
}

.pf-information .pf-review p {
  color: black;
  margin-top: 10px;
}


.pf-slider {
  width: 373px;
  height: 373px;
}

@media (min-width:1366px) {
  .pf-slider {
    padding-left: 0px;
  }
}

@media (max-width:1024px) {
  .pf-slider {
    padding: 0 !important;
  }
}

@media (max-width:768px) {
  .pf-slider {
    width: 360px;
    height: 360px;
  }
}

@media (max-width:576px) {
  .pf-slider {
    width: 330px;
    height: auto;
    margin: auto;
    margin-bottom: 20px;
  }
}

.carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  opacity: 1;
  background-color: white;
}

.carousel {
  width: 373px;
  height: 373px;
}

@media (max-width:768px) {
  .carousel {
    width: 360px;
    height: 360px;
  }
}

@media (max-width:576px) {
  .carousel {
    width: 100%;
    height: auto !important;
  }

  .carousel-inner img {
    height: 100% !important;
  }
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #4EEBF5;
}

.pf-schedule {
  width: 373px;
  height: 373px;
  background-color: white;
  margin-left: 18px;
  padding: 18px 50px;
  padding-right: 30px;
}

@media (max-width:768px) {
  .pf-schedule {
    margin-left: 20px;
    width: 360px;
    height: 360px;
  }
}

@media (max-width:576px) {
  .pf-schedule {
    margin-left: 0;
    width: 330px;
    height: auto;
    padding: 18px 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin: auto;
  }
}

.pf-schedule p {
  font-family: var(--font-body) !important;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
}

.pf-schedule .schedule-heading {
  font-size: 18px;
}

.pf-schedule .schedule-booking {
  border: 0;
  outline: 0;
  margin-top: 14px;
  width: 175px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  color: #f33071;
  background-color: white;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid #4EEBF5;
  box-shadow: 0 4px 10px #4EEBF5;
}

.pf-schedule .days p, .pf-schedule .status-hour p {
  font-size: 16px;
  margin-bottom: 0 !important;
  line-height: 30.93px;
}

@media (max-width:576px) {
  .pf-schedule .days p, .pf-schedule .status-hour p {
    line-height: 15.93px;
  }
}

.pf-schedule .days {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pf-schedule .status-hour {
  background-color: rgba(243, 48, 113, 0.15);
  padding: 10px 40px;
}

.pf-about {
  background-color: white;
  padding: 40px 30px;
  width: 1160px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .pf-about.no-bio {
    display: none;
  }
}

@media (max-width:576px) {
  .sm-about {
    padding-bottom: 0 !important;
  }
}


.schedule-wrapper {
  transform-origin: top;
}

.scale-off {
  transform: scaleY(0);
  height: 0 !important;
}

.scale-on {
  transform: scaleY(1);
}

@media (max-width:1024px) {
  .pf-about {
    width: unset;
  }
}

.pf-about h1 {
  font-size: 24px;
  font-weight: 400;
}

.pf-about p {
  margin-top: 20px;
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

@media (max-width:576px) {
  .pf-about p {
    text-align: justify;
  }
}

.pf-about .separator {
  width: 100%;
  height: 1px;
  background-color: var(--pp-main);
  margin-top: 25px;
}

.pf-about .pf-schedule {
  padding: 0;
  margin: 0;
  width: 100%;
}

.pf-service {
  background-color: white;
  padding: 30px 30px;
  width: 1160px;
  margin-top: 20px;
}

@media (max-width:1024px) {
  .pf-service {
    width: unset;
  }
}

.pf-service h1 {
  font-size: 24px;
}

.pf-service .separator {
  width: 100%;
  height: 1px;
  background-color: rgba(177, 177, 177, 1);
  margin-top: 5px;
}

@media (max-width:576px) {
  .pf-service .separator {
    width: 101%;
  }
}

.pf-service .cate-col {
  padding: 0;
}

.pf-service .choice-col {
  padding-left: 8px;
  padding-right: 0px;
}

.pf-service .service-cate {
  width: 310px;
  margin-left: auto;
  margin-top: 35px;
  border-right: 1px solid #F33071;
  height: calc(100% - 100px);
}

@media (max-width:1024px) {
  .pf-service .service-cate {
    width: unset;
    padding-left: 15px;
  }
}

@media (max-width:576px) {
  .pf-service .service-cate {
    border-right: none;
    padding-right: 10px;
    height: auto;
  }

  .pf-service .line {
    width: 95%;
    height: 1px;
    background-color: #F33071;
    margin: auto;
  }
}

.pf-service li {
  font-family: var(--font-body) !important;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  transition: all 200ms ease-out;
  cursor: pointer;
  margin-bottom: 5px;
  user-select: none;
  font-size: 18px
}

.pf-service .tab-active {
  background-color: #F1F1F1;
}

.pf-service .tabcontent {
  padding-right: 12px;
}

@media (max-width:576px) {
  .pf-service .tabcontent {
    padding-right: 8px;
  }
}

.pf-service .service-choice {
  margin-top: 35px;
}

  .pf-service .service-choice li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

.pf-service .form-check-label {
  transition: all 200ms ease-in-out;
  cursor: pointer;
}

.pf-service .form-check-input {
  position: absolute;
  left: 50px;
  width: 1rem !important;
  border: 1px solid rgba(90, 90, 90, 0.63) !important;
  border-radius: 3px !important;
  background-color: rgba(196, 196, 196, 0.19);
  cursor: pointer;
}

@media (max-width:576px) {
  .pf-service .form-check-input {
    left: 35px;
  }
}

.pf-service .form-check-input:checked + .form-check-label {
  background-color: #F1F1F1;
}

.pf-service .service-des {
  padding-right: 35px;
}

@media (max-width:576px) {
  .pf-service .service-des {
    padding-right: 10px;
  }
}

.pf-service .service-name {
  margin-left: 65px;
}

@media (max-width:576px) {
  .pf-service .service-name {
    margin-left: 50px;
  }
}

.pf-service .form-check-input:checked {
  background-color: var(--pp-main) !important;
  border-color: var(--pp-main) !important;
}

.pf-service .service-choice .form-check {
  padding: 0 !important;
}

.pf-service .service-choice .check-wrapper {
  width: 100%;
  padding: 0px 0;
}

.pf-service .service-choice .form-check-label {
  width: 100%;
}

@media (max-width:576px) {
  .pf-service .service-choice li {
    padding-left: 10px;
    padding-right: 20px;
  }
}

.pf-service .service-choice .service-btn {
  border: 0;
  outline: 0;
  margin-top: 30px;
  width: 159px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  color: white;
  background-color: #F33071;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 4px 10px #F33071;
  margin-right: 12px;
}

.pf-cus-review {
  width: 1160px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .pf-cus-review {
    width: unset;
  }
}

@media (max-width: 768px) {
  .pf-cus-review {
    padding: 0;
  }
}

.pf-cus-review .pf-review-left {
  background-color: white;
  padding-top: 40px;
  padding-left: 40px;
  padding-bottom: 100px;
  width: 371px;
}

@media (max-width:1024px) {
  .pf-cus-review .pf-review-left {
    width: unset;
    padding-left: 20px;
  }
}

@media (max-width:768px) {
  .pf-cus-review .pf-review-left {
    width: 345px;
    padding-left: 35px;
    padding-bottom: 30px;
  }
}

@media (max-width:576px) {
  .pf-cus-review .pf-review-left {
    width: unset;
    padding-left: 35px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.pf-cus-review .pf-review-left h1 {
  font-size: 24px;
  font-weight: 400;
}

.pf-cus-review .pf-review-left .overall-rating {
  background-color: #F2F2F2;
  width: 275px;
  height: 53px;
  padding: 0px 10px;
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.pf-cus-review .rating {
  font-size: 1.465rem;
  display: inline-block;
  color: #c4c4c4;
  letter-spacing: -1px;
  display: flex;
  justify-content: center;
}

@media (max-width:768px) {
  .pf-cus-review .rating {
    font-size: 1.165rem;
  }
}

.pf-cus-review p {
  font-family: var(--font-body) !important;
  color: black;
}

.pf-cus-review .pf-review-left .rating-txt {
  font-size: 18px;
  font-family: var(--font-body) !important;
  color: black;
  margin-left: 20px;
  font-weight: 600;
}

.pf-cus-review .checked {
  color: #4EEBF5;
}

.pf-cus-review .pf-review-left .filter-wrapper {
  margin-top: 12px;
}

@media (max-width:768px) {
  .pf-cus-review .pf-review-left .filter-wrapper {
    margin-top: 20px;
  }
}

.pf-cus-review .pf-review-left .filter-wrapper p {
  font-weight: 600;
  margin-bottom: 0;
}


.pf-cus-review .pf-review-left .filter-wrapper input:checked {
  background-color: var(--pp-main);
  background-size: 80%;
  border: 1px solid var(--pp-secondary);
}

.pf-cus-review .pf-review-left .filter-wrapper .rating {
  margin-left: 18px;
}

.pf-cus-review .pf-review-left .filter-wrapper .filter-review-form {
  width: 200px;
}

  .pf-cus-review .pf-review-left .filter-wrapper .filter-review-form .form-check-input {
    border-radius: 0 !important;
  }

  .pf-cus-review .pf-review-left .filter-wrapper .filter-review-form .form-check-label {
    cursor: pointer;
  }


.pf-cus-review .pf-review-left .filter-wrapper .review-btn {
  display: block;
  width: 135px;
  height: 33px;
  border: none;
  outline: none;
  margin-right: 22px;
  font-family: var(--font-body) !important;
  font-weight: 600;
  font-size: 16px;
  background: #FFFFFF;
  border: 1px solid #4EEBF5;
}

@media (max-width:768px) {
  .pf-cus-review .pf-review-left .filter-wrapper .review-btn {
    margin-left: unset;
  }
}

.pf-cus-review .pf-review-right {
  background-color: white;
  padding: 39px 45px;
}

@media (max-width:768px) {
  .pf-cus-review .pf-review-right {
    width: 81%;
    margin-left: auto;
  }
}

@media (max-width:576px) {
  .pf-cus-review .pf-review-right {
    width: unset;
    margin-left: unset;
  }
}

.pf-cus-review .pf-review-right .separator {
  width: 100%;
  height: 1px;
  background-color: #B1B1B1;
  margin-bottom: 20px;
}


.pf-cus-review .pf-review-right .review-comment {
  margin-bottom: 20px;
}

  .pf-cus-review .pf-review-right .review-comment .cus-pp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4ECDF5 0%, #E547FF 100%);
  }

  .pf-cus-review .pf-review-right .review-comment .cus-name-date {
    margin-left: 12px;
  }

    .pf-cus-review .pf-review-right .review-comment .cus-name-date .name {
      font-size: 18px;
      font-weight: 600;
    }

    .pf-cus-review .pf-review-right .review-comment .cus-name-date .date {
      font-size: 14px;
      font-weight: 400;
      color: #646161;
    }

  .pf-cus-review .pf-review-right .review-comment .cus-comment {
    margin-top: 20px;
    align-items: center;
  }

.cus-comment.d-flex.justify-content-between p {
    width: 75%;
}

@media (max-width:1024px) {
  .pf-cus-review .pf-review-right .review-comment .cus-comment {
    flex-direction: column;
  }
}

@media (max-width:768px) {
  .pf-cus-review .pf-review-right .review-comment .cus-comment {
    align-items: unset;
  }
}

@media (max-width:576px) {
  .pf-cus-review .pf-review-right .review-comment .cus-comment {
    align-items: center;
  }
}

.pf-cus-review .left-col {
  padding-left: 0;
}

.pf-cus-review .right-col {
  padding-left: 0;
  padding-right: 0;
}

/*__________________________________________
|
|
|            Booking Process pages
|__________________________________________*/

.booking-heading {
  padding: 30px 50px;
}

@media (max-width:768px) {

  .booking-heading {
    padding-left: 25px;
  }
}

@media (max-width:576px) {

  .booking-heading {
    padding: 20px 20px;
  }

    .booking-heading img {
      width: 85px;
      height: 33px;
    }
}

.booking-steps .down-arr {
  background-color: #c4c4c4;
  width: 29px;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.booking-steps .active {
  background-color: #F33071;
}

@media (max-width:768px) {
  .booking-steps {
    margin-top: 13px;
  }
}

.booking-steps p {
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 0;
  margin-left: 10px;
}

.booking-steps .step-line {
  width: 100px;
  height: 1px;
  background-color: rgba(196, 196, 196, 0.57);
  margin-left: 17px;
  margin-right: 17px;
}

@media (max-width:768px) {
  .booking-steps .step-line {
    width: 50px;
  }
}

.booking-tech-intro {
  width: 340px;
  height: 129px;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  box-sizing: border-box;
  box-shadow: 4px 4px 20px #C4C4C4;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.85);
  padding: 27px 25px;
  margin: auto;
  margin-top: 100px;
}

@media (max-width:576px) {
  .booking-tech-intro {
    margin-top: 10px;
    width: 308px;
    height: 120px;
    padding: 27px 20px;
    margin-bottom: unset;
  }
}

.booking-tech-intro h1 {
  font-size: 20px;
}

@media (max-width:576px) {
  .booking-tech-intro h1 {
    font-size: 18px;
  }
}

.booking-tech-intro p {
  font-family: var(--font-body);
  font-size: 14px;
}

@media (max-width:576px) {
  .booking-tech-intro p {
    font-size: 13px;
  }
}

.booking-pagination {
  width: 65%;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}

.relative-btn {
  position: relative;
  left: unset;
  transform: unset;
  bottom: unset;
}

@media (max-width:768px) {
  .booking-pagination {
    bottom: 150px;
  }
}

@media (max-width:576px) {
  .booking-pagination {
    bottom: unset;
    position: relative;
    left: unset;
    transform: unset;
  }
}

.booking-pagination .pagi-btn {
  border: none;
  outline: none;
  background-color: white;
  width: 122px;
  height: 44px;
  border: 1px solid #F33071;
  box-shadow: 0px 4px 4px #4EEBF5;
  color: #B1B1B1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

@media (max-width:576px) {
  .booking-pagination {
    width: unset;
    margin: unset;
    margin-top: 40px;
    justify-content: unset;
    padding-left: 10%;
  }

    .booking-pagination .pagi-btn {
      width: 58px;
      height: 31px;
      font-size: 14px;
      box-shadow: 0px 1px 4px #4EEBF5;
      margin-right: 20px;
    }
}

.booking-pagination .active-btn {
  color: #F33071;
}

/* 2 */

.booking-schedule-picker {
  width: 95%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 125px;
}

@media (max-width:768px) {
  .booking-schedule-picker {
    width: 100%;
    padding-left: 50px;
  }
}

@media (max-width:576px) {
  .booking-schedule-picker {
    margin-bottom: unset;
    margin-top: 10px;
    padding-left: 25px;
  }
}

.booking-schedule-picker h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 18px;
}

@media (max-width: 576px) {
  .booking-schedule-picker h1 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.booking-schedule-picker .separator {
  width: 90%;
  height: 1px;
  background-color: #B1B1B1;
}

@media (max-width: 576px) {
  .booking-schedule-picker .separator {
    margin-bottom: 28px;
  }
}

.booking-schedule-picker {
  font-family: var(--font-body) !important;
  font-weight: 600;
}

  .booking-schedule-picker .day {
    width: 96.85px;
    height: 36.14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border: 2.5px solid rgba(100, 97, 97, 0.38);
    border-radius: 8px;
    font-size: 18px;
  }

@media (max-width:576px) {
  .booking-schedule-picker .day {
    width: 75.02px;
    height: 28px;
    font-size: 16px;
    margin-left: 10px;
  }
}

.booking-schedule-picker .day-control {
  font-size: 24px;
  font-weight: 400;
  margin-left: 10px;
}

  .booking-schedule-picker .day-control .control-btn {
    width: 46.98px;
    height: 36.14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: white;
    border: 2.5px solid rgba(100, 97, 97, 0.38);
    border-radius: 8px;
    margin-right: 5px;
  }

@media (max-width:576px) {
  .booking-schedule-picker .day-control .control-btn {
    width: 38px;
    height: 28px;
  }

    .booking-schedule-picker .day-control .control-btn img {
      width: 8px;
      height: 12px;
    }
}

.booking-schedule-picker .day-control .control-btn:active {
  background-color: #F2F2F2;
}

.booking-schedule-picker .day-control .control-btn:hover {
  background-color: #F2F2F2;
}

.booking-schedule-picker .day-picker {
  margin-top: 27px;
}

  .booking-schedule-picker .day-picker .dayitem {
    width: 96.85px;
    height: 36.14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 0.9;
    color: black;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid rgba(100, 97, 97, 0.38);
  }

  .booking-schedule-picker .day-picker .day-txt {
    font-weight: 400;
  }

@media (max-width:576px) {
  .booking-schedule-picker .day-picker {
    margin-top: 20px;
    padding-left: 10px;
  }

    .booking-schedule-picker .day-picker .dayitem {
      width: 72.29px;
      height: 36.14px;
    }
}

.booking-schedule-picker .day-picker .day-active {
  background-color: rgba(78, 235, 245, 0.4);
}

.booking-schedule-picker .time-picker .timeitem {
  width: 96.85px;
  height: 36.14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 0.9;
  color: black;
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 2px solid rgba(100, 97, 97, 0.38);
}

@media (max-width:576px) {
  .booking-schedule-picker .time-picker {
    padding-left: 10px;
  }

    .booking-schedule-picker .time-picker .timeitem {
      width: 93.24px;
      height: 36.14px;
      margin-bottom: 10px;
    }
}

.booking-schedule-picker .time-picker .time-active {
  background-color: rgba(78, 235, 245, 0.4);
}

.booking-appointment {
  margin-top: 75px;
}

@media (max-width:768px) {
  .booking-appointment {
    margin-top: 48px;
  }
}

.booking-appointment .booking-pagination {
  margin-left: unset !important;
  margin-right: unset !important;
  padding-left: 15px !important;
}

@media (max-width:576px) {
  .booking-appointment {
    margin-top: 0;
    padding: 0 10px;
  }
}

.booking-appointment .appointment-info {
  margin-left: auto;
}



@media (max-width:576px) {
  .booking-appointment .appointment-info h1 {
    text-align: center !important;
    margin-bottom: 20px !important;
  }
}


.booking-appointment .card-style {
  width: 378px;
  height: auto;
  background-color: white;
  border: 2px solid #C4C4C4;
  box-shadow: 0px 4px 20px #C4C4C4;
  padding: 38px 40px;
}

  .booking-appointment .card-style .b-text {
    font-weight: 700;
  }

@media (max-width:1024px) {
  .booking-appointment .card-style {
    width: unset;
  }
}

@media (max-width:576px) {
  .booking-appointment .card-style {
    border: none;
    box-shadow: none;
    padding: 5px 5px;
  }
}

.booking-appointment .card-style h1 {
  font-size: 29px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 35px !important;
}

@media (max-width:576px) {
  .booking-appointment .card-style h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.booking-appointment .card-style p {
  font-family: var(--font-body) !important;
  color: black;
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width:576px) {
  .booking-appointment .card-style p {
    font-size: 14px;
  }
}

.booking-appointment .card-style span {
  font-family: var(--font-body) !important;
  color: black;
}

@media (max-width:768px) {
  .booking-appointment .appointment-info {
    width: 48%;
    margin-left: 0;
  }
}

@media (max-width:576px) {
  .booking-appointment .appointment-info {
    width: unset;
    margin-left: auto;
  }

  .booking-appointment .fee-info {
    width: unset;
    margin-top: unset;
  }
}

.booking-appointment .card-style .ques {
  font-weight: 600;
}

.booking-appointment .card-style .b-ques {
  font-weight: 700;
}

.booking-appointment .card-style .h-text {
  font-size: 20px;
  color: var(--pp-main);
  font-weight: 600;
}

@media (max-width:576px) {
  .booking-appointment .card-style .h-text {
    font-size: 16px;
  }
}

.booking-appointment .card-style .h-color {
  color: var(--pp-main);
}

.booking-appointment .card-style form {
  font-family: var(--font-body) !important;
  color: black;
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width:576px) {
  .booking-appointment .card-style form {
    font-size: 14px;
  }
}

.booking-appointment .card-style label {
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 15px;
}

@media (max-width:576px) {
  .booking-appointment .card-style label {
    margin-bottom: 10px;
  }
}

.booking-appointment .card-style form #ph-number {
  padding: 0;
  border: 0;
  border-radius: 0 !important;
  -webkit-appearance: none !important;
  padding: 10px !important;
  border: 1px solid #b1b1b1 !important;
  width: 100%;
  outline-color: var(--pp-main);
  margin-bottom: 25px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width:576px) {
  .booking-appointment .card-style form #ph-number {
    padding: 10px !important;
    border: 1px solid #b1b1b1 !important;
  }
}

.booking-appointment .card-style form textarea {
  width: 100%;
  height: 97px;
  margin-bottom: 20px;
  padding: 10px;
  outline-color: var(--pp-main);
}

.booking-appointment .extras-info {
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: 3px;
  padding-bottom: 20px;
}

@media (max-width:768px) {
  .booking-appointment .extras-info {
    margin-top: 26px;
  }
}

@media (max-width:576px) {
  .booking-appointment .extras-info {
    padding-left: 0;
    padding-right: 0;
    margin-left: unset;
    margin-top: 10px;
  }
}

.booking-appointment .card-info {
  width: 100%;
  height: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 20px;
}

@media (max-width:768px) {
  .booking-appointment .card-info {
    margin-top: 25px;
    height: 100%;
  }
}

@media (max-width:576px) {
  .booking-appointment .card-info {
    height: unset;
    padding-left: 0;
    padding-right: 0;
    margin-top: 25px;
  }
}

.booking-appointment .card-info form input {
  width: 100%;
  border: 1px solid #C4C4C4;
  padding: 15px 10px;
  margin-bottom: 15px;
  border-radius: 0 !important;
  -webkit-appearance: none;
  height: 46.17px;
  outline-color: var(--pp-main);
}

.booking-appointment .card-info .stripe {
  margin: auto;
  display: block;
  margin-top: 20px;
}

.booking-appointment .card-info form label {
  margin-bottom: 5px;
}

.booking-appointment .card-info form input::placeholder {
  color: #C4C4C4;
}

.booking-appointment .card-info form .payment-btn {
  width: 147.74px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F33071;
  box-shadow: 0px 4px 4px #4EEBF5;
  font-family: var(--font-heading);
  font-size: 20px;
  color: #B1B1B1;
  margin: auto;
}

@media (max-width:1024px) {
  .booking-appointment .card-info form .payment-btn {
    margin-top: 35px;
  }
}

@media (max-width:576px) {
  .booking-appointment .card-info form .payment-btn {
    margin-top: unset;
  }
}

.extras-info ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--pp-main);
  opacity: 1;
  /* Firefox */
}

.extras-info :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--pp-main);
}

.extras-info ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--pp-main);
}


@media (max-width:576px) {
  .booking-appointment .card-info form .btn-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .booking-appointment .card-info form .back-btn {
    width: 71px;
    height: 44px;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--pp-main);
    background: #FFFFFF;
    border: 1px solid #F33071;
    box-shadow: 0px 1px 4px #4EEBF5;
  }

  .booking-appointment .card-info form .payment-btn {
    /*width: 147.74px;*/
    height: 44px;
    font-size: 16px;
    margin-top: 0;
    margin: unset;
  }
}

.booking-appointment .booking-pagination {
  margin-top: 45px;
  margin-bottom: 50px;
  margin-left: 7.5%;
  margin-right: unset;
  bottom: unset !important;
}

.booking-appointment .app-row {
  max-width: 1214px;
  margin: auto;
}

@media (max-width:1024px) {
  .booking-appointment .app-row {
    width: 100%;
    margin: auto;
  }
}

@media (max-width:768px) {
  .booking-appointment .app-pay-col {
    width: 100vw;
    display: flex;
  }
}

@media (max-width:576px) {
  .booking-appointment .app-pay-col {
    width: 100%;
    display: block;
  }
}

@media (max-width:768px) {

  .booking-appointment .fee-info {
    width: 48%;
    margin-top: 0 !important;
    margin-left: auto;
  }
}

@media (max-width:576px) {
  .booking-appointment .fee-info {
    margin-top: 5px !important;
    margin-left: unset;
    width: unset;
  }
}


.booking-appointment .separator {
  width: 100%;
  height: 1px;
  background-color: #b1b1b1;
}

.booking-complete {
  width: 340px;
  height: 318px;
  text-align: center;
  margin: auto;
  padding: 30px 0px;
  margin-top: 50px;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  box-shadow: 0px 4px 4px #C4C4C4;
}

@media (max-width:576px) {
  .booking-complete {
    width: 308px;
    height: auto;
  }
}

.booking-complete h1 {
  font-size: 20px;
  font-weight: 400;
}

.booking-complete p {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: black;
  margin-bottom: 0;
}

.booking-complete .b-text {
  font-weight: 700;
}

.booking-complete .ques {
  font-weight: 600;
}

.booking-complete .bth-btn {
  font-weight: 400;
  width: 120px;
  height: 44px;
  left: 658px;
  top: 405px;
  font-size: 16px;
  color: var(--pp-main);
  background: #FFFFFF;
  border: 1px solid #F33071;
  box-shadow: 0px 1px 4px #4EEBF5;
  margin-top: 20px;
}





/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--pp-main);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

  .back-to-top i {
    font-size: 28px;
    color: var(--pp-white);
    line-height: 0;
  }

  .back-to-top:hover {
    background: var(--pp-primary);
    color: var(--pp-white);
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

.datepicker-dropdown {
  padding: 20px !important;
}

button:disabled {
  cursor: not-allowed !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

.mat-list-item-content.mat-list-item-content-reverse {
  margin-top: -2px !important;
}

.booking-pagination {
  bottom: 100px !important;
}

  .booking-pagination.calendar-btn {
    bottom: 50px !important;
  }

.month-header {
  display: none !important;
}

.calendar .buttons br {
  display: none !important;
}

.month {
  font-size: 24px !important;
  font-weight: 400 !important;
  margin-bottom: 18px !important;
  font-family: var(--font-heading) !important;
}

.mat-focus-indicator.nav.mat-flat-button.mat-button-base {
  min-width: 96.85px !important;
  height: 36.14px !important;
  line-height: 20px !important;
}

.mat-focus-indicator.review-btn.mat-stroked-button.mat-button-base {
  margin-left: 0 !important
}

.text-center.mt-2.mt-md-4.mb-3.mb-md-0 {
  height: 100px;
  overflow-y: auto;
}

.payment-type img {
  padding-right: 3.75px;
}

.form-controlpay {
  width: 100%;
  border: 1px solid #C4C4C4;
  padding: 15px 10px;
  margin-bottom: 15px;
  border-radius: 0 !important;
  -webkit-appearance: none;
  height: 46.17px;
  outline-color: var(--pp-main);
}

.booking-appointment .card-style p {
  font-size: 16px !important;
}

.filter-wrapper .mat-radio-group {
  margin-top: 10px;
  display: block;
}

.mat-button-wrapper {
  color: #000;
}

.pagi-btn:hover {
  color: #F33071 !important;
}

.payment-btn:hover {
  color: #F33071 !important;
}

.process-outer {
    position: absolute;
    top: -175px;
    z-index: 1;
    right: 0;
}

.process {
  width: 177px;
  height: 170px;
  background: #FFFFFF;
  border: 1px solid #F33071;
  box-sizing: border-box;
  box-shadow: 7px 7px 7px rgba(243, 48, 113, 0.45);
  border-radius: 100%;
  margin-left: 23px;
  position: relative;
}

.product-heading {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 35px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #F33071;
  padding: 20px 0;
}

.product-section {
  padding: 80px 0;
}

.product-title h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #646161;
  padding: 10px 0;
}

.product-btn {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 19px;
  text-align: center;
  color: #F33071;
  width: 106px;
  background: #FFFFFF;
  border: 1px solid #4EEBF5;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px #4EEBF5;
  width: 106px;
    height: 32px;
    border-radius: 0;
}

  .product-btn:hover {
    color: #4EEBF5;
    background: #FFFFFF;
    border: 1px solid #F33071;
    box-shadow: 0px 4px 4px #fb2f74;
  }

.product-img img {
  max-width: 100%;
  width:100%;
}

.img-1 {
  left: 80px;
    top: 104px;
    position: absolute;
    width: 201px;
    transform: rotate(-20deg);
}
.img-2 {
  width: 201px;
    margin-right: 94px;
    float: right;
}
@media only screen and (min-device-width: 1400px) and (max-device-width: 1920px) {
    .img-2 {
  width: 201px;
    margin-right: 38px;
    float: right;
}
.img-1 {
    left: 102px;
    top: 104px;

}
.community-img::after{
	background-size: 124% !important;
}
}
.community-img {
  max-width: 460px !important;
}
.community-img-outer{
	position: relative;
	padding:44px;

}

.find-us-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #F33071;
  padding-top: 55px;
  text-transform: uppercase;
}

.find-perfect {
  padding-top: 93px;
  padding-bottom: 60px;
}

.find-perfect-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 53px;
  text-align: center;
  padding-top: 70px;
  color: #F33071;
  padding-bottom: 50px;
}

.find-perfect-text {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
  padding-left: 10px;
padding-right: 10px;
}

.find-perfect-text > :not(:first-child) {
  padding-top: 30px;
}

.col-md-6.find-perfect-img img {
    float: right;
}

.find-perfect{
 background-image: url(../img/findperfect-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 419px;
  background-attachment: initial;
}

.product-item {
  margin-bottom: 15px;
}

.show-mobile {
  display: none;
}
.community-text-mob{
display: none;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 25px;
  font-weight: bold;
  -webkit-text-stroke-color: #fb2f74;
  -webkit-text-stroke-width: 2px;
}

@media (max-width: 672px) {
	.btn-perfectnail {
    font-size: 24px !important;
    line-height: 35px !important;
    height: 46px !important;
}
  .btn.btn-primary.btn-partner {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    width: 195.79px;
    height: 46.55px;
    background: #F33071;
    border: 5px solid #F33071;
    box-sizing: border-box;
}
.form-check.signup-agreement .mat-checkbox-label br {
    display: block !important;
}
.signup-section .form-wrapper h1.text-uppercase {
    padding-top: 30px !important;
}
.process-icon {
    padding-top: 28px !important;
}
.partner-text{
	padding-bottom:10px;
}
.find-us-title {
    padding-top: 10px;
}
.community-text-mob{
  display: block !important;
}
.product-section {
    padding-bottom: 20px !important;
}
.community-text-mob p{
  font-family: var(--font-body);
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 21px;
display: flex;
align-items: center;
text-align: center;
color: rgba(0, 0, 0, 0.85);
}
.community {
  padding-bottom: 31px;
  background: none;
}
.community-text{
  display: none;
  }
.btn-community {
  padding: 0;
  width: 265px;
  height: 58px;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 54px;
  text-align: center;
  color: #F33071;
}
.img-1 {
  left: 54px;
top: 148px;
position: absolute;
width: 140px;
  transform: rotate(-20deg);
}
.img-2 {
  width: 140px;
margin-left: 10%;
margin-right: -5px;
}
.community-img::after {
    background-position: -26px 142px !important;
	    background-size: 111% !important;

}
.btn-tag img {
  width: 164px;
}
.community-img {
  background-position: -41px 46px;
}
  .partner-img{
    display: none;
  }
  .partner-img-mobile{
    display: block !important;
  }
  .community .col-md-5 {
    order: 1;
    margin-bottom: 12px;
  }
  .process-icon img {
    width: 58.56px;
    height: 53.1px;
}
.partner-img-full {
  margin-top: 46px;
  width: 100%;
  height: auto;
}
.process{
  width: 157.05px;
height: 158.38px;
margin-left: 0px;
}
  .hero-btn {
    padding: 0 !important;
    width: 232px;
height: 55px;
font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 26px;
text-align: center;
text-transform: uppercase;
color: #FC7210;
  }
  br {
    display: none;
}
.col-md-6.find-perfect-img img{
	  width:100%;
  }
  .col-md-6.find-perfect-img {
    order: 2;
    margin-top: 50px;
  }

  .find-perfect {
    padding: 30px 0;
    background: none;
  }

  .hero-slider .container {
    z-index: 1;
    position: relative;
}

  .hero-title {
    font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 36px;
line-height: 53px;
display: flex;
align-items: center;
text-align: center;
color: #FFFFFF;
text-shadow: 5px 8px 7px rgba(243, 48, 113, 0.66);
  }

  .hero-text {
    text-align: center;
  }

  .hero-banner-text {
    text-align: center !important;
  }

  .hero-btn {
    float: none;
  }

  .hero-slider .slide-item {
    min-height: 454px;
  }

  .process-outer {
    margin-top:17px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    right: 0;
  }

  .col-md-4.process {
    margin-bottom: 40px;
  }

  .show-mobile {
    display: block;
    position: relative;
  }

  .show-desktop {
    display: none;
  }

  .show-mobile .swiper-slide {
    transform: none !important;
  }

  .col-md-3.product-item {
    text-align: center;
  }

  .show-mobile .product-heading {
    text-align: center;
    display: block;
    text-align: center;
display: block;
font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 28px;
line-height: 41px;
text-transform: uppercase;
color: #F33071;
  }
  .product-img img {
    max-width: 100%;
    width: 260px;
}
.product-btn{
  width: 139.68px;
  height: 43px;
  background: #FFFFFF;
  border: 1px solid #4EEBF5;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px #4EEBF5;
  font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 29px;
text-align: center;
}
.mission-text {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
}
.mission-title{
  font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 30px;
line-height: 44px;
text-align: center;
color: #FFFFFF;
letter-spacing: 0;
}
.btn-mission {
  padding: 0;
  width: 141.25px;
  height: 50px;
  background: #FFFFFF;
  border: 5px solid #FC7210;
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #FC7210;
  text-transform: uppercase;
}
.missions {
  padding: 25px 10px;
}
.find-perfect-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
line-height: 44px;
  text-align: center;
  padding-top: 30px;
  color: #F33071;
  padding-bottom: 43px;
}
.desktop-img{
  display: none;
}
.mobile-img{
  display:block !important;
}
  .partner-title {
    padding-top: 50px;
    font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 30px;
line-height: 44px;
text-align: center;

color: #F33071;
  }

  .partner {
    min-height: 500px;
    overflow: hidden;
  }

  .partner-img {
    position: absolute;
    width: 100%;
    right: 0;
    padding: 0;
    top: 53%;
    bottom: 0;
    height: auto;
  }

  img.partner-icon {
    position: absolute !important;
    left: -140px;
  }

  .show-mobile .swiper-button-next, .show-mobile .swiper-button-prev {
    color: #F33071 !important;
  }
}

@media (max-width: 364px) {
  .partner-img {
    top: 53% !important;
  }
}
  @media (max-width: 418px) {
  .hero-text {
    line-height: normal;
  }
.col-md-6.find-perfect-img img{
	  width: 100%;
margin-left: 5px;
float: right;
  }
  .col-md-6.find-perfect-img {
    order: 2;
    margin-top: 50px;
}
  .partner-img {
    top: 47%;
  }
  .process-outer {
    margin-top: 8px;
  }

  .partner-text {
    font-size: 16px;
    line-height: normal;
  }

  .find-perfect-text {
    font-size: 16px;
    line-height: normal;
  }
}

@media (max-width: 345px) {
  .partner-img {
    top: 46%;
  }
.col-md-6.find-perfect-img img{
	  width:100%;
  }
  .btn-community {
    width: auto;
    padding: .375rem .75rem;
  }
}

@media only screen and (min-width: 410px) and (max-width: 520px) {
  .partner-title {
    padding-top: 50px;
  }
  .col-md-6.find-perfect-img img{
	  width:100%;
  }
}
.social-icons ul{
  padding: 0;
  margin: 0;
}
.social-icons li {
  margin-right: 4px;
    display: inline-block;
}
.social-icons li img {
  width: 36px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.img-1 {
    left: 27px;
}
}

.div-process{
	position:relative;
}
.col-md-3.product-item {
  padding-left: 6px !important;
  padding-right: 6px !important;
}
@media only screen and (min-width: 1400px) and (max-width: 1920px) {

}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .partner{
    min-height: 602px;
  }
  .partner-img-full {
    height: 600px;
}
.img-2 {
  margin-right: -14px;
}
.img-1 {
  left: 87px;
}
}
.mobile-img{
  display: none;
}
.partner-img-mobile{
  display: none;
}
.subscription-items ul{
  padding-left: 1.7rem;
}
.community-img::after {
    background: url(../img/community-shadow.png);
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    background-size: 138%;
    right: 0;
    bottom: 0;
    background-position:-87px -25px;
    z-index: -1;
}
.mobile-img::after {
    background: url(../img/community-shadow.png);
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    background-size: 100%;
    right: 0;
    bottom: 0;
    background-position:left;
    z-index: -1;
}
@media (max-width: 349px) {
	.hero-title {
    font-size: 29px !important;
	line-height: 35px !important;
}
}
.partner-signup .form-check{
  padding-left: 0;
}
.page {
  height: 100%;
  min-height: calc(100vh - 100px);
  background-image:url(../img/error-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10%;
}
.signup-wrapper{
	position:relative;
	}

@media only screen and (min-device-width: 350px) and (max-device-width: 572px) {
	.community .col-md-5 {
    order: 1;
    margin-bottom: 12px;
    width: 300px;
    padding: 0;
}
.community-img {
    margin-top: 0px;
}
.img-1 {
    left: 45px;
    top: 48px;
}
.img-2 {
    margin-right: 8px;
}
.community-img {
    overflow: hidden;
    padding: 20px 0;
}
.community-img::after{
	background-size: 83% !important;
}
}
@media only screen and (min-width: 320px) and (max-width: 349px) {
.img-1 {
    left: 33px;
    top: 88px;
}
.img-2 {
    margin-right: -34px;
}
.community-img::after {
    background-position: -75px 19px !important;
    background-size: 158% !important;
}
.community-img {
    margin-top:0px !important;
}
}
.btn-perfectnail{
  width: 194px;
background: #F33071;
border: 5px solid #F33071;
font-family: var(--font-heading);
font-style: normal;
font-weight: normal;
font-size: 30px;
line-height: 44px;
text-align: center;
color: #FFFFFF;
text-transform: uppercase;
}
.btn-perfectnail:hover {
  color: #fff;
}
.perfectnail-btn{
  padding-top: 50px;
  text-align: center;
}

.mat-chip-list-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 0px !important;
}
app-review-dialog.ng-star-inserted h1 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 41px;
    text-align: center;
    color: #F33071;
}
app-review-dialog.ng-star-inserted h1 b {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #000000;
	width: 100%;
    display: block;
    padding-top: 10px;
}
app-review-dialog.ng-star-inserted h1 br {
    display: none !important;
}
.review-textarea textarea.mat-input-element {
    min-height: 65px;
    resize: none !important;
}
.review-textarea .mat-form-field-flex {
    background: #FFFFFF !important;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    margin-top: 10px;
	border-radius: 0 !important;
}
.review-textarea .mat-form-field-underline {
    display: none !important;
}
.review-send-btn {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #F33071;
    background: #FFFFFF;
    border: 1px solid #F33071;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px #4eebf5;
    height: 44px;
    width: 100px;
    margin: 0 auto;
    display: block;
}
.review-calcel-btn {
        font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration-line: underline;
    color: #000000;
    background: #FFFFFF;
    border: none;
    box-sizing: border-box;
    box-shadow: none;
    margin-left: auto;
    margin-top: 7px;
    margin-right: auto !important;
    justify-content: center;
}
.review-btn-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
p.refund-text {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 41px;
    text-align: center;
    color: #F33071;
}
span.refund-text-inner {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #000000;
}
.refund-confirm-btn {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #F33071;
    background: #FFFFFF;
    border: 1px solid #F33071;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px #4eebf5;
    height: 44px;
    width: 100px;
    margin-left: auto;
    margin-right: auto !important;
    display: block;
}
.refund-cancel-btn {
        font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration-line: underline;
    color: #000000;
    background: #FFFFFF;
    border: none;
    box-sizing: border-box;
    box-shadow: none;
    margin-left: auto;
    margin-top: 7px;
    margin-right: auto !important;
    justify-content: center;
}
.mat-input-element {
    color: #333 !important;
}
@media (min-width:1024px) {
 .navbar > ul > li {
    padding: 8px 0 8px 30px !important;
}
}

.active-pinkbtn{
    color: white !important;
    background-color: #F33071 !important;
    box-shadow: 0 4px 10px #f33071 !important;
}
.active-pinkbtn:hover {
    color: #FFF !important;
}
.mat-dialog-container{
border:none !important;
}
@media (max-width:576px) {
.success-reg-outer br{
	display:block !important;
}
}

.contact-community-text{
	padding-bottom:45px;
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  .hero-slider .slide-item {
    min-height: 630px !important;
  }
  .hero-title {
    font-size: 50px;
    line-height: 71px !important;
  }
  .hero-btn {
    padding: initial !important;
    font-size: 18px;
  }
  .col-md-9.text-left.hero-banner-text {
    width: 100%;
  }
  .find-perfect {
    padding-top: 20px;
  }
  .col-md-6.find-perfect-img img {
    width: 366px;
    padding-top: 203px;
  }
  section.partner .col-md-7 {
    width: 100%;
  }
  .partner-img-full {
    margin-top: 40px;
    height: auto;
    width: 768px;
  }
  .partner-img {
    position: relative;
    height: auto;
    width: 768px;
    right: 0px;
    padding: 0;
    left: -43px;
  }
  .partner-title {
    padding-top: 70px;
  }
  .community-img-outer {
    position: relative;
    padding: 10px;
  }
  .img-2 {
    width: 148px;
    margin-right: 32px;
    float: right;
  }
  .img-1 {
    left: 4px;
    top: 69px;
    position: absolute;
    width: 138px;
  }
  .footer-banner h2 {
    font-size: 36px !important;
    line-height: 54px !important;
  }
  .footer-banner h5 {
    font-size: 21px !important;
    line-height: 34px !important;
  }
  .footer-banner .col-lg-8.text-center {
    width: 60%;
  }
  .footer-banner .col-lg-4 {
    text-align: center;
    width: 40%;
  }
  .footer-banner .col-lg-4 img {
    width: 100%;
  }
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
  .hero-title {
    font-size: 66px !important;
    line-height: 90px !important;
  }
  .col-md-6.find-perfect-img img {
    width: 533px !important;
    padding-top: 62px !important;
  }
  .find-perfect-title{
    padding-top:0px !important;
  }
  .partner {
    min-height: 487px;
  }
  .partner-title {
    text-align: left;
    padding-top: 46px;
  }
  .partner .col-md-7{
    width: 54%;
  }
  .partner-text {
    text-align: left;
    padding-bottom: 15px;
    line-height: 30px;
  }
  p.partner-text br {
    display: none !important;
  }
  .partner-img {
    position: absolute;
    height: 487px;
    width: auto;
    right: 0px;
    padding: 0;
  }
  .partner-img-full {
    height: 485px;
  }
  .community-img-outer {
    padding: 20px;
  }
  .img-2 {
    width: 194px;
    margin-right: 27px;
  }
  .img-1 {
    width: 185px;
  }
  .footer-banner h2 {
    font-size: 54px !important;
  }
  .community-text {
    font-size: 20px !important;
    line-height: 30px;
  }
  p.community-text br {
    display: none;
  }
}

.hero .algolia-places {
  text-align: left;
}

.hero .algolia-places .ap-input-icon.ap-icon-clear {
  width: 2em;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background-color: #fff;
}

.hero .algolia-places .ap-input-icon.ap-icon-clear svg {
  right: 50%;
  transform: translate(50%, -50%);
}

/** Google Map custom styles **/

/* Remove the close button */
.gm-ui-hover-effect {
  display: none !important;
}

.gm-style-iw {
  padding: 0;
  background-color: #AAAAAA;
  text-align: center;
  color: white;
}

.gm-style-iw-c {
  padding: 0 !important;
  border-radius: 0px !important;
  z-index: 1;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

.gm-style-iw-d {
  overflow: hidden !important;
}

.gm-style-iw-t::after {
  display: none;
}

.gm-style-iw-tc::after {
  display: none;
}
