/* Define CSS Variables for Colors */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey: #D8D8D8;
  --color-primary-light: #F1913A;
  --color-primary-dark: #D67515;
  --color-secondary: #012b58;
  --color-accent: #F48D24;
  --color-dark: #663C13;
  --color-info-card: #FFEEE1;
  --color-light-orange: #FFEFE1;
  --color-hover: rgba(51, 51, 51, 1);
}

html {  
    /* filter: contrast(200%) !important; */
  scroll-padding-top: 116px;
}


/* Base Styles */
body {
  color: var(--color-black);
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  font-size: 18px;
}

body.bee-document-locked {
  overflow-x: hidden;
}

a,
html.no-touch a:hover {
  color: var(--color-white);
  text-decoration: none;
  transition: all .2s ease-out;
}

a:hover {
  color: var(--color-white);
}

html.no-touch a:hover {
  color: var(--color-hover);
}

img {
  max-width: 100%;
}

.hover-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.hover-img .gradient-overlay { 
  opacity: 0;
}
html.no-touch a:hover .gradient-overlay,
html.no-touch .hover-img:hover .gradient-overlay {
  opacity: 1;
}
  

p, p.text {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  overflow-wrap: break-word;
}

.modal-dialog .text {
  color: var(--color-black);
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.modal-dialog .text a {
  color: var(--color-primary-dark);
}

html.no-touch .modal-dialog .text a:hover {
  color: var(--color-hover);
}

.date {
  font-size: 16px;
  line-height: 22px;
}

/* Utility Classes */
.pt-40 {
  padding-top: 40px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-50 {
  padding-left: 50px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-50 {
  padding-bottom: 50px;
}

.ml-10 {
  margin-left: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Scroll Top Button */
.scroll-top {
  cursor: pointer;
  height: 50px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 50px;
  z-index: 800;
  transition: 0.4s;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background-color: var(--color-accent);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  bottom: -50px;
  opacity: 0;
}

.scroll-top i {
  line-height: 50px;
  color: var(--color-white);
  font-size: 25px;
}

.scroll-top.in {
  bottom: 20px;
  opacity: 1;
}

html.no-touch .scroll-top:hover {
  background-color: var(--color-hover);
}

/* Bounce Effect icon scroll page */
.bouce {
  width: 31px;
  height: 44px;
  animation: bounce 1.5s cubic-bezier(.5, 0.05, 1, .5) infinite;
  border: 1px solid var(--color-white);
  border-radius: 16px;
  padding: 5px 0 28px 0;
}

.bouce i {
  font-size: 22px;
  padding: 5px 0;
}

.scroll-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  text-align: center;
  z-index: 20;
}

.scroll-box>i {
  display: block;
  height: 36px;
}

/* Button Styles */
.btn-orange {
  background-color: var(--color-primary-light);
  border-radius: 12px;
  padding: 15px 31px;
  display: inline-block;
  font-family: "Figtree", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.btn-black {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  font-family: "Figtree", serif;
  border-radius: 12px;
  width: 100%;
  padding: 13px 31px;
  border: none;
  transition: all 0.4s ease;
}

html.no-touch .btn-black:hover,
html.no-touch .btn-orange:hover,
html.no-touch .btn-grey:hover {
  background-color: var(--color-hover);
  color: var(--color-white);
}

/* Background Colors */
.bg-primary-custom-light {
  background-color: var(--color-primary-light);
}

.bg-primary-custom-dark {
  background-color: var(--color-primary-dark);
}

.bg-dark {
  background-color: var(--color-black);
}

.btn-grey {
  background-color: var(--color-grey);
  color: var(--color-black);
  border-radius: 12px;
  padding: 15px 31px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  font-family: "Figtree", serif;
}

.btn-back {
  background-color: #e8e8e8;
  color: #6e6e6e;
  border-radius: 8px;
  padding: 6px 18px 6px 35px;
  min-width: max-content;
  height: 33px;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.btn-back::before {
  content: '\f104';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #6e6e6e;
}

html.no-touch .btn-back:hover,
html.no-touch .btn-grey:hover {
  background-color: var(--color-hover);
  color: var(--color-white) !important;
}

html.no-touch .btn-back:hover::before {
  color: var(--color-white);
}

/* Title Styles */
.title {
  font-family: "Figtree", serif;
  font-weight: 800;
}

h1.title {
  font-size: 59px;
  line-height: 71px;
}

.eventi h1.title,
.home .box-title.title,
.orange-box .box-title.title,
.map-box .title,
.main-title {
  font-size: 41px;
  line-height: 42px;
}

h1.main-title {
  font-size: 41px !important;
  line-height: 42px !important;
}

h2.title {
  font-size: 50px;
  line-height: 60px;
}

h3.title {
  font-size: 20px;
  line-height: 35px;
}

.box-title.title {
  font-size: 28px;
  line-height: 34px;
}

.box-subtitle.title {
  font-size: 34px;
  line-height: 18px;
}

.news-title.title,
.events-title.title,
.related-event-title,
.resource-title.title {
  font-size: 22px;
  line-height: 26px;
}

.resource-info-title.title{
  line-height: 33px !important;
}

.subtitle {
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
}

.luogo {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}

.categoria {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 19px;
}

.data {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

header .logo-dark,
.route-home header .logo-light {
  display: inline-block;
}

header .logo-light,
.route-home header .logo-dark,
header .logo-mobile {
  display: none;
}

header .social-box .social {
  margin: 4px;
}

header .social-box {
  display: none;
  transform: translateX(170%);
  transition: all 500ms cubic-bezier(0.55, 0.25, 0, 0.985);
  opacity: 0;
  z-index: 1;
}

header.is-transitioning .social-box {
  display: block;
}

/* header.canvas-open {
  display: none;
} */

header.canvas-open .social-box {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

.menu-offcanvas .social-box {
  width: 100%;
  margin-bottom: 0;
}

.route-home header.sticky,
header .pre-header {
  width: 100%;
  background-color: #e88622;
}

header .pre-header a {
  color: var(--color-black);
}

.navbar-toggler:focus {
  box-shadow: none;
}
a:focus-visible,
button:focus-visible,
.form-control:focus-visible {
  outline: none !important;
  outline: 0 !important;
  box-shadow: 0 0 0 .2rem rgba(0,95,204,0.7) !important;
}
.slick-slide a:focus-visible {
  border: 2px solid #005fcc !important;
}

header.canvas-open .pre-header {
  visibility: hidden;
}

.pre-header p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0;
  padding: 8px;
  font-weight: 700;
  align-content: center;
}

.pre-header span {
  font-weight: 500;
  font-style: italic;
}

.pre-header span::before {
  content: " | ";
  font-size: 18px;
}

.route-home header.sticky .navbar,
header .navbar {
  background-color: var(--color-accent);
}

header.sticky .navbar {
  z-index: 1060;
}

header .navbar>.container {
  display: block;
}

header .navbar .container .row {
  align-items: center;
  padding: 10px 0;
  transition: all 0.4s ease;
}

header .navbar .container .row .col-icon .div-social {
  width: 100%;
}

.menu-offcanvas .col-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 24px;
  position: relative;
}

header .navbar .navbar-brand {
  display: inline-block;
  margin: 0;
  padding: 0;
}

header .navbar .navbar-brand img,
.menu-offcanvas .navbar-brand img {
  width: 190px;
  transition: all 0.4s ease;
}

header.sticky .navbar .navbar-brand img {
  width: 165px;
}

header .navbar-toggler span,
header.sticky .navbar-toggler span,
.route-home header.sticky .navbar-toggler span,
.menu-offcanvas .navbar-toggler span {
  height: 2px;
  background-color: var(--color-accent);
}

.route-home header .navbar-toggler span,
header.canvas-open .navbar-toggler span,
.route-home header.canvas-open .navbar-toggler span,
.menu-offcanvas .navbar-toggler span {
  background-color: var(--color-white);
}

/*menu burger*/

@keyframes navigation_appear {
  0% {
    transform: translateY(-50%) translateX(-100%);
  }

  70% {
    transform: translateY(-50%) translateX(0%);
  }

  100% {
    height: 100%;
  }
}

header .navbar-toggler,
.menu-offcanvas .navbar-toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  z-index: 10;
  border: none;
  margin-left: 28px;
}

.route-home header .navbar-toggler {
  background-color: var(--color-accent);
}

header .navbar-toggler,
header.sticky .navbar-toggler {
  background-color: var(--color-white);
}

.menu-offcanvas .navbar-toggler.open {
  background-color: var(--color-primary-dark);
}

.bars {
  display: none;
}

#burger {
  position: absolute;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  transition-duration: .5s;
}

.bars {
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--color-white);
  border-radius: 20px;
  transform: rotate(0deg);
  transition: .5s;
}

#middle {
  transition-duration: .8s;
}

#top,
#bottom {
  width: 70%;
}

.navbar-toggler.open #burger .bars {
  position: absolute;
  transition-duration: .5s;
  animation: color_change 4s infinite alternate;
}

.navbar-toggler.open #burger #top {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: .5s;
}

.navbar-toggler.open #burger #middle {
  opacity: 0;
  transform: scale(0);
  transition-duration: .5s;
}

.navbar-toggler.open #burger #bottom {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}

.navbar-toggler.open #burger {
  transform: rotate(360deg);
  transition-duration: .5s;
}

.navigation-list {
  width: 300px;
  background-color: var(--color-accent);
}

.navbar-toggler.open+.navigation-list {
  transform: translateX(100px);
}

/*menu menu-offcanvas*/

.menu-offcanvas {
  color: var(--color-white);
  background-color: var(--color-accent);
  width: 100%;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: all 400ms cubic-bezier(0.55, 0.25, 0, 0.985);
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  z-index: 1070;
  opacity: 0;
  height: 100%;
}

.menu-offcanvas .container {
  padding-top: 58px;
}

.menu-offcanvas .title {
  font-size: 33px;
  line-height: 18px;
}

.menu-offcanvas ul {
  list-style-type: none;
  padding-left: 0;
}

.menu-offcanvas ul li,
header .social-box a {
  transform: translateX(0px);
}

.menu-offcanvas.show {
  transform: translateX(0);
  opacity: 1;
}


.menu-offcanvas .accordion-button,
.menu-offcanvas .accordion-item,
.menu-offcanvas .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: var(--color-white);
}
.menu-offcanvas .accordion-button {
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.menu-offcanvas .item-links {
  max-width: 174px;
}

.menu-offcanvas .accordion-button::before {
  flex-shrink: 0;
  width: 1.25rem;
  content: "\f107";
  font-size: 20px;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  font-family: "Font Awesome 6 Free";
  margin-right: 5px;
}

.menu-offcanvas .accordion-button:not(.collapsed)::before {
  transform: rotate(180deg);
}

.menu-offcanvas .accordion-button::after {
  content: none;
}

.menu-offcanvas .accordion-item,
.menu-offcanvas .accordion-button,
.menu-offcanvas .advice-title {
  font-weight: 700;
  font-family: "Figtree", serif;
  font-size: 30px;
  line-height: 1.3;
  padding: 5px 0;
}
html.no-touch .menu-offcanvas .accordion-item a:hover,
html.no-touch .menu-offcanvas .accordion-item button:hover {
  color: var(--color-dark);
}

.menu-offcanvas .accordion-item .list-title {
  font-size: 24px;
  color: var(--color-dark);
}

.menu-offcanvas .advice-grid,
.operator-page .advice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    column-gap: 15px;
    text-align: center;
}
.menu-offcanvas .advice-grid .advice,
.operator-page .advice-grid .advice {
  background-color: var(--color-primary-dark);
  border-radius: 23px;
  padding: 12px;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
  font-family: "Figtree", serif;
  color: var(--color-white);
  text-align: center;
  align-content: center;
  position: relative;
  margin-top: 15px;
}

