* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: alliance;
  src: url(/assets/fonts/AllianceNo1-Medium.woff2);
  font-display: optional;
}
@font-face {
  font-family: alliance-b;
  src: url(/assets/fonts/AllianceNo1-Bold.woff2);
  font-display: optional;
}
@font-face {
  font-family: nunito-b;
  src: url(/assets/fonts/Nunito-Bold.woff2);
  font-display: block;
}
:root {
  --grey-blue-00: hsl(228, 33%, 97.5%);
  --grey-blue-05: hsl(220, 37%, 94%);
  --grey-blue-10: hsl(224, 28%, 92%);
  --grey-blue-20: hsl(227, 30%, 85%);
  --grey-blue-30: #b4b9cc;
  --grey-blue-40: #8e96ae;
  --grey-blue-50: hsl(226, 15%, 50%);
  --grey-blue-60: hsl(227, 14%, 39%);
  --grey-blue-70: #282f40;
  --grey-blue-80: hsl(220, 32%, 15%);
  --blue-dark-90: #0b111e;

  /* --green-link: #70ffde; */
  --link: #3c6bc2;

  /* --green-link-dark: #49bea3; */

  --white-opa-60: hsla(0, 0%, 100%, 0.7);
  --dark00-opa-10: hsla(222, 100%, 98%, 0.1);
  --dark00-opa-20: hsla(222, 100%, 98%, 0.2);
  --dark00-opa-70: hsla(222, 100%, 98%, 0.7);
  --dark90-opa-10: hsla(221, 78%, 7%, 0.1);
  --dark90-opa-30: hsla(221, 78%, 7%, 0.3);
  --dark90-opa-50: hsla(221, 78%, 7%, 0.5);
  --dark90-opa-80: hsla(221, 78%, 7%, 0.8);

  --grad-light-green: -webkit-linear-gradient(-70deg, #a2facf 0%, #64acff 100%);

  --grad-purple-blue: -webkit-linear-gradient(45deg, #41c9d5, #4b6ac7);

  --grad-orange-red: -webkit-linear-gradient(-70deg, #ff7170 0%, #ffe57f 100%);
  --clr-link-light: hsl(347, 100%, 70%);
  --clr-link-dark: hsl(333, 97%, 43%);
  --clr-pink: #fa406e;
  --grad-red: radial-gradient(
    circle at center,
    hsl(338, 100%, 55%),
    hsl(338, 100%, 57%),
    #ff3877,
    hsl(344, 100%, 65%)
  );

  --filter: blur(0.5rem);
  --all600: alliance-b, sans-serif;
}

@media screen and (min-width: 1000px) {
  :root {
    --grey-blue-00: hsl(228, 33%, 97%);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
}
p a {
  display: inline;
}
li {
  list-style: none;
}
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
p,
a {
  color: inherit;
  background-color: transparent;
  color: inherit;
}
::selection {
  background-color: hsla(227, 48%, 87%, 0.75);
  color: var(--blue-dark-90);
}
:is(.btn, .city-card, .lightbox-button-turitop):active {
  transform: scale(0.95);
}
svg {
  width: 100%;
  display: block;
}

body {
  position: relative;
  min-width: 300px;
  height: 100%;
  padding-bottom: 8rem;
  font-size: 1.15rem;
  font-family: alliance, sans-serif;
  font-weight: 400;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--grey-blue-00);
  color: var(--blue-dark-90);
}

::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-thumb {
  background: var(--grey-blue-30);
  border-radius: 1rem;
  border: 2px solid var(--grey-blue-00);
}
::-webkit-scrollbar-thumb:active {
  background: var(--grey-blue-50);
}

/* !CLASSES RESET */
.title {
  font-size: clamp(2.1rem, 8vw, 2.4rem);
  font-family: var(--all600);
  font-weight: 500;
  line-height: 1.1;
}
.subtitle {
  font-size: clamp(1.6rem, 8vw, 2.2rem);
  font-family: var(--all600);
  font-weight: 500;
  line-height: 1.25;
  color: var(--grey-blue-80);
}
.cta-txt,
.txt {
  color: var(--grey-blue-30);
}
.cta-txt {
  font-size: 1.4rem;
  line-height: 1.5;
}
.small {
  font-size: 1rem;
  color: var(--grey-blue-40);
}
strong {
  font-family: var(--all600);
  font-weight: 500;
}
.grey {
  color: var(--grey-blue-50);
}
.conditions-link,
.link {
  display: inline-block;
  position: relative;
  color: var(--link);
}

.conditions-link::after,
.link::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s;
}
.conditions-link::after,
.link::after {
  transform: scale(0);
  transform-origin: left;
  background-color: hsl(221, 51%, 56%);
}

/* !BTNS */
.btn {
  display: block;
  padding: 0.7rem 1.1rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  display: block;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.btn-sec {
  background-color: var(--dark00-opa-10);
  backdrop-filter: var(--filter);
  -webkit-backdrop-filter: var(--filter);
  transition: transform 0.2s, background 0.25s;
}

.btn-prime {
  background-size: 200%;
  background-image: var(--grad-red);
  transition: transform 0.2s, background 0.5s ease-in-out;
}

/* !GRADIENTS */
.grad-txt-pb,
.grad-txt-or,
.grad-txt-bg {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-box-decoration-break: clone;
}
.grad-txt-bg {
  background-image: var(--grad-light-green);
}
.grad-txt-or {
  background-image: var(--grad-orange-red);
}
.grad-txt-pb {
  background-image: var(--grad-purple-blue);
}

/* !HEADER MENU SECTION ++++++++++++++++++++++++++++++++++++ */
header {
  z-index: 100;
}

/* SHADOW LOGO SLIDER */
header::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.8rem;
  background-image: linear-gradient(hsla(221, 46%, 8%, 0.15) 20%, #0b111e00);
  z-index: 10;
}

/* !LOGO */
.logo-cont {
  position: absolute;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border-radius: 2rem;
  z-index: 20;
  white-space: nowrap;
}
.logo-txt {
  font-family: nunito-b, arial;
  font-size: 1.1rem;
  color: white;
  transition: color 0.3s;
}
.clr-pink {
  color: var(--clr-pink);
}
.logo-svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--clr-link-light);
  transition: transform 0.3s ease-in-out, fill 0.3s;
}
@media screen and (min-width: 550px) {
  .logo-cont {
    top: 0.25rem;
    left: 0.25rem;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1000px) {
  header::after {
    display: none;
  }
  .logo-cont {
    position: relative;
    left: 0;
    top: 0;
    padding: 1rem 1.5rem;
  }
  .logo-txt {
    color: var(--clr-pink);
  }
  .logo-cont svg {
    fill: var(--clr-pink);
  }
}

/*! MENU ITEMS */
.menu-items {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-top: 1px solid var(--grey-blue-10);
  -webkit-backdrop-filter: var(--filter);
  backdrop-filter: var(--filter);
  background: var(--white-opa-60);
  z-index: 100;

  padding-bottom: 0.6rem;
  transform: translateY(110%);
}
.menu-items.transition {
  transition: transform 0.3s;
  transform: translateY(0.6rem);
}
.menu-items.up {
  transform: translateY(0);
}

.menu-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.5rem;
}
.menu-item svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: var(--grey-blue-40);
}
.menu-item span {
  font-size: 0.8rem;
  color: var(--grey-blue-50);
  transition: color 0.25s;
}

