/*
***
* YDEO Home | Your Brand On
***
*  CSS TABLE OF CONTENTS
*   
*   1.0 - Reset
*   2.0 - Fonts
*   3.0 - Globals
*   4.0 - Header
*     4.1 - Side Menu
*     4.2 - Main Menu
*   5.0 - Footer
*     5.1 - Footer Top
*     5.2 - Footer Bottom
*   6.0 - Home
*     6.1 - Hero
*   7.0 - Modal
*     7.1 - Login
*     7.2 - Registration
*   8.0 - Un partner unico
*     8.1 - Poster Only Mobile
*   9.0 - Manifesto
*  10.0 - Features
*  11.0 - Il Tuo Configuratore
*  12.0 - Video
*  13.0 - Stanley Gallery
*  14.0 - Manifesto Vendi
*  15.0 - Features Vendi
*   15.1 - Le Nostre Guide
*  16.0 - Poster Banner
*  17.0 - Slider Gallery
*  18.0 - Scopri il Kit
*   18.1 - Kit Slider
*  19.0 - Review
*  20.0 - Customare Care
*   20.1 - Customare Care Icon
*  21.0 - Banner Contact
*   21.1 - Social Box
*   21.2 - Contact Form
*  15.2 - Carousel Guide
***
*/


/* MODALS ERROR */

.cont_error_message {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
}

.cont_error_message>div {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    background: var(--white);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.chiudi {
    position: absolute;
    background-color: black;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    right: -17px;
    top: -17px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.chiudi p {
    color: white;
    font-weight: bold;
    font-size: 20px;
}


/* ==========================================================================
   1.0  Reset
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}


/* ==========================================================================
   2.0  Fonts
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ==========================================================================
   3.0  Globals
   ========================================================================== */

body {
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.col-full {
    max-width: 85%;
    padding: 0;
    margin: 0 auto;
}

:root {
    --blue: #1268fb;
    --yellow: #eefe04;
    --purple: #ec174f;
    --green: #33cc33;
    --black: #000000;
    --grey: #707070;
    --light-grey: #f9f9f9;
    --background-grey: #f0f0f0;
    --video-grey: #f2f2f2;
    --white: #ffffff;
}

h1,
h2,
h3,
h4,
p,
span {
    color: var(--black);
    margin: 0;
}

.custom-container {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
}

.banner-transparent {
    background-color: transparent !important;
}

h1 {
    font-size: 90px;
}

h2 {
    font-size: 62px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

a:focus {
    outline-style: none;
}

.overflow-hidden {
    overflow: hidden;
}

.blue-line {
    fill: var(--blue);
}

.purple-line {
    fill: var(--purple);
}

.green-line {
    fill: var(--green);
}

.yellow-line {
    fill: var(--yellow);
}

.background-blue {
    background-color: var(--blue);
}

.background-purple {
    background-color: var(--purple);
}

.background-green {
    background-color: var(--green);
}

.background-yellow {
    background-color: var(--yellow);
}

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


/* ==========================================================================
   4.0  Header
   ========================================================================== */

.site-header {
    margin: 0;
    padding: 0;
    border-bottom: 0;
    height: 70px;
    background-color: var(--black);
}

.top-menu {
    height: 100%;
}

.top-menu>ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.top-menu>ul li {
    width: 105px;
    height: 38px;
}

.top-menu>ul li a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.top-menu>ul li a span {
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
}

.top-menu>ul li a:hover,
.top-menu>ul li a:focus {
    background-color: var(--blue);
    text-decoration: none;
}

.top-menu>ul li:nth-child(5) a,
.top-menu>ul li:nth-child(6) a,
.top-menu>ul li:last-child a {
    background-color: var(--white);
}

.top-menu>ul li:nth-child(5) a:hover,
.top-menu>ul li:nth-child(5) a:focus {
    background-color: var(--yellow);
}

.top-menu>ul li:nth-child(5) a:hover span,
.top-menu>ul li:nth-child(5) a:focus span {
    color: var(--black);
}

.top-menu>ul li:nth-child(6) a:hover,
.top-menu>ul li:nth-child(6) a:focus {
    background-color: var(--purple);
}

.top-menu>ul li:last-child a:hover,
.top-menu>ul li:last-child a:focus {
    background-color: var(--green);
}

.top-menu>ul li:nth-child(5) a span,
.top-menu>ul li:nth-child(6) a span,
.top-menu>ul li:last-child a span {
    color: var(--black);
}

.top-menu>ul li:nth-child(6) a:hover span,
.top-menu>ul li:nth-child(6) a:focus span,
.top-menu>ul li:last-child a:hover span,
.top-menu>ul li:last-child a:focus span {
    color: var(--white);
}

.top-menu>ul li a svg {
    width: 22px;
    height: auto;
    vertical-align: middle;
}

.icon-tshirt,
.icon-support,
.icon-account,
.icon-carriere {
    fill: var(--white);
}

.icon-crea,
.icon-money,
.icon-print {
    fill: var(--black);
}

.top-menu>ul li:nth-child(6) a:hover .icon-print,
.top-menu>ul li:nth-child(6) a:focus .icon-print,
.top-menu>ul li:last-child a:hover .icon-money,
.top-menu>ul li:last-child a:focus .icon-money {
    fill: var(--white);
}

#square-mobile-logo,
#carousel-hero-mobile {
    display: none;
}


/* ==========================================================================
   4.1  Side Menu
   ========================================================================== */

#side-menu {
    position: fixed;
    top: calc(50vh - 160px);
    left: 0;
    z-index: 100;
}

#side-menu>div {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#side-menu>div>a {
    text-decoration: none;
}

#side-menu>div:first-child {
    width: 70px;
    height: 180px;
    background-color: var(--black);
}

#side-menu>div:nth-child(2),
#side-menu>div:last-child {
    width: 70px;
    height: 70px;
    background-color: var(--black);
    border-top: 2px solid var(--white);
}

#hamburger-menu {
    width: 32px;
    height: 20px;
}

.hamburger-line {
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
}

#whatsapp-menu,
#chat-menu {
    width: 30px;
    height: 30px;
}


/* ==========================================================================
   4.2  Main Menu
   ========================================================================== */

.home #main-menu {
    background-color: var(--blue);
}

#main-menu {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 9998;
    padding-top: 70px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

#main-menu>.col-full {
    height: 40px;
    width: 85%;
}

#logo-ydeo-menu {
    width: 180px;
    height: auto;
}

.ydeo-menu {
    fill: var(--white);
}

#footer-menu {
    width: 100%;
    opacity: 0;
}

.main-left-menu li a,
.main-right-menu li a {
    color: var(--white);
    font-size: 72px;
    font-weight: 500;
    text-decoration: none;
}

#menu-container .menu-item {
    opacity: 0;
}

.close-menu {
    fill: none;
    stroke: var(--white);
    stroke-width: 8;
    stroke-miterlimit: 10;
}

#close-menu {
    width: 24px;
    height: 24px;
    float: right;
    cursor: pointer;
    opacity: 0;
}

#logo-ydeo-menu-mobile {
    display: none;
}


/* ==========================================================================
   5.0  Footer
   ========================================================================== */

.site-footer {
    background-color: transparent;
    height: 640px;
    padding: 0;
    position: relative;
}

.back-top {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
}

.back-top h2 {
    color: var(--black);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.square {
    background-color: var(--black);
    width: 100px;
    height: 100px;
    cursor: pointer;
    position: relative;
}

.square svg {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#arrow-top {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: var(--white);
}

.back-top .square {
    margin: 0 auto;
}


/* ==========================================================================
   5.1  Footer Top
   ========================================================================== */

.home .footer-top {
    background-color: var(--blue);
}

.footer-top {
    height: 427px;
}

.footer-top .col-full {
    padding-top: 120px;
}

.main-left-menu,
.main-right-menu,
.footer-left-menu,
.footer-right-menu {
    list-style: none;
    margin: 0;
}

.footer-left-menu li a,
.footer-right-menu li a {
    color: var(--white);
    font-size: 42px;
    font-weight: 500;
    text-decoration: none;
}

.main-left-menu li a:hover,
.main-left-menu li a:focus,
.main-right-menu li a:hover,
.main-right-menu li a:focus,
.footer-left-menu li a:hover,
.footer-left-menu li a:focus,
.footer-right-menu li a:hover,
.footer-right-menu li a:focus {
    color: var(--black);
}

.footer-top .col-12>a {
    text-decoration: none;
}

#footer-ydeo-white {
    width: 220px;
    height: auto;
}

.ydeo-white {
    fill: var(--white);
}

#footer-ydeo-white:hover .ydeo-white {
    fill: var(--black);
}

.footer-top-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-open-contact>ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-open-contact>ul li {
    width: 105px;
    height: 38px;
    background-color: var(--black);
    border-radius: 8px;
}

.menu-open-contact>ul li:hover {
    background-color: var(--white);
}

.menu-open-contact>ul li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu-open-contact>ul li:hover a {
    color: var(--blue);
}


/* ==========================================================================
   5.2  Footer Bottom
   ========================================================================== */

.footer-bottom {
    background-color: var(--black);
    height: 213px;
}

.footer-bottom>div {
    padding-top: 65px;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--white);
    font-size: 14px;
}

.footer-bottom a {
    text-decoration: none;
    display: block;
}

.social-menu {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
}

.social-menu a {
    text-decoration: none;
}

.social-menu a svg {
    width: 35px;
    height: 35px;
}

.facebook-icon,
.linkedin-icon,
.instagram-icon {
    fill: var(--white);
}

.home .social-menu a:hover .facebook-icon,
.home .social-menu a:hover .linkedin-icon,
.home .social-menu a:hover .instagram-icon {
    fill: var(--blue);
}

#logo-ydeo-footer-mobile,
.footer-menu-mobile {
    display: none;
}


/* ==========================================================================
   6.0  Home
   ========================================================================== */


/* ==========================================================================
   6.1  Hero
   ========================================================================== */

#hero {
    height: calc(100vh - 70px);
    position: relative;
}

#carousel-hero {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

#carousel-hero>div,
#carousel-hero>div>div,
.slide-hero {
    width: 100%;
    height: 100%;
}

.slide-crea {
    background-color: var(--yellow);
    position: relative;
}

.slide-stampa {
    background-color: var(--purple);
    position: relative;
}