.menu-offcanvas .advice-grid .advice picture,
.operator-page .advice-grid .advice picture {
  display: block;
}

.menu-offcanvas .advice-grid .advice img,
.operator-page .advice-grid .advice img {
  object-fit: cover;
  height: 100%;
  aspect-ratio: 154 / 151;
  width: 100%;
  border-radius: 12px;
}

.menu-offcanvas .submenu {
  font-family: 'Open Sans', sans-serif;
}

.menu-offcanvas .accordion-item .info {
  height: 36px;
  margin-top: -5px;
}

.menu-offcanvas .accordion-item .accordion-body li {
  font-size: 16px;
  line-height: 33px;
}

.menu-offcanvas .accordion-body {
    padding: 0 25px 25px;
}

.menu-offcanvas .btn-menu {
  background-color: var(--color-primary-dark);
  border-radius: 8px;
  padding: 8px 5px !important;
  font-size: 26px !important;
  display: block;
  text-align: center;
  width: 100%;
}

html.no-touch .menu-offcanvas a:hover .box-menu .gradient-overlay {
  height: 100%;
  border-radius: 23px;
  display: inline-block;
  background: rgba(0, 0, 0, .4);
}

/* -------------------------------------------------------- */

.menu-offcanvas .language-select-box .btn,
header .language-select-box .btn,
header.sticky .language-select-box .btn,
.route-home header.sticky .language-select-box .btn {
  background-color: #ffffff70;
}

.language-select-box {
  color: var(--color-white);
  font-family: "Figtree", serif;
  font-weight: 700;
  font-size: 14px;
}

.language-select-box .btn {
  height: 38px;
  width: 61px;
  color: var(--color-white);
  font-family: "Figtree", serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  padding-left: 12px;
  border-radius: 9px;
  text-transform: uppercase;
  align-content: center;
}

html.no-touch .language-select-box .btn:hover {
  color: var(--color-white);
}

.route-home header .language-select-box .btn {
  background-color: #00000070;
}

.language-select-box .language-select.dropdown-menu {
  padding: 0;
  min-width: auto;
  width: 100%;
  max-width: 61px;
}

.dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--color-white);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

footer .language-select-box .dropdown-toggle::after {
  color: #838383;
}

.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.dropdown-item.active, 
.dropdown-item:active {
  background-color: var(--color-primary-dark);
  outline: none;
  color: var(--color-white);
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 300px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-primary-dark) !important;
}

/* Pagination */

ul.pagination {
  justify-content: center;
  margin-top: 20px;
}

ul.pagination li {
  margin: 0 4px;
}

ul.pagination li a,
ul.pagination li span {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 2px solid #D8D8D8;
  background-color: var(--color-white);
  color: #ADADAD;
  align-content: center;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}

ul.pagination li:first-child a,
html.no-touch ul.pagination li:first-child a:hover,
ul.pagination li:last-child a,
html.no-touch ul.pagination li:last-child a:hover {
  border: none;
}

ul.pagination li.active span,
html.no-touch ul.pagination li a:hover,
html.no-touch ul.pagination li a:hover span {
  background-color: #E07F24;
  border: 2px solid #E07F24;
  color: var(--color-white);
}

ul.pagination li.disabled span {
  border: none;
}

ul.pagination li.disabled span span {
  background-color: var(--color-grey);
  border: 2px solid var(--color-grey);
  color: #ADADAD;
}

/* Footer -------------------------------------------------- */
footer {
  color: var(--color-white);
}

footer .title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

footer ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
}

footer ul.links {
  margin-top: 48px;
}

footer .col-nav ul li,
footer ul.links li {
  line-height: 22px;
  font-weight: 500;
  font-size: 18px;
  font-family: "Figtree", serif;
}

footer .col-nav ul li {
  line-height: 32px;
}

footer ul.links li {
  padding-bottom: 18px;
}

footer ul.links li .title {
  text-transform: uppercase;
}

footer ul.links li .sublinks {
  line-height: 30px;
  margin-top: 10px;
}

footer ul.links li .sublinks i {
  font-size: 14px;
  padding-right: 7px;
}

footer .bg-primary-custom-dark {
  padding: 160px 0 150px 0;
}

footer .logo-dark {
  width: 250px;
  max-width: 100%;
}

footer .regione {
  width: 195px;
  max-width: 100%;
}

footer .visitpiemonte {
  width: 228px;
  max-width: 100%;
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f39e" !important;
}

footer img {
  width: 100%;
}

footer .social {
  margin-bottom: 10px;
}

footer .language-select-box .btn {
  background-color: var(--color-white);
  color: #838383;
}

html.no-touch footer .language-select-box .btn:hover {
  color: #838383;
}

footer .footer-bottom {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  font-family: "Figtree", serif;
}

footer .modal-title {
  color: var(--color-black);
}

/*Breadcrumb*/

.breadcrumb {
  padding: 40px 0;
  display: inline-block;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  margin: 0;
}

.breadcrumb,
.breadcrumb a {
  color: #696969;
  font-size: 16px;
  font-family: "Figtree", serif;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  float: left;
  white-space: nowrap;
}

.breadcrumb>li+li:before {
  font-family: 'Font Awesome 6 Free';
  content: "\f054";
  font-size: 8px;
  padding: 0 10px;
}