/* !CURRENT MENU ITEM */
.menu-item.current-item svg {
  fill: var(--clr-pink);
}
.menu-item.current-item span {
  color: var(--blue-dark-90);
}
@media screen and (min-width: 1000px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: var(--filter);
    -webkit-backdrop-filter: var(--filter);
    background-color: var(--white-opa-60);
  }
  .main-menu-cont {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--grey-blue-10);
  }
  .main-menu-cont .menu-items {
    position: relative;
    justify-content: end;
    grid-auto-flow: column;
    grid-template-columns: auto;
    border-top: none;
    align-items: center;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: none;
    padding-bottom: 0;
    transform: translateY(0);
  }
  .menu-item {
    padding: 1rem 1.5rem;
  }
  .menu-item::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 3px;
    background-color: var(--clr-pink);
    border-radius: 6px;
    transform: scale(0);
    transition: transform 0.3s;
  }

  .menu-item span {
    font-size: 1.1rem;
  }
  .menu-item svg {
    display: none;
  }

  /* !CURRENT */
  .menu-item.current-item::after {
    transform: scale(1);
  }
  .menu-item.current-item span {
    color: var(--clr-pink);
  }
}

/* !BEGINNING SECTION  +++++++++++++++++++++++++++++++++*/
@media screen and (min-width: 1000px) {
  .beginning-sec {
    display: grid;
    padding-top: 4.5rem;
  }
}
@media screen and (min-width: 1350px) {
  .beginning-sec {
    padding-top: 5rem;
  }
}
/* !TITLE SEC */
.title-sec {
  padding: 2rem 1rem 0.5rem;
  background: white;
}
/* MAIN TITLE */
h1 {
  padding-bottom: 1rem;
  font-family: var(--all600);
  font-size: clamp(2.6rem, 8vw, 3.4rem);
  font-weight: 600;
  color: var(--blue-dark-80);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--blue-dark-90);
}
@media screen and (max-width: 350px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  h1 {
    padding-bottom: 0;
  }
}
.title-revs-cont {
  white-space: nowrap;
}
.title-revs-cont span {
  font-size: 1.1rem;
}
.title-revs-stars-cont {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 0.3rem;
  color: var(--grey-blue-80);
}
.title-revs-stars-cont svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--clr-pink);
}