.slide-vendi {
    background-color: var(--green);
    position: relative;
}

.slide-stella {
    background-image: url("../img/hero-stella.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
}

#hero-stampa {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
}

.content-hero {
    padding: 70px 0 90px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-hero>.content-hero {
    justify-content: center;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-top a {
    z-index: 100;
}

#logo-ydeo-white {
    width: 180px;
    height: auto;
}

#stanley-stella-white {
    width: auto;
    height: 70px;
}

.ydeo-white,
.stella-white {
    fill: var(--white);
}

#logo-ydeo-white:hover .ydeo-white,
#stanley-stella-white:hover .stella-white {
    fill: var(--black);
}

.fill-black {
    fill: var(--black);
}

.big-title h1 {
    color: var(--white);
    font-weight: 800;
}

.big-title h1.color-black {
    color: var(--black);
}

.text-head {
    margin-top: 30px;
}

.text-head p {
    font-size: 22px;
    color: var(--white);
}

.text-head p.color-black {
    color: var(--black);
}

#arrow-down {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: var(--white);
}

#hero-square {
    z-index: 100;
}


/* ==========================================================================
   7.0  Modal
   ========================================================================== */


/* ==========================================================================
   7.1  Login
   ========================================================================== */

#modalLogin .modal-dialog {
    max-width: 50%;
}

#modalLogin .modal-content {
    border: 0;
    border-radius: 0;
}

#modalLogin .modal-body {
    padding: 0;
}

#modalLogin .row,
#modalLogin .row>div {
    margin: 0;
    padding: 0;
}

.close-modal {
    background-color: var(--black);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 10;
}

.close-modal>svg {
    width: 15px;
    height: 15px;
}

#modalLogin .custom-modal-left {
    background-image: url("../img/login-background.jpg");
}

.custom-modal-left {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#logo-ydeo-white-modal {
    width: 260px;
    height: auto;
}

.custom-modal-right {
    padding: 45px 30px 30px 30px;
}

.header-modal {
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--background-grey);
}

.custom-modal-right .header-modal h3 {
    font-weight: 700;
}

.custom-modal-right .header-modal>p {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 15px;
}

.custom-modal-right .header-modal>div {
    display: flex;
    align-items: center;
    gap: 15px;
}

#google-button {
    background-color: var(--black);
    color: var(--white);
    border-radius: 5px;
    border: 0;
    outline-style: none;
    display: flex;
    height: 45px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

#google-button>span {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    height: 100%;
}

#google-button>span:first-child {
    background-color: var(--blue);
}

#google-button>span:first-child svg {
    width: 22px;
    height: 22px;
}

#google-button>span:last-child {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

#google-button>span:last-child:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--blue);
    transition: all 0.35s;
    z-index: -1;
}

#google-button:hover>span:last-child:after {
    width: 100%;
}

.custom-modal-right .header-modal>div p,
.custom-modal-right form label,
.custom-modal-right form p {
    font-size: 14px;
    font-weight: 700;
}

#twitter-button {
    background-color: var(--background-grey);
    border-radius: 5px;
    border: 0;
    outline-style: none;
    display: flex;
    height: 45px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

#twitter-button>span {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    height: 100%;
    z-index: 2;
    position: relative;
}

#twitter-button>span svg {
    width: 22px;
    height: auto;
}

#twitter-button>span:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--blue);
    transition: all 0.35s;
    z-index: -1;
}

#twitter-button:hover>span:after {
    width: 100%;
}

#twitter-button:hover #Tracciato_5908 {
    fill: var(--white);
}

.custom-modal-right .form-control:focus {
    background-color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 0.2rem rgb(18 104 251 / 25%);
}

.custom-modal-right form .form-check label,
.custom-modal-right form .form-check label a {
    color: var(--grey);
    font-weight: 400;
    font-size: 11px;
}

.custom-modal-right form .form-check label a,
.custom-modal-right form p a[type="button"] {
    text-decoration: underline;
}

.custom-modal-right form .form-check label a:hover,
.custom-modal-right form p a[type="button"]:hover {
    text-decoration: none;
}

.custom-modal-right form button[type="submit"] {
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 5px;
    outline-style: none;
}

#modalLogin .custom-modal-right form button[type="submit"] {
    margin-top: 93px;
}

.custom-modal-right form input,
.custom-modal-right form p a[type="button"],
.custom-modal-right form p a[type="button"]:hover {
    color: var(--grey);
}


/* ==========================================================================
   7.2  Registration
   ========================================================================== */

#modalRegistration .modal-dialog {
    max-width: 50%;
}

#modalRegistration .modal-content {
    border: 0;
    border-radius: 0;
}

#modalRegistration .modal-body {
    padding: 0;
}

#modalRegistration .row,
#modalRegistration .row>div {
    margin: 0;
    padding: 0;
}

#modalRegistration .custom-modal-left {
    background-image: url("../img/registration-background.jpg");
}

#modalRegistration .custom-modal-right form button[type="submit"] {
    margin-top: 15px;
}


/* ==========================================================================
   8.0  Un partner unico
   ========================================================================== */

#partner-unico {
    padding: 90px 0 60px 0;
}

#partner-unico .big-title>.row {
    margin: 0;
}

#partner-unico .big-title>.row>div {
    padding: 0;
}

#partner-unico .big-title .col-12>div {
    display: inline-block;
    position: relative;
}

#partner-unico .big-title h1 {
    color: var(--black);
    font-weight: 800;
    text-align: center;
}

#partner-unico .big-title .line-decoration {
    position: absolute;
    top: -30px;
    left: 83%;
    width: 62px;
    height: auto;
    opacity: 0;
}

#partner-unico>.col-full .col-12>.row>div:first-child,
#partner-unico>.col-full .col-12>.row>div:last-child {
    margin-top: 60px;
}

.box-partner {
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-color: var(--blue);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.box-partner h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 90px;
}

.box-partner a {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 25px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
}

.box-partner a:hover {
    text-decoration: none;
}

#partner-unico>.col-full .col-12>.row>div:first-child .box-partner {
    background-image: url("../img/partner-unico-crea.svg");
}

#partner-unico>.col-full .col-12>.row>div:first-child .box-partner:hover {
    background-color: var(--yellow);
    background-image: url("../img/partner-unico-crea-hover.svg");
}

#partner-unico>.col-full .col-12>.row>div:first-child .box-partner:hover h4 {
    color: var(--black);
}

#partner-unico>.col-full .col-12>.row>div:nth-child(2) .box-partner {
    background-image: url("../img/partner-unico-stampa.svg");
}

#partner-unico>.col-full .col-12>.row>div:nth-child(2) .box-partner:hover {
    background-color: var(--purple);
}

#partner-unico>.col-full .col-12>.row>div:last-child .box-partner {
    background-image: url("../img/partner-unico-vendi.svg");
}

#partner-unico>.col-full .col-12>.row>div:last-child .box-partner:hover {
    background-color: var(--green);
}

.box-partner-text {
    text-align: center;
    font-size: 18px;
}

.headline {
    text-align: center;
    margin-bottom: 60px;
}

.headline h2 {
    color: var(--black);
    font-size: 38px;
    font-weight: 700;
}

.headline h2 br,
.headline-mobile {
    display: none;
}

.headline p {
    font-size: 22px;
    color: var(--grey);
}

.headline>div {
    position: relative;
}

.headline .line-decoration {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: auto;
    display: none;
}


/* ==========================================================================
   8.1  Poster Only Mobile
   ========================================================================== */

.poster-only-mobile {
    display: none;
}


/* ==========================================================================
   9.0  Manifesto
   ========================================================================== */

.poster {
    padding: 60px 0;
}

.poster .big-title {
    margin-bottom: 60px;
}

.poster .big-title h1 {
    color: var(--black);
}

.poster .big-title .col-md-11>div {
    position: relative;
    display: inline-block;
}

.poster .big-title .line-decoration {
    position: absolute;
    top: 55%;
    left: 97%;
    width: 62px;
    height: auto;
}

.poster-stampa .big-title .line-decoration {
    opacity: 0;
}

.poster>.col-full>.row>div>div:first-child,
.poster>.col-full>.row>div>div:first-child>.col-md-8>p:first-child {
    margin-bottom: 30px;
}

.poster>.col-full>.row h3,
.poster>.col-full>.row h3 a {
    font-weight: 800;
    color: var(--black);
}

.poster>.col-full>.row p,
.poster>.col-full>.row p a {
    font-size: 16px;
    color: var(--black);
}

.poster>.col-full>.row p a {
    font-weight: 800;
    text-decoration: underline;
}

.poster>.col-full>.row p a:hover {
    text-decoration: none;
}

.poster>.col-full>.row p>svg {
    width: 15px;
    height: 15px;
}

.subtitle-post-mobile,
.line-decoration-mobile {
    display: none;
}


/* ==========================================================================
   10.0  Features
   ========================================================================== */

.features>.row {
    margin: 0;
}

.features>.row>div:first-child {
    background-color: var(--video-grey);
    padding: 90px 0;
}

.features .big-title {
    width: 100%;
    padding: 0 15px;
}

.features .big-title h1 {
    color: var(--black);
}

.features .big-title .col-md-9>div {
    position: relative;
    display: inline-block;
}

.features .big-title .line-decoration {
    position: absolute;
    top: -20px;
    left: 93%;
    width: 62px;
    height: auto;
    transform: rotate(20deg);
}

#features-stampa .big-title .line-decoration {
    opacity: 0;
}

.list-features {
    padding: 30px 15px;
    margin-bottom: 0;
}

.list-features-title,
.list-features li {
    color: var(--grey);
    font-size: 20px;
}

.button-simple {
    margin: 0 15px;
    background-color: var(--black);
    text-decoration: none;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 14px 30px;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    vertical-align: middle;
    width: 270px;
}

.button-simple span {
    color: var(--white);
}

#features-stampa .button-simple:hover {
    background-color: var(--purple);
}

.features>div>div:last-child {
    background-color: var(--video-grey);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.features>div>div:last-child video {
    position: absolute;
    width: auto;
    border-radius: 25px;
}


/* ==========================================================================
   11.0  Il Tuo Configuratore
   ========================================================================== */

#mockup {
    padding-top: 90px;
}

#mockup-slider-mobile {
    display: none;
}