.breadcrumb li.active {
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* Social */

footer .social-box {
  padding-top: 10px;
}

.social {
  margin-right: 8px;
  float: left;
}

.social a {
  color: #E07F24;
  font-size: 20px;
  text-align: center;
}

html.no-touch .social a:hover {
  color: #fff !important;
}

.social a i {
  width: 34px;
  height: 34px;
  background-color: var(--color-white);
  padding: 8px 6px;
  border-radius: 100%;
  transition: all .2s ease-out;
}

html.no-touch .social a:hover i {
  background-color: var(--color-hover);
}

.social img {
  width: 34px;
}

footer .brands {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ----------------------------------------- */

.menu-offcanvas .box-search {
  width: 426px;
}

.box-search {
  position: relative;
  max-width: 100%;
}

.box-search .btn {
  background-color: var(--color-white);
}

.box-search .btn-search {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  min-width: 46px;
  height: 100%;
  border-radius: 0 12px 12px 0;
  background-color: var(--color-light-orange);
}

.box-search .input-clear {
  position: absolute;
  top: 50%;
  right: 46px;
  transform: translateY(-50%);
  height: 100%;
  background-color: var(--color-light-orange);
  padding: 0 0 0 15px;
}

html.no-touch .btn-search:hover i {
  color: var(--color-hover);
}

.btn-search i {
  color: var(--color-accent);
  font-size: 20px;
  transition: all 0.4s ease;
}

.box-search .form-control {
  border: none;
  border-radius: 12px;
  font-size: 16px;
  padding: 14px 37px 14px 14px;
  background-color: var(--color-light-orange);
}

.menu-offcanvas .box-search .form-control,
.menu-offcanvas .box-search .btn-search,
.menu-offcanvas .box-search .input-clear {
  background-color: var(--color-white);
}

/* Home */
.fullscreen .fullscreen-slider {
  z-index: 10;
  margin-bottom: 0 !important;
}

.fullscreen .fullscreen-slider .slick-slide {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 800px;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fullscreen .fullscreen-slider .slick-slide img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.fullscreen .fullscreen-slider .slick-slide img.mobile {
  display: none;
}
.fullscreen .fullscreen-slider .slide-content .big-title {
  position: absolute;
  z-index: 20;
  color: var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 59px;
  line-height: 71px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 3px 3px 8px #00000029;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
}

.fullscreen .fullscreen-slider .slide-content .slide-text {
  position: absolute;
  z-index: 20;
  color: var(--color-white);
  bottom: 10%;
  left: 7%;
}
.fullscreen .fullscreen-slider .slide-content .slide-text .title {
  font-size: 41px;
  line-height: 42px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fullscreen .fullscreen-slider .slide-content .slide-text .text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.fullscreen .fullscreen-slider .slide-content .slide-bellezza-autentica-map {
  display: block;
  position: absolute;
  width: 509px;
  height: 335px;
  right: 40px;
  bottom: 40px;
  background-image: url(../images/slide-bellezza-autentica-map.png);
  background-position: center;
  background-size: contain;
  z-index: 20;
}

@media (max-width: 1600px) {
  .fullscreen .fullscreen-slider .slide-content .big-title {
    font-size: 45px;
    line-height: 54px;
  }
  .fullscreen .fullscreen-slider .slide-content .slide-text .title {
    font-size: 30px;
    line-height: 32px;
  }
  .fullscreen .fullscreen-slider .slide-content .slide-text .text {
    font-size: 12px;
    line-height: 15.3px;
  }
  .fullscreen .fullscreen-slider .slide-content .slide-bellezza-autentica-map {
    transform: scale(0.66);
    transform-origin: bottom right;
  }
}

@media (max-width: 991px) {
  .fullscreen .fullscreen-slider .slide-content .big-title {
    font-size: 32px;
    line-height: 38px;
  }
  .fullscreen .fullscreen-slider .slide-content .slide-text .title {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 7px;
  }
  .fullscreen .fullscreen-slider .slide-content .slide-text .text {
    font-size: 14px;
    line-height: 1.3;
  }
  .fullscreen .fullscreen-slider .slide-content .slide-bellezza-autentica-map {
    transform: scale(0.5);
  }
}
@media (max-width: 600px) {
  .fullscreen .fullscreen-slider .slide-content .slide-bellezza-autentica-map {
    display: none;
  }
}

.route-home header {
  position: absolute;
  z-index: 1060;
  width: 100%;
}

.route-home header .pre-header {
  background-color: #dee2e670;
}

.route-home header .navbar {
  background-color: transparent;
}

header.sticky .navbar {
  position: fixed !important;
  left: 0px;
  right: 0px;
  top: 0;
}

.fullscreen-slider .slick-dots {
  bottom: 12%;
}

.fullscreen-slider .slick-dots li span {
  background-color: var(--color-light-orange);
}

.fullscreen-slider .slick-dots li.slick-active span {
  background-color: var(--color-accent);
}

.newsletter-box {
  padding: 30px 0 20px 0;
}

.newsletter-box .form-control {
  border-radius: 12px;
  padding: 0.700rem .75rem;
  border: none;
  height: 53px;
}

.newsletter-box .epp-box {
  width: fit-content;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

.epp-ci .epp-ci-cbw {
  font-size: 12px !important;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600 !important;
}

.epp-ci .epp-ci-ta {
  font-size: 12px !important;
  font-family: "Open Sans", sans-serif !important;
}

.orange-box {
  padding: 65px 0;
}

.question.orange-box {
  padding: 100px 0 50px 0;
}

.orange-box .box-title.title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.orange-box .btn-orange {
  background-color: #D16D0F;
}

.orange-box.question .btn-orange {
  width: 400px;
  max-width: 100%;
}

.box-rounded {
  border-radius: 12px;
  padding: 55px 40px 40px 40px;
  border: 1px solid var(--color-primary-dark);
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.box-rounded-white {
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
}

.box-rounded-white .title {
  font-size: 41px;
  line-height: 49px;
  margin-bottom: 18px;
}

.box-rounded-white .list-title {
  font-family: "Figtree", serif;
  font-size: 22px;
  line-height: 28px;
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.box-rounded-white ul {
  list-style: none;
  padding-left: 0;
}

.box-rounded-white ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.box-rounded-white ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
  color: var(--color-accent);
}

.box-rounded-white ul li a {
  color: var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Figtree", serif;
}

html.no-touch .box-rounded-white ul li a:hover {
  color: var(--color-primary-dark);
}

.city-info {
  padding-left: 0;
}

.city-info li {
  list-style: none;
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.city-info li h3 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.city-info li a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.info-box {
  padding-top: 150px;
  padding-bottom: 100px;
}

.info-box img {
  width: 202px;
}

.info-box .btn-orange {
  width: 180px;
}

.info-box .text-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-box .text-info img {
  margin-bottom: 61px;
}

.box-info-img::before {
  content: "";
  display: block;
  height: 117px;
  margin-top: -70px;
  visibility: hidden;
}

.info-img {
  height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: url(/assets/main/images/info.jpg);
}

.is-webp .info-img {
  background-image: url(/assets/main/images/info.webp);
}

.events {
  padding-top: 50px;
}

.events .link-subtitle a {
  font-size: 20px;
  line-height: 24px;
  color: var(--color-accent);
  display: inline-block;
}

.route-home .events .events-search {
  margin: 55px 0 100px;
}

/* 
.trips::before {
  content: "";
  display: block;
  height: 117px;
  margin-top: -70px;
  visibility: hidden;
} */

.trips {
  padding-top: 80px;
}

.events-slider {
  padding-top: 55px;
  padding-bottom: 100px;
  margin-bottom: 40px;
}

.proposals {
  margin-bottom: 25px;
}

.proposals,
.events-slider {
  overflow: hidden;
  position: relative;
}

.block-slider {
  padding-bottom: 120px;
}

.box-image .title {
  font-size: 41px;
  line-height: 42px;
  text-transform: uppercase;
}

.block-slider .image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.block-slider .text {
  color: var(--color-white);
}

.box-card .card {
  border: none;
}

.experiences-slider,
.proposals-slider {
  z-index: 2;
  padding-top: 25px;
}

.proposals-slider .slick-track {
  margin-right: 0;
}

.experiences-slider .slick-track {
  margin-left: 0;
}

.experiences-slider .slick-list {
  overflow: visible;
  clip-path: inset(-100vw -100vw -100vw 0);
  backface-visibility: hidden;
}

.proposals-slider .slick-list {
  overflow: visible;
  clip-path: inset(-100vw 0 -100vw -100vw);
  backface-visibility: hidden;
}

.events-slider a,
.experiences-slider a,
.proposals-slider a,
.box-card a {
  color: var(--color-black);
}

.events-slider img,
.experiences-slider img,
.proposals-slider img,
.box-card .card-img-top img {
  aspect-ratio: 414 / 304;
  object-fit: cover;
}
.box-image-type img {
  aspect-ratio: initial !important;
  object-fit: contain !important;
}


.box-card .card-img-top {
  text-align: center;
}

.box-card .card-img-top img,
.events-slider img {
  width: 100%;
}

.block-slider img {
  z-index: 10;
}

/* Slider */

.trips-slider {
  padding-top: 45px;
  padding-bottom: 100px;
}

.trips-slider .title {
  font-size: 41px;
  line-height: 42px;
  text-transform: uppercase;
}

.cities-slider .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}

.cities-slider .title {
  font-size: 31px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cities-slider a {
  padding: 0 10px !important;
}

.experiences-home-slider.slick-initialized .slick-slide {
  max-width: 460px;
}

.trips-slider a {
  padding: 0 15px;
}

.slick-slider .slick-arrow:before {
  font-family: "Font Awesome 6 Free" !important;
  font-size: 22px;
}

.slick-slider .slick-prev:before {
  content: '\f060';
  opacity: 1;
}

.slick-slider .slick-next:before {
  content: '\f061';
  opacity: 1;
}

.events-slider .slick-arrow,
.block-slider .slick-arrow,
.trips-slider .slick-arrow,
.experiences-slider .slick-arrow,
.proposals-slider .slick-arrow {
  padding: 0;
  width: 48px;
  height: 48px;
  top: initial;
  bottom: 0;
}

.events-slider .slick-prev,
.block-slider .slick-prev,
.trips-slider .slick-prev,
.experiences-slider .slick-prev,
.proposals-slider .slick-prev {
  left: 50%;
  transform: translateX(-52px);
  line-height: 1;
  background-color: var(--color-accent);
  color: var(--color-white);
}

.events-slider .slick-next,
.block-slider .slick-next,
.trips-slider .slick-next,
.experiences-slider .slick-next,
.proposals-slider .slick-next {
  right: 50%;
  transform: translateX(52px);
  line-height: 1;
  background-color: var(--color-accent);
  color: var(--color-white);
}

.events h3 {
  color: var(--color-accent);
}

.block-slider .slick-slide {
  margin: 0 15px;
  width: 576px;
  max-width: 100%;
}

html.no-touch .events-slider .slick-prev:hover,
html.no-touch .events-slider .slick-next:hover,
html.no-touch .block-slider .slick-prev:hover,
html.no-touch .block-slider .slick-next:hover,
html.no-touch .trips-slider .slick-prev:hover,
html.no-touch .trips-slider .slick-next:hover,
html.no-touch .custom-arrows .slick-prev:hover,
html.no-touch .custom-arrows .slick-next:hover,
html.no-touch .experiences-slider .slick-prev:hover,
html.no-touch .experiences-slider .slick-next:hover,
html.no-touch .proposals-slider .slick-prev:hover,
html.no-touch .proposals-slider .slick-next:hover {
  background-color: var(--color-primary-dark);
}

.events-slider .slick-prev:focus,
.events-slider .slick-next:focus,
.block-slider .slick-prev:focus,
.block-slider .slick-next:focus,
.trips-slider .slick-prev:focus,
.trips-slider .slick-next:focus,
.custom-arrows .slick-prev,
.custom-arrows .slick-next:focus,
.experiences-slider .slick-prev:focus,
.experiences-slider .slick-next:focus,
.proposals-slider .slick-prev:focus,
.proposals-slider .slick-next:focus {
  background-color: var(--color-accent);
}

button.go-down {
  border: none;
  background-color: transparent;
}

.events-slider .pretitle {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 19px;
}

.related-events .pretitle,
.box-card .pretitle {
  margin-bottom: 5px;
  font-size: 14px;
}

.events-slider .pretitle span,
.box-card .pretitle span {
  font-style: italic;
}

.events-slider .text,
.block-slider .text,
.box-card .text {
  font-size: 18px;
  line-height: 29px;
}

.events-slider .line-title {
  width: 170px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: 12px;
  margin-bottom: 15px;
}

.block-slider img,
.trips-slider img{
  transition: transform 0.3s ease;
}

.block-slider .slick-slide {
  margin-top: 20px;
  margin-bottom: 20px;
}

.block-slider .slide-content {
  position: absolute;
  top: 58%;
  left: 50px;
  right: 50px;
  z-index: 30;
}

.trips-slider .slide-content {
  position: absolute;
  left: 45px;
  right: 45px;
  top: 58%;
  z-index: 30;
}

html.no-touch .block-slider a:hover,
html.no-touch .trips-slider a:hover {
  color: var(--color-white);
}

html.no-touch .block-slider .slick-slide:hover .gradient-overlay,
html.no-touch .trips-slider .slick-slide:hover .gradient-overlay {
  height: 100%;
}

html.no-touch .events-slider .slick-slide:hover .line-title {
  background-color: var(--color-primary-dark);
}

.block-slider .title {
  font-size: 41px;
  line-height: 42px;
  margin-bottom: 18px;
  color: var(--color-white);
}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 25;
  transition: transform 0.3s ease;
}

.trips-slider .image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border-bottom: 18px solid var(--color-accent);
}

.cities-slider .image-container {
  border-bottom: none;
}

.trips-slider .image-container:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.3);
}

.trips-slider .image-container img {
  width: 100%;
}

.trips-slider .image-container .gradient-overlay {
  height: 210px;
}

.link-orange {
  font-size: 34px;
  line-height: 42px;
  font-family: "Figtree", serif;
  font-weight: 800;
  text-decoration: underline;
  color: var(--color-accent);
}

.divider {
  background-color: var(--color-accent);
  width: 125px;
  height: 7px;
  margin: 30px auto;
}

.map-box {
  margin: 45px auto 75px auto;
}

.map-box .divider:first-child {
  margin-bottom: 70px;
}

.map-box .divider:last-child {
  margin-top: 70px;
}

.map-box img {
  width: 100%;
}

.map-box .text {
  font-size: 18px;
  line-height: 29px;
  font-weight: 500;
  margin: 17px 0;
}

.box-image {
  height: 281px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  color: #ffffff;
  text-align: left;
  margin: 40px 0;
  overflow: hidden;
}

.box-image .gradient-overlay {
  height: 80%;
}

.box-image .content {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 20;
}
.trip-page {
  padding-bottom: 40px;
}
.trip-page h1.title {
  font-size: 51px;
  line-height: 62px;
}
.trip-page h2 {
  font-size: 20px;
  line-height: 35px;
  font-weight: 800;
  font-family: "Figtree", serif;
}

.trip-page .pre-text blockquote,
.trip-page .pre-text blockquote p {
  font-size: 21px;
  line-height: 35px;
  font-family: "Libre Baskerville", serif;
}

.trip-page .pre-text,
.trip-page .pre-text p {
  font-size: 16px;
  line-height: 1.3;
  font-family: "Figtree", serif;
}


.trip-page .small-text {
  font-weight: 800;
  font-size: 16px;
  font-family: "Figtree", serif;
}

.trip-page .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  text-align: initial;
}

.trip-page .btn-orange {
  color: var(--color-white);
}

.trip-page .box-logo {
  border: 1px solid #cecece;
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
}

.trip-page .title-loghi {
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
  margin: 60px 0 35px;
}

.trip-page .title-loghi.first {
  margin: 60px 0 55px;
}

.trip-page a .title {
  color: var(--color-black);
  transition: all 0.4s ease;
  font-size: 18px;
  margin-bottom: 0;
  padding: 20px;
}

.trip-page a:hover .title {
  color: var(--color-hover);
}

.custom-container {
  max-width: 760px;
}

.custom-container .text a {
  color: var(--color-black);
}

html.no-touch .custom-container .text a:hover {
  color: var(--color-hover);
}

.experiences-box .pre-title,
.proposals-box .pre-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  margin-top: 15px;
  font-family: "Figtree", serif;
  color: var(--color-white);
}

.experiences-box .title,
.proposals-box .title {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 20px;
}

.experiences-box .text .desc,
.proposals-box .text .desc {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-weight: 400;
}

.proposals-box .color-box .pre-title,
.proposals-box .color-box .title,
.proposals-box .color-box .text {
  text-align: right;
}

.slider-intro {
  position: absolute;
  width: 100%;
  top: 0;
}

.experiences-box::before {
  content: "";
  width: 87%;
  height: 290px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: var(--color-accent);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.experiences-box .color-box {
  position: relative;
  margin-right: 50px;
  padding: 25px 15px 30px 25%;
  z-index: 2;
}

.proposals-box::before {
  content: "";
  width: 87%;
  height: 290px;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  background-color: var(--color-accent);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.proposals-box .color-box {
  position: relative;
  margin-left: 50px;
  padding: 25px 25% 30px 15px;
  z-index: 2;
}

.experiences-box .custom-arrows {
  position: relative;
  margin-top: 160px;
  margin-left: 25%;
}

.proposals-box .custom-arrows {
  position: relative;
  margin-top: 160px;
  margin-right: 25%;
}

.custom-arrows .slick-prev i,
.custom-arrows .slick-next i {
  font-size: 22px;
  color: var(--color-white);
}

.experiences-box .custom-arrows .slick-prev {
  left: 0;
}

.experiences-box .custom-arrows .slick-next {
  left: 58px;
}

.proposals-box .custom-arrows .slick-prev {
  right: 58px;
  left: auto;
}

.proposals-box .custom-arrows .slick-next {
  right: 0;
}

.custom-arrows .slick-prev,
.custom-arrows .slick-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  line-height: 1;
}

html.no-touch .custom-arrows .slick-prev:hover,
html.no-touch .custom-arrows .slick-next:hover {
  background-color: var(--color-primary-dark);
}

.custom-arrows .slick-prev::before,
.custom-arrows .slick-next::before {
  content: none;
}

.experiences-slider .pretitle,
.proposals-slider .pretitle {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
}

.text-orange {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
}

.experiences-slider .slick-slide .title,
.proposals-slider .slick-slide .title {
  font-size: 28px;
  line-height: 34px;
}

.experiences-slider .slick-slide .text,
.proposals-slider .slick-slide .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.experiences-slider .slick-slide p,
.proposals-slider .slick-slide p {
  margin-bottom: 5px;
}
.experiences-slider .slick-slide img,
.proposals-slider .slick-slide img {
  width: 100%;
}
.experiences-slider .slick-slide .place,
.proposals-slider .slick-slide .place {
  color: var(--color-accent);
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 6px;
}
.experiences-slider .slick-slide .place i,
.proposals-slider .slick-slide .place i {
  font-size: 18px;
  margin-right: 10px;
}

.experiences-box,
.proposals-box {
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}


/* Aimazione entrata slider */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.experiences-box.animate-text .pre-title,
.experiences-box.animate-text .title,
.experiences-box.animate-text .text {
  animation: slideInLeft 1s ease-out forwards;
}

.experiences-box .animate-slider.experiences-slider {
  animation: slideInRight 1s ease-out forwards;
}

.proposals-box.animate-text .pre-title,
.proposals-box.animate-text .title,
.proposals-box.animate-text .text {
  animation: slideInRight 1s ease-out forwards;
}

.proposals-box .animate-slider.proposals-slider {
  animation: slideInLeft 1s ease-out forwards;
}

/* Events */
.events-page h1,
.events-page h2{
  font-size: 41px;
  line-height: 42px;
}

.events-page h2 {
  text-align: left !important;
}

.events-page .link-subtitle {
  display: none;
}

.events-page .subtitle {
  font-weight: 400;
  line-height: 24px;
}

.events-page .events {
  padding-top: 0;
}

.events-page .events-container {
  padding-top: 25px;
  padding-bottom: 200px;
}

.events-page .events-container .evidence {
  background-color: var(--color-light-orange);
}

.events-page .btn-grey {
  margin-top: 60px;
}

.events-page .box-card .card-body {
  padding: 18px 0 0 0;
}

.events-page .box-card .col-element {
  margin-bottom: 30px;
}

.events-page .box-card .card {
  margin: -14px -14px 14px -14px;
  padding: 14px;
  border-radius: 12px;
  height: 100%;
}

.events-page .box-card .card .card-img-top {
  position: relative;
}

.badge-evidence {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f48d24eb;
  color: var(--color-white);
  font-weight: 700;
  padding: 8px 20px;
  font-size: 16px;
  z-index: 2;
  text-transform: uppercase;
  text-align: left;
  transition: transform 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Event */
.container-event {
  background-color: #FDE9D8;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.container-event::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #FFF;
  z-index: 20;
  width: 120%;
  height: 43%;
  left: -10%;
  transform: rotate(2.9deg);
}

.event-page .box-event {
  padding-bottom: 120px;
}

.event-page .box-event .col-lg-8 {
  display: flex;
  justify-content: flex-end;
}

.event-page .box-event .event-slider {
  margin: 0;
}

.event-page .box-event .title {
  font-size: 41px;
  line-height: 49px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.event-page .box-event .pretitle {
  margin: 15px 0 20px 0;
  font-size: 16px;
}

.event-page .box-event .pretitle span {
  font-style: italic;
}

.event-page .box-event .pretitle i {
  color: var(--color-accent);
  padding-right: 10px;
  font-size: 20px;
}

.event-page .box-event .text {
  font-size: 18px;
  line-height: 24px;
}

.event-page .box-event .date {
  font-size: 20px;
  line-height: 27px;
}

.event-page .box-event img {
  width: 100%;
}

.event-page .box-event  .share.dropdown .dropdown-toggle {
  color: var(--color-white);
  font-weight: 300;
  text-transform: none;
  border-radius: 20px;
  padding: 4px 18px 3px 18px;
}

html.no-touch .event-page .box-event  .share.dropdown .dropdown-toggle:hover {
  background-color: var(--color-hover);
}

.event-page .box-event .share.dropdown .dropdown-toggle::after {
  content: "\f064";
  font-size: 18px;
}

.event-page .box-event .share.dropdown .dropdown-menu {
  margin-top: 15px !important;
}

.event-page .box-event .share.dropdown .dropdown-menu .dropdown-item {
  padding: .25rem 15px;
}

.event-page .box-event .share.dropdown .dropdown-menu .dropdown-item button {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 100%;
  text-align: left;
}

.event-page .box-text-event {
  padding-top: 50px;
  padding-bottom: 100px;
}

.description {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  padding-bottom: 20px;
}

.event-page .box-text-event .text {
  font-size: 18px;
  line-height: 24px;
}

.event-page .box-text-event .text a {
  color: var(--color-primary-dark);
}

html.no-touch .event-page .box-text-event .text a:hover {
  color: var(--color-hover);
}

.attachment .btn {
  width: 100%;
}

.event-page .box-text-event .btn,
.attachment .btn {
  background-color: var(--color-light-orange);
  color: var(--color-black);
  border-radius: 12px;
  height: 53px;
  border: none;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.attachment .btn.pdf {
  background-color: var(--color-accent);
  color: var(--color-black);
}

html.no-touch .event-page .box-text-event .btn:hover,
html.no-touch .attachment .btn:hover {
  background-color: var(--color-hover);
  color: var(--color-white);
}

html.no-touch .event-page .box-text-event .btn:hover i,
html.no-touch .attachment .btn:hover i {
  color: var(--color-white);
}

.event-page .box-text-event .btn i,
.attachment .btn i {
  color: var(--color-accent);
  font-size: 24px;
  margin-left: 10px;
}

.attachment .btn.pdf i {
  color: var(--color-white);
}

.event-page .event-map {
  width: 100%;
  height: 322px;
  border-radius: 12px;
}

.event-page .link-maps {
  color: var(--color-black);
}

.event-page .adv {
  margin-top: 40px;
}

.adv img {
  width: 100% !important;
}

.adv-horizontal img {
  margin-top: 50px;
  width: auto !important;
}

.slider {
  margin: 30px 0;
  position: relative;
}

.slider.slick-slider .slick-arrow {
  top: 61px;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 8px 0;
  width: 48px;
  height: 48px;
}

.slider.slick-slider .slick-prev {
  left: auto;
  right: 75px;
  line-height: 1;
}

.slider.slick-slider .slick-next {
  line-height: 1;
}

.box-text-page img {
  width: 100%;
}

.box-text-page .slider img {
  border-radius: 12px;
  outline: none;
}

/* .event-page .event-slider .icon-zoom svg {
  position: absolute;
  top: 16px;
  left: 18px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
} */

.slider .icon-zoom {
  position: absolute;
  top: 16px;
  left: 18px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: #f48d24ba;
  color: var(--color-white);
  text-align: center;
  align-content: center;
  font-size: 24px;
}

html.no-touch .slider .slider-image:hover .icon-zoom {
  background-color: var(--color-hover);
  color: var(--color-white);
}

.attachment .dida {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-events .item img {
  border-radius: 12px;
  width: 100%;
}

.related-events .item .content {
  padding-left: 20px;
}

.related-events a {
  color: var(--color-black);
}

.line-grey {
  border-bottom: 1px solid #C4C3C3;
}

/* Testata e testata fullscreen */

.box-title-image {
  height: 446px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
  align-content: center;
}
.box-title-image-experiences {
  background-image: url(../images/esperienze.jpg);
}
.is-webp .box-title-image-experiences {
  background-image: url(../images/esperienze.webp);
}
.box-title-image-proposals {
  background-image: url(../images/pacchetti.jpg);
}
.is-webp .box-title-image-proposals {
  background-image: url(../images/pacchetti.webp);
}

.box-title-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.events-page .box-title-image::before {
  background: none;
}

.box-title-image .container {
  position: relative;
  z-index: 2;
}

.box-title-image .title,
.box-title-image .title-big {
  text-transform: uppercase;
  font-size: 56px;
  line-height: 67px;
}

.box-title-image-fullscreen .title {
  max-width: 900px;
  margin: 0 auto;
}

.box-title-image .subtitle,
.box-title-image .pretitle {
  font-size: 20px;
  line-height: 35px;
  font-weight: 800;
  font-family: "Figtree", serif;
  text-transform: uppercase;
}

.box-title-image-fullscreen {
  min-height: 446px;
  height: calc(100vh - 165px);
}

.box-title-image-fullscreen  .divider {
  margin: 15px auto 25px;
}

.box-title-image-fullscreen .slide-territory-map {
  display: block;
  position: absolute;
  width: 362px;
  max-width: 80%;
  aspect-ratio: 1.5;
  right: 40px;
  bottom: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 20;
}

/* Aree Interesse */

.macroarea-page .box-aree .title-area {
  font-size: 40px;
  line-height: 48px;
}

.macroarea-page .box-aree {
  justify-content: center;
}

.macroarea-page .box-aree .box-area {
  max-width: 538px;
  margin-bottom: 55px;
}

.macroarea-page .box-aree .box-area .image-container {
  margin-bottom: 25px;
}

.macroarea-page .box-aree .box-area .image-container img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 490 / 440;
}

.macroarea-page .box-aree .box-area .title {
  font-size: 28px;
  line-height: 34px;
  color: var(--color-black);
}

.macroarea-page .box-aree .box-area .small-text {
  color: var(--color-black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

html.no-touch .macroarea-page .box-aree .box-area .link-popup:hover {
  color: var(--color-hover);
}

.macroarea-page .box-aree .box-area .text p {
  margin-bottom: 0;
}

.macroarea-page .box-aree .box-area .btn-orange {
  color: var(--color-white);
  margin-top: 20px;
}

.macroarea-page .list-container .divider {
  margin: 30px auto 50px auto;
}

.macroarea-page .list-container .box-list h4 {
  font-size: 30px;
  line-height: 32px;
}

/* Resorces List and PressAreas list */
.list-container {
  padding-bottom: 150px;
}

.list-container .border-list-title {
  font-size: 36px;
  line-height: 43px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
  margin-bottom: 25px;
}

.list-container .box-list .box-item {
  margin-bottom: 45px;
}

.list-container .box-list .box-item .image-container {
  margin-bottom: 25px;
}

.list-container .col-links .box-list .box-item .image-container img {
  border: 1px solid #cecece;
}

.list-container .box-list .box-item .image-container a {
  display: block;
}

.list-container .box-list .box-item .image-container img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EEE;
  min-width: 320px;
  width: 100%;
  height: auto;
  max-width: 320px;
}

.search-page .list-container .box-list .box-item .image-container {
  height: fit-content;
  position: relative;
}

.search-page .list-container .box-list .box-item .image-container img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EEE;
  width: 100%;
  aspect-ratio: 320 / 240;
  object-fit: cover;
}

.search-page .list-container .box-list .box-item .box-label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.search-page .list-container .box-list .box-item .box-label .text {
  background-color: var(--color-accent);
  margin-bottom: 0;
  padding: 11px;
  max-height: 45px;
  font-size: 14px;
  font-weight: 700;
  border-bottom-left-radius: 12px;
}

.list-container .box-list .box-item .box-text {
  padding-left: 20px;
}

.list-container .box-list .box-item .box-text .pretitle {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0;
}

.list-container .box-list .box-item .box-text .pretitle2 {
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--color-black);
  font-style: italic;
}

.list-container .box-list .box-item .box-text .title {
  font-size: 24px;
  line-height: 27px;
}

.list-container .box-list .box-item .box-text .title,
.list-container .box-list .box-item .text {
  color: var(--color-black);
}

.list-container .box-list .box-item .text a {
  color: var(--color-primary-dark);
}

.link-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #6e6e6e;
}

.list-container .box-list .box-item .box-text .btn-orange {
  color: var(--color-white);
  padding: 8px 14px;
  font-size: 16px;
}

.widget-items {
  margin-bottom: 30px;
  background-color: var(--color-light-orange);
  padding: 25px 20px;
  border-radius: 12px;
}

.widget-items .box-item {
  margin-bottom: 18px;
  border-bottom: 1px solid #cecece;
  padding-bottom: 18px;
}

.widget-items .box-items .box-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.widget-items .box-item .image-container img {
  border-radius: 12px;
  min-width: 115px;
  width: 100%;
  max-width: 115px;
  height: 76px;
  object-fit: cover;
}

.widget-items .box-item .video-thumbnail {
  min-width: 115px;
  max-width: 115px;
  height: 76px;
}

.widget-items .box-item .video-thumbnail i {
  font-size: 32px !important;
}

.widget-items .box-item .box-text {
  padding-left: 15px;
}

.widget-items .box-item .box-text .pretitle {
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0;
}

.widget-items .box-item .place {
  color: var(--color-accent);
  font-size: 12px;
  margin-bottom: 0;
}

.widget-items .box-item .box-text .title {
  font-size: 14px;
  line-height: 17px;
  color: var(--color-black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.widget-items.col-videogallery .box-item .box-text .title { 
  display: inline-block;
}

.widget-items .box-item .text a {
  color: var(--color-primary-dark);
}

.widget-items .link {
  background-color: #f5d1a8;
  text-align: center;
  border-radius: 12px;
  padding: 10px 31px;
  width: 100%;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  display: inline-block;
  margin-top: 18px;
}

html.no-touch .widget-items .link:hover {
  background-color: var(--color-hover);
  color: var(--color-white);
}

.widget-items .btn-orange {
  color: var(--color-white);
  padding: 8px 14px;
  font-size: 14px;
}

/* Categories Page - Resorces */
.resource-map {
  height: 446px;
}

.leaflet-container {
  font-family: "Open Sans", sans-serif;
}

.leaflet-container .title {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.leaflet-container .btn-orange {
  color: var(--color-white) !important;
  font-size: 14px;
  padding: 8px 14px;
}

html.no-touch .leaflet-container .btn-orange:hover {
  background-color: var(--color-hover) !important;
  color: var(--color-white) !important;
}

.leaflet-container a {
  color: var(--color-primary-dark) !important;
  overflow-wrap: break-word;
}

html.no-touch .leaflet-container a:hover {
  color: var(--color-hover) !important;
}

.leaflet-container a.leaflet-popup-close-button {
  top: 11px;
  right: 0;
  width: 34px;
  height: 34px;
  font: 24px / 24px Tahoma, Verdana, sans-serif;
}

.leaflet-container .box-img-rounded img {
  max-width: 220px;
}

.leaflet-container .address {
  margin-left: 15px;
}

.box-filters {
  padding: 30px 25px;
  background-color: var(--color-light-orange);
  border-radius: 12px;
}

.box-filters .title {
  font-size: 24px;
  line-height: 27px;
}

.resources-page .adv {
  margin-top: 40px;
  margin-bottom: 30px;
}

.resources-page .search-area {
  padding: 0;
}

.resources-page ul.list-categories {
  list-style: none;
  color: var(--color-black);
  padding-left: 0;
}

.resources-page ul.list-categories li {
  font-weight: 500;
  margin-bottom: 15px;
}

.resources-page ul.list-categories li a {
  color: var(--color-black);
}

html.no-touch .resources-page ul.list-categories li a:hover,
.resources-page ul.list-categories li a.active,
html.no-touch .route-areas .resources-page .box-filters a.title:hover,
.route-areas .resources-page .box-filters a.title.active {
  color: var(--color-primary-dark);
}

.resources-page .area-text a {
  color: var(--color-primary-dark);
}

.resources-page .box-filters a.title {
  color: var(--color-black);
}

/* Resource Page and PressArea Page */

.box-text-item {
  padding-bottom: 200px;
}

.box-text-item .title {
  font-size: 28px;
  line-height: 27px;
  margin-bottom: 15px;
}

.box-text-item .pretitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.box-text-item .text a {
  color: var(--color-primary-dark);
}

html.no-touch .box-text-item .text a:hover {
  color: var(--color-hover);
}

.box-text-item .btn-orange {
  color: var(--color-white);
  font-size: 14px;
  padding: 8px 14px;
}

/* Resource Page and PressArea Page */

.resource-page .resource-map {
  width: 100%;
  height: 322px;
  border-radius: 12px;
}

.resource-page .leaflet-container .btn-orange {
  margin-top: 10px;
}

.resource-page .adv,
.pressarea-page .adv {
  margin-top: 40px;
}

.pressarea-page .box-text-page img {
  width: auto;
}

.resource-page .box-text-resource .resource-slider img {
  object-fit: cover;
  height: 600px;
}

/* Resource Page - Piemontescape */

.resource-page .post-map {
  position: relative;
  width: 100%;
  height: 385px;
  margin-bottom: 15px;
}

.resource-page .post-map .grm-marker span {
  display: block;
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  transform-origin: center bottom;
  width: 30px;
  height: 49px;
  left: -15px;
}

.resource-page .post-map .grm-marker.tp-cursor.tp-cicloturismo span { 
  background-image: url('/assets/main/images/map-marker-bike.png');
  width: 55px;
  height: 63px;
  left: -27px;
}

.resource-page .post-map .grm-marker.tp-cursor.tp-escursionismo span { 
  background-image: url('/assets/main/images/map-marker-escursionismo.png');
  width: 55px;
  height: 63px;
  left: -27px;
}

.resource-page .post-chart {
  position: relative;
  width: 100%;
  height: 275px;
  margin-bottom: 15px;
}

.resource-page .post-content  {
  position: relative;
}

.resource-page fieldset.message-box {
  border: 1px solid #ddd;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px 34px 39px;
}

.resource-page fieldset.message-box span {
  font-style: italic;
}

.resource-page .box-text-resource .tappe .tappa-item i {
  margin-right: 10px;
  font-size: 20px;
  color: var(--color-primary-dark);
}

/* Widget aside Piemontescape
----------------------------------------------------*/
aside.widget {
  display: block;
  position: relative;
}

aside.widget a:last-child {
  margin-bottom: 0;
}

aside.widget form {
  display: block;
  position: relative;
}

aside.widget .button {
  line-height: 29px;
  text-align: center;
  text-transform: none;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

aside.widget.widget-black {
  padding: 25px 21px;
}

aside.widget.widget-black p.details {
  color: var(--color-black);
  font-weight: 600;
}

aside.widget.widget-black p.details span {
  font-weight: 400;
  color: var(--color-black)!important;
}

aside.widget.widget-black .list-inline-separed li {
  color: var(--color-black);
  font-size: 14px;
}

aside.widget.widget-black .list-inline-separed li:first-child {
  padding-left: 0;
}

aside.widget.widget-black form label {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
}

.chosen-container .chosen-single {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

aside.widget.widget-black form .chosen-container .chosen-single div:after {
  border-top-color: var(--color-black);
}

/* inline separed */
.list-inline-separed {
  font-size: 0;
  padding-left: 0;
}

.list-inline-separed label,
.list-inline-separed li {
  display: inline-block;
  position: relative; 
  line-height: 50px;
  padding: 0 8px;
}

.list-inline-separed label:after,
.list-inline-separed li:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  border-right: 1px solid #343434;
}

.list-inline-separed label:last-child:after,
.list-inline-separed li:last-child:after {
  border: none;
}

.list-inline-separed label.active:after,
.list-inline-separed li.active:after {
  border-right: none;
}

.list-inline-separed:last-child {
  margin-bottom: 0;
}

/* Icons percorso
----------------------------------------------------*/
i[class^="ico-percorso-"],
i[class*="ico-percorso-"] {
  display: inline-block;
  min-width: 1px;
  min-height: 1px;
  
  vertical-align: middle;
  
  background-image: url('/assets/main/images/icon-percorso-sprite-black.png');
  background-repeat: no-repeat;
}

i[class^="ico-percorso-"].ico-green,
i[class*="ico-percorso-"].ico-green {
  background-image: url('/assets/main/images/icon-percorso-sprite-green.png');
}

/* difficolta */
.ico-percorso-difficolta-emoticon-facile {
  width: 24px;
  height: 24px;
  background-position: -6px -36px;    
}

.ico-percorso-difficolta-emoticon-impegnativa,
.ico-percorso-difficolta-escursionismo-3 {
  width: 24px;
  height: 24px;
  background-position: -6px -138px;    
}

.ico-percorso-difficolta-emoticon-media,
.ico-percorso-difficolta-escursionismo-2 {
  width: 24px;
  height: 24px;
  background-position: -6px -70px;    
}

.ico-percorso-difficolta-emoticon-media-diffic {
  width: 36px;
  height: 24px;
  background-position: 0 -104px;    
}

.ico-percorso-difficolta-emoticon-molto-facile,
.ico-percorso-difficolta-escursionismo-1 {
  width: 24px;
  height: 24px;
  background-position: -6px -2px; 
}

.ico-percorso-difficolta-emoticon-molto-impegn,
.ico-percorso-difficolta-escursionismo-4 {
  width: 36px;
  height: 24px;
  background-position: 0 -172px;    
}

/* solo o in gruppo */
.ico-percorso-solo-o-gruppo-gruppo {
  width: 46px;
  height: 23px;
  background-position: -161px 0;  
}

.ico-percorso-solo-o-gruppo-solo {
  width: 36px;
  height: 24px;
  background-position: -161px -33px;  
}

/* tipo bicibletta */
.ico-percorso-tipo-bicicletta-citta {
  width: 59px;
  height: 31px;
  background-position: -46px 0;  
}

.ico-percorso-tipo-bicicletta-strada {
  width: 55px;
  height: 31px;
  background-image: url('/assets/main/images/bikes/dastrada.svg') !important;
  background-position: center;
}

.detail-bar .ico-percorso-tipo-bicicletta-strada,
label.active > .ico-percorso-tipo-bicicletta-strada {
  background-image: url('/assets/main/images/bikes/dastrada_white.svg') !important;
}

.ico-percorso-tipo-bicicletta-mtb {
  width: 57px;
  height: 32px;
  background-image: url('/assets/main/images/bikes/moutainbike.svg') !important;
  background-position: center;
}

.detail-bar .ico-percorso-tipo-bicicletta-mtb,
label.active > .ico-percorso-tipo-bicicletta-mtb {
  background-image: url('/assets/main/images/bikes/moutainbike_white.svg') !important;
}

.ico-percorso-tipo-bicicletta-ebike {
  width: 55px;
  height: 32px;
  background-image: url('/assets/main/images/bikes/ebike.svg') !important;
  background-position: center;
}

.detail-bar .ico-percorso-tipo-bicicletta-ebike,
label.active > .ico-percorso-tipo-bicicletta-ebike {
  background-image: url('/assets/main/images/bikes/ebike_white.svg') !important;
}

.ico-percorso-tipo-bicicletta-greve {
  width: 55px;
  height: 32px;
  background-image: url('/assets/main/images/bikes/gravel.svg') !important;
  background-position: center;
}

.detail-bar .ico-percorso-tipo-bicicletta-greve,
label.active > .ico-percorso-tipo-bicicletta-greve {
  background-image: url('/assets/main/images/bikes/gravel_white.svg') !important;
}

.ico-percorso-tipo-bicicletta-trekk {
  width: 55px;
  height: 32px;
  background-image: url('/assets/main/images/bikes/touringbike.svg') !important;
  background-position: center;
}

.detail-bar .ico-percorso-tipo-bicicletta-trekk,
label.active > .ico-percorso-tipo-bicicletta-trekk {
  background-image: url('/assets/main/images/bikes/touringbike_white.svg') !important;
}

/* tipo terreno */
.ico-percorso-tipi-di-terreno-asfalto {
  width: 38px;
  height: 26px;
  background-position: -116px -3px;  
}

.ico-percorso-tipi-di-terreno-porfido {
  width: 38px;
  height: 27px;
  background-position: -116px -39px;  
}

.ico-percorso-tipi-di-terreno-roccioso {
  width: 38px;
  height: 26px;
  background-position: -116px -76px;  
}

.ico-percorso-tipi-di-terreno-sterrato {
  width: 38px;
  height: 26px;
  background-position: -116px -112px;   
}

.ico-percorso-519a264418392eb67696812fd9619,
.ico-percorso-tipi-di-terreno-strada-bianca {
  width: 38px;
  height: 26px;
  background-position: -116px -148px;   
}

/* circuito */
.ico-percorso-circuito-chiuso-si {
  width: 23px;
  height: 23px;
  background-position: -46px -141px;  
}

.ico-percorso-circuito-chiuso-no {
  width: 23px;
  height: 23px;
  background-position: -46px -173px;  
}

/* tooltip */
.beers-tooltip {
  color: #fff;
  font-size: 12px;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  min-width: 150px;
  padding: 10px 5px;
}

.beers-tooltip:before {
  border-top-color: var(--color-black);
}

/* Search Form */

.search-area {
  background-color: var(--color-light-orange);
  border-radius: 12px;
  padding: 25px 37px 37px;
  margin: 0 0 30px 0;
}

.route-home .search-area .row2-search {
  display: none;
}

.search-area.fixed-top {
  margin: 0;
  z-index: 1100;
  border-radius: 0;
  padding: 25px 37px;
  z-index: 1060;
}

.search-area .form-label {
  font-family: "Figtree", serif;
  font-size: 24px;
  line-height: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.search-area .btn,
.search-area input {
  background-color: var(--color-white) !important;
  color: var(--color-black);
  border-radius: 12px;
  height: 53px;
  border: none;
  padding-left: 15px;
  font-weight: 500;
}

.search-area .input-search {
  width: 100%;
}

.search-area .input-search:focus-visible {
  outline: 2px solid var(--color-accent);
}

.search-area .box-time {
  display: flex;
}

.search-area .btn-time {
  margin-right: 15px;
  padding: 0 15px;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 12px !important;
  border-color: var(--color-white);
}

.search-area .btn-time.active,
html.no-touch .search-area .btn-time:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent);
  color: var(--color-white);
}

.search-area.bi-x::before {
  font-size: 20px;
}

.select2-dropdown {
  z-index: 1060 !important;
}

.select2-results .select2-container {
  width: 100% !important;
}

.search-area .select2-container--default .select2-selection--single {
  height: 53px;
  border-radius: 12px;
  border: none;
}

.search-area .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 53px;
  right: 7px;
}

.search-area .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 13px 15px;
  color: var(--color-black);
  font-weight: 500;
}

.proposals-page .search-area .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 13px 25px 13px 15px;
}

.search-area .select2-container--default .select2-selection--single .select2-selection__arrow b {
  /* border-color: var(--color-accent) transparent transparent transparent; */
  display: none;
}

.search-area .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  /* border-color: transparent transparent var(--color-accent) transparent; */
  display: none;
}

.search-area .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--color-accent);
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.search-area .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.search-area .form-field-time {
  width: 100%;
}

.search-area .box-search2 {
  position: relative;
}

.search-area .box-search2 .btn-search {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  min-width: 46px;
  height: 100%;
  border-radius: 0 12px 12px 0;
}

.search-area .box-search2 .input-clear {
  position: absolute;
  top: 50%;
  right: 46px;
  transform: translateY(-50%);
  height: 100%;
  padding: 0 0 0 15px;
  border-radius: 0;
}

.input-clear .input-clear-text {
  font-size: 12px;
  line-height: 21px;
}

.search-area .daterange {
  position: relative;
  background-color: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
}

.search-area .daterange:disabled {
  cursor: not-allowed;
  background-color: #e9ecef !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
html.no-touch .flatpickr-day.selected:hover, 
html.no-touch .flatpickr-day.startRange:hover, 
html.no-touch .flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

.form-field-daterange {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 12px;
}

.form-field-daterange i {
  font-size: 19px;
  color: var(--color-accent);
  padding-right: 15px;
}

/* .search-area .daterange::before {
  content: "\f133";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  pointer-events: none;
  cursor: pointer !important;
} */

.tags .tag {
  padding: 5px 10px;
  background-color: var(--color-accent);
  border-radius: 12px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  float: left;
  margin-right: 10px;
}

.tags .tag i {
  margin-left: 10px;
  cursor: pointer;
}

.box-loader,
.section-w-loader .section-loader.box-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.section-loading .section-loader.box-loader {
  margin-top: 100px;
}

.section-w-loader .section-loader.box-loader {
  display: none;
}

.loader,
.section-loading .section-loader.box-loader .loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 var(--color-accent), -20px 0 #0002;
    background: var(--color-accent)
  }

  33% {
    box-shadow: 20px 0 var(--color-accent), -20px 0 #0002;
    background: #0002
  }

  66% {
    box-shadow: 20px 0 #0002, -20px 0 var(--color-accent);
    background: #0002
  }

  100% {
    box-shadow: 20px 0 #0002, -20px 0 var(--color-accent);
    background: var(--color-accent)
  }
}

