@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display&display=swap");

main {
  min-height: 37vh;
}

@media screen and (max-width: 990px) {
  .row {
    gap: 1.5rem;
  }
}

/* Buttons */
.btn {
  color: #323232;
  text-decoration: none;
  cursor: pointer;
}

a.btn--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f54c5a;
  padding: 1rem 2.5rem;
  color: white;
  border-radius: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.btn--primary:hover {
  background-color: #323232;
}

a.btn--secondary {
  background: none;
  border: 1px solid white;
  border-radius: 2rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.btn--secondary.btn-full {
  margin-top: 1rem;
  padding: 1rem 3rem;
}

a.btn--secondary:hover {
  background: white;
  color: #323232;
}

a.btn--tertiary {
  background: none;
  border: 1px solid #323232;
  border-radius: 2rem;
  color: #323232;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.btn--tertiary.btn-full {
  margin-top: 1rem;
  padding: 1rem 3rem;
}

a.btn--tertiary:hover {
  background: #323232;
  color: white;
}

a.btn--transparent {
  background: transparent;
  color: #323232;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a.btn--transparent:hover {
  color: #f54c5a;
}

.btn--menu {
  background: transparent;
  border: none;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding-inline: 0.5rem;
}

body.menu-opened .nav-links {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
  color: #f54c5a;
}

a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.hover-effect {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 5px;
  overflow: hidden;
}

.hover-effect:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f54c5a;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}

.hover-effect:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* Header */
header {
  position: absolute;
  width: 100%;
  z-index: 10;
}

header.fixed {
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-animation: smoothScroll 0.5s forwards;
          animation: smoothScroll 0.5s forwards;
}

.menu-opened .logo-path {
  fill: #323232; 
}

header.fixed .logo-path {
  fill: #323232;
}

header.inverse .logo-path {
  fill: #323232;
}

header.fixed .btn--menu svg {
  stroke: #323232;
}

header.fixed .nav-container {
  padding: 3rem 0;
}

header.fixed a.btn--transparent {
  color: #323232;
}

header.fixed a.btn--transparent:hover {
  color: #f54c5a;
}

header.fixed #photoshoot {
  fill: #323232;
}

.inverse {
  position: relative;
}

header.inverse #photoshoot {
  fill: #323232;
}

header.inverse .btn--menu svg {
  stroke: #323232;
}

header.inverse .nav-links li a {
  color: #323232;
}

header.inverse .nav-links li a.btn--primary {
  color: #f9f5e9;
}