.carousel-indicators {
    bottom: -15%;
}

.carousel-indicators li {
    border-radius: 0;
    border: none;
    background-color: var(--background-grey);
    width: 45px;
    height: 4px;
}

.carousel-indicators li.active {
    background-color: var(--grey);
    width: 45px;
    height: 4px;
    margin: none;
}

.mockup-slider>.col-full>.row:first-child {
    margin-bottom: 150px;
}

.mockup-slider .carousel-item img {
    width: 100%;
    height: auto;
}

.mockup-slider .button-simple:hover {
    background-color: var(--purple);
}


/* ==========================================================================
   12.0  Video
   ========================================================================== */

.video-block {
    padding-top: 90px;
}

.video-block-container {
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    overflow: hidden;
    height: 540px;
}

.video-container video {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}


/* ==========================================================================
   13.0  Stanley Gallery
   ========================================================================== */

.banner-slider {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 30px;
}

#stanley-gallery {
    overflow: hidden;
    position: relative;
}

#stanley-gallery img {
    width: 100%;
}

#stanley-gallery>div:last-child {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    height: auto;
}

#stanley-gallery a {
    text-decoration: none;
}

#stanley-gallery svg {
    width: 125px;
    height: auto;
}

#stanley-gallery h2 {
    color: var(--white);
    font-weight: 700;
}

#stanley-gallery p {
    color: var(--white);
    font-size: 22px;
    margin-left: 5%;
}

.slider-image-mobile {
    display: none;
}


/* ==========================================================================
   14.0  Manifesto Vendi
   ========================================================================== */

.poster-vendi .big-title .line-decoration {
    top: -25px;
    left: 12%;
    opacity: 0;
}


/* ==========================================================================
   15.0  Features Vendi
   ========================================================================== */

#features-vendi .big-title .line-decoration {
    left: 24%;
    transform: rotate(0);
    opacity: 0;
}

#features-vendi .button-simple:hover {
    background-color: var(--green);
}


/* ==========================================================================
   15.1  Le Nostre Guide
   ========================================================================== */

#guide {
    padding-top: 90px;
}

#guide .headline h2 br {
    display: block;
}

.card-guide>a>div {
    border-radius: 8px;
    padding: 15px;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.card-guide>a>div p {
    color: var(--white);
    font-weight: 700;
    line-height: 1em;
    z-index: 100;
}

.card-guide>a>div>div>p:last-child {
    color: var(--white);
    font-weight: normal;
    font-size: 12px;
    line-height: 1em;
    margin-top: 15px;
    z-index: 100;
}

.card-guide>a,
.card-guide>a:hover {
    text-decoration: none;
}

.card-guide>a:last-child {
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-top: 30px;
    display: block;
}

.card-guide>a>.background-yellow p,
.card-guide>a>.background-yellow>div>p:last-child {
    color: var(--black);
}

.card-guide img {
    position: absolute;
    height: auto;
    width: 100%;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.guide-mobile,
.headline p br {
    display: none;
}


/* ==========================================================================
   16.0  Poster Banner
   ========================================================================== */

.poster-banner {
    padding-top: 90px;
}

.poster-banner .big-title h1 {
    color: var(--black);
}

.poster-banner .big-title>div {
    position: relative;
    display: inline-block;
}

.poster-banner .big-title .line-decoration {
    position: absolute;
    top: -20px;
    left: 18%;
    width: 62px;
    height: auto;
    opacity: 0;
}

.poster-banner h3 {
    color: var(--grey);
    margin: 30px 0;
}

.poster-banner p {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 15px;
}

.poster-banner p a {
    font-size: 16px;
    color: var(--grey);
    text-decoration: underline;
    font-weight: 800;
}

.poster-banner p a:hover {
    text-decoration: none;
}

.brand-list {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.poster-banner-image {
    width: 100%;
    height: auto;
}

#poster-merch-design .button-simple:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.poster-button>.button-simple {
    margin: 30px 0 0 0;
}

.poster-text-mobile,
#brand-list-slider,
.brand-list-mobile p {
    display: none;
}

.poster-banner-button,
.poster-box-image-mobile {
    display: none !important;
}

.video-container-poster {
    background-color: var(--video-grey);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 75%;
}

.video-container-poster>video {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: auto;
    height: 95%;
    border-top-left-radius: 25px;
}


/* ==========================================================================
   17.0  Slider Gallery
   ========================================================================== */

.slider-gallery {
    background-color: var(--video-grey);
    padding: 90px 0;
    margin-top: 90px;
}

.slider-gallery .carousel-control-next,
.slider-gallery .carousel-control-prev {
    top: unset;
    bottom: -55px;
    transform: unset;
    opacity: 1;
    width: auto;
    z-index: 10;
}

.slider-gallery .carousel-control-next {
    right: 0;
    left: unset;
}

.slider-gallery .carousel-control-next-icon {
    background-image: url("../img/arrow-right.svg");
    width: 40px;
    height: 40px;
}

.slider-gallery .carousel-control-prev {
    left: 0;
}

.slider-gallery .carousel-control-prev-icon {
    background-image: url("../img/arrow-left.svg");
    width: 40px;
    height: 40px;
}

.slider-gallery .carousel-indicators {
    bottom: -55px;
    transform: unset;
    width: auto;
    margin: 0;
    z-index: 1;
}

.slider-gallery .carousel-indicators li,
.slider-gallery .carousel-indicators li.active {
    text-indent: unset;
    background-color: transparent;
    width: auto;
    height: auto;
    opacity: 1;
}

.slider-gallery .carousel-indicators li a {
    color: var(--black);
    text-decoration: none;
}

.slider-gallery .carousel-indicators li a:hover {
    text-decoration: none;
}

.slider-gallery .carousel-indicators li {
    display: none;
}

.slider-gallery .carousel-indicators li.active {
    display: block;
}


/* ==========================================================================
   18.0  Scopri il Kit
   ========================================================================== */

#scopri-kit {
    padding: 90px 0 60px 0;
}


/* ==========================================================================
   18.1  Kit Slider
   ========================================================================== */

.kit-slider {
    margin: 60px 0;
    height: 500px;
}

.kit-slider>div {
    height: 100%;
}

.kit-slider .carousel-item>.row {
    margin: 0;
}

.kit-slider .col-12 {
    padding: 0;
}

#scopri-kit>.col-full>.row>div>div:first-child {
    margin-bottom: 30px;
}

#scopri-kit>.col-full>.row h3,
#scopri-kit>.col-full>.row h3 a {
    font-weight: 800;
    color: var(--black);
}

#scopri-kit>.col-full>.row p,
#scopri-kit>.col-full>.row p a {
    font-size: 16px;
    color: var(--black);
}

#scopri-kit>.col-full>.row p a {
    font-weight: 800;
    text-decoration: underline;
}

#scopri-kit>.col-full>.row p a:hover {
    text-decoration: none;
}

#scopri-kit>.col-full>.row p>svg {
    width: 15px;
    height: 15px;
}

.box-kit {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.top-box-kit {
    display: inline-block;
    background-color: var(--blue);
    padding: 15px;
}

.top-box-kit p {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
}

.box-kit h2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: var(--white);
    font-size: 38px;
    font-weight: 700;
}


/* ==========================================================================
   19.0  Review
   ========================================================================== */

#review {
    background-color: var(--video-grey);
    margin-top: 60px;
}

#review .col-xl-7 img {
    width: 100%;
}

#review>div>div>div>div>div {
    padding: 0;
}

.box-review {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 10;
    background-color: var(--white);
    width: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    -webkit-box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
}

.box-review img {
    height: 40px;
    width: auto;
    align-self: flex-start;
}

.trustpilot {
    width: 120px;
    height: auto;
    align-self: flex-end;
}

.box-review p {
    color: var(--grey);
}

.box-review p strong {
    color: var(--black);
}


/* ==========================================================================
   20.0  Customare Care
   ========================================================================== */

#home-customare-care {
    margin-top: 90px;
    padding: 60px 0;
}

.box-customare-care>div {
    -webkit-box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
}

.box-customare-care>div:first-child {
    padding: 30px;
    background-color: var(--black);
}

.box-customare-care>div:last-child img {
    width: 100%;
    height: auto;
}

.box-customare-care h3 {
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.box-customare-care p {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    margin: 15px 0;
}

.link-customare-care {
    color: var(--white);
    text-align: center;
    font-size: 10px;
}

.box-customare-care a {
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--white);
}

.box-customare-care a:hover {
    text-decoration: none;
}

#home-customare-care>.col-full .col-12>.row>div:first-child,
#home-customare-care>.col-full .col-12>.row>div:last-child {
    margin-top: 60px;
}

.customare-care-mobile {
    display: none;
}


/* ==========================================================================
   20.1  Customare Care Icon
   ========================================================================== */

.customare-care-icon {
    padding: 60px 0;
}

.box-customer-icon>div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.box-customer-icon strong {
    color: var(--black);
}

.box-customer-icon small {
    color: var(--grey);
}


/* ==========================================================================
   21.0  Banner Contact
   ========================================================================== */

#banner-contact {
    height: 500px;
    margin: 60px 0 180px 0;
    background-color: var(--black);
}

#banner-contact .col-full {
    padding-top: 60px;
}

#banner-contact h1 {
    font-size: 85px;
    font-weight: 500;
    color: var(--white);
}

.back-top-mobile {
    display: none;
}


/* ==========================================================================
   21.1  Social Box
   ========================================================================== */

#banner-contact .box-social {
    margin-bottom: 30px;
}

#banner-contact a {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    position: relative;
}

#banner-contact a:hover,
#banner-contact a:focus {
    text-decoration: none;
}

#banner-contact a svg {
    width: 55px;
    height: 55px;
    position: absolute;
    left: 0;
    bottom: 21%;
    opacity: 0;
}

#banner-contact .box-social p {
    color: var(--white);
    font-size: 24px;
    padding-top: 30px;
}

.ig,
.fb,
.ln {
    fill: var(--white);
}


/* ==========================================================================
   21.2  Contact Form
   ========================================================================== */

#banner-contact form .form-group {
    margin: 30px 0 0 0;
}

#banner-contact form .form-control {
    border-radius: 0;
    outline-style: none;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 16px;
    padding: 6px 8px;
}

#banner-contact form .form-control:focus {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
    outline: 0;
    box-shadow: none;
}