@media screen and (min-width: 1000px) {
  .title-sec {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: end;
    padding: 2rem 7.5% 1.5rem;
    order: -1;
    background: transparent;
  }
}

/* ! SUMMARY SEC +++++++++++++++++++++++++++++++++  */
.summary-sec {
  padding: 1rem 1rem 3rem;
  background-color: white;
}
.summary-boxes-cont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  overflow: hidden;
  background-color: white;
}
.summary-box-cont {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 1rem;
  padding: 1.2rem 1rem;
}
.summary-box-cont:first-child::before,
.summary-box-cont::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-blue-10);
}
.summary-box-cont::after {
  bottom: 0;
}
.summary-box-cont:first-child::before {
  top: 0;
}
.summary-icon-cont {
  display: grid;
  place-content: center;
}
.summary-box-cont svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: var(--grey-blue-60);
}
.summary-box-cont p {
  font-size: 1.2rem;
  color: var(--grey-blue-80);
}

.summary-title-cont time,
.summary-title-cont address,
.summary-box-cont span {
  color: var(--grey-blue-50);
  font-size: 1.1rem;
}

.price-link {
  display: inline;
}
address {
  display: inline;
  font-style: normal;
}
@media screen and (min-width: 550px) {
  .summary-box-cont:first-child::before,
  .summary-box-cont::after {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .summary-sec {
    background-color: transparent;
  }
  .summary-boxes-cont {
    border-radius: 1rem 1rem 0 0;
  }
  .summary-box-cont::after {
    display: block;
    background: var(--grey-blue-00);
  }
}

/* ! TOUCH SLIDER SEC +++++++++++++++++++++++++++++++++  */
.slider-sec {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.slider-cont {
  position: relative;
  display: inline-flex;
  transform: translateX(0);
}
.slider-cont::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  height: 4rem;
  background-image: linear-gradient(hsla(221, 78%, 7%, 0), #040d21be);
  pointer-events: none;
}
.slide {
  position: relative;
  width: 100vw;
  height: 20rem;
  transition: filter 0.3s;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  background: var(--blue-dark-90);
  color: white;
}
.slide img {
  width: 100%;
  object-fit: cover;
  height: 20rem;
}

/* COUNTER SLIDES */
.counter-slides {
  position: absolute;
  display: block;
  top: 1rem;
  right: 0.5rem;
  padding: 0.4rem 0.8rem 0.25rem;

  display: grid;
  grid-auto-flow: column;
  border-radius: 0.5rem;
  color: var(--grey-blue-00);
  background-color: var(--dark90-opa-50);
  gap: 0.1rem;

  font-size: 1rem;
  -webkit-backdrop-filter: var(--filter);
  backdrop-filter: var(--filter);
  line-height: 1;
  pointer-events: none;
  z-index: 20;
}
.counter-bar {
  color: var(--grey-blue-20);
}

/* SLIDE ARROWS */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.slide-arrow svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: transparent;
  pointer-events: none;
  stroke: var(--grey-blue-10);
  stroke-width: 0.5rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slide-arrow-next {
  padding: 0.5rem 0.3rem 0.5rem 0.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  right: 0;
}
.slide-arrow-prev {
  padding: 0.5rem 0.5rem 0.5rem 0.3rem;
  border-radius: 0 0.5rem 0.5rem 0;
  left: 0;
}

/* !SLIDE CIRCLES */
.slider-circles-cont {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);

  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 0.3rem;
  pointer-events: none;
  z-index: 10;
}
.slide-circle-cont {
}
.slide-circle {
  width: 0.7rem;
  height: 0.7rem;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.2s;
}
.current-slide svg {
  fill: white;
}
/* !SLIDE DESKTOP GALLERY ++++++++++++++++++++++++++++*/
@media screen and (min-width: 550px) {
  .slider-cont::after,
  .slider-arrows-cont,
  .counter-slides {
    display: none;
  }
  .slide:nth-child(n + 6) {
    display: none;
  }
  .slider-cont {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem;
    height: 24rem;
  }
  .slide {
    height: 100%;
    width: auto;
    max-width: 100%;
    min-height: 0;
    cursor: zoom-in;
  }

  .slide:nth-child(1) {
    grid-area: 1/1/3/3;
  }
  .slide img {
    height: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .slider-sec {
    padding: 0 0 3rem;
  }
  .slider-cont {
    border-radius: 1rem;
    overflow: hidden;
    height: 27rem;
    min-height: 62vh;
    max-height: 65vh;
  }
}

/* !JOURNEY SEC ++++++++++++++++++++++++++++++++++++++ */
.journey-sec {
  padding: 3rem 0 1rem;
}
.journey-title {
  padding-left: 1rem;
  padding-right: 1rem;
}
.journey-boxes {
  padding: 1rem 1rem 2rem;
  display: flex;
  overflow-y: hidden;
  overflow-x: scroll;
  gap: 1rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
}

.journey-boxes::-webkit-scrollbar {
  display: none;
}
.journey-boxes::after {
  content: "·";
  position: relative;
  left: 0;
  width: 1px;
  height: 1rem;
  color: transparent;
  pointer-events: none;
}
.journey-box {
  position: relative;
  width: 17rem;
  min-width: 17rem;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-color: white;
  box-shadow: 0 1.5rem 2rem hsla(222, 40%, 23%, 0.03);
  /* box-shadow: 0 0.75rem 1rem hsla(221, 52%, 71%, 0.2); */
}
.journey-box::before {
  position: relative;
  content: "";
  top: 0;
  left: 0;
  display: block;
  height: 15rem;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 1rem 1rem 0 0;
}

/* IMAGES JOURNEY */
.journey-box.show:nth-child(1)::before {
  background-image: url(/free-tour-milan/assets/img/journey/castill-sforzesco-milan.webp);
}
.journey-box.show:nth-child(2)::before {
  background-image: url(/free-tour-milan/assets/img/journey/Duomo-por-la-noche.webp);
}
.journey-box.show:nth-child(3)::before {
  background-image: url(/free-tour-milan/assets/img/journey/estatua-love.webp);
}
.journey-box.show:nth-child(4)::before {
  background-image: url(/free-tour-milan/assets/img/journey/galerias.webp);
}
.journey-box.show:nth-child(5)::before {
  background-image: url(/free-tour-milan/assets/img/journey/la-scala.webp);
}
.journey-box.show:nth-child(6)::before {
  background-image: url(/free-tour-milan/assets/img/journey/albergo-regina.webp);
}

/* PICTURES DESKTOP */
@media screen and (min-width: 1000px) {
  .journey-box.show:nth-child(1)::before {
    background-image: url(/free-tour-milan/assets/img/journey/castill-sforzesco-milan.jpg);
  }
  .journey-box.show:nth-child(2)::before {
    background-image: url(/free-tour-milan/assets/img/journey/Duomo-de-noche.jpg);
  }
  .journey-box.show:nth-child(3)::before {
    background-image: url(/free-tour-milan/assets/img/journey/estatua-love.jpg);
  }
  .journey-box.show:nth-child(4)::before {
    background-image: url(/free-tour-milan/assets/img/journey/galerias-ve.jpg);
  }
  .journey-box.show:nth-child(5)::before {
    background-image: url(/free-tour-milan/assets/img/journey/la-scala.jpg);
  }
  .journey-box.show:nth-child(6)::before {
    background-image: url(/free-tour-milan/assets/img/journey/albergo-regina.jpg);
  }
}

.journey-box-txt {
  width: 100%;
  height: 100%;
  padding: 0.9rem 1.25rem 1.25rem 1.25rem;
  border-radius: 0 0 1rem 1rem;
  background-color: white;
  line-height: 1.5;
}
.journey-subtitle {
  padding: 0.25rem 0 0.6rem;
  font-family: var(--all600);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--grey-blue-80);
}
.journey-box-txt p:nth-child(2) {
  color: var(--grey-blue-60);
}

/* !JOURNEY TXT SEC ++++++++++++++++++++++++++++++++++++++*/
.journey-txt-sec {
  position: relative;
  padding: 3rem 1rem;
  background-color: white;
}
.journey-txt-subtitle {
  padding-bottom: 1rem;
}
.journey-txt-cont {
  overflow: hidden;
}
.journey-txt-subcont {
  overflow: hidden;
  line-height: 1.5;
  transition: height 0.6s;
}
.journey-txt-subcont.journey-hide {
  height: 8rem;
}
.journey-txt-subcont.journey-show {
  height: var(--j-t-height);
}
.journey-txt-subcont p {
  color: var(--grey-blue-60);
  padding-bottom: 1.7rem;
}

/*  TXT HIGHLIGHT */
p.txt-highlight {
  font-size: 1.25rem;
  padding: 1rem;
  background-image: linear-gradient(
    150deg,
    hsla(192, 100%, 86%, 0.2),
    hsla(225, 100%, 81%, 0.2)
  );
  margin-bottom: 1.7rem;
  border-radius: 1rem;
  color: var(--grey-blue-70);
}

/* BTN SHOW MORE */
.btn-show-cont {
  position: relative;
  width: 100%;
  border-radius: 0.75rem 0.75rem 0 0;
  transition: height 0.6s, padding-top 0.6s, color 0.3s;
}
.journey-show + .btn-show-cont {
  padding-top: 1rem;
}
.btn-show-cont::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 6rem;
  background-image: linear-gradient(#ffffff00, #ffffffd5, #ffffff);
}

.journey-show + .btn-show-cont::before {
  background-image: none;
}
.btn-show-sec {
}
.btn-show {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 0.75rem 1rem;
  -webkit-backdrop-filter: var(--filter);
  backdrop-filter: var(--filter);
  padding: 0.75rem 1rem;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--link);
}
.journey-show + .btn-show-cont svg {
  transform: rotate(180deg);
}
.btn-show svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: var(--blue-dark-90);
  stroke-width: 0.6rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.6s, stroke 0.3s;
  stroke: var(--link);
}