header.inverse .btn--transparent {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

header.inverse .btn--transparent:hover {
  color: #f54c5a;
}

header.inverse .active {
  color: #323232 !important;
}

header.inverse .active:before {
  transform: translateX(0);
}

.logo {
  width: 14rem;
  display: block;
}

@media screen and (max-width: 990px) {
  .logo {
    display: none;
  }
}

div.nav-container {
  max-height: 90px;
  position: relative;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

@media screen and (min-width: 760px) {
  .nav-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 990px) {
  .nav-container svg {
    width: 18rem;
  }
  div.nav-container {
    padding: 3.5rem 1.8rem;
  }
}

li.logo-container {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 990px) {
  .logo-container {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 990px) {
  header.fixed .logo-container {
    padding: 0 2rem;
  }
}

.list-right {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.logo-mobile {
  display: block;
  max-width: 11rem;
}

@media screen and (min-width: 990px) {
  .logo-mobile {
    display: none;
  }
}

.cta {
  position: absolute;
  display: none;
  z-index: 2;
}

.cta, .cta-mobile .latepoint-book-button {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 990px) {
  .cta-mobile {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

a.login {
  padding: 1rem 2.8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.login:hover {
  background-color: #323232;
  color: white;
}

@media screen and (min-width: 990px) {
  .cta-mobile {
    display: none;
  }
}



@media screen and (min-width: 990px) {
  .cta {
    display: block;
    right: calc(0.57143% - 1.07143rem);
  }
}

@media screen and (min-width: 1200px) {
  .cta {
    right: calc(0.57143% + 1.1rem);
  }
}

@media screen and (min-width: 1400px) {
  .cta {
    right: calc(0.57143% + 5.1rem);
  }
}

.nav-wrapper svg {
  width: 100%;
}

@media screen and (max-width: 990px) {
  .nav-wrapper svg {
    width: 50%;
  }
}

.nav-links,
.nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 990px) {
  .nav-links,
  .nav-wrapper {
    gap: 1rem;
    padding: 0px 2%;
  }
}

@media screen and (min-width: 1240px) {
  .nav-links,
  .nav-wrapper {
    gap: 2.5rem;
    padding: 0px 8%;
  }
}

@media screen and (min-width: 1440px) {
  .nav-links,
  .nav-wrapper {
    gap: 2.5rem;
    padding: 0px 10%;
  }
}

.nav-links {
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: uppercase;
  -webkit-transform: translateY(-250%);
          transform: translateY(-250%);
  position: absolute;
  background: #f9f5e9;
  top: 4rem;
  left: 0;
  right: 0;
  height: 100vh;
  text-align: center;
  padding: 1rem;
  z-index: 3;
  padding: 1.5em 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
}

@media screen and (max-width: 990px) {
  .nav-links .latepoint-book-button.os_trigger_booking {
    background-color: #323232 !important;
    color: #fff !important;
  }
}

.container-bg.yellow-bg .latepoint-book-button {
  background-color: #323232 !important;
  color: #fff !important;
}

.container-bg.yellow-bg .latepoint-book-button:hover {
  background-color: #f54c5a !important;
  color: #fff !important;
}

@media screen and (min-width: 990px) {
  .nav-links {
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .nav-links {
    /* height: 100%; */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .nav-links {
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}

li[role="none"],
.nav-link {
  font-size: 1rem;
  font-weight: 400;
}

li[role="none"] a,
.nav-link a {
  color: #fff;
}

.cta-new ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1em;
  width: max-content;
}

.cta-new li .latepoint-book-button {
  margin: 0 !important;
}

@media screen and (max-width: 990px) {
  .cta-new {
    display: none;
  }
}

a.login {
  background-color: #F9F5E9;
  color: #323232;
  padding: 1rem 2.5rem;
  border-radius: 1.5rem;
  font-weight: 400;
}

@media screen and (max-width: 990px) {
  a.login {
    background-color: #323232;
    color: #fff !important;
  }
  a.login:hover {
    background-color: #fff;
    color: #323232 !important;
  }
}

/* Mobile Navigation */
.btn--menu {
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  outline: none;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: 5rem;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 990px) {
  .btn--menu {
    margin-left: 0;
  }
}

.btn--menu svg {
  width: 64px;
  height: 48px;
  top: -6px;
  left: -14px;
  stroke: white;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  position: absolute;
}

.btn--menu svg.mobile-menu-opened {
  stroke: #323232;
}

.btn--menu svg path {
  -webkit-transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.btn--menu svg path:nth-child(2) {
  --duration: 0.7s;
  --easing: ease-in;
  --offset: 100px;
  --array-2: 74px;
}

.btn--menu svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}

.btn--menu.active svg path {
  --offset: 57px;
}

.btn--menu.active svg path:nth-child(1), .btn--menu.active svg path:nth-child(3) {
  --delay: 0.15s;
  --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}

.btn--menu.active svg path:nth-child(2) {
  --duration: 0.4s;
  --offset: 2px;
  --array-1: 1px;
}

.btn--menu.active svg path:nth-child(3) {
  --offset: 58px;
}

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

footer {
  background-color: #323232;
  color: white;
  /* padding: 0 2rem; */
}

@media screen and (min-width: 990px) {
  footer {
    padding: 0;
  }
}

footer div {
  padding: 1rem 0;
}

footer ul {
  list-style: none;
  margin: 0;
  line-height: 2rem;
}

footer ul li:first-child {
  padding-top: 1rem;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer .copyright {
  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;
  height: 100%;
}

footer .copyright img {
  padding-bottom: 2rem;
}

.faq-container {
  height: auto;
}

.accordion {
  padding-top: 2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.faq-cta {
  margin-top: 32px;
}

.faq-cta .btn {
  margin: 0 auto;
}

.accordion .accordion-item {
  border-bottom: 1px solid #efefef;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #f54c5a;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 0.5em 0;
  color: #323232;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #f54c5a;
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #f54c5a;
  border: 1px solid #f54c5a;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 32px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #f54c5a;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  height: 100%;
  max-height: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion button[aria-expanded='false'] {
  color: #323232;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 200ms linear, max-height 200ms linear;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 2em 0;
}

.form-section {
  padding: 0 1rem;
}

.form-section h3 {
  margin-top: 3rem;
}

.form-section form {
  width: 100%;
  margin-top: 3rem;
}

@media screen and (min-width: 990px) {
  .form-section form {
    margin-top: 3rem;
  }
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section input[type="date"],
.form-section textarea {
  color: #323232;
  padding-bottom: 0.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #323232;
  font-size: 1rem;
  height: 2rem;
  line-height: 2rem;
  text-transform: none;
  outline: none !important;
  width: 100%;
}

.form-section input[type="text"]::-webkit-input-placeholder,
.form-section input[type="email"]::-webkit-input-placeholder,
.form-section input[type="tel"]::-webkit-input-placeholder,
.form-section input[type="date"]::-webkit-input-placeholder,
.form-section textarea::-webkit-input-placeholder {
  font-family: "Lato", sans-serif;
  color: #323232;
  opacity: 0.8;
  text-transform: uppercase;
}

.form-section input[type="text"]:-ms-input-placeholder,
.form-section input[type="email"]:-ms-input-placeholder,
.form-section input[type="tel"]:-ms-input-placeholder,
.form-section input[type="date"]:-ms-input-placeholder,
.form-section textarea:-ms-input-placeholder {
  font-family: "Lato", sans-serif;
  color: #8c9db5;
  text-transform: uppercase;
}

.form-section input[type="text"]:-moz-placeholder,
.form-section input[type="email"]:-moz-placeholder,
.form-section input[type="tel"]:-moz-placeholder,
.form-section input[type="date"]:-moz-placeholder,
.form-section textarea:-moz-placeholder {
  font-family: "Lato", sans-serif;
  color: #8c9db5;
  text-transform: uppercase;
}

.form-section input[type="text"]::-moz-placeholder,
.form-section input[type="email"]::-moz-placeholder,
.form-section input[type="tel"]::-moz-placeholder,
.form-section input[type="date"]::-moz-placeholder,
.form-section textarea::-moz-placeholder {
  font-family: "Lato", sans-serif;
  color: #8c9db5;
  text-transform: uppercase;
}

.form-section input::-moz-focus-inner {
  border: 0;
}

.form-section input::-webkit-outer-spin-button,
.form-section input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-section input[type="tel"] {
  -moz-appearance: textfield;
}

/* .form-section input[type="checkbox"] {
  visibility: hidden;
  margin-left: -10px;
} */

.form-section textarea {
  min-height: 100%;
  margin-bottom: 32px;
  height: 100px;
}

.form-section label {
  color: #323232;
  margin-right: 16px;
}

@media screen and (max-width: 990px) {
  .form-section label.transfer-checkbox-text {
    margin-left: 0;
  }
}

@media screen and (max-width: 990px) {
  .form-section label.escursione-checkbox-text {
    margin-left: 0;
    margin-bottom: 32px;
  }
}

.form-section .privacy-checkbox-text {
  cursor: pointer;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  margin-top: 1rem;
}

.form-section input[type="checkbox"] + label:before {
  border: 2px solid #323232;
  content: "\00a0";
  display: inline-block;
  font: 16px/1em sans-serif;
  height: 20px;
  margin: 0 12px 0 0;
  padding: 0;
  vertical-align: top;
  width: 20px;
}

.form-section input[type="checkbox"]:checked + label:before {
  background: #f54c5a;
  color: white;
  content: "\2713";
  text-align: center;
  border: 1px solid #f54c5a;
  padding: 2px;
}

.form-section input[type="checkbox"]:checked + label:after {
  font-weight: bold;
}

.form-section input[type="checkbox"]:focus + label::before {
  outline: #3b99fc auto 5px;
}

.form-section input#example-date-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #323232;
  margin-top: 6px;
  color: #484848;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
  border-radius: 0;
}

.form-section .form-fields {
  padding: 0;
}

.form-section .form-group {
  margin-bottom: 3rem;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 990px) {
  .form-section .form-group {
    padding-right: 2rem;
  }
}

.form-section .form-privacy a {
  color: #f54c5a;
}

.form-section .form-privacy a:hover {
  color: #323232;
}

.form-section .contact-row {
  padding: 4.5rem 0 2rem;
}

@media screen and (max-width: 990px) {
  .form-section .contact-row {
    padding: 0;
  }
}

.form-section p {
  margin-top: 0;
  color: #323232;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

body {
  font-size: 1.2rem;
  line-height: 140%;
  font-weight: 300;
  background: white;
  font-family: "Lato", sans-serif;
  width: 100%;
  overflow-x: hidden;
}

body.menu-opened {
  background: #f9f5e9;
  overflow-y: hidden;
}

body.menu-opened .btn--transparent {
  color: #323232;
}

body.menu-opened .nav-container {
  background: #f9f5e9;
}

body.menu-opened .nav-container svg.mobile-logo #photoshoot {
  fill: #323232;
}

body.menu-opened nav {
  background: #f9f5e9;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 100;
  line-height: 140%;
}

h1 {
  font-size: 4.5rem;
}

h1.super {
  font-size: 2.8rem;
}

@media screen and (min-width: 990px) {
  h1.super {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2.2em;
}

@media screen and (min-width: 990px) {
  h2 {
    font-size: 3em;
    margin-bottom: 0.5rem;
  }
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5rem;
}

p {
  font-size: 1.2rem;
  line-height: 140%;
}

ul {
  list-style: none;
  margin: 0;
}

ol {
  padding: 1rem;
  margin: 0;
  line-height: 1.5rem;
}

ol li {
  padding: 0.5rem 0 0;
}

.circled-text__circle {
  -webkit-animation: draw 2.4s;
          animation: draw 2.4s;
}

@-webkit-keyframes draw {
  0% {
    opacity: 0;
    stroke-dashoffset: -100;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  0% {
    opacity: 0;
    stroke-dashoffset: -100;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

.text-reveal {
  opacity: 1;
  display: flex;
  gap: 1rem;
}

.container {
  padding: 2rem;
}

.container.hero-container {
  padding: 2rem 0 1rem;
}

.home .container.hero-container {
  padding: 12% 0;
}

@media screen and (max-width: 990px) {
  .text-reveal {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .home .container.hero-container {
    padding: 30% 10%;
  }
}

.book-button {
  display: block;
  margin: 1rem 0;
}

.yellow-bg {
  background-color: #f9f5e9;
  /* padding: 2rem; */
}

@media screen and (min-width: 990px) {
  .yellow-bg {
    padding: 0;
  }
}

.gray-bg {
  background-color: #efefef;
}

.heading-container {
  text-align: center;
  padding: 2em 0 0;
}

@media screen and (min-width: 990px) {
  .heading-container {
    padding: 4em 0 4em;
  }
}

.top-heading {
  text-transform: uppercase;
}

div.fullbg-container {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 990px) {
  div.fullbg-container {
    margin-right: auto;
    margin-left: auto;
  }
}

div.fullimg {
  background-size: cover;
  min-height: 300px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 990px) {
  div.fullimg {
    min-height: 550px;
  }
}

@media screen and (min-width: 990px) {
  body {
    font-size: 16px;
  }
  .btn--menu {
    display: none;
  }
  .nav-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    border: none;
    padding: 0;
    inset: initial;
    background-color: transparent;
    margin-left: -2rem;
  }
  li[role="none"] .nav-link {
    width: initial;
    font-size: 1rem;
  }
}

div.scroll-down-container {
  display: none;
  position: absolute;
  bottom: -2.5rem;
  text-align: center;
  background: white;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  color: black;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.scroll-down-container::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px dashed white;
  border-radius: 100%;
  -webkit-animation-name: Rotate;
          animation-name: Rotate;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@media screen and (min-width: 990px) {
  div.scroll-down-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.single-hero .super {
  text-align: center;
}

div.hero-jumbotron {
  background-repeat: no-repeat !important;
  /* background-attachment: fixed !important; */
  background-position: center !important;
  color: white !important;
  height: 100vh !important;
	background-size: cover !important;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

@media screen and (max-width: 990px) {
  div.hero-jumbotron {
    height: 85vh !important;
  }
}

div.hero {
  padding: 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

@media screen and (min-width: 990px) {
  div.hero {
    padding: 0;
  }
}

div.hero.hero-page {
  margin: 0;
  height: 30vh;
}

@media screen and (min-width: 990px) {
  div.hero.hero-page {
    height: 30vh;
  }
}

@media screen and (min-width: 990px) {
  div.hero.hero-page {
    /* height: 100%; */
    padding: 0;
    margin: 1rem 0 1rem;
  }
  .container.hero-container {
    padding: 1rem 0 1rem;
  }
}

@media screen and (min-width: 1280px) {
  div.hero.hero-page {
    /* height: 100%; */
    padding: 0;
    margin: 3rem 0 3rem;
  }
}

.card-price {
  font-family: "Lato", sans-serif;
  text-align: center;
  padding-top: 1rem;
}

.card-price p {
  text-transform: uppercase;
  padding-bottom: 0.2rem;
}

.card-price span {
  font-size: 1.8rem;
  font-weight: bold;
}

.hero-single {
  background: linear-gradient(173.33deg, #481e1e -15.33%, rgba(10, 4, 4, 0.315189) 62.03%, rgba(0, 0, 0, 0.2) 94.76%), url("/public/images/fullbghome.jpg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: top;
  background-size: cover;
}

.hero-single .hero {
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 990px) {
  .hero-single .hero {
    padding: 0;
  }
  .hero-single .hero .top-heading {
    font-weight: 500;
  }
}

.circled-text {
  display: inline-block;
  overflow: visible;
  position: relative;
}

.circled-text svg {
  height: calc(100% + 0.3em);
  left: 0.1em;
  pointer-events: none;
  position: absolute;
  top: -0.1em;
  -ms-touch-action: none;
      touch-action: none;
  width: calc(100% + 0.6em);
  overflow: visible;
}

.circled-text__circle {
  fill: none;
  stroke: #f54c5a;
  stroke-width: 3px;
}

.image-reveal {
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}

.why .heading-container {
  padding: 4em 16rem 4em;
}

@media screen and (max-width: 990px) {
  .why .heading-container {
    padding: 4em 2rem 2rem;
  }
  .why .container.heading-container.p-0 {
    padding: 0 2rem 0 !important;
  }
  .why a img {
    width: 80%;
    margin: 0 auto;
  }
}

.why-container a.btn--primary,
.single-overview a.btn--primary {
  margin-bottom: 2rem;
}

.why-container img,
.single-overview img {
  padding-bottom: 2rem;
}

.why-container h4 {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
  font-size: 1rem;
  color: #F5616C;
}

.why-container .text-bold {
  font-size: 1.5rem;
  font-weight: bold;
} 

.why-container h4,
.single-overview h4 {
  padding-bottom: 1rem;
}

.why-container p,
.single-overview p {
  padding-bottom: 2rem;
}

.single-overview h2 {
  margin-bottom: 2rem;
}

.single-overview ul {
  list-style: none;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.gallery {
  padding: 2rem;
}

@media screen and (min-width: 990px) {
  .gallery {
    padding: 0;
    margin-bottom: 6rem;
  }
}

.gallery img {
  width: 100%;
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .gallery img {
    margin-bottom: 0;
  }
}

.gallery .row {
  margin-bottom: 2rem;
}

.gallery .row div.vertical {
  margin-bottom: 0;
}

.gallery .row div.vertical .col-12 {
  margin-bottom: 0;
}

@media screen and (min-width: 990px) {
  .gallery .row div.vertical .col-12 {
    margin-bottom: 2.5rem;
  }
}

.gallery .row div.vertical .col-12:last-child {
  margin-bottom: 0;
}

.about-container .row img {
  margin: 2rem 0;
}

.about-container .row:nth-child(2) {
  margin-top: 3rem;
}

@media screen and (min-width: 990px) {
  .about-container .row:nth-child(2) {
    margin-top: 6rem;
  }
}

.full-bg {
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center;
  background-size: cover;
  color: white;
  height: 100vh;
  width: 100%;
  -webkit-clip-path: polygon(5% 5%, 95% 5%, 95% 95%, 5% 95%);
          clip-path: polygon(5% 5%, 95% 5%, 95% 95%, 5% 95%);
  -webkit-transition: -webkit-clip-path 0.5s;
  transition: -webkit-clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
}

/* Swiper */
.swiper {
  margin-top: 2rem;
}

.swiper-button-prev.swiper-button-disabled {
  display: none;
}

div.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

span.swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #f9f5e9;
  opacity: 1;
}

span.swiper-pagination-bullet-active {
  background-color: #f54c5a;
}

div.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

div.swiper-button-next,
div.swiper-button-prev {
  background: white;
  padding: 1rem 1.4rem;
  border-radius: 100%;
  top: 20%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition: all 0.5s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition: all 0.5s cubic-bezier(0.75, 0.25, 0.25, 0.75);
}

@media screen and (max-width: 990px) {
  div.swiper-button-next,div.swiper-button-prev {
    padding: .5rem 1rem;
  }
}

@media screen and (max-width: 990px) {
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 2rem !important;
    left: auto;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 2rem !important;
    right: auto;
  }
}

div.swiper-button-next:hover,
div.swiper-button-prev:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

div.swiper-button-next:after,
div.swiper-button-prev:after {
  content: "";
}

div.swiper-button-disabled {
  display: none;
}

/* Testimonials */
.testimonials .testimonial {
  margin: 0 3rem;
}

@media screen and (max-width: 990px) {
  .testimonials .testimonial {
    margin: 0 3.5rem;
  }
}

/* .testimonials .testimonial img {
  width: 100%;
  margin-bottom: 1rem;
  object-fit: cover;
  max-height: 220px;
} */

.testimonial {
  margin-bottom: 2rem;
}

.testimonial img {
  width: 100%;
  display: block;
  max-height: 340px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.testimonial-category {
  display: inline-block;
  margin: 0.7rem 0 0.7rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #f54c5a;
  font-weight: 700;
  border-radius: 999px;
}

@media screen and (min-width: 990px) {
  .testimonials .testimonial {
    margin: 0 1rem;
  }
}

/* Card Style */
.card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: white;
  background-size: cover;
  min-height: 710px;
  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;
  padding: 2rem 1rem;
}

@media screen and (min-width: 990px) {
  .card {
    padding: 2rem 1.5rem;
  }
}

.card .time {
  margin-bottom: 0.5rem;
}

.card .card-info h3 {
  padding-bottom: 1.2rem;
}

.card .card-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card .card-action .card-price {
  text-transform: uppercase;
  text-align: center;
}

.card .card-action .card-price p {
  font-size: 0.9rem;
  padding-bottom: 0.3rem;
}

.card .card-action .card-price span {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Extras */
.extra-container {
  padding: 2rem 1rem;
}

.extras-block .extra-container {
  padding: 6rem 0 1rem;
}

@media screen and (min-width: 990px) {
  .extra-container {
    padding: 6rem 0;
  }
}

.extra-container .extra-description {
  margin-bottom: 2rem;
  text-align: center;
}

.extra-container .extra-icons {
  margin-bottom: 2rem;
}

.extra-container .extra-icons:first-child {
  margin-bottom: 0;
}

@media screen and (min-width: 990px) {
  .extra-container .extra-icons:first-child {
    margin-bottom: 2rem;
  }
}

.extra-container .extra-icons .extra-icon {
  text-align: center;
  margin-bottom: 2rem;
}

.extra-container .extra-icons .extra-icon:first-child {
  margin-top: 1rem;
}

@media screen and (min-width: 550px) {
  .extra-container .extra-icons .extra-icon:first-child {
    margin-top: 0;
  }
}

.extra-container .extra-icons .extra-icon:last-child {
  margin-bottom: 0;
}

.extra-container .extra-icons .extra-icon img {
  margin: 0 auto 1rem;
}

.row.extra-icons {
  gap: 0;
}

.extras-block .extra-container > .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.extras-block .extra-container > .row > .col-md-4,
.extras-block .extra-container > .row > .col-md-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* Contact Box */
.contact-box {
  text-align: center;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #f54c5a;
  border-radius: 100%;
  max-width: 20rem;
  color: #323232;
  margin: 3rem auto;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 990px) {
  .contact-box {
    max-height: 15rem;
    max-width: 16rem;
  }
}

.contact-box:hover {
  background-color: #f54c5a;
  color: #f9f5e9;
}

.contact-box:hover path {
  fill: #f9f5e9;
}

.contact-box .contact-box-inner {
  padding: 7rem 0;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.contact-box .contact-box-inner svg {
  margin: 0 auto;
  padding-bottom: 1rem;
  width: 100%;
}

/* Social */
.social-container .social-text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.social-container .social-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 990px) {
  .social-container .social-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .social-container .social-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.social-container h2 {
  margin-top: 2rem;
}

.social-container .btn--tertiary {
  margin: 2rem 0;
}

/* Google Maps Style */
div.i4ewOd-pzNkMb-haAclf {
  display: none !important;
}

.map iframe {
  width: 100%;
  pointer-events: none;
}

.map.clicked iframe {
  pointer-events: auto;
}

.transition-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #f9f5e9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.transition-1.is-active {
  pointer-events: all;
  opacity: 1;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  height: 100%;
  max-height: 30rem;
  min-height: 30rem;
  margin-bottom: 2rem;
}

.gallery-item:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
  content: '';
}

.gallery-image {
  display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  transition: transform 400ms ease-out;
  -webkit-transition: transform 400ms ease-out;
  -moz-transition: transform 400ms ease-out;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15);
}

.gallery-title {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.privacy {
  padding: 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Data Deletion Page */
main.data-deletion-page {
  background-color: #fff;
  min-height: 100vh;
}

.privacy h2 {
  padding: 0 0 2rem;
  font-size: 2.5rem;
  color: #323232;
}

.privacy h3 {
  padding: 2rem 0 1rem !important;
  font-size: 1.5rem;
  color: #323232;
}

.privacy h4 {
  padding: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
  color: #323232;
}

.privacy p {
  font-size: 1.1rem;
  padding: 0;
  line-height: 1.7;
  color: #555;
}

.privacy ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.privacy ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  list-style-type: disc;
  line-height: 1.7;
  color: #555;
}

.privacy a {
  color: #f54c5a;
  text-decoration: none;
}

.privacy a:hover {
  text-decoration: underline;
}

.privacy .confirmation-box {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.privacy .confirmation-box h3 {
  color: #155724;
  margin-top: 0;
  padding-top: 0 !important;
}

.privacy .confirmation-box p {
  color: #155724;
}

@media screen and (max-width: 768px) {
  .privacy {
    padding: 2rem 1rem;
  }

  .privacy h2 {
    font-size: 2rem;
  }
}
.cli_pg_page_contaner {
  padding: 0;
}

.cli-tab-header a.cli-nav-link {
  padding-left: 1.5rem;
}

a.cli-privacy-readmore {
  width: 100%;
  padding-bottom: 1rem;
}

div#pum_popup_title_2652 {
  text-align: center;
}

/* Customize Latepoint */

.latepoint-w .latepoint-booking-form-element .lp-options.lp-options-grid.lp-options-grid-three .lp-option {
  flex: 0 0 40% !important;
}

.latepoint-book-button {
  background-color: #f9f5e9 !important;
  padding: 1rem 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  color: #000 !important;
  border-radius: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.latepoint-book-button:hover {
  background-color: #f54c5a !important;
  color: #fff !important;
}

.latepoint-w .latepoint-booking-form-element h1, .latepoint-w .latepoint-booking-form-element h2, .latepoint-w .latepoint-booking-form-element h3, .latepoint-w .latepoint-booking-form-element h4, .latepoint-w .latepoint-booking-form-element h5 { color : #323232; }
.latepoint-w .latepoint-booking-form-element .latepoint-side-panel .latepoint-questions h5:before {background-color: #f54c5a!important;}
.latepoint-w .latepoint-booking-form-element .latepoint-side-panel .latepoint-progress ul li.active a {color: #f54c5a!important; }
.latepoint-w .latepoint-booking-form-element .latepoint-side-panel .latepoint-progress ul li a:before { background-color: #f54c5a!important; }
.latepoint-w .latepoint-booking-form-element .latepoint-form-w .latepoint-heading-w .latepoint-lightbox-close {color: #f54c5a!important; }

.latepoint-w .latepoint-booking-form-element .step-locations-w ul.os-locations li a:hover { border-color: #f54c5a!important; background-color: #fcecfd!important; }
.latepoint-w .latepoint-booking-form-element .step-locations-w ul.os-locations li.selected a { border-color: #f54c5a!important; background-color: #fcecfd!important; }

.latepoint-w .latepoint-booking-form-element .step-services-w ul.os-services li a:hover { border-color: #f54c5a!important; background-color: #fcecfd!important; }
.latepoint-w .latepoint-booking-form-element .step-services-w ul.os-services li.selected a { border-color: #f54c5a!important; background-color: #fcecfd!important; }

.latepoint-w .latepoint-booking-form-element ul.os-agents li.selected a { box-shadow: 0px 0px 0px 2px #f54c5a, 0 10px 32px 0 #fcecfd!important; background-color: #fcecfd!important; }
.latepoint-w .latepoint-booking-form-element ul.os-agents li a:hover { box-shadow: 0px 0px 0px 2px #f54c5a, 0 10px 32px 0 #fcecfd!important; background-color: #fcecfd!important; }
.latepoint-w .latepoint-booking-form-element ul.os-agents li.selected a .agent-name { color: #f54c5a!important; }

.os-monthly-calendar-days .os-day.selected .os-day-box { background-color: #323232!important; }
.latepoint-w .latepoint-booking-form-element ul.os-agents li a:hover .agent-name { color: #f54c5a!important; }
.dp-timeslot.selected .dp-label {background-color: #f54c5a!important; }
.dp-timeslot.selected {background-color: #f54c5a!important; }
.os-weekdays .weekday { color: #c185d8; }
.latepoint-booking-form-element .os-step-tabs .os-step-tab:before { background-color: #f54c5a!important; }

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-progress ul li.active .progress-item, .latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-progress ul li.complete .progress-item {
  background-color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .os-items .os-item>.os-item-i:hover {
  border-color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-services-w .os-service-durations .os-item .os-duration-value {
  color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-summary-w .os-summary-line .os-summary-value {
    color: #323232;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .os-items .os-item.os-allow-multiselect.selected .os-item-i:before {
  background-color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .os-items .os-item.selected>.os-item-i {
  border-color: #f54c5a;
  box-shadow: 4px 4px 0px 0px #FFE0E0;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .os-items .os-item.os-allow-multiselect:not(.selected) .os-item-i:hover {
  border-color: rgba(245, 76, 90, 0.6);
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .os-items .os-item .os-item-i .os-item-price-w .os-item-price {
  color: #323232;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-summary-w h3.summary-header .os-lines:before, .latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-summary-w h3.summary-header .os-lines:after {
  border-color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-summary-w h3.summary-header .os-lines:before, .latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-summary-w h3.summary-header .os-lines:after {
  border-color: #f54c5a;
}

.dp-timebox.selected {
    background-color: #323232;
    color: #fff;
    border-color: #323232;
    box-shadow: none;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-btn.latepoint-btn-primary.latepoint-btn-link {
  background-color: transparent !important;
  color: #323232;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-contact-logged-in-header-w div:before {
  background-color: #323232;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .lp-options .lp-option:hover {
  box-shadow: 0px 0px 0px 2px #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .lp-options .lp-option:hover .lp-option-label {
  color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-confirmation-w .confirmation-info-w h5, .latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-confirmation-w .payment-summary-info h5, .latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-verify-w .confirmation-info-w h5, .latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-verify-w .payment-summary-info h5 {
  border-bottom-color: #323232;
}

a.ical-download-btn span  {
  color: #323232;
}

a.print-booking-btn span {
  color: #323232;
}

/* .latepoint-w {
  margin: 2rem 12rem;
} */

.latepoint-lightbox-w.latepoint-w.latepoint-with-summary {
  margin: 0;
}

.customer-dashboard-tabs a.active {
  color: #f54c5a;
}

.customer-dashboard-tabs a:after {
  background-color: #f54c5a;
}

.customer-bookings-tiles h6.customer-booking-service-name {
  color: #323232;
}

.latepoint-btn {
  background-color: #f54c5a;
}

/* .latepoint-btn:hover, .latepoint-btn:focus {
  background-color: #323232;
} */

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-btn.latepoint-btn-primary {
  background-color: #323232;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-btn.latepoint-btn-primary:hover,
.latepoint-w .latepoint-booking-form-element.latepoint-color-red .latepoint-btn.latepoint-btn-primary:focus {
  background-color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .times-header span {
  color: #f54c5a;
  border-bottom-color: #f54c5a;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red .step-payment-w .payment-total-info .coupon-code-input-w .coupon-code-input-submit {
  background-color: #f54c5a;
}

.latepoint-chat-box-w .lc-contents .lc-conversations .lc-conversation.lc-selected {
  background-color: #efefef;
  color: #323232;
}

.latepoint-chat-box-w .lc-contents .lc-conversations .lc-conversation:hover:after {
  background-color: #f54c5a;
}

.latepoint-chat-box-w .lc-contents .lc-conversations .lc-conversation.lc-selected .lc-meta {
  color: #323232;
}

.latepoint-btn.latepoint-btn-primary.latepoint-btn-link { color: #323232; }

.latepoint-login-form-w h4 {
  color: #323232;
}

.latepoint-btn.latepoint-btn-primary.latepoint-btn-link:hover, .latepoint-btn.latepoint-btn-primary.latepoint-btn-link:focus {
    color: #f54c5a !important;
}

.os-service-extra-selector .os-item-img-w {
  height: 32px !important;
}

.latepoint-w .latepoint-booking-form-element .os-items .os-item .os-item-i .os-item-img-w {
  flex: 0 0 64px;
  height: 64px;
}

.latepoint-w .latepoint-booking-form-element.latepoint-color-red h1, .latepoint-w .latepoint-booking-form-element.latepoint-color-red h2, .latepoint-w .latepoint-booking-form-element.latepoint-color-red h3, .latepoint-w .latepoint-booking-form-element.latepoint-color-red h4, .latepoint-w .latepoint-booking-form-element.latepoint-color-red h5 {
  color: #f54c5a;
}

@media screen and (max-width: 600px) {
  .latepoint-w .latepoint-booking-form-element .os-social-login-options>.os-social-login-option {
    flex: 1;
    padding: 0;
    width: 100%;
    padding: .5rem;
    text-align: center;
  }
  .latepoint-login-form-w .os-social-login-options {
    display: flex;
    flex: 1 !important;
    flex-direction: row;
  }
  .latepoint-booking-form-element .os-social-login-options .os-social-login-option.os-social-login-facebook img, .latepoint-booking-form-element .os-social-login-options .os-social-login-option.os-social-login-google img {
    padding-top: 5px;
  }
  .latepoint-booking-form-element .os-social-login-options .os-social-login-option i, .latepoint-booking-form-element .os-social-login-options .os-social-login-option span {
    padding-top: 5px;
  }
}

div#google-signin-btn iframe #container {
  width: 100% !important;
}

.latepoint-lightbox-close {
  font-size: 24px !important;
}

.os-locations .os-item-desc {
  display: none !important;
}

.os-service-selector .os-item-desc {
  color: #f54c5a !important;
  font-size: 15px !important;
  display: block;
  margin-top: 3px;
}

.os-item-category-info .os-item-img-w {
  flex: 0 0 48px !important;
}

.latepoint-w .latepoint-booking-form-element .step-payment-w .latepoint-secured-payments-label {
  font-size: 14px;
  color: #F54C5A;
  font-weight: 600;
  text-align: left;
}

.latepoint-w .latepoint-booking-form-element .step-payment-w .latepoint-secured-payments-label::after {
  font-size: 24px !important;
  color: rgb(245, 76, 90) !important;
}

.free-cancellation {
  display: flex;
  align-items: center;
}

.free-cancellation img {
  width: 20px;
  height: 20px;
  display: flex;
  margin-left: 0.7rem;
}

.free-cancellation p {
  font-size: 14px;
  color: #F54C5A;
  padding: 1rem 2rem 0 .5rem;
  font-weight: 600;
}

.sbc-link-item {
  display: none;
}

div.related-posts {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  div.related-posts {
    max-width: 100%;
    margin: 0 auto;
  }
}

.single-correlated-post {
  padding: 1rem;
}

.single-correlated-post img {
  max-width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Contact Form 7 Customizations */

.error::after {
	content: 'Please fill empty fields.';
	color: red;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f54c5a;
  padding: 1rem 2.5rem;
  color: white;
  border: none;
  border-radius: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 3rem;
  /* cursor: pointer; */
}

input.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  background-color: #323232;
}

span.wpcf7-spinner {
  width: 24px;
}

.wpcf7-list-item {
  margin: 0;
  padding: 0;
}

span.wpcf7-form-control-wrap.privacy {
  padding-left: 0;
}

.wpcf7-checkbox input[type="checkbox"] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
.wpcf7-checkbox input[type="checkbox"] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0px;
  border: 2px solid #1a3c6c;
  box-sizing: border-box;
}
.wpcf7-checkbox input[type="checkbox"] + span:after {
  display: block;
  position: absolute;
  content: "\2713";
  height: 20px;
  width: 20px;
  top: -4px;
  left: 0;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}
.wpcf7-checkbox input[type="checkbox"]:checked + span:before {
  background: transparent;
}
.wpcf7-checkbox input[type="checkbox"]:checked + span:after {
  visibility: visible;
}
.wpcf7-acceptance label {
  position: relative;
  cursor: pointer;
}
.wpcf7-acceptance input[type="checkbox"] {
  /*position: relative;*/
  position: relative;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
.wpcf7-acceptance input[type="checkbox"] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0px;
  border: 2px solid #323232;
  box-sizing: border-box;
}
.wpcf7-acceptance input[type="checkbox"] + span:after {
  display: block;
  position: absolute;
  content: "\2713";
  height: 20px;
  width: 20px;
  top: 0;
  left: 0;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  background-color: #f54c5a;
  color: white;
  line-height: 24px;
}
.wpcf7-acceptance input[type="checkbox"]:checked + span:before {
  background: transparent;
}
.wpcf7-acceptance input[type="checkbox"]:checked + span:after {
  visibility: visible;
}

 /* Hide reCAPTCHA v3 badge */
 
 .grecaptcha-badge {
  visibility: hidden;
 }

 #hubspot-messages-iframe-container {
  z-index: 3 !important;
 }

 /* Photographer Sytle */

 .photographers .heading-container {
  padding: 4em 0 0;
}

.jumbotron.single-hero.hero-jumbotron.hero-single.hero-photographer.jumbotron-fluid {
  height: 50vh !important;
}

@media screen and (min-width: 990px) {
  .jumbotron.single-hero.hero-jumbotron.hero-single.hero-photographer.jumbotron-fluid {
    height: 75vh !important;
  }
}

.photographer-profile {
  width: 200px !important;
  height: 200px;
  margin-top: -20% !important;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 8px solid #FFFFFF;
}

.photographer-profile-rel {
  margin-top: 1rem;
  margin-bottom: 5rem;
  text-align: center;
}

@media screen and (min-width:1280px) {
  .photographer-profile-rel {
    padding: 0 5rem;
  }
}

@media screen and (min-width:990px) {
  .photographer-profile-rel {
    margin-bottom: 0;
  }
}

.photographer-profile-rel .latepoint-book-button {
  margin: 1rem;
}

.photographer-profile-rel img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin: 0 auto;
  border: 10px solid #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 1rem;
  object-fit: cover;
}

.photographer-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

@media screen and (min-width:990px) {
  .photographer-buttons {
    flex-direction: row;
  }
}

.photographer-profile-button {
  background-color: #F9F5E9;
  padding: 0.8rem 2.5rem;
  border-radius: 1.5rem;
  color: #323232;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  min-width: 15.5rem;
}

@media screen and (min-width:768px) {
  .photographer-buttons {
    margin-top: 1rem;
  }
  
  .photographer-profile-button {
    padding: 1rem 2.5rem;
    min-width: auto;
  }
}

@media screen and (min-width:990px) {
  .photographer-profile-button {
    padding: 1rem 1.5rem;
    min-width: auto;
  }
}

.photographer-profile-button:hover {
  background-color: #323232;
  color: white;
}

.profile-container {
  margin-bottom: 2rem;
}

.profile-image-container {
  width: 200px;
  height: 200px;
}

.profile-image-container img {
  border: 8px solid #FFFFFF;
  border-radius: 100%;
}

.fill {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.fill img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%
}

.popup {
  position: fixed;
  bottom: 20px; /* Adjust the distance from the bottom as needed */
  left: -360px; /* Start the popup outside the left edge of the screen */
  padding: 20px;
  background-color: #fff;
  color: #323232;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: left 0.8s; /* Add transition effect for left position change */
  max-width: 100%;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 990px) {
  .popup {
    width: 320px !important;
  }
}

.popup.show {
  left: 20px; /* Slide the popup from left to right */
}

.num-users {
  color: #f54c5a; /* Change the color to blue */
  font-weight: bold;
}

.users-text {
  color: #f54c5a; /* Change the color of the word "users" */
  font-weight: bold;
}

/* Top Bar */

.top-header {
  display: flex;
  justify-content: space-between;
  background: #323232;
  padding: .5rem 1.5rem;
}

@media screen and (min-width: 990px) {
  .top-header {
    padding: .5rem 5rem;
  }
}

.social-header {
  display: flex;
  align-items: center;
}

.social-header ul {
  display: flex;
}

.social-header ul li {
  padding-right: 1.5rem;
}

.social-header ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-header ul li a:hover svg path {
  fill: #f54c5a;
}

.login-top-header a {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login-top-header a:hover {
  color: #f54c5a;
  text-decoration: underline;
}

.login-top-header span {
  color: white;
}

a.user-logged {
  color: #f54c5a;
  text-decoration: underline;
}

.post-image, .post-title {
  padding-top: 1rem;
}

.post-excerpt {
  margin: 1rem 0;
}

.col-12.col-md-4.thumb.odd {
  margin-top: 0;
  margin-left: 0;
}

@media screen and (min-width: 990px) {
  .col-12.col-md-4.thumb.odd {
    margin-top: 5rem;
    margin-left: 3rem;
  }
}

.banner {
  display: none;
  background-color: #F54C5A;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
  .banner {
      font-size: 14px;
  }
}

.banner p {
padding-right: 1rem;
}

.close-button {
  color: #323232;
  cursor: pointer;
  font-weight: bold;
  background-color: white;
  padding: 4px 8px;
  border-radius: 100%;
  font-size: 14px;
  margin-left: 8px;
}

.container-blog {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.container-blog .heading-container {
  padding: 2em 0 2em;
}

.container-blog h3 {
  font-size: 3em;
  text-align: left;
}

@media screen and (max-width: 990px) {
  .container-blog h3 {
    font-size: 2em;
  }
}

.container-blog img {
  padding: 2rem 0;
  width: 100%;
  max-width: 800px;
  max-height: 800px;
  object-fit: cover;
}

.container-blog li {
  font-size: 1.2rem;
  line-height: 140%;
}

a.read-more {
  font-size: 1.2rem;
  font-weight: 400;
}

@media screen and (max-width: 990px) {
  .container-blog img {
    max-height: 500px;
  }
}

div.os-item-child-count {
  display: none !important;
}

.latepoint-lightbox-w .reschedule-confirmation-wrapper .rescheduled-date-time-info .info-value, .latepoint-w b, .latepoint-w strong {
  font-weight: 600;
}

.save {
  margin-left: auto;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  padding: 2px 4px;
  white-space: nowrap;
  line-height: 1;
  background-color: #ffee7e;
}

.booking-steps {
  background-color: #f8f9fa;
}

.step {
  padding: 2rem;
  height: 100%;
}

.step h4 {
  color: #ff6b6b;
  font-weight: bold;
  font-family: 'Lato';
}

.step-number span {
  font-weight: 500;
  color: #ff6b6b;
  border: 3px solid #ff6b6b;
  border-radius: 100%;
  font-size: 2.5rem;
  padding: 2.5rem;
}

.text-danger {
  color: #ff6b6b !important;
}

@media (max-width: 768px) {
  .step {
      padding: 1rem;
  }
}

/* Contact Form 7 styles */
  /* Hide all form elements when the form has been successfully submitted */
  .wpcf7 form.sent .wpcf7-form-control-wrap,
  .wpcf7 form.sent .wpcf7-submit,
  .wpcf7 form.sent p:not(:has(.wpcf7-response-output)),
  .wpcf7 form.sent label,
  .wpcf7 form.sent h4,
  .wpcf7 form.sent .captcha-image,
  .wpcf7 form.sent .cf7ic_instructions,
  .wpcf7 form.sent .wpcf7-form-control.wpcf7-radio {
    display: none !important;
  }
  
  /* Make sure the success message is clearly visible */
  .wpcf7 form.sent .wpcf7-response-output {
    display: block !important;
    font-size: 18px;
    padding: 15px !important;
    margin: 0 auto !important;
    text-align: center;
    border-color: #46b450 !important;
    background-color: rgba(70, 180, 80, 0.1);
    color: #333;
    font-weight: 500;
    animation: bounce-in 1s ease forwards;
  }
  
  /* Modifiche per posizionare lo spinner accanto al pulsante submit */
  .wpcf7-spinner {
    position: absolute !important;
    right: 0 !important;
    left: 12rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }
  
  .wpcf7-submit {
    position: relative !important;
    margin-right: 15px !important;
  }
  
  /* Modifica il contenitore del bottone submit per accogliere lo spinner */
  .wpcf7 p:has(.wpcf7-submit) {
    position: relative !important;
    display: inline-block !important;
  }
  
  /* Bottone per far riapparire il form */
  .reset-form-button {
    display: none; /* Nascosto di default */
    margin: 15px auto 0;
    padding: 10px 20px;
    background-color: #f54c5a;
    color: white;
    border: none;
    border-radius: 1.5rem;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce-in 1s ease 0.5s forwards;
    opacity: 0; /* Inizia nascosto */
  }
  
  .reset-form-button.show {
    opacity: 1;
  }
  
  .reset-form-button:hover {
    background-color: #323232;
  }
  
  /* Mostra il bottone solo quando il form è stato inviato con successo */
  .wpcf7 form.sent .reset-form-button {
    display: block !important;
  }
  
  /* Nuova classe per nascondere gli elementi durante l'invio */
  .wpcf7-form.hide-form-elements .wpcf7-form-control-wrap,
  .wpcf7-form.hide-form-elements .wpcf7-submit,
  .wpcf7-form.hide-form-elements p:not(:has(.wpcf7-response-output)),
  .wpcf7-form.hide-form-elements label,
  .wpcf7-form.hide-form-elements h4,
  .wpcf7-form.hide-form-elements .captcha-image,
  .wpcf7-form.hide-form-elements .cf7ic_instructions,
  .wpcf7-form.hide-form-elements .wpcf7-form-control.wpcf7-radio {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.5s ease-out;
  }
  
  @keyframes bounce-in {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    50% {
      opacity: 1;
      transform: translateY(10px);
    }
    75% {
      transform: translateY(-5px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.simple-list {
  list-style: disc;
  margin: 0 20px;
  font-size: 1.2rem;
  line-height: 140%;
}

/*# sourceMappingURL=global.css.map */