#banner-contact form input::placeholder,
#banner-contact form textarea::placeholder {
    color: var(--white);
}

#banner-contact form button[type="submit"] {
    outline-style: none;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 16px;
    padding: 6px 18px;
    margin: 30px 0 0 0;
}


/* STATUS ORDINE */

#hero-ordine {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.button-dashboard {
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    width: 285px;
    outline-style: none;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 14px 30px;
    margin-top: 15px;
    position: absolute;
    left: 0;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */


/* XXX-Large devices (large desktops, less than 1800px) */

@media (max-width: 1799.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 80px;
    }
    h2 {
        font-size: 58px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 20px;
    }
    /* ==========================================================================
       4.2  Menu Page
       ========================================================================== */
    .main-left-menu li a,
    .main-right-menu li a {
        font-size: 58px;
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    #modalLogin .modal-dialog {
        max-width: 60%;
    }
    /* ==========================================================================
       7.2  Registration
       ========================================================================== */
    #modalRegistration .modal-dialog {
        max-width: 60%;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    #partner-unico .big-title .line-decoration {
        width: 55px;
    }
    /* ==========================================================================
       11.0  Il Tuo Configuratore
       ========================================================================== */
    .mockup-slider>.col-full>.row:first-child {
        margin-bottom: 120px;
    }
    /* ==========================================================================
       15.1  Le Nostre Guide
       ========================================================================== */
    .card-guide>a>div {
        height: 300px;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .brand-list img {
        height: 55px;
        width: auto;
    }
    /* ==========================================================================
       21.0  Banner Contact
       ========================================================================== */
    #banner-contact h1 {
        font-size: 78px;
    }
}


/* XX-Large devices (large desktops, less than 1600px) */

@media (max-width: 1599.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 68px;
    }
    h2 {
        font-size: 52px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 18px;
    }
    /* ==========================================================================
       4.2  Menu Page
       ========================================================================== */
    #logo-ydeo-menu {
        width: 140px;
    }
    .main-left-menu li a,
    .main-right-menu li a {
        font-size: 52px;
    }
    #footer-menu {
        height: 190px;
    }
    /* ==========================================================================
       5.0  Footer
       ========================================================================== */
    .square {
        width: 80px;
        height: 80px;
    }
    .square svg {
        width: 28px;
        height: 28px;
    }
    .back-top {
        top: -17%;
    }
    .back-top h2 {
        font-size: 34px;
    }
    /* ==========================================================================
       5.1  Footer Top
       ========================================================================== */
    #footer-ydeo-white {
        width: 180px;
    }
    /* ==========================================================================
       5.2  Footer Bottom
       ========================================================================== */
    .footer-bottom p,
    .footer-bottom a {
        font-size: 13px;
    }
    .social-menu a svg {
        width: 30px;
        height: 30px;
    }
    /* ==========================================================================
       6.0  Home
       ========================================================================== */
    /* ==========================================================================
       6.1  Hero
       ========================================================================== */
    #logo-ydeo-white {
        width: 140px;
    }
    #stanley-stella-white {
        height: 59px;
    }
    .text-head p {
        font-size: 20px;
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    .close-modal {
        width: 35px;
        height: 35px;
        top: -17.5px;
        right: -17.5px;
    }
    .custom-modal-right .header-modal>p {
        font-size: 14px;
    }
    #google-button>span:last-child,
    .custom-modal-right .header-modal>div p,
    .custom-modal-right form label,
    .custom-modal-right form p,
    .custom-modal-right form input {
        font-size: 12px;
    }
    .custom-modal-right form .form-group {
        margin-bottom: 0.5rem;
    }
    #modalLogin .custom-modal-right form button[type="submit"] {
        margin-top: 81px;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    #partner-unico .big-title .line-decoration {
        width: 50px;
        top: -25px;
    }
    .box-partner h4 {
        margin-bottom: 60px;
    }
    .box-partner-text {
        font-size: 16px;
    }
    .headline h2 {
        font-size: 34px;
    }
    .headline p {
        font-size: 20px;
    }
    /* ==========================================================================
       9.0  Manifesto
       ========================================================================== */
    .poster .big-title .line-decoration {
        width: 50px;
    }
    .poster>.col-full>.row>div>div:first-child,
    .poster>.col-full>.row>div>div:first-child>.col-md-8>p:first-child {
        margin-bottom: 15px;
    }
    /* ==========================================================================
       10.0  Features
       ========================================================================== */
    .features .big-title .line-decoration {
        top: -18px;
        width: 50px;
    }
    .list-features-title,
    .list-features li {
        font-size: 18px;
    }
    .button-simple {
        width: 250px;
        font-size: 22px;
    }
    /* ==========================================================================
       12.0  Video
       ========================================================================== */
    .video-container {
        height: 500px;
    }
    /* ==========================================================================
       13.0  Stanley Gallery
    ========================================================================== */
    #stanley-gallery svg {
        width: 105px;
    }
    #stanley-gallery p {
        font-size: 20px;
    }
    /* ==========================================================================
       15.1  Le Nostre Guide
       ========================================================================== */
    .card-guide>a>div {
        height: 280px;
    }
    .card-guide .background-purple img,
    .card-guide .background-blue img {
        right: -15px;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .brand-list img {
        height: 50px;
    }
    .poster-banner .big-title .line-decoration {
        width: 50px;
    }
    .video-container-poster {
        height: 65%;
    }
    /* ==========================================================================
       17.0  Slider Gallery
       ========================================================================== */
    .slider-gallery .carousel-control-next-icon,
    .slider-gallery .carousel-control-prev-icon {
        width: 30px;
        height: 30px;
    }
    /* ==========================================================================
       18.0  Scopri il Kit
       ========================================================================== */
    #scopri-kit {
        padding: 60px 0;
    }
    /* ==========================================================================
       18.1  Kit Slider
       ========================================================================== */
    .kit-slider,
    .kit-image img {
        height: 450px;
    }
    #scopri-kit>.col-full>.row>div>div:first-child {
        margin-bottom: 15px;
    }
    /* ==========================================================================
       19.0  Review
       ========================================================================== */
    .box-review {
        padding: 50px;
    }
    .box-review img {
        height: 32px;
    }
    .trustpilot {
        width: 110px;
    }
    /* ==========================================================================
       20.0  Customare Care
       ========================================================================== */
    .box-customare-care p {
        font-size: 12px;
    }
    /* ==========================================================================
       20.1  Customare Care Icon
       ========================================================================== */
    .box-customer-icon small {
        font-size: 78%;
    }
    /* ==========================================================================
       21.0  Banner Contact
       ========================================================================== */
    #banner-contact h1 {
        font-size: 68px;
    }
    /* ==========================================================================
       21.1  Social Box
       ========================================================================== */
    #banner-contact a svg {
        width: 45px;
        height: 45px;
    }
    #banner-contact .box-social p {
        font-size: 20px;
    }
}


/* X-Large devices (large desktops, less than 1400px) */

