/* Whisker site theme - loaded after main.css, only for tenants with
   option('active_theme') === 'whisker' (see layouts/main + layouts/single), and
   by the page builder canvas / theme preview for the same theme.

   Palette: purple (the THEME tab's primary colour, --vr-primary), a deep
   purple, coral accents and cream. The starter page's look (the wp-* classes)
   and this theme's footer live here so the saved page only carries semantic
   markup. */

:root {
  --wp-dark: #200044;
  --wp-ink: #150F3A;
  --wp-coral: #FF6263;
  --wp-cream: #FFF7EA;
  --wp-tile: #EBE7FF;
  --wp-muted: #6B6690;
}

body {
  background-color: #fff;
}

.sub_header_in,
.sub_header_in.sticky_header {
  background-color: var(--vr-primary, #642CA5);
}

/* (hover: hover) excludes touchscreens: mobile browsers commonly apply
   and then keep :hover after a tap (no real pointer to "unhover" with),
   so without this a tapped button/link can be left showing this color
   instead of its normal one - looking like colors "change" on mobile. */
@media (hover: hover) {
  header.sticky .main-menu > ul > li span:hover > a,
  header.header_in .main-menu > ul > li span:hover > a,
  header.header .main-menu > ul > li span:hover > a {
    color: var(--vr-primary, #642CA5);
  }

  a.btn_1:hover,
  .btn_1:hover {
    background-color: var(--wp-coral);
  }

  .wp-btn:hover {
    background-color: #4A1F7C;
    color: #fff;
  }
  .wp-btn-coral:hover {
    background-color: #F04A4B;
  }
  .wp-footer a:hover {
    color: var(--wp-coral);
  }
}

/* ------------------------------------------------------------------ */
/* Header: a white bar above the hero card                             */
/* ------------------------------------------------------------------ */

header.header,
header.header.sticky {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 14px max(24px, calc((100vw - 1240px) / 2)) !important;
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 2px 14px rgba(32, 0, 68, 0.06);
  z-index: 99;
}
header.header::after {
  display: none;
}
header.header #logo {
  float: none;
}
header.header #logo img {
  margin: 0;
}
/* white bar: always the dark logo */
header.header .logo_normal,
header.header.sticky .logo_normal {
  display: none !important;
}
header.header .logo_sticky,
header.header.sticky .logo_sticky {
  display: inline-block !important;
}
header.header #logo .vr-text-logo {
  color: var(--wp-dark);
  display: inline-flex;
  align-items: center;
  height: var(--vr-logo-h, 40px);
  padding: 0;
}
header.header .main-menu > ul > li > span > a,
header.header.sticky .main-menu > ul > li > span > a {
  color: var(--wp-ink);
  text-shadow: none;
  font-weight: 600;
}
/* the page reserves the header's height (it is out of the page flow) */
main.vr-page {
  padding-top: max(72px, calc(var(--vr-logo-h, 40px) + 28px));
}

@media (min-width: 992px) {
  header.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  header.header #logo {
    order: 0;
    flex: 0 0 auto;
  }
  header.header nav#menu.main-menu {
    order: 1;
    flex: 1 1 auto;
    position: static;
    transform: none;
    float: none;
    margin: 0 0 0 40px;
    top: auto;
    left: auto;
  }
  header.header #top_menu {
    order: 2;
    float: none;
    margin: 0;
    flex: 0 0 auto;
  }
  header.header #top_menu li a.btn_add {
    background: var(--vr-primary, #642CA5);
    color: #fff;
    border-radius: 50px;
    padding: 11px 22px;
  }
  header.header #top_menu li a.btn_add:hover {
    background: var(--wp-coral);
  }
}
@media (max-width: 991px) {
  header.header,
  header.header.sticky {
    padding: 12px 20px !important;
  }
  header.header #logo {
    width: calc(100% - 64px);
  }
  header.header .btn_mobile {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
  }
}

/* ------------------------------------------------------------------ */
/* Shared bits                                                         */
/* ------------------------------------------------------------------ */

.wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vr-primary, #642CA5);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  transition: background 0.2s;
}
.wp-btn:hover {
  color: #fff;
  text-decoration: none;
}
.wp-btn-coral {
  background: var(--wp-coral);
}
.wp-btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}
.wp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}
.wp-eyebrow i {
  font-size: 12px;
}
.wp-eyebrow-dark {
  color: var(--wp-ink);
}
.wp-eyebrow-dark i {
  color: var(--vr-primary, #642CA5);
}
.wp-title {
  color: var(--wp-ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 12px 0 16px;
}
.wp-lead {
  color: var(--wp-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

/* ------------------------------------------------------------------ */
/* Hero card                                                           */
/* ------------------------------------------------------------------ */

.wp-hero {
  position: relative;
  overflow: hidden;
  margin: 0 6px;
  border-radius: 24px;
  background: var(--vr-primary, #642CA5);
  min-height: 540px;
  padding: 96px 0 84px;
}
main.vr-page > section.wp-hero:first-child {
  padding-top: 96px !important;
}
.wp-hero::before {
  content: '';
  position: absolute;
  left: -150px;
  top: -170px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.wp-hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background-color: #4A1F7C;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 0 110px;
}
.wp-hero .container {
  position: relative;
  z-index: 2;
}
.wp-hero-copy {
  max-width: 480px;
}
.wp-hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 18px;
}
.wp-hero-copy > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}
.wp-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 28px 0 30px;
}
.wp-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.wp-link:hover {
  color: #fff;
}
.wp-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.wp-avatars {
  display: flex;
  align-items: center;
}
.wp-avatars img,
.wp-plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
}
.wp-avatars img {
  object-fit: cover;
}
.wp-avatars > :first-child {
  margin-left: 0;
}
.wp-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--wp-ink);
  font-size: 13px;
}
.wp-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wp-rating i {
  color: #FFC93C;
  font-size: 12px;
  margin-right: 2px;
}
.wp-rating em {
  color: #fff;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
}
.wp-tilt {
  position: absolute;
  z-index: 3;
  display: block;
  width: 136px;
  padding: 5px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.wp-tilt img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 10px;
}
.wp-tilt em {
  display: block;
  margin-top: 5px;
  padding: 4px 6px;
  border-radius: 8px;
  background: var(--vr-primary, #642CA5);
  color: #fff;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
.wp-tilt-1 {
  top: 110px;
  left: calc(48% - 44px);
  transform: rotate(-14deg);
}
.wp-tilt-2 {
  bottom: 58px;
  left: calc(48% + 10px);
  transform: rotate(12deg);
}
.wp-paw {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.13);
}
.wp-paw-1 {
  bottom: 44px;
  left: 34%;
  font-size: 46px;
  transform: rotate(-20deg);
}
.wp-paw-2 {
  bottom: 16px;
  left: 40%;
  font-size: 34px;
  transform: rotate(14deg);
}
@media (max-width: 991px) {
  .wp-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 70px 0 0;
  }
  main.vr-page > section.wp-hero:first-child {
    padding-top: 70px !important;
  }
  .wp-hero .container {
    order: 1;
  }
  .wp-hero-photo {
    order: 2;
    position: relative;
    width: auto;
    height: 300px;
    margin-top: 34px;
    border-radius: 0 0 24px 24px;
  }
  .wp-tilt,
  .wp-paw {
    display: none;
  }
  .wp-hero h1 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .wp-hero h1 {
    font-size: 30px;
  }
}

/* ------------------------------------------------------------------ */
/* About                                                               */
/* ------------------------------------------------------------------ */