/* !CONDS DETAILS SEC +++++++++++++++++++++++++++++++++*/
.cond-sec {
  padding: 3rem 1rem;
}
.conds-cont {
  background-color: white;
  border-radius: 1rem;
}
.conds-subcont {
  margin-left: auto;
  margin-right: auto;
}
.cond-main-title {
  padding-bottom: 1rem;
}
.cond-cont {
  position: relative;
  padding: 1.5rem;
}
.cond-cont:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-blue-00);
}
.cond-title {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}
.cond-title p {
  font-family: var(--all600);
  font-size: 1.3rem;
  color: var(--grey-blue-70);
  font-weight: 500;
}
.cond-title svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: var(--grey-blue-70);
}
.cond-txt {
  color: var(--grey-blue-60);
  line-height: 1.5;
}

/* !FAQ SEC +++++++++++++++++++++++++++++++++++++ */
.faq-sec {
  padding: 3rem 1rem;
  background-color: white;
}
.faq-cont {
}
.faq-title {
  padding-bottom: 1rem;
}
.acc-cont {
  position: relative;
  overflow: hidden;
  transition: padding 0.3s;
}
.acc-cont:nth-of-type(1)::before,
.acc-cont::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-blue-10);
}
.acc-cont::after {
  bottom: 0;
}
.acc-cont:nth-child(1)::before {
  top: 0;
}
.acc-cont.opened {
  padding-bottom: 1.5rem;
}
.acc-title-cont {
  padding: 1.2rem 0;
  display: grid;
  grid-auto-flow: column;
  align-items: center;

  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--grey-blue-80);
  line-height: 1.5;
}
.acc-title-cont :is(p, .txt) {
  font-size: 1.15rem;
  line-height: 1.4;
  pointer-events: none;
  transition: color 0.3s;
  color: var(--grey-blue-80);
  font-weight: 400;
}