@media (max-width: 1399.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 62px;
    }
    h2 {
        font-size: 44px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    /* ==========================================================================
       4.0  Header
       ========================================================================== */
    .site-header {
        height: 60px;
    }
    .top-menu>ul li {
        width: 90px;
        height: 34px;
    }
    .top-menu>ul li a span {
        font-size: 10px;
    }
    .top-menu>ul li a svg {
        width: 20px;
    }
    /* ==========================================================================
       4.1  Left Menu
       ========================================================================== */
    #side-menu {
        top: calc(50vh - 135px);
    }
    #side-menu>div:first-child {
        width: 60px;
        height: 150px;
    }
    #side-menu>div:nth-child(2),
    #side-menu>div:last-child {
        width: 60px;
        height: 60px;
        border-top: 1px solid var(--white);
    }
    #hamburger-menu {
        width: 26px;
    }
    #whatsapp-menu,
    #chat-menu {
        width: 26px;
        height: 26px;
    }
    /* ==========================================================================
       4.2  Menu Page
       ========================================================================== */
    .main-left-menu li a,
    .main-right-menu li a {
        font-size: 48px;
    }
    #footer-menu {
        height: 160px;
    }
    /* ==========================================================================
       5.0  Footer
       ========================================================================== */
    .site-footer {
        height: 540px;
    }
    .square {
        width: 70px;
        height: 70px;
    }
    .square svg {
        width: 22px;
        height: 22px;
    }
    .back-top {
        top: -16%;
    }
    .back-top h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    /* ==========================================================================
       5.1  Footer Top
       ========================================================================== */
    .footer-top {
        height: 360px;
    }
    .footer-top .col-full {
        padding-top: 90px;
    }
    .footer-left-menu li a,
    .footer-right-menu li a {
        font-size: 36px;
    }
    #footer-ydeo-white {
        width: 140px;
    }
    .menu-open-contact>ul li {
        width: 90px;
        height: 34px;
    }
    .menu-open-contact>ul li a {
        font-size: 12px;
    }
    /* ==========================================================================
       5.2  Footer Bottom
       ========================================================================== */
    .footer-bottom {
        height: 180px;
    }
    .footer-bottom p,
    .footer-bottom a {
        font-size: 11px;
    }
    .social-menu a svg {
        width: 24px;
        height: 24px;
    }
    /* ==========================================================================
       6.0  Home
       ========================================================================== */
    /* ==========================================================================
       6.1  Hero
       ========================================================================== */
    #hero {
        height: calc(100vh - 60px);
        overflow-x: hidden;
    }
    .content-hero {
        padding: 70px 0;
    }
    .hero-image {
        right: -10%;
    }
    .text-head p {
        font-size: 18px;
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    #modalLogin .modal-dialog {
        max-width: 70%;
    }
    /* ==========================================================================
       7.2  Registration
       ========================================================================== */
    #modalRegistration .modal-dialog {
        max-width: 70%;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    #partner-unico .big-title .line-decoration {
        width: 45px;
        top: -20px;
    }
    .box-partner {
        padding: 25px 30px;
    }
    .box-partner h4 {
        margin-bottom: 40px;
    }
    .box-partner-text {
        font-size: 14px;
    }
    .headline h2 {
        font-size: 30px;
    }
    .headline p {
        font-size: 18px;
    }
    /* ==========================================================================
       9.0  Manifesto
       ========================================================================== */
    .poster .big-title .line-decoration {
        width: 45px;
    }
    .poster>.col-full>.row p,
    .poster>.col-full>.row p a {
        font-size: 14px;
    }
    /* ==========================================================================
       10.0  Features
       ========================================================================== */
    .features .big-title .line-decoration {
        top: -15px;
        width: 45px;
    }
    .list-features-title,
    .list-features li {
        font-size: 16px;
    }
    .button-simple {
        width: 220px;
        font-size: 18px;
    }
    .features>div>div:last-child {
        padding: 30px 0;
    }
    /* ==========================================================================
       11.0  Il Tuo Configuratore
       ========================================================================== */
    #mockup {
        padding-top: 60px;
    }
    .mockup-slider>.col-full>.row:first-child {
        margin-bottom: 90px;
    }
    /* ==========================================================================
       12.0  Video
       ========================================================================== */
    .video-block {
        padding-top: 60px;
    }
    .video-block-container {
        margin-bottom: 0;
    }
    .video-container {
        height: 450px;
    }
    /* ==========================================================================
       13.0  Stanley Gallery
    ========================================================================== */
    .banner-slider {
        padding-top: 60px;
    }
    #stanley-gallery svg {
        width: 100px;
    }
    #stanley-gallery p {
        font-size: 18px;
    }
    /* ==========================================================================
       14.0  Manifesto Vendi
       ========================================================================== */
    .poster-vendi .big-title .line-decoration {
        top: -20px;
    }
    /* ==========================================================================
       15.1  Le Nostre Guide
       ========================================================================== */
    #guide {
        padding-top: 60px;
    }
    .card-guide>a>div {
        height: 260px;
    }
    .card-guide>a>div p {
        font-size: 12px;
    }
    .card-guide>a>div>div>p:last-child {
        font-size: 10px;
    }
    .card-guide>a:last-child {
        font-size: 14px;
    }
    .guide-desktop .col {
        padding-left: 5px;
        padding-right: 5px;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .poster-banner {
        padding-top: 60px;
    }
    .brand-list img {
        height: 42px;
    }
    .poster-banner .big-title .line-decoration {
        width: 45px;
        top: -15px;
    }
    .poster-banner p,
    .poster-banner p a {
        font-size: 14px;
    }
    .video-container-poster {
        height: 55%;
    }
    /* ==========================================================================
       17.0  Slider Gallery
       ========================================================================== */
    .slider-gallery {
        margin-top: 60px;
    }
    /* ==========================================================================
       18.0  Scopri il Kit
       ========================================================================== */
    #scopri-kit {
        padding: 30px 0;
    }
    /* ==========================================================================
       18.1  Kit Slider
       ========================================================================== */
    #scopri-kit>.col-full>.row p,
    #scopri-kit>.col-full>.row p a {
        font-size: 14px;
    }
    /* ==========================================================================
       19.0  Review
       ========================================================================== */
    .box-review {
        padding: 30px;
    }
    .box-review img {
        height: 28px;
    }
    .trustpilot {
        width: 100px;
    }
    .box-review p {
        font-size: 14px;
    }
    /* ==========================================================================
       20.0  Customare Care
       ========================================================================== */
    #home-customare-care {
        margin-top: 60px;
    }
    .box-customare-care>div:first-child {
        padding: 30px 20px;
    }
    /* ==========================================================================
       20.1  Customare Care Icon
       ========================================================================== */
    .box-customer-icon img {
        height: 28px;
        width: auto;
    }
    .box-customer-icon svg {
        width: auto;
        height: 24px;
    }
    .box-customer-icon strong {
        font-size: 14px;
    }
    .box-customer-icon small {
        font-size: 64%;
    }
    /* ==========================================================================
       21.0  Banner Contact
       ========================================================================== */
    #banner-contact {
        height: 440px;
        margin: 60px 0 150px 0;
    }
    #banner-contact h1 {
        font-size: 58px;
    }
    /* ==========================================================================
       21.1  Social Box
       ========================================================================== */
    #banner-contact a svg {
        width: 35px;
        height: 35px;
    }
    #banner-contact .box-social p {
        font-size: 18px;
    }
    /* ==========================================================================
       21.2  Contact Form
       ========================================================================== */
    #banner-contact form .form-group,
    #banner-contact form button[type="submit"] {
        margin: 20px 0 0 0;
    }
    #banner-contact form button[type="submit"],
    #banner-contact form .form-control {
        font-size: 14px;
    }
}


/* Large devices (desktops, less than 1200px) */

@media (max-width: 1199.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 52px;
    }
    h2 {
        font-size: 38px;
    }
    h4 {
        font-size: 14px;
    }
    /* ==========================================================================
       4.0  Header
       ========================================================================== */
    .site-header {
        height: 55px;
    }
    .top-menu>ul li {
        width: 80px;
        height: 30px;
    }
    .top-menu>ul li a svg {
        width: 16px;
    }
    /* ==========================================================================
       4.1  Left Menu
       ========================================================================== */
    #side-menu {
        top: calc(50vh - 105px);
    }
    #side-menu>div:first-child {
        width: 45px;
        height: 120px;
    }
    #side-menu>div:nth-child(2),
    #side-menu>div:last-child {
        width: 45px;
        height: 45px;
    }
    #hamburger-menu {
        width: 20px;
    }
    #whatsapp-menu,
    #chat-menu {
        width: 20px;
        height: 20px;
    }
    /* ==========================================================================
       4.2  Menu Page
       ========================================================================== */
    #logo-ydeo-menu {
        width: 120px;
    }
    .main-left-menu li a,
    .main-right-menu li a {
        font-size: 42px;
    }
    #close-menu {
        width: 20px;
        height: 20px;
    }
    #main-menu>.col-full {
        height: auto;
    }
    /* ==========================================================================
       5.0  Footer
       ========================================================================== */
    .site-footer {
        height: 500px;
    }
    .square {
        width: 60px;
        height: 60px;
    }
    .square svg {
        width: 18px;
        height: 18px;
    }
    .back-top {
        top: -14%;
    }
    .back-top h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    /* ==========================================================================
       5.1  Footer Top
       ========================================================================== */
    .footer-top {
        height: calc((500px / 3) * 2);
    }
    .footer-top .col-full {
        padding-top: 75px;
    }
    .footer-left-menu li a,
    .footer-right-menu li a {
        font-size: 34px;
    }
    #footer-ydeo-white {
        width: 120px;
    }
    .menu-open-contact>ul li {
        width: 80px;
        height: 30px;
    }
    .menu-open-contact>ul li a {
        font-size: 10px;
    }
    /* ==========================================================================
       5.2  Footer Bottom
       ========================================================================== */
    .footer-bottom {
        height: calc(500px / 3);
    }
    .footer-bottom p,
    .footer-bottom a {
        font-size: 10px;
    }
    .footer-bottom .col-lg-6>.row>div:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
    }
    /* ==========================================================================
       6.0  Home
       ========================================================================== */
    /* ==========================================================================
       6.1  Hero
       ========================================================================== */
    #hero {
        height: calc(100vh - 55px);
    }
    #logo-ydeo-white {
        width: 120px;
    }
    #stanley-stella-white {
        height: 49px;
    }
    .hero-image {
        right: -25%;
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    #modalLogin .modal-dialog {
        max-width: 80%;
    }
    /* ==========================================================================
       7.2  Registration
       ========================================================================== */
    #modalRegistration .modal-dialog {
        max-width: 80%;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    #partner-unico {
        padding: 60px 0;
    }
    #partner-unico .big-title .line-decoration {
        width: 40px;
    }
    .box-partner a {
        padding: 4px 12px;
        font-size: 10px;
    }
    .box-partner-text {
        font-size: 12px;
    }
    .box-partner {
        padding: 20px;
        margin-bottom: 15px;
    }
    .box-partner h4 {
        margin-bottom: 30px;
    }
    #partner-unico>.col-full .col-12>.row>div:first-child,
    #partner-unico>.col-full .col-12>.row>div:last-child {
        margin-top: 40px;
    }
    .headline {
        margin-bottom: 30px;
    }
    .headline h2 {
        font-size: 28px;
    }
    .headline p {
        font-size: 16px;
    }
    /* ==========================================================================
       9.0  Manifesto
       ========================================================================== */
    .poster .big-title .line-decoration {
        width: 40px;
    }
    .poster .big-title {
        margin-bottom: 30px;
    }
    .poster>.col-full>.row p,
    .poster>.col-full>.row p a {
        font-size: 12px;
    }
    .poster {
        padding: 30px 0 60px 0;
    }
    /* ==========================================================================
       10.0  Features
       ========================================================================== */
    .features>.row>div:first-child {
        padding: 60px 0;
    }
    .features .big-title {
        padding: 0;
    }
    .list-features {
        padding: 15px 0 30px 0;
    }
    .button-simple {
        margin: 0;
        font-size: 16px;
        width: 200px;
    }
    .features .big-title .line-decoration {
        width: 40px;
    }
    /* ==========================================================================
       12.0  Video
       ========================================================================== */
    .video-container {
        height: 400px;
    }
    /* ==========================================================================
       13.0  Stanley Gallery
       ========================================================================== */
    #stanley-gallery svg {
        width: 80px;
    }
    #stanley-gallery p {
        font-size: 16px;
    }
    /* ==========================================================================
       15.1  Le Nostre Guide
       ========================================================================== */
    .card-guide>a>div {
        height: 220px;
    }
    .card-guide>a:last-child {
        font-size: 12px;
        margin-top: 15px;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .poster-banner .big-title .line-decoration {
        width: 40px;
        top: -15px;
    }
    .poster-banner p,
    .poster-banner p a {
        font-size: 12px;
    }
    .poster-button>.button-simple {
        margin: 15px 0 0 0;
    }
    /* ==========================================================================
       17.0  Slider Gallery
       ========================================================================== */
    .slider-gallery {
        padding: 60px 0;
    }
    .slider-gallery .carousel-control-next,
    .slider-gallery .carousel-control-prev,
    .slider-gallery .carousel-indicators {
        bottom: -41.5px;
    }
    /* ==========================================================================
       18.0  Scopri il Kit
       ========================================================================== */
    #scopri-kit {
        padding: 0 0 30px 0;
    }
    /* ==========================================================================
       18.1  Kit Slider
       ========================================================================== */
    .kit-slider {
        margin: 30px 0;
        height: 350px;
    }
    .top-box-kit p {
        font-size: 14px;
    }
    .box-kit h2 {
        font-size: 32px;
    }
    #scopri-kit>.col-full>.row p,
    #scopri-kit>.col-full>.row p a {
        font-size: 12px;
    }
    .kit-image img {
        height: 350px;
    }
    /* ==========================================================================
       19.0  Review
       ========================================================================== */
    #review {
        height: 300px;
    }
    #review div {
        height: 100%;
    }
    .box-review {
        top: 30px;
        gap: 25px;
    }
    #review .col-xl-7 img {
        position: absolute;
        bottom: 0;
    }
    .box-review img {
        height: 24px;
    }
    /* ==========================================================================
       20.0  Customare Care
       ========================================================================== */
    #home-customare-care {
        margin-top: 30px;
    }
    .box-customare-care>div:first-child {
        padding: 20px 15px;
    }
    .box-customare-care a,
    .link-customare-care {
        font-size: 8px;
    }
    .box-customare-care p {
        font-size: 10px;
    }
    #home-customare-care>.col-full .col-12>.row>div:first-child,
    #home-customare-care>.col-full .col-12>.row>div:last-child {
        margin-top: 40px;
    }
    /* ==========================================================================
       20.1  Customare Care Icon
       ========================================================================== */
    .customare-care-icon {
        padding: 30px 0;
    }
    .box-customer-icon {
        margin-bottom: 15px;
        width: 235px;
    }
    .box-customer-icon img {
        height: auto;
        width: auto;
    }
    .box-customer-icon svg {
        width: auto;
        height: auto;
    }
    .box-customer-icon strong {
        font-size: 16px;
    }
    .box-customer-icon small {
        font-size: 80%;
    }
    /* ==========================================================================
       21.0  Banner Contact
       ========================================================================== */
    #banner-contact {
        height: 400px;
        margin: 60px 0 120px 0;
    }
    #banner-contact h1 {
        font-size: 48px;
    }
    /* ==========================================================================
       21.1  Social Box
       ========================================================================== */
    #banner-contact a svg {
        width: 30px;
        height: 30px;
    }
    #banner-contact .box-social p {
        font-size: 14px;
    }
    /* ==========================================================================
       21.2  Contact Form
       ========================================================================== */
    #banner-contact form .form-group,
    #banner-contact form button[type="submit"] {
        margin: 15px 0 0 0;
    }
    #banner-contact form button[type="submit"],
    #banner-contact form .form-control {
        font-size: 12px;
    }
}