/* Proposte Turistiche */

.proposals-page .proposals-container {
  padding-top: 60px;
  padding-bottom: 200px;
}

.proposals-container .box-card .card-img-top {
  position: relative;
  transition: transform 0.3s ease;
}

.proposals-container .box-card .card-body {
  padding-top: 12px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 75px;
}

.proposals-container .proposal-type {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.proposals-container .proposal-type .text {
  background-color: var(--color-accent);
  margin-bottom: 0;
  padding: 11px;
  max-height: 45px;
  font-size: 14px;
  font-weight: 700;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 2;
}

.proposals-container .proposal-type .box-image-type {
  background-color: var(--color-white);
  height: 45px;
  margin-left: -10px;
  padding-left: 25px;
  padding-right: 15px;
  z-index: 1;
  align-content: center;
  border-bottom-right-radius: 12px;
}

.proposals-container .proposal-type .box-image-type img {
  height: 25px;
}

.proposals-container .box-card .card-body i {
  font-size: 18px;
  margin-right: 10px;
}

.experiences-container .box-card .card-body .place,
.proposals-container .box-card .card-body .place {
  color: var(--color-accent);
  font-size: 16px;
  margin-bottom: 5px;
}

.proposals-container .box-card .card-body .pretitle {
  text-transform: capitalize;
  font-size: 16px;
  margin-bottom: 5px;
}

.proposals-title.title {
  font-size: 22px;
  line-height: 27px;
}

/* Proposta Turistica */

.box-breadcrumbs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-breadcrumbs .box-back {
  padding: 40px 0;
  margin-left: 15px;
}

.title-lowercase {
  text-transform: lowercase;
}

.title-lowercase::first-letter {
  text-transform: uppercase;
}

.box-img-rounded img {
  border-radius: 12px;
  width: 100%;
}

.box-grey {
  background-color: #EFEFEF;
  padding: 30px 25px;
  margin-top: 25px;
  border-radius: 12px;
}

.box-type {
  font-size: 14px;
  border-radius: 12px;
  padding: 6px 18px;
  background-color: var(--color-accent);
  width: fit-content;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
}

html.no-touch a.box-type:hover {
  background-color: var(--color-hover);
  color: var(--color-white);
}

.box-text-proposal {
  margin-bottom: 100px;
}

.box-text-experience .place,
.box-text-proposal .place {
  color: var(--color-accent);
}

.box-text-experience .place i,
.box-text-proposal .place i {
  margin-right: 10px;
}

.box-text-proposal .text a {
  color: var(--color-primary-dark);
}

html.no-touch .box-text-proposal .text a:hover {
  color: var(--color-hover);
}

.box-text-proposal .social{
  margin-top: 10px;
}

.box-text-proposal .social a {
  color: var(--color-white);
}

.box-text-proposal .social a i {
  background-color: #545D6D;
}

.box-text-proposal .box-image-type {
  padding-left: 50px;
  margin-left: 50px;
  border-left: 1px solid #B9B9B9;
  align-content: center;
}

.box-text-proposal .box-image-type img {
  height: 100px;
}

.proposal-slider {
  margin-top: 0;
}

.proposal-slider img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 414 / 304;
  object-fit: cover;
}