.wp-about {
  padding: 84px 0 56px;
}
.wp-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 460px;
  max-width: 560px;
}
.wp-col-tall {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 16px;
  background-color: #EBE7FF;
  background-size: cover;
  background-position: center;
}
.wp-play {
  position: absolute;
  right: -28px;
  bottom: 28%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wp-coral);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(255, 98, 99, 0.25);
}
.wp-play i {
  font-size: 14px;
  margin-left: 3px;
}
.wp-stat {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border-radius: 16px;
  background: var(--wp-cream);
  text-align: center;
}
.wp-stat strong {
  display: block;
  color: var(--wp-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}
.wp-stat span {
  color: var(--wp-muted);
  font-size: 13px;
}
.wp-col-small {
  grid-column: 2;
  grid-row: 2;
  border-radius: 16px;
  background-color: #EBE7FF;
  background-size: cover;
  background-position: center;
}
.wp-quote {
  margin: 22px 0;
  padding: 6px 0 6px 20px;
  border-left: 3px solid var(--vr-primary, #642CA5);
}
.wp-quote strong {
  display: block;
  color: var(--wp-ink);
  font-size: 15.5px;
  line-height: 1.5;
}
.wp-quote span {
  display: block;
  margin-top: 6px;
  color: var(--wp-muted);
  font-size: 12.5px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .wp-collage {
    margin: 0 auto 50px;
  }
  .wp-play {
    right: -20px;
  }
}
@media (max-width: 575px) {
  .wp-collage {
    height: 380px;
  }
  .wp-title {
    font-size: 28px;
  }
}

/* ------------------------------------------------------------------ */
/* Services                                                            */
/* ------------------------------------------------------------------ */

.wp-services {
  padding: 30px 0 84px;
}
.wp-feat {
  margin-top: 36px;
}
.wp-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--wp-tile);
  color: var(--vr-primary, #642CA5);
  font-size: 17px;
}
.wp-feat h4 {
  color: var(--wp-ink);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}
.wp-feat p {
  color: var(--wp-muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}
.wp-feat-right {
  text-align: right;
}
.wp-feat-right .wp-feat-icon {
  display: flex;
  margin-left: auto;
}
.wp-cat {
  height: 520px;
  border-radius: 999px 999px 24px 24px;
  background-color: var(--wp-tile);
  background-size: cover;
  background-position: center;
}
.wp-services-side {
  text-align: right;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .wp-feat-right,
  .wp-services-side {
    text-align: left;
  }
  .wp-feat-right .wp-feat-icon {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------ */
/* Closing call to action                                              */
/* ------------------------------------------------------------------ */

.wp-cta {
  margin: 20px 6px;
  padding: 66px 20px;
  border-radius: 24px;
  background: var(--vr-primary, #642CA5);
  color: #fff;
  text-align: center;
}
.wp-cta h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 10px;
}
.wp-cta p {
  margin: 0 0 24px;
  opacity: 0.92;
}
@media (max-width: 575px) {
  .wp-cta h2 {
    font-size: 25px;
  }
}

/* Other builder pages: the generic "first section clears the floating header"
   padding is replaced by the reserved space above; the hero has its own,
   more specific, rule. */
main.vr-page > section:first-child {
  padding-top: 48px !important;
}
.vr-page > .container.margin_60_35:first-child {
  padding-top: 60px;
}

/* ------------------------------------------------------------------ */
/* Footer (partials/whisker-footer)                                    */
/* ------------------------------------------------------------------ */

.wp-footer {
  position: relative;
  margin: 100px 6px 6px;
  padding: 70px 0 26px;
  border-radius: 24px;
  background: var(--wp-dark);
  color: #fff;
}
.wp-footer h4 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin: 6px 0 22px;
}
.wp-footer-logo,
.wp-footer-logo:hover {
  display: inline-block;
  text-decoration: none;
}
.wp-footer-logo .vr-text-logo {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  padding: 0;
  white-space: normal;
}
.wp-footer-about {
  max-width: 360px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.7;
}
.wp-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 8px 8px 0;
  border-radius: 50%;
  background: var(--wp-coral);
  color: #fff;
  font-size: 14px;
}
.wp-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-links li {
  margin-bottom: 12px;
}
.wp-links a,
.wp-footer-bottom a {
  color: #fff;
  font-size: 15px;
}
.wp-contact-card {
  margin-top: -140px;
  padding: 28px 26px 26px;
  border-radius: 16px;
  background: var(--vr-primary, #642CA5);
  color: #fff;
}
.wp-contact-card h4 {
  margin: 0 0 20px;
}
.wp-contact-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.wp-contact-card li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}
.wp-contact-card li i {
  margin-top: 4px;
}
.wp-footer-rule {
  margin: 44px 0 22px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.wp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #fff;
  font-size: 14.5px;
}
.wp-langs a {
  margin-left: 12px;
}
@media (max-width: 991px) {
  .wp-footer {
    margin-top: 40px;
    padding-top: 50px;
  }
  .wp-contact-card {
    margin-top: 10px;
  }
  .wp-footer .col-lg-2,
  .wp-footer .col-lg-3 {
    margin-top: 26px;
  }
}

.wp-contact-card .wp-btn {
  padding: 13px 18px;
  white-space: nowrap;
}

/* Inner-page header buttons in the theme colour */
header.header_in #top_menu li a.btn_add {
  background: var(--vr-primary, #642CA5);
  border-radius: 50px;
}
header.header_in #top_menu li a.btn_add:hover {
  background: var(--wp-coral);
}

/* With the top bar on, the header sits under it. */
body.has-topbar header.header,
body.has-topbar header.header.sticky {
  top: 36px;
}