/* Medium devices (tablets, less than 992px) */

@media (max-width: 991.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 32px;
    }
    /* ==========================================================================
       4.0  Header
       ========================================================================== */
    .top-menu>ul {
        justify-content: space-between;
    }
    /* ==========================================================================
       4.2  Main Menu
       ========================================================================== */
    #menu-container>.col-full {
        max-width: 100%;
    }
    /* ==========================================================================
       5.1  Footer Top
       ========================================================================== */
    .footer-top .col-full {
        max-width: 100%;
    }
    .footer-top .col-full>.row {
        margin-left: 0;
        margin-right: 0;
    }
    .menu-open-contact>ul {
        gap: 5px;
    }
    .menu-open-contact>ul li {
        width: 60px;
        height: 25px;
    }
    .menu-open-contact>ul li a {
        font-size: 8px;
    }
    /* ==========================================================================
       5.2  Footer Bottom
       ========================================================================== */
    .footer-bottom .col-full {
        max-width: 100%;
    }
    .footer-bottom .col-full>.row {
        margin-left: 0;
        margin-right: 0;
    }
    .footer-bottom .col-lg-6>.row>div:nth-child(2) {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* ==========================================================================
       6.0  Home
       ========================================================================== */
    /* ==========================================================================
       6.1  Hero
       ========================================================================== */
    #hero {
        height: 745px;
    }
    .hero-image {
        right: -55%;
    }
    .hero-crea-image {
        right: -30%;
    }
    .text-head {
        margin-top: 15px;
    }
    .text-head p {
        font-size: 16px;
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    #modalLogin .modal-dialog {
        max-width: 70%;
    }
    .modal-body>.row>div:first-child {
        display: none;
    }
    /* ==========================================================================
       7.2  Registration
       ========================================================================== */
    #modalRegistration .modal-dialog {
        max-width: 70%;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    #partner-unico>.col-full {
        max-width: 100%;
    }
    #partner-unico>.col-full>.row {
        margin: 0;
    }
    #partner-unico .big-title .line-decoration {
        width: 35px;
    }
    .box-partner h4 {
        margin-bottom: 15px;
    }
    .box-partner-text {
        font-size: 10px;
    }
    .headline h2 {
        font-size: 26px;
    }
    .headline p {
        font-size: 14px;
    }
    /* ==========================================================================
       9.0  Manifesto
       ========================================================================== */
    .poster .big-title .line-decoration {
        width: 35px;
    }
    .poster {
        padding: 0 0 60px 0;
    }
    /* ==========================================================================
       10.0  Features
       ========================================================================== */
    .features>.row>div:first-child {
        padding: 60px 0 30px 0;
    }
    .features .big-title .line-decoration {
        width: 35px;
        top: -13px;
    }
    .list-features-title,
    .list-features li {
        font-size: 14px;
    }
    .button-simple {
        font-size: 14px;
        width: 180px;
    }
    /* ==========================================================================
       11.0  Il Tuo Configuratore
       ========================================================================== */
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 35px;
        height: 4px;
    }
    .mockup-slider>.col-full>.row:first-child {
        margin-bottom: 60px;
    }
    /* ==========================================================================
       12.0  Video
       ========================================================================== */
    .video-container {
        height: 320px;
    }
    /* ==========================================================================
       13.0  Stanley Gallery
       ========================================================================== */
    #stanley-gallery svg {
        width: 60px;
    }
    #stanley-gallery p {
        font-size: 14px;
    }
    /* ==========================================================================
       14.0  Manifesto Vendi
       ========================================================================== */
    .poster-vendi .big-title .line-decoration {
        top: -15px;
    }
    /* ==========================================================================
       15.1  Le Nostre Guide
       ========================================================================== */
    .guide-desktop {
        display: none;
    }
    .guide-mobile {
        display: block;
    }
    .card-guide>a>div {
        height: 320px;
        background-image: url(../img/card-woman.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom right;
    }
    .card-guide>a>.background-purple,
    .card-guide>a>.background-blue {
        background-image: url(../img/card-man.png);
    }
    .card-guide>a>div p {
        font-size: 14px;
    }
    .card-guide img {
        display: none;
    }
    .card-guide>a:last-child {
        font-size: 14px;
    }
    .card-guide>a>div>div>p:last-child {
        font-size: 12px;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .poster-banner .big-title .line-decoration {
        width: 35px;
    }
    .brand-list img {
        height: 32px;
    }
    .poster-banner h3 {
        margin: 15px 0;
    }
    .brand-list {
        margin-top: 0;
    }
    .video-container-poster {
        height: 50%;
    }
    /* ==========================================================================
       17.0  Slider Gallery
       ========================================================================== */
    .slider-gallery .carousel-control-next-icon,
    .slider-gallery .carousel-control-prev-icon {
        width: 24px;
        height: 24px;
    }
    .slider-gallery .carousel-indicators li a {
        font-size: 14px;
    }
    /* ==========================================================================
       18.0  Scopri il Kit
       ========================================================================== */
    #scopri-kit {
        padding: 30px 0;
    }
    /* ==========================================================================
       18.1  Kit Slider
       ========================================================================== */
    .kit-slider,
    .kit-image img {
        height: 280px;
    }
    .top-box-kit {
        padding: 10px;
    }
    .top-box-kit p {
        font-size: 12px;
    }
    .box-kit h2 {
        font-size: 26px;
    }
    #scopri-kit>.col-full>.row p,
    #scopri-kit>.col-full>.row p a {
        font-size: 12px;
    }
    /* ==========================================================================
       19.0  Review
       ========================================================================== */
    #review {
        height: 270px;
        margin-top: 30px;
    }
    .box-review {
        gap: 15px;
    }
    .box-review h3 {
        font-size: 16px;
    }
    .box-review img {
        height: 20px;
    }
    .trustpilot {
        width: 80px;
    }
    .box-review p {
        font-size: 12px;
    }
    /* ==========================================================================
       21.0  Banner Contact
       ========================================================================== */
    #banner-contact {
        height: 320px;
        margin: 30px 0 100px 0;
    }
    #banner-contact .col-full {
        max-width: 95%;
    }
    #banner-contact h1 {
        font-size: 38px;
    }
    /* ==========================================================================
       20.0  Customare Care
       ========================================================================== */
    .box-customare-care>div:first-child {
        padding: 15px 10px;
    }
    #home-customare-care>.col-full .col-12>.row>div {
        padding-left: 5px;
        padding-right: 5px;
    }
    .box-customare-care a,
    .link-customare-care {
        font-size: 7px;
    }
    /* ==========================================================================
       21.1  Social Box
       ========================================================================== */
    #banner-contact a svg {
        width: 28px;
        height: 28px;
    }
    /* ==========================================================================
       21.2  Contact Form
       ========================================================================== */
    #banner-contact form button[type="submit"] {
        padding: 6px 14px;
    }
}


/* Small devices (landscape phones, less than 768px) */