/* ----------------------- Territorio e city------------------------ */
.cities-page .cities-container .img-mappa {
  width: 700px;
  max-width: 100%;
}

.cities-page .province {
  margin-top: 100px;
}

.city-page .province {
  margin-top: 0;
}

.cities-page .cities-container .title {
  font-size: 41px;
  line-height: 42px;
  margin-bottom: 30px;
}

.cities-page .cities-container .trips-slider .title {
  font-size: 29px;
  line-height: 42px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-end;
}

.cities-page .cities-container .testo-intro p {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 35px;
}

.province-slider {
  padding-bottom: 0;
  margin: 0 0 100px 0 !important;
}

.province-slider .slick-slide {
  width: 451px;
}

.province-slider .slick-dots li span {
  background-color: var(--color-light-orange);
}

.province-slider .slick-dots li.slick-active span {
  background-color: var(--color-accent);
}

.cities-page .cities-container .btn-orange {
  color: var(--color-black);
}

.cities-container .first-text,
.trekking-container .first-text {
  margin-top: 80px;
}

.box-trekking {
  background-color: var(--color-light-orange);
  border-radius: 12px;
  padding: 20px;
  min-height: 200px;
  position: relative;
}

.box-trekking .title {
  font-size: 30px;
  line-height: 32px;
}