.opened > .acc-title-cont :is(p, .txt) {
  color: var(--grey-blue-40);
}
.acc-title-cont svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--grey-blue-80);
  stroke-width: 0.6rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: transform 0.3s, stroke 0.3s;
}

.opened .acc-title-cont svg {
  transform: rotate(180deg);
  stroke: var(--grey-blue-40);
}
.acc-txt-cont {
  display: grid;
  gap: 1.4rem;
  line-height: 1.5;
  color: var(--grey-blue-60);
  transition: height 0.3s;
}

.acc-txt-cont.hide {
  height: 0;
}

/* !ACC CONT DESKTOP */
@media screen and (min-width: 1000px) {
  .faq-cont {
    background-color: white;
    border-radius: 1rem;
  }
  .acc-cont:nth-of-type(1)::before {
    display: none;
  }
  .acc-cont::after {
    background-color: var(--grey-blue-00);
  }
  .acc-cont:last-child::after {
    display: none;
  }
  .acc-title-cont {
    padding: 1.5rem 2rem;
  }
  .acc-txt-cont {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 65ch;
  }
}

/* !BTN TURI */
.btn-turi-cont {
  padding: 0.85rem 0.8rem;
  position: fixed;
  bottom: 3.6rem;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(250%);
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 100;
}
.btn-turi-cont.show {
  transition: opacity 0.6s, transform 0.6s, bottom 0.3s;
  opacity: 1;
  transform: translateY(0);
  pointer-events: initial;
}
.btn-turi-cont.up {
  bottom: 4.2rem;
}

/* !DELETE TITLE CALENDAR */
.loading-turitop iframe {
  max-width: none !important;
}

@media screen and (min-width: 1000px) {
  .btn-turi-cont {
    position: relative;
    bottom: 0;
    transform: translateY(0);
    opacity: 1;
    pointer-events: initial;
    z-index: initial;

    padding: 1.25rem;
  }
}