@media (max-width: 767.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 38px;
    }
    /* ==========================================================================
       4.0  Header
       ========================================================================== */
    .site-header {
        height: 0;
        background-color: transparent;
    }
    .site-header>.top-menu {
        display: none;
    }
    /* ==========================================================================
       4.1  Left Menu
       ========================================================================== */
    #side-menu {
        top: calc(50vh - 60px);
    }
    #side-menu>div:first-child,
    #side-menu>div:nth-child(2),
    #side-menu>div:last-child {
        width: 40px;
        height: 40px;
    }
    #hamburger-menu {
        width: 18px;
    }
    #whatsapp-menu,
    #chat-menu {
        width: 18px;
        height: 18px;
    }
    /* ==========================================================================
       4.2  Main Menu
       ========================================================================== */
    #main-menu {
        padding-top: 30px;
    }
    .main-left-menu li a,
    .main-right-menu li a {
        font-size: 28px;
    }
    #logo-ydeo-menu {
        display: none;
    }
    #footer-menu {
        height: auto;
    }
    #footer-menu>div {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    #footer-menu .col-10.offset-1 {
        padding-left: 0;
        padding-right: 0;
    }
    #logo-ydeo-menu-mobile {
        display: block;
    }
    #logo-ydeo-menu-mobile svg {
        height: 20px;
        width: auto;
    }
    #footer-menu .col-10.offset-1>div {
        display: flex;
    }
    #footer-menu .col-10.offset-1>div>div:first-child {
        order: 2;
    }
    #footer-menu .col-10.offset-1>div>div:last-child {
        order: 1;
    }
    #footer-menu .col-7>div>div:first-child,
    #footer-menu .col-7>div>div:nth-child(2),
    #footer-menu .col-7>div>div:nth-child(3) {
        margin-bottom: 15px;
    }
    #footer-menu .social-menu {
        margin-bottom: 15px;
        justify-content: flex-end;
    }
    /* ==========================================================================
       5.0  Footer
       ========================================================================== */
    .site-footer {
        height: auto;
    }
    .back-top {
        display: none;
    }
    /* ==========================================================================
       5.1  Footer Top
       ========================================================================== */
    .footer-top {
        display: none;
    }
    /* ==========================================================================
       5.2  Footer Bottom
       ========================================================================== */
    .footer-bottom {
        height: auto;
    }
    .footer-bottom>div {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .footer-bottom .col-10.offset-1>div {
        display: flex;
    }
    .footer-bottom .col-10.offset-1>div>div:first-child {
        order: 2;
    }
    .footer-bottom .col-10.offset-1>div>div:last-child {
        order: 1;
    }
    .footer-bottom .col-7>div>div:first-child,
    .footer-bottom .col-7>div>div:nth-child(2),
    .footer-bottom .col-7>div>div:nth-child(3) {
        margin-bottom: 15px;
    }
    .footer-bottom p,
    .footer-bottom a {
        font-size: 12px;
    }
    .footer-bottom a[type="button"],
    .footer-bottom a[type="button"]:hover {
        color: var(--white);
    }
    .social-menu a svg {
        width: 20px;
        height: 20px;
    }
    #logo-ydeo-footer-mobile,
    .footer-menu-mobile {
        display: block;
    }
    #logo-ydeo-footer-mobile svg {
        height: 20px;
        width: auto;
    }
    footer .footer-bottom .social-menu,
    .footer-menu-mobile>ul>li:nth-child(6),
    .footer-menu-mobile>ul>li:nth-child(9) {
        margin-bottom: 15px;
    }
    .footer-menu-mobile>ul {
        list-style: none;
        margin-bottom: 0;
    }
    /* ==========================================================================
       6.0  Home
       ========================================================================== */
    /* ==========================================================================
       6.1  Hero
       ========================================================================== */
    #hero {
        height: 100vh;
    }
    .hero-top,
    #carousel-hero {
        display: none;
    }
    .content-hero {
        justify-content: center;
    }
    #square-mobile-logo {
        width: 40px;
        height: 40px;
        background-color: var(--black);
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    #square-mobile-logo svg {
        width: 16px;
        height: auto;
    }
    #hero-square {
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }
    #carousel-hero-mobile {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
    }
    #carousel-hero-mobile svg {
        width: 70%;
        height: auto;
    }
    #carousel-hero-mobile>div>div:nth-child(3) svg {
        width: 55%;
        height: auto;
    }
    #carousel-hero-mobile>div>div:last-child svg {
        width: 50%;
        height: auto;
    }
    #carousel-hero-mobile>div {
        width: 100%;
        height: 100%;
    }
    #carousel-hero-mobile>div>div {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
    }
    #carousel-hero-mobile>div>div:first-child {
        background-image: url("../img/slide-hero-crea.png");
    }
    #carousel-hero-mobile>div>div:nth-child(2) {
        background-image: url("../img/slide-hero-stampa.png");
    }
    #carousel-hero-mobile>div>div:nth-child(3) {
        background-image: url("../img/slide-hero-vendi.png");
    }
    #carousel-hero-mobile>div>div:last-child {
        background-image: url("../img/slide-hero-stella.png");
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    #modalLogin .modal-dialog {
        max-width: 80%;
        margin: 0 auto;
    }
    #modalLogin .custom-modal-right form button[type="submit"] {
        margin-top: 147px;
    }
    .close-modal {
        top: 17.5px;
        right: 17.5px;
        background-color: var(--white);
    }
    .close-modal>svg rect {
        fill: var(--black);
    }
    /* ==========================================================================
       7.2  Registration
       ========================================================================== */
    #modalRegistration .modal-dialog {
        max-width: 80%;
        margin: 0 auto;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    #partner-unico {
        padding: 60px 0 30px 0;
    }
    #partner-unico .big-title .col-12>div {
        display: block;
    }
    #partner-unico .big-title .line-decoration {
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
        opacity: 1;
    }
    .box-partner {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
    }
    #partner-unico>.col-full .col-12>.row>div:first-child,
    #partner-unico>.col-full .col-12>.row>div:last-child {
        margin-top: 0;
    }
    .box-partner-text,
    .headline-desktop {
        display: none;
    }
    .box-partner h4 {
        margin-bottom: 30px;
        font-size: 18px;
    }
    .headline h2 br,
    .headline .line-decoration,
    .headline-mobile {
        display: block;
    }
    /* ==========================================================================
       8.1  Poster Only Mobile
       ========================================================================== */
    .poster-only-mobile {
        display: block;
        padding-top: 60px;
    }
    .poster-only-mobile .big-title .col-12>div {
        position: relative;
    }
    .poster-only-mobile .big-title .line-decoration {
        position: absolute;
        width: 35px;
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
    }
    .poster-only-mobile .big-title h1 {
        color: var(--black);
        font-weight: 800;
        text-align: center;
    }
    .poster-only-mobile>div>.row>div>div>div:first-child>p {
        font-size: 14px;
        color: var(--grey);
        text-align: center;
        margin: 5px 0 30px 0;
    }
    .poster-only-mobile>div>.row>div>div>div:last-child>p {
        padding: 15px;
        -webkit-box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
        box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
        border-radius: 8px;
        background-color: var(--white);
        margin: 0 15px;
        font-size: 14px;
        color: var(--black);
    }
    .poster-only-mobile p a {
        font-size: 14px;
        font-weight: 800;
        color: var(--black);
        text-decoration: underline;
    }
    .poster-only-mobile p a:hover {
        text-decoration: none;
    }
    /* ==========================================================================
       9.0  Manifesto
       ========================================================================== */
    .poster {
        padding: 30px 0;
    }
    .poster .big-title {
        margin-bottom: 5px;
    }
    .poster .big-title .col-md-11>div,
    .line-decoration-mobile {
        display: block;
    }
    .poster .big-title h1 {
        text-align: center;
    }
    .poster .big-title h1>br:first-child {
        display: none;
    }
    .poster .big-title .line-decoration {
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
    }
    .poster>.col-full>.row h3,
    .poster>.col-full>.row>div>.row:nth-child(2),
    .line-decoration-desktop,
    .poster>div>.row>div>div:first-child>.col-md-8>p:last-child {
        display: none;
    }
    .poster>.col-full>.row .subtitle-post-mobile {
        display: block;
        text-align: center;
        color: var(--grey);
        font-weight: 400;
        margin-bottom: 15px;
    }
    .poster>div>.row>div>div:first-child>.col-md-8 {
        padding-top: 15px;
        padding-bottom: 15px;
        -webkit-box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
        box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
        border-radius: 8px;
        background-color: var(--white);
        margin: 0 30px;
        width: auto;
        flex: unset;
    }
    .poster>.col-full>.row p,
    .poster>.col-full>.row p a {
        font-size: 14px;
    }
    .poster>.col-full>.row>div>div:first-child>.col-md-8>p:first-child {
        margin-bottom: 0;
    }
    /* ==========================================================================
       10.0  Features
       ========================================================================== */
    .features .big-title .col-md-9>div {
        display: block;
    }
    .features .big-title h1,
    .features>div>.features-container>div>div:nth-child(3)>div {
        text-align: center;
    }
    .features .big-title h1>br:last-child {
        display: none;
    }
    .features .big-title .line-decoration {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1 !important;
    }
    .list-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .list-features-title {
        text-align: center;
        color: var(--black);
    }
    .list-features li {
        color: var(--black);
    }
    .features>div>div:last-child video {
        position: relative;
    }
    .features>div>div:last-child {
        padding: 30px 0 30px 60px;
    }
    /* ==========================================================================
       11.0  Il Tuo Configuratore
       ========================================================================== */
    #mockup-slider-mobile {
        display: block;
    }
    #mockup-slider-desktop {
        display: none;
    }
    #mockup-slider-mobile .carousel-item {
        text-align: center;
    }
    .mockup-slider .carousel-item img {
        width: auto;
        height: 420px;
    }
    .mockup-slider>.col-full>.row:first-child {
        margin-bottom: 90px;
    }
    /* ==========================================================================
       12.0  Video
       ========================================================================== */
    .video-block-container>.col-full {
        max-width: 100%;
    }
    .video-block-container>.col-full>.row {
        margin: 0;
    }
    .video-block-container>.col-full>.row>div {
        padding: 0;
    }
    .video-container {
        height: 420px;
    }
    .video-container video {
        position: absolute;
        left: 0;
        bottom: 0;
        width: auto;
        height: 100%;
    }
    /* ==========================================================================
       13.0  Stanley Gallery
       ========================================================================== */
    #stanley-gallery>div:last-child {
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
    }
    #stanley-gallery>div:last-child .col-md-9 {
        display: none;
    }
    #stanley-gallery .col-full {
        max-width: 100%;
    }
    #stanley-gallery {
        height: 722px;
    }
    .slider-image-mobile {
        display: block;
    }
    .slider-image-desktop,
    .slider-image-desktop.active {
        display: none;
    }
    #stanley-gallery>div:last-child,
    #stanley-gallery svg {
        width: 240px;
    }
    /* ==========================================================================
       14.0  Manifesto Vendi
       ========================================================================== */
    .poster-vendi .big-title h1>br:first-child,
    .poster-vendi>div>.row>div>div:first-child>.col-md-8>p:last-child {
        display: block;
    }
    .poster-vendi .big-title .line-decoration {
        top: -30px;
    }
    /* ==========================================================================
       15.0  Features Vendi
       ========================================================================== */
    #features-vendi .big-title .line-decoration {
        left: 50%;
        transform: translateX(-50%);
    }
    /* ==========================================================================
       15.1  Le Nostre Guide
       ========================================================================== */
    #guide {
        padding: 30px 0 60px 0;
    }
    .headline p br {
        display: block;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .poster-banner .big-title>div {
        display: block;
    }
    .poster-banner .big-title h1 {
        text-align: center;
    }
    .poster-banner h3 {
        text-align: center;
        font-weight: 400;
        font-size: 14px;
    }
    .poster-banner .big-title h1 br:last-child,
    .brand-list,
    .poster-button,
    .poster-text-desktop {
        display: none;
    }
    .poster-banner .big-title .line-decoration {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
    }
    .poster-text-mobile {
        display: block;
        margin: 15px 15px 30px 15px;
        padding: 15px;
        -webkit-box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
        box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 8%);
        border-radius: 8px;
        background-color: var(--white);
    }
    .poster-text-mobile p,
    .poster-text-mobile p a {
        color: var(--black);
        font-size: 14px;
        text-align: center;
    }
    .poster-text-mobile p:last-child {
        margin-bottom: 0;
    }
    #brand-list-slider {
        display: block;
        padding: 60px 0 90px 0;
    }
    #brand-list-slider img,
    .brand-list-mobile img {
        height: 76px;
        width: auto;
    }
    #brand-list-slider .carousel-item,
    #brand-list-slider .carousel-item.active {
        text-align: center;
    }
    #brand-list-slider .carousel-indicators {
        bottom: 15%;
    }
    #brand-list-slider .carousel-indicators li {
        border-radius: 50%;
        width: 12px;
        height: 12px;
    }
    #brand-list-slider .carousel-indicators li.active {
        width: 12px;
        height: 12px;
    }
    .poster-banner-button {
        display: flex !important;
        margin: 30px 0;
    }
    .poster-box-image {
        display: none !important;
    }
    .brand-list-mobile {
        display: block;
        text-align: center;
        padding-top: 60px;
    }
    .brand-list-mobile p {
        display: block;
        color: var(--grey);
        font-size: 14px;
        margin: 30px 0;
    }
    .poster-box-image-mobile {
        display: flex !important;
        padding: 0;
    }
    .video-container-poster {
        height: 420px;
    }
    .video-container-poster>video {
        left: 0;
        height: 100%;
        border-top-left-radius: 0;
    }
    /* ==========================================================================
       17.0  Slider Gallery
       ========================================================================== */
    .slider-gallery {
        background-color: transparent;
    }
    .slider-gallery>.col-full {
        max-width: 100%;
    }
    .slider-gallery>.col-full>.row {
        margin: 0;
    }
    .slider-gallery>.col-full>.row>div {
        padding: 0;
    }
    .slider-gallery .carousel-control-prev {
        left: 60px;
    }
    .slider-gallery .carousel-control-next {
        right: 60px;
    }
    .slider-gallery {
        margin-top: 0;
    }
    /* ==========================================================================
       18.1  Kit Slider
       ========================================================================== */
    .kit-slider {
        margin: 0;
        height: auto;
    }
    #scopri-kit>.col-full {
        display: none;
    }
    .kit-image img {
        height: auto;
        width: 100%;
    }
    .box-kit {
        left: 120px;
    }
    /* ==========================================================================
       19.0  Review
       ========================================================================== */
    #review {
        display: none;
    }
    /* ==========================================================================
       21.0  Banner Contact
       ========================================================================== */
    #banner-contact {
        background-color: var(--blue);
        margin: 60px 0 0 0;
        height: 380px;
        position: relative;
    }
    #banner-contact .col-full {
        max-width: 85%;
    }
    #banner-contact>div>div>div>div>div:first-child {
        display: none;
    }
    #banner-contact>div>div>div>div>div:last-child {
        padding-left: 35px;
        padding-right: 35px;
    }
    .back-top-mobile {
        display: block;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }
    /* ==========================================================================
       20.0  Customare Care
       ========================================================================== */
    .customare-care-desktop,
    #home-customare-care>.headline {
        display: none;
    }
    #home-customare-care {
        padding: 30px 0 90px 0;
    }
    .box-customare-care p {
        font-size: 14px;
    }
    .box-customare-care a,
    .link-customare-care {
        font-size: 10px;
    }
    .customare-care-mobile {
        display: block;
    }
    .customare-care-mobile .carousel-indicators {
        bottom: -10%;
    }
    .box-customare-care>div:first-child {
        padding: 15px;
    }
    /* ==========================================================================
       20.1  Customare Care Icon
       ========================================================================== */
    .customare-care-icon {
        display: none;
    }
    /* ==========================================================================
       21.2  Contact Form
       ========================================================================== */
    #banner-contact form button[type="submit"] {
        background-color: var(--black);
        color: var(--white);
        border: 0;
        border-radius: 25px;
    }
    #banner-contact form .form-group,
    #banner-contact form button[type="submit"] {
        margin: 30px 0 0 0;
    }
}