.box-trekking .box-text {
  margin-left: 50px;
}

.box-trekking img {
  max-width: 311px;
  margin: -25px 0 -40px -40px;
}

.box-trekking .text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.box-trekking .text,
.box-trekking .text p {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0;
}

.box-trekking .btn-orange {
  background-color: #fbcea3;
  color: var(--color-black);
  padding: 10px 21px;
  margin-top: 20px;
}

html.no-touch .box-trekking .btn-orange:hover {
  background-color: var(--color-hover);
  color: var(--color-white);
}

.box-trekking .btn-orange i {
  color: var(--color-accent);
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.cities-page .box-events,
.resource-info-page .box-events {
  background-color: var(--color-light-orange);
  padding-top: 100px;
  margin-top: 20px;
  margin-bottom: 100px;
}

.cities-page .box-events .events-slider-box {
  padding-top: 0;
}

.city-page .box-events .events-slider-box {
  padding-top: 70px;
}

.cities-page .box-events .circle {
  background-color: #FADEC5;
}

.box-btn-collapse .text {
  font-weight: 600;
}

.circle-button {
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0 auto;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.circle {
  width: 85px;
  height: 85px;
  background-color: #ffeee0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}

.lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.line {
  width: 40px;
  height: 3px;
  background-color: #f78b1f;
  border-radius: 2px;
  transition: width 0.3s ease, transform 0.3s ease;
}

.line:nth-child(1),
.line:nth-child(3) {
  width: 40px;
}

.line:nth-child(2),
.line:nth-child(4) {
  width: 25px;
}

html.no-touch .circle:hover .line:nth-child(1),
html.no-touch .circle:hover .line:nth-child(3) {
  width: 25px;
}

html.no-touch .circle:hover .line:nth-child(2),
html.no-touch .circle:hover .line:nth-child(4) {
  width: 40px;
}

.city-page ul.box-comuni {
  padding: 40px 0 0;
  list-style: none;
  columns: 3;
}

.city-page ul.box-comuni li i {
  color: var(--color-accent);
  font-size: 17px;
  margin-right: 3px;
}

.city-page .box-comuni li button {
  color: var(--color-primary-dark);
  background-color: transparent;
  border: none;
  padding: 0;
}

html.no-touch .city-page .box-comuni li:hover button {
  color: var(--color-hover);
}

.resource-popup .box-text-item {
  padding-bottom: 20px;
}

.route-city .bee-dialog .bee-dialog-inner {
  padding-top: 40px;
}

.route-city .bee-dialog {
  z-index: 1065 !important;
}

.fancybox__container {
  z-index: 1070 !important;
}

/* Trekking urbano */
.trekking-page {
  padding-bottom: 100px;
}

.trekking-page .trekking-urbano-intro{
  margin-bottom: 0px;
}

.img-trekking{
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.trek-page .video {
  margin-bottom: 100px;
}

.trekking-urbano-intro{
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
  width: 100%;
}

.image-column-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
}

.text-column-wrapper{
  padding: 0 20px;
}

.image-column-wrapper img.city-logo{
  margin-bottom: 40px;
}

.image-column-wrapper .foundation-logo{
  margin-bottom: 20px;
}

.video-text{
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  text-align: left;
}

.separator{
  height: 1px;
  width: 100%;
  border-top: 1px solid #949494;
}

.text-small{
  font-size: 12px;
  margin: 0;
  font-weight: 300;
  text-align: left;
  line-height: normal;
}

.logos-container{
  max-width: 1122px;
}

.logos-row{
  margin-top: 30px;
  margin-bottom: 30px;
}

.logos-row img{
  margin-right: 30px;
  object-fit: contain;
  max-height: 88px;
  width: auto;
}

.trek-page .marker {
  position: relative;
}

.trek-page .marker::before {
  content: attr(data-tappa);
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-57%, -67%);
  line-height: 1;
  color: var(--color-white); 
  font-size: 15px;
  font-weight: 600;
  pointer-events: none;
}

.marker i {
  font-size: 32px;
  color: var(--color-accent);
}

.trek-page .marker-default.marker::before {
  background-color: var(--color-black);
}

.trek-page .marker-default i {
  color: var(--color-black);
}

.trek-page .marker-resource.marker::before {
  background-color: var(--color-accent);
}

.trek-page .marker-resource i {
  color: var(--color-accent);
}

.trek-page .leaflet-container .btn-orange {
  margin-top: 5px;
}

.trek-page .resource-map {
  height: 892px;
}

/* Operator */
.operator-page {
  margin-bottom: 80px;
}

/* Blog */
.blog-page td {
  border: 1px solid #ddd;
  padding: 15px;
  align-content: start;
}

/* Consigli utili e link utili */
.links-page .adv {
  margin-bottom: 30px;
}

/* Video Gallery */

.col-videogallery .border-list-title {
  color: var(--color-black);
}

.col-videogallery .video .video-thumbnail {
  background-color: var(--color-accent);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  aspect-ratio: 414 / 304;
}

.col-videogallery .video .video-thumbnail img {
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

.col-videogallery .video .video-thumbnail i {
  color: var(--color-white);
  font-size: 70px;
}

/* ----------------------- 404 ------------------------ */
.section-not-found {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-not-found .text {
  font-size: 18px;
  line-height: 24px;
}

.section-not-found .btn {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 18px;
  font-family: "Figtree", serif;
  border-radius: 12px;
  padding: 12px;
}

html.no-touch .section-not-found .btn:hover {
  background-color: var(--color-hover);
  color: var(--color-white);
}

.mappa-box {
  position: relative;
  width: 600px;
  height: 490px;
  margin: 50px auto;
  background: url('/assets/main/images/mappa404.jpg') no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.car {
  position: absolute;
  border-radius: 5px;
  top: 49%;
  left: 48%;
  transform: translate(-49%, -48%);
  animation: moveCar 12s infinite ease-in-out;
  background-image: url('/assets/main/images/car.svg');
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
}

/* .car::before {
  font-family: "Font Awesome 6 Free";
  content: '\f5e4';
  font-size: 20px;
  color: var(--color-secondary);
} */

/* @keyframes moveCar {
    0% { top: 49%; left: 48%; }  /* Alessandria
    10% { top: 33%; left: 42%; } /* Casale Monferrato
    20% { top: 44%; left: 58%; } /* Valenza
    30% { top: 49%; left: 64%; } /* Tortona
    40% { top: 60%; left: 62%; } /* Novi Ligure
    50% { top: 65%; left: 58%; } /* Gavi 
    60% { top: 70%; left: 50%; } /* Ovada 
    70% { top: 64%; left: 45%; } /* Acqui Terme 
    90% { top: 49%; left: 48%; } /* Alessandria 
} */

@keyframes moveCar {

  /* Alessandria - Punto di partenza */
  0% {
    top: 49%;
    left: 48%;
    transform: translate(-49%, -48%) rotate(0deg);
  }

  /* Ruota verso Casale Monferrato (Nord-Ovest) */
  5% {
    transform: translate(-49%, -48%) rotate(-45deg);
  }

  10% {
    top: 32%;
    left: 43%;
    transform: translate(-49%, -48%) rotate(-45deg);
  }

  /* Casale Monferrato */

  /* Ruota verso Valenza (Est) */
  15% {
    transform: translate(-49%, -48%) rotate(120deg);
  }

  20% {
    top: 44%;
    left: 55%;
    transform: translate(-49%, -48%) rotate(120deg);
  }

  /* Valenza */

  /* Ruota verso Tortona (Sud-Est) */
  25% {
    transform: translate(-49%, -48%) rotate(135deg);
  }

  30% {
    top: 49%;
    left: 62%;
    transform: translate(-49%, -48%) rotate(135deg);
  }

  /* Tortona */

  /* Ruota verso Novi Ligure (Sud) */
  35% {
    transform: translate(-49%, -48%) rotate(180deg);
  }

  40% {
    top: 60%;
    left: 61%;
    transform: translate(-49%, -48%) rotate(180deg);
  }

  /* Novi Ligure */

  /* Ruota verso Gavi (Sud-Ovest) */
  45% {
    transform: translate(-49%, -48%) rotate(225deg);
  }

  50% {
    top: 63%;
    left: 56%;
    transform: translate(-49%, -48%) rotate(225deg);
  }

  /* Gavi */

  /* Ruota verso Ovada (Sud-Ovest) */
  55% {
    transform: translate(-49%, -48%) rotate(225deg);
  }

  60% {
    top: 68%;
    left: 50%;
    transform: translate(-49%, -48%) rotate(225deg);
  }

  /* Ovada */

  /* Ruota verso Acqui Terme (Nord-Ovest) */
  65% {
    transform: translate(-49%, -48%) rotate(300deg);
  }

  70% {
    top: 64%;
    left: 45%;
    transform: translate(-49%, -48%) rotate(300deg);
  }

  /* Acqui Terme */

  /* Ruota verso Alessandria (Nord-Est) */
  85% {
    transform: translate(-49%, -48%) rotate(360deg);
  }

  90% {
    top: 49%;
    left: 48%;
    transform: translate(-49%, -48%) rotate(360deg);
  }

  /* Alessandria */
}

/* Loading -------- */

.box-loading{
  display: flex;
  justify-content: center;
}
.loading{
  height:50px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor:progress;

  border-radius: 50%;
  border-top: 5px solid var(--color-accent);
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--color-accent);
  border-right: 5px solid transparent;

  animation: loading 1s linear infinite;
}

@keyframes loading {
  0% {
  transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Itinerary List */
.map-block-container{
  display: block;
  flex-direction: column;
  position: relative;
}

.resource-map{
  order: 0;
}

.itinerary-list{
  order: 1;
  display: none;
  flex-direction: column;
  position: absolute;
  width: 100%;
  max-width: 500px;
  top: 50px;
  bottom: 50px;
  left: 100px;
  z-index: 405 !important;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  background-color: var(--color-white);
  min-height: 500px;
}

.itinerary-list .description{
  background-color: var(--color-black);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px;
}

.itinerary-list .list-container{
  flex: 1;
  overflow-y: auto;
  padding: 0;
  font-size: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) var(--color-light-orange);
  padding: 10px;
}

.itinerary-list .list-container ol{
  padding-top: 10px;
  padding-right: 20px;
}
.itinerary-list .list-container ol li{
  padding-bottom: 10px;
}

.itinerary-list .list-container a{
  color: var(--color-primary-dark);
}

.info-row{
  margin-bottom: 50px;
}

.trek-page .video {
  margin-bottom: 0px;
}

.section-title{
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 67px;
  color: var(--color-black);
  margin-bottom: 5px;
}

.section-header .divider{
  margin: 20px auto 30px;
}

.section-header .spacer-small{
  height: 60px;
}

.image-column{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.city-logo{
  max-width: 380px;
  width: 100%;
  display: block;
}

.foundation-logo{
  max-width: 320px;
  width: 100%;
  display: block;
}

/* Info card */
.info-container,
.resource-info-container{
  max-width: 1036px;
  margin: 0 auto;
}

.cards-row{
  margin-bottom: 25px;
}

.info-card-container{
  width: 100%;
  background-color: var(--color-info-card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  min-height: 260px;
  padding: 20px;
}

.info-card-content{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-card-content.info-card-icon{
  justify-content: flex-start;
}

.info-card-content .card-icon{
  color: var(--color-primary-light);
  font-size: 46px;
  line-height: 46px;
  margin-bottom: 20px;
}

.info-card-content .card-link, .info-card-content p{
  color: var(--color-black);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  transition: color .3s ease-in;
  margin-bottom: 0;
}

html.no-touch .info-card-content .card-link:hover{
  color: var(--color-primary-light);
}

/* Resources info card */
.resource-info-list{
  margin-top: 50px;
  margin-bottom: 50px;
}

.resource-info-card-container{
  min-height: 1px;
}
.resource-info-card-container .btn-orange{
  color: var(--color-white);
}

.resource-info-card-content{
  width: 100%;
  height: 100%;
  display: block;
}

.resource-image-container{
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--color-grey);
  overflow: hidden;
}

.orange-cirle{
  background-image: url('/assets/main/images/orange-circle.svg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  aspect-ratio: 1/1;
  width: 125px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.orange-cirle .info{
  width: 100px;
  height: auto;
}

.resource-image-container .resource-image{
  object-fit: cover;
  width: 100%;
}

.resource-info-data{
  color: var(--color-black);
}

.resource-info-card-content .resource-title{
  text-transform: uppercase !important;
  line-height: 27px;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--color-black) !important;
}

.resource-info-card-content .resource-title:hover{
  color: var(--color-black);
}

.resource-info-data .resource-name{
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0px;
}

.resource-info-data .resource-indirizzo{
  line-height: 24px;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.resource-info-data .resource-indirizzo a{
  color: var(--color-black) !important;
}

html.no-touch .resource-info-data .resource-indirizzo a:hover{
  opacity: .8;
}

.resource-info-data .resource-indirizzo .telefono{
  font-weight: 700;
}

.resource-info-data .resource-indirizzo a strong{
  color: var(--color-primary-light);
  font-weight: 700;
}

.resource-iat-map{
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
}

/* Alexala Card Resource */

.alexala-card-container{
  position: absolute;
  padding: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 50%;
  z-index: 405 !important;
  background-color: rgba(255, 255, 255, .75);
  opacity: 0;
}

.alexala-card-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 300px;
  height: 100%;
  margin: auto;
}

.logo-blue{
  width: 250px;
  margin-left: 25px;
}

.alexala-title.title{
  margin-top: 20px;
  margin-bottom: 0px;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase !important;
}

.alexala-address,
.alexala-name{
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 0px;
}

/* Resource Info Page */
.resource-info-map{
  height: 440px;
}

.resource-info-slider{
  margin: 0;
}

.resource-info-page .resource-info-container{
  padding-bottom: 0 !important;
}

.resource-info-page .resource-indirizzo a{
  color: var(--color-black) !important;
}

html.no-touch .resource-info-page .resource-indirizzo a:hover{
  opacity: .8;
}

.resource-info-page .resource-indirizzo .telefono{
  font-weight: 700;
}

.resource-info-page .resource-indirizzo a strong{
  color: var(--color-primary-light);
  font-weight: 700;
}

/* Terre e vini alessandrini */
.lands-and-wines-container{
  max-width: 1220px;
  margin: 0 auto;
}

.row-spacer{
  margin-top: 50px;
  margin-bottom: 50px;
}

.text-info-wrapper{
  display: flex;
  align-items: center;
}

.text-column .title{
  font-size: 38px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}

.text-column .text{
  font-size: 20px;
  line-height: 37px;
  font-weight: 400;
  margin: 0;
}

.text-column{
  padding-left: 50px;
}
.text-info-wrapper .img-wrapper{
  padding-right: 50px;
}

.text-info-wrapper .img-wrapper{
  width: 280px;
  flex: 1 0 auto;
}

.img-right{
  width: 214px !important;
  margin-left: auto;
}

.img-wrapper img{
  display: block;
  width: 100%;
  object-fit: cover;
}

.card-overlay{
  position: relative;
  display: block;
}

.card-overlay .overlay{
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-primary-light);
  color: var(--color-white);
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 3.6%;
  width: 93%;
  height: 91.5%;
  transition: opacity 0.3s ease-out;
  padding: 5px;
}

html.no-touch .card-overlay:hover .overlay{
  opacity: 1;
  visibility: visible;
}

.discover{
  position: relative;
}

.discover::before{
  content: '';
  display: block;
  position: absolute;
  height: 7px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  background-color: var(--color-primary-light);
}

.discover .text{
  position: relative;
  text-align: center;
  font-size: 32px;
  line-height: 39px;
  font-weight: 700;
  color: #000;
  background-color: #FFF;
  width: 613px;
  max-width: 100%;
  padding: 0 55px;
  display: block;
  margin: 0 auto;
  z-index: 1;
  text-transform: uppercase;
}

.section-links-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-link{
  width: 394px;
  text-align: center;
  display: block;
  cursor: pointer;
  margin-bottom: 60px;
}

html.no-touch .img-link:hover {
  opacity: 1;
}

.lands-and-wines-page .box-text-item{
  padding-bottom: 0 !important;
}

.gx-4_5{
  --bs-gutter-x: 50px;
}

.spacer-small{
  height: 30px;
}

/* Bike Trekking */
.route-bikeTrekking .header-custom .logo-dark,
.route-bikeTrekking header{
  display: none;
}

.route-bikeTrekking .header-custom .logo-light{
  display: inline-block;
}

.header-custom{
  position: absolute;
  z-index: 1000;
  width: 100%;
}

.header-custom .navbar .navbar-brand img {
  max-width: 100%;
  width: 225px;
  padding-top: 60px;
}

.header-custom .navbar-brand {
  margin-right: 0 !important;
}

.route-bikeTrekking .box {
  position: relative;
}

.route-bikeTrekking .row-images {
  margin-top: 50px !important;
}

.route-bikeTrekking .row-images .image-container img {
  border-radius: 12px;
}

.route-bikeTrekking .fullscreen {
  min-height: 800px;
  height: 100vh;
  position: relative;
}

.route-bikeTrekking .fullscreen .image-container img {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.route-bikeTrekking .fullscreen .box-content-fullscreen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  color: var(--color-white);
  width: 100%;
}

.route-bikeTrekking .fullscreen .box-content-fullscreen .pre-title {
  font-size: 20px;
  text-transform: uppercase;
}

.route-bikeTrekking .fullscreen .box-content-fullscreen .divider {
  margin: 15px auto;
}

.route-bikeTrekking .fullscreen .image-container::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}

.route-bikeTrekking .big-title {
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 3px 3px 8px #00000029;
}

.route-bikeTrekking .box-orange {
  max-width: 100%;
  width: 208px;
  height: 184px;
  margin: 12px;
  padding: 20px 15px 15px;
  background-color: #F4912C;
  border-radius: 12px;
}

.route-bikeTrekking .box-orange img {
  height: 97px;
}

.route-bikeTrekking .box-orange .title {
  font-size: 16px;
  color: var(--color-black);
  text-transform: uppercase;
  line-height: 1.2;
  padding-top: 15px;
}

.route-bikeTrekking .links-box {
  display: flex;
  justify-content: center;
}

html.no-touch .route-bikeTrekking .links-box a:hover .box-orange {
  background-color: var(--color-white);
}

.route-bikeTrekking .box-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  width: 100%;
  z-index: 30;
}

.route-bikeTrekking .box-content .box-text {
  padding: 0 15px;
}

.route-bikeTrekking .box-content .box-text .box-title {
  font-size: 30px;
  text-transform: uppercase;
}

.route-bikeTrekking .box-content .box-link {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.route-bikeTrekking .box-content .box-link {
  background-color: var(--color-accent);
  color: var(--color-black);
  padding: 15px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  width: 100%;
  display: inline-block;
}

html.no-touch .route-bikeTrekking a:hover .box-content .box-link  {
  background-color: var(--color-hover);
  color: var(--color-white);
  transition: all .2s ease-out;
}

.route-bikeTrekking .orange-box {
  padding: 65px 0;
}

.route-bikeTrekking .box-rounded {
  border-radius: 12px;
  padding: 50px 40px 40px 40px;
  border: 1px solid var(--color-primary-dark);
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.route-bikeTrekking .orange-box .box-title.title {
  color: var(--color-white);
  margin-bottom: 10px;
}

.route-bikeTrekking .orange-box .box-title.title {
  font-size: 41px;
  line-height: 42px;
}

.route-bikeTrekking .box-title.title {
  font-size: 28px;
  line-height: 34px;
}

.route-bikeTrekking .subtitle {
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
}

.route-bikeTrekking .content {
  padding: 120px 0;
}

.route-bikeTrekking .text,
.route-bikeTrekking .pre-text {
  margin-bottom: 30px;
}

.route-bikeTrekking .pre-text {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 35px;
}

.route-bikeTrekking .divider {
  background-color: var(--color-accent);
  width: 125px;
  height: 7px;
  margin: 30px auto;
}

.route-bikeTrekking button.go-down {
  border: none;
  background-color: transparent;
}

.route-bikeTrekking .scroll-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  text-align: center;
  z-index: 20;
}

.route-bikeTrekking .bouce {
  width: 31px;
  height: 44px;
  animation: bounce 1.5s cubic-bezier(.5, 0.05, 1, .5) infinite;
  border: 1px solid var(--color-white);
  border-radius: 16px;
  padding: 5px 0 28px 0;
}

.route-bikeTrekking .bouce i {
  font-size: 24px;
  padding: 5px 6px 8px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}


/* Inserisci questo nel tuo CSS globale */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.page-loader .logo {
  width: 80%;
  max-width: 250px;
}

.page-loader .loader {
  margin-top: 50px;
  width: 60px;
  height: 60px;
  border: 8px solid var(--color-primary-dark);
  border-top: 8px solid var(--color-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.servizi-list{
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.filter-btn {
  position: relative;
  margin-bottom: 15px;
  max-width: 162px;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  color: var(--color-white) !important;
}

.resources-filter .filter-btn {
  max-width: 100%;
}

.filter-btn:focus,
.search-group .btn-secondary:focus {
  background-color: var(--color-primary-dark);
  color: #fff;
}

.filter-btn .filter {
  position: absolute;
  height: 41px;
  width: 41px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.filter-btn .filter span {
  height: 10px;
  width: 4px;
  top: 10px;
  left: 14px;
  box-shadow: 8px 11px 0 #fff;
}

.filter-btn .filter span, 
.filter-btn .filter span:before, 
.filter-btn .filter span:after {
  transition: all .3s ease-in-out;
  background: #fff;
  position: absolute;
}

.filter-btn .filter span:before {
  top: 4px;
}

.filter-btn .filter span:before, 
.filter-btn .filter span:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  left: -3px;
}

.filter-btn .filter span:after {
  top: 15px;
}

.filter-btn[aria-expanded=true] .filter span {
  transition: all .1s ease-in-out;
  background: transparent;
  box-shadow: 8px 11px 0 transparent;
}

.filter-btn[aria-expanded=true] .filter span.rotate::before {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  -ms-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.filter-btn[aria-expanded=true] .filter span.rotate::after, 
.filter-btn[aria-expanded=true] .filter span.rotate::before {
  opacity: 1;
}

.filter-btn[aria-expanded=true] .filter span.rotate::after {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  -ms-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}

.search-area .select2 {
  width: 100%!important;
}

.grecaptcha-badge {
  bottom: 90px !important;
  z-index: 30;
}

.form-placeholder {
  margin-top: 20px;
}

.form-placeholder .btn-accept {
  background-color: var(--color-primary-light);
  border: none;
  color: var(--color-white);
}