/*
  _____           __                     _
 |  __ \         / _|                   (_)
 | |__) |__ _ __| |_ ___  _ __ _ __ ___  _ _______
 |  ___/ _ \ '__|  _/ _ \| '__| '_ ` _ \| |_  / _ \
 | |  |  __/ |  | || (_) | |  | | | | | | |/ /  __/
 |_|   \___|_|  |_| \___/|_|  |_| |_| |_|_/___\___|
 v1.1.18
*/
:root {
  --primary-color: #BC2A79;
  --dark-color: #222;
  --white: #fff;
  --black: #000;
  --black-light: #212529;
  --font-simple: "Montserrat";
  --font-title: "Monument Extended";
  --max-container: 1400px;
  --animate-duration-fast: 0.3s;
  --animate-duration-medium: 0.7s;
  --animate-duration-slow: 1s;
  --radius: 15px;
  --radius-xl: 100px;
  --verde-menta: #9DDB9DFF;
  --sabbia: #c0a266;
  --grigio: #F2F2F2;
  --woo-rosa: #BC2A79;
  --woo-rosa-opacity: rgba(188,42,121,.4);
  --grigio-testo: #989898;
  --facebook: #1C70DE;
  --desktop-padding-gutter: 80px;
  --desktop-padding-wrapper: 3rem;
  --mobile-padding-wrapper: 1rem;
}

/** Bootstrap navbar fix (https://git.io/fADqW) */
html, body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

@media (max-width: 1199.98px) {
  .menu-full-width .dropdown-menu.depth_0 {
    position: fixed !important;
    background: #fff !important;
    padding-top: 0;
    margin-top: 0;
    top: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .menu-full-width .dropdown-menu.sub-menu.depth_1 {
    position: fixed !important;
    background: #fff !important;
    padding-top: 0;
    margin-top: 0;
    top: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .menu-full-width .perf-animate {
    transform: translateX(0%) !important;
  }
  .offcanvas-collapse {
    position: fixed;
    top: 70px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .offcanvas-collapse .navbar-nav {
    z-index: 1050;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }
}
/*# sourceMappingURL=offcanvas-menu.min.css.map */