.lightbox-button-turitop {
  border: 0 !important;
  border-radius: 0.75rem !important;
  padding: 0.8rem 1.5rem !important;
  font-family: alliance, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
  background-image: radial-gradient(
    circle at center,
    hsl(336, 92%, 44%),
    hsl(336, 94%, 49%),
    #ff3b73,
    hsl(348, 100%, 66%)
  ) !important;
  background-size: 200% !important;
  background-position: left !important;
  width: 100%;
  max-width: 32rem;
  transition: transform 0.3s, background-position 0.6s;
  user-select: none;
}
.lightbox-button-turitop.up {
}
.lightbox-button-turitop:hover {
  background-position: right !important;
}

/* !REVS SEC */
.model-star {
  display: none;
}
.revs-sec {
  padding: 3rem 0;
}
.revs-title {
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
}
.star-title {
  width: 2rem;
  height: 2rem;
  fill: var(--clr-pink);
  /* display: inline-block; */
}
.revs-title span {
}
.star {
  fill: var(--clr-pink);
  width: 1.1rem;
  height: 1.1rem;
}
.revs-cont {
  display: grid;
  grid-auto-flow: column;
  overflow-x: scroll;
  overflow-y: hidden;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding: 1rem 1rem 2rem;
  scroll-padding-left: 1rem;
  scrollbar-width: none;
}
.revs-cont::-webkit-scrollbar {
  display: none;
}
.revs-cont::after {
  content: "";
  width: 0.1px;
}
/* SINGLE REVIEW */
.rev-cont {
  width: 19rem;
  max-width: 85vw;
  padding: 1.4rem;
  border-radius: 1rem;
  background-color: white;

  scroll-snap-align: start;
  scroll-snap-stop: always;

  box-shadow: 0 1.5rem 2rem hsla(222, 40%, 23%, 0.03);
}

.rev-popup-title-cont,
.rev-title-cont {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  padding-bottom: 0.5rem;
}
.rev-popup-title-nd,
.rev-title-nd {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}
.rev-popup-title-nd :first-child,
.rev-title-nd :first-child {
  font-size: 1.3rem;
  color: var(--grey-blue-80);
}
.rev-popup-title-nd :last-child,
.rev-title-nd :last-child {
  color: var(--grey-blue-40);
  font-size: 0.95rem;
}
.rev-title-rate {
  display: grid;
  grid-auto-flow: column;
  gap: 0.2rem;
}
.rev-title-rate * {
  color: var(--clr-pink);
}
.rev-title-rate svg {
}
.rev-title-rate span {
}

.rev-txt {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  line-height: 1.5;
  color: var(--grey-blue-60);
}

/* SHOW MORE TXT */
.show-more {
  display: none;
}
.show-more * {
  pointer-events: none;
}
.show .show-more {
  padding-top: 0.75rem;
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.show-more svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--link);
  stroke-width: 0.7rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.last-rev-cont {
  border: 1px solid var(--grey-blue-40);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  text-align: center;
}

.last-rev-cont span {
  color: var(--link);
  pointer-events: none;
}

/* !BTN REVS OPEN POPUP */
.btn-revs-open-cont {
  padding: 0.5rem 1rem 0 1rem;
}
.btn-revs-open-popup {
  background-color: white;
  border: 1px solid var(--grey-blue-40);
  cursor: pointer;
  transition: color 0.3s, background 0.3s, transform 0.3s;
  user-select: none;
}

/* !REVS POPUP SEC +++++++++++++++++++++++++++++++++++++*/
/* !REVS BACK POPUP SEC */
.revs-back-cont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  justify-content: start;
  align-items: center;
  padding: 1.25rem;
  -webkit-backdrop-filter: var(--filter);
  backdrop-filter: var(--filter);
  background-color: var(--dark00-opa-70);
  z-index: 151;
  border-bottom: 1px solid var(--grey-blue-00);
  transform: translateX(100%);
  transition: transform 0.3s;
}
.revs-back-cont.show {
  transform: translateX(0);
}
.revs-back-cont * {
  pointer-events: none;
}
.revs-back-cont svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: var(--blue-dark-90);
  stroke-width: 0.6rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

/* !REVS POPUP-SEC */
.revs-popup-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 150;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.revs-popup-sec.show {
  transform: translateX(0);
}
@media screen and (max-width: 1000px) {
  .revs-popup-sec::-webkit-scrollbar {
    display: none;
  }
}
.revs-popup-cont {
  position: relative;
  padding: 6rem 1.25rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.revs-popup-title {
  gap: 0.5rem;
}
.revs-popup-title svg {
  display: inline-block;
}

.rev-popup-cont {
  position: relative;
  padding: 1.5rem 0;
}
.rev-popup-cont::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-blue-05);
}
.rev-popup-cont .rev-title-rate {
  margin-right: 1.5rem;
}