/* Small applies to x-small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) {
    /* ==========================================================================
       3.0  Globals
       ========================================================================== */
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    /* ==========================================================================
       4.2  Menu Page
       ========================================================================== */
    .main-left-menu li a,
    .main-right-menu li a {
        font-size: 24px;
    }
    #menu-container>div,
    #footer-menu .col-10.offset-1 {
        padding-left: 15px;
        padding-right: 15px;
    }
    #close-menu {
        margin-right: 15px;
    }
    #footer-menu .col-10.offset-1>div>div:last-child {
        padding-right: 0;
    }
    /* ==========================================================================
       5.2  Footer Bottom
       ========================================================================== */
    .footer-bottom .col-10.offset-1>div>div:last-child {
        padding-right: 0;
    }
    /* ==========================================================================
       7.0  Modal
       ========================================================================== */
    /* ==========================================================================
       7.1  Login
       ========================================================================== */
    #modalLogin {
        overflow-y: scroll;
    }
    #modalLogin .modal-dialog {
        max-width: 95%;
    }
    #modalLogin .custom-modal-right form button[type="submit"] {
        margin-top: 60px;
    }
    #google-button>span:last-child {
        display: none;
    }
    .custom-modal-right .header-modal>p {
        font-size: 12px;
    }
    /* ==========================================================================
       7.2  Registration
       ========================================================================== */
    #modalRegistration .modal-dialog {
        max-width: 95%;
    }
    #modalRegistration {
        overflow-y: scroll;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    .box-partner {
        width: 85%;
    }
    .headline {
        margin-bottom: 20px;
    }
    .headline h2 {
        font-size: 24px;
    }
    /* ==========================================================================
       8.1  Poster Only Mobile
       ========================================================================== */
    .poster-only-mobile>div>.row>div>div>div:first-child>p {
        margin: 5px 0 20px 0;
    }
    /* ==========================================================================
       10.0  Features
       ========================================================================== */
    .features>div>div:last-child {
        padding: 30px 0 30px 40px;
    }
    /* ==========================================================================
       11.0  Il Tuo Configuratore
       ========================================================================== */
    .mockup-slider .carousel-item img {
        height: 300px;
    }
    .mockup-slider>.col-full>.row:first-child {
        margin-bottom: 60px;
    }
    /* ==========================================================================
       12.0  Video
       ========================================================================== */
    .video-container {
        height: 380px;
    }
    /* ==========================================================================
       13.0  Stanley Gallery
       ========================================================================== */
    #stanley-gallery {
        height: 100vh;
        max-height: 730px;
    }
    #stanley-gallery>div:last-child,
    #stanley-gallery svg {
        width: 160px;
    }
    /* ==========================================================================
       16.0  Poster Banner
       ========================================================================== */
    .poster-text-mobile {
        margin: 15px;
    }
    #brand-list-slider img,
    .brand-list-mobile img {
        height: 55px;
    }
    #brand-list-slider .carousel-indicators li,
    #brand-list-slider .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }
    #poster-merch-design>div>div>div>div>.d-flex.align-items-center {
        padding: 0;
    }
    .video-container-poster {
        height: 380px;
    }
    /* ==========================================================================
       18.1  Kit Slider
       ========================================================================== */
    .kit-slider {
        max-height: 730px;
    }
    .kit-image img {
        height: calc(730px / 2);
        width: auto;
    }
    .box-kit {
        left: 60px;
    }
    /* ==========================================================================
       20.0  Customare Care
       ========================================================================== */
    #home-customare-care {
        padding: 0 0 90px 0;
    }
    .customare-care-mobile .carousel-indicators {
        bottom: -15%;
    }
}


/* Small applies to x-small devices (portrait phones, less than 321px) */

@media (max-width: 320.98px) {
    /* ==========================================================================
       4.2  Menu Page
       ========================================================================== */
    #main-menu {
        padding-top: 15px;
    }
    #footer-menu>div {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    /* ==========================================================================
       8.0  Un partner unico
       ========================================================================== */
    .box-partner {
        padding: 20px;
    }
}


/* ==========================================================================
    15.2  Carousel Guide
    ========================================================================== */

.guide-mobile .carousel-inner .carousel-item.active,
.guide-mobile .carousel-inner .carousel-item-next,
.guide-mobile .carousel-inner .carousel-item-prev {
    display: flex;
}


/* Large devices (desktops, less than 1200px) */

@media (max-width: 991.98px) {
    /* display 2 */
    .guide-mobile .carousel-inner .carousel-item-right.active,
    .guide-mobile .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }
    .guide-mobile .carousel-inner .carousel-item-left.active,
    .guide-mobile .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}


/* Small devices (landscape phones, less than 768px) */

@media (max-width: 575.98px) {
    /* display 1 */
    .guide-mobile .carousel-inner .carousel-item-right.active,
    .guide-mobile .carousel-inner .carousel-item-next {
        transform: translateX(100%);
    }
    .guide-mobile .carousel-inner .carousel-item-left.active,
    .guide-mobile .carousel-inner .carousel-item-prev {
        transform: translateX(-100%);
    }
}

.guide-mobile .carousel-inner .carousel-item-right,
.guide-mobile .carousel-inner .carousel-item-left {
    transform: translateX(0);
}