.rev-popup-txt {
  line-height: 1.5;
  color: var(--grey-blue-60);
}

/* !TABLET POPUP */
@media screen and (min-width: 750px) {
  .revs-popup-sec {
    display: grid;
    background: transparent;
  }
  .revs-popup-sec.show {
    transition: transform 0.3s, background 0.2s 0.3s;
    background-color: var(--dark90-opa-80);
  }
  .revs-popup-cont {
    padding: 3rem 1.5rem 1.5rem;
    background-color: white;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 1rem;
    height: 80vh;
    overflow-y: auto;
  }
  .revs-popup-cont::-webkit-scrollbar {
    width: 10px;
  }
  .revs-popup-cont::-webkit-scrollbar-thumb {
    border-right: 2px solid white;
    border-left: 2px solid white;
  }
  .revs-back-cont {
    top: 1rem;
    left: 1rem;
    background-color: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 50%;
    transition: background 0.3s;
  }
  .revs-back-cont svg {
    padding: 0.25rem;
    width: 2rem;
    height: 2rem;
    stroke: var(--grey-blue-00);
    /* pointer-events: initial; */
    /* cursor: pointer; */
  }
}

/* NO MORE THAN 1000 */
@media screen and (max-width: 1000px) {
  .revs-popup-sec::-webkit-scrollbar {
    display: none;
  }
}

/* TODO NOT DELETE !OA SEC */
/* .oa-sec {
  padding: 3rem 0;
  background-color: white;
}
.oa-title-cont {
  display: grid;
  padding-left: 1rem;
  gap: 1rem;
}
.oa-cards-cont {
  display: grid;
  grid-auto-flow: column;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
  gap: 1rem;
  scrollbar-width: none;
}
.oa-cards-cont::-webkit-scrollbar {
  display: none;
}
.oa-cards-cont::after {
  content: "";
  width: 1px;
}
.oa-card-cont {
  position: relative;
  width: 19rem;
  max-width: 85vw;
  height: 28rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;

  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  transition: transform 0.3s;
}
.oa-card-cont:active {
  transform: scale(0.95);
}
.oa-card-cont::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(
    #06102200,
    hsla(219, 70%, 8%, 0.6),
    hsla(219, 70%, 8%, 0.8)
  );
  border-radius: 0 0 1rem 1rem;
}
.oa-card-subcont {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.3rem;
  z-index: 10;
}
.oa-card-cont.show:nth-child(1) {
  background-image: url(/free-tour-milan/assets/img/other-activities/comer-en-milan.webp);
}
.oa-card-cont.show:nth-child(2) {
  background-image: url(/free-tour-milan/assets/img/other-activities/cementerio-monumental.webp);
}
.oa-card-cont.show:nth-child(3) {
  background-image: url(/free-tour-milan/assets/img/other-activities/aperitivo-milan.webp);
}
@media screen and (min-width: 1000px) {
  .oa-card-cont.show:nth-child(1) {
    background-image: url(/free-tour-milan/assets/img/other-activities/comer-en-milan.jpg);
  }
  .oa-card-cont.show:nth-child(2) {
    background-image: url(/free-tour-milan/assets/img/other-activities/cementerio-monumental.jpg);
  }
  .oa-card-cont.show:nth-child(3) {
    background-image: url(/free-tour-milan/assets/img/other-activities/aperitivo-milan.jpg);
  }
}
.oa-card-subcont > :first-child {
  font-size: 1.5rem;
  font-family: var(--all600), sans-serif;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  padding-bottom: 0.8rem;
}
.oa-card-subcont > :last-child {
  color: var(--grey-blue-20);
  font-size: 1rem;
} */

/* !BREADCRUMBS */
.breadcrumbs-sec {
  padding: 1.5rem;
  background-color: white;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  font-size: 1rem;
}
.breadcrumbs-sec svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: none;
  stroke: var(--grey-blue-50);
  stroke-width: 0.6rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.breadcrumbs-sec :last-child {
  color: var(--grey-blue-70);
}

/* !FOOTER */
footer {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--grey-blue-60);
}

/* COMMON MEDIA QUERIES SECTIONS */
@media screen and (min-width: 750px) {
  .breadcrumbs-sec,
  footer,
  .faq-sec,
  .cond-sec,
  .journey-txt-sec,
  .summary-sec,
  .title-sec {
    padding-left: 6%;
    padding-right: 6%;
  }

  /* JOURNEY */
  .revs-title,
  .journey-title {
    padding: 0 6%;
  }
  .revs-cont,
  .journey-boxes {
    padding: 1rem 6%;
    scroll-padding-left: 6%;
  }
}

@media screen and (min-width: 1000px) {
  html {
    scroll-padding-top: 3rem;
  }

  /* TODO DIVISION MEGASEC ++++++++++++++++++++++++++  */
  .division {
    display: grid;
    grid-template-columns: 63% 37%;
  }
  .subdivision {
    padding-right: 1rem;
  }
  .main-menu-cont,
  .division,
  .beginning-sec {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
  .summary-sec {
    order: 1;
  }

  .breadcrumbs-sec,
  footer,
  .faq-sec,
  .cond-sec,
  .journey-txt-sec,
  .title-sec {
    padding-left: 0;
    padding-right: 0;
  }
  /* !TITLE SEC */
  .title-revs-cont {
    align-items: center;
  }
  /* !SUMMARY SEC */
  .summary-sec {
    padding: 3rem 0 2rem 1rem;
  }
  .summary-main-cont {
    position: sticky;
    top: 6rem;
    background-color: white;
    border-radius: 1rem;
  }
  .summary-box-cont p {
    font-size: 1.1rem;
  }
  .summary-title-cont time,
  .summary-title-cont address,
  .summary-box-cont span {
    font-size: 1rem;
  }
  /* JOURNEY */
  .revs-title,
  .journey-title {
    padding: 0;
  }
  .revs-cont,
  .journey-boxes {
    padding: 1rem 0;
  }

  /* !JOURNEY */
  .journey-sec {
    padding-top: 2rem;
  }
  .journey-boxes::after {
    display: none;
  }
  .journey-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
  .journey-box {
    width: 100%;
    min-width: 0;
    box-shadow: none;
  }

  .journey-box::before {
    height: 16rem;
  }
  .journey-box-txt {
    font-size: 1.1rem;
  }

  /*! JOURNEY TXT */
  .journey-txt-sec {
    border-radius: 1rem;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  .journey-txt-cont {
    padding: 2rem 1.5rem 1rem;
    background-color: white;
    border-radius: 1rem;
  }
  .journey-txt-subcont {
    max-width: 70ch;
  }

  /* !CONDITIONS CONDS */
  .cond-cont {
    padding: 1.5rem 2rem;
    max-width: 65ch;
  }
  .cond-title {
    align-items: center;
  }

  /* !FAQ SEC */
  .faq-sec {
    background-color: transparent;
  }

  /*! REVS */
  .revs-cont {
    grid-auto-flow: row;
  }
  .revs-cont::after {
    display: none;
  }
  .rev-cont {
    box-shadow: none;
  }
  .rev-title-rate {
    align-items: center;
  }
  .revs-popup-title,
  .revs-title {
    display: flex;
    align-items: center;
  }
  .rev-cont {
    width: 100%;
    padding: 1.5rem 2rem;
  }
  .rev-txt {
    max-width: 65ch;
  }
  .last-rev-cont {
    display: none;
  }

  .breadcrumbs-sec {
    background-color: transparent;
  }
  /* !FOOTER */
  footer {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  /* !HOVER+++++++++++++++++++++++++++++++++++++++++ */
  .conditions-link:hover::after,
  .link:hover::after {
    transform: scale(1);
  }
  .btn-sec:hover {
    background-color: var(--dark00-opa-20);
  }
  .btn-prime:hover {
    background-position: right;
  }
  .logo-cont:hover svg {
    transform: rotate(180deg);
  }
  .menu-item:hover::after {
    transform: scale(1);
  }
  .menu-item:hover span {
    color: var(--clr-pink);
  }
  .btn-show-cont:hover {
    color: var(--link);
  }
  .slide:hover {
    filter: brightness(0.8);
  }
  .btn-show-cont:hover .btn-show svg {
    stroke: var(--link);
  }
  .acc-title-cont:hover :is(p, .txt) {
    color: var(--link);
  }
  .acc-title-cont:hover svg {
    stroke: var(--link);
  }
  .show-more:hover svg {
    transform: translateX(20%);
  }
  .btn-revs-open-popup:hover {
    color: white;
    background-color: var(--grey-blue-50);
  }
  .revs-back-cont svg:hover {
    background-color: var(--dark00-opa-10);
  }
}
@media screen and (min-width: 1200px) {
  .division {
    grid-template-columns: 72% 28%;
  }
  .journey-boxes {
    gap: 2rem 1rem;
  }
}
@media screen and (min-width: 1300px) {
  .main-menu-cont,
  .division,
  .beginning-sec {
    width: 85%;
    /* max-width: 1200px; */
  }
}

@-moz-document url-prefix() {
  @media screen and (max-width: 1000px) {
    .menu-items {
      background-color: white;
    }
  }
  header {
    background-color: white;
  }
}
