:root {
    /* COLORS */
    --background-header-color: #f3f3eb;
    --dark-color: #33293a;
    --dark-purple: #8e419c;
    --purple: #c38ecb;
    --light-purple: #c38ecb;
    --more-light-purple: #e2c2e7;
    --dark-grey: #959295;
    --light-grey: #c1bfbe;
    --green: #6c9b2d;
    --light-green: #b8cd97;
    --white: #fff;
    --black: #000;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
body {
    width: 100%;
    height: 100vh;
}

/* HEADER */
header {
    position: fixed;
    background-color: var(--background-header-color);
    width: 100%;
    height: 90px;
    box-shadow: 0 5px 10px var(--light-grey);
    display: flex;
    align-items: center;
    z-index: 9999;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    margin: 0 auto;
}
header nav .nav__logo {
    display: flex;
    align-items: center;
}
header nav .nav__logo img {
    width: 90px;
    border-radius: 50%;
    margin-left: 40px;
}
header nav .nav__logo a {
    font-family: "Sirivennela", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: var(--dark-purple);
}
header nav .nav__logo a span {
    font-family: "Sirivennela", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--purple);
}
header nav .nav__links li {
    display: inline-block;
    margin: 0 15px;
    font-size: 18px;
    font-weight: 600;
}
header nav .nav__links li a {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
    position: relative;
}
header nav .nav__links li a:hover {
    opacity: .8;
}
header nav .nav__links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;background-color: var(--green);
    transition: width .5s ease;
}
header nav .nav__links li a:hover::after {
    width: 100%;
}
header nav .nav__button {
    display: flex;
    align-items: center;
    justify-content: center;
}
header nav .nav__button .whatsapp__btn {
    padding: 10px 15px;
    border-radius: 30px;
    background-color: var(--light-green);
    border: 2px solid var(--green);
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: .5s ease;
    cursor: pointer;
}
header nav .nav__button .whatsapp__btn:hover {
    background-color: transparent;
    border-color: var(--light-green);
    color: var(--dark-grey);
}
header nav .nav__button i {
    font-size: 30px;
    margin: 0 6px;
    color: var(--dark-color);
    display: none;
}

/* HOME */
.home .home__container {
    display: flex;
    gap: 30px;
    padding: 50px 20px;
    align-items: center;
    width: 100%;
    height: 100vh;
    justify-content: space-around;
}
.home .home__container .home__text {
    color: var(--white);
    text-align: center;
    text-shadow: 0 3px 5px var(--dark-color);
}
.home .home__container .home__text h1 span {
    font-family: 'Sirivennela',sans-serif;
    font-size: 60px;
}
.home .home__container .line {
    width: 80px;
    height: 2px;
    background-color: var(--white);
    margin: 3px auto;
}
.home .home__container .home__text h2 {
    margin-top: 10px;
}
.home .home__container .home__text h2 span {
    font-family: 'Sirivennela',sans-serif;
    font-size: 60px;
}
.home .home__container .home__text h2 strong {
    font-size: 40px;
}
.home .home__container .home__images {
    position: relative;
    width: 600px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home .home__container .home__images img {
    width: 60%;
    border-radius: 30px;
    box-shadow: 0 5px 10px var(--dark-color);
    transition: scale .5s ease;
}
.home .home__container .home__images img:hover {
    scale: 1.1;
}
.home .home__container .home__images .foto1 {
    width: 55%;
    z-index: 2;
    transform: rotate(-3deg);
    position: absolute;
    top: 30px;
    left: 0;
    box-shadow: 0 5px 8px var(--white);
}
.home .home__container .home__images .foto2 {
    width: 65%;
    position: absolute;
    right: -40px;
    bottom: -40px;
    transform: rotate(2deg);
    box-shadow: 0 5px 8px var(--white);
}

/* PRODOTTI (HOME PAGE) */
.prodotti {
    margin-top: 30px;
}
.prodotti .prodotti__text {
    text-align: center;
    color: var(--dark-purple);
    position: relative;
}
.prodotti .prodotti__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 37px;
    margin-left: 3px;
    color: var(--purple);
}
.prodotti .prodotti__text::after,
.prodotti .prodotti__text::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 2px;
    top: 50%;
    background-color: var(--dark-purple);
}
.prodotti .prodotti__text::after {
    left: 30px;
}
.prodotti .prodotti__text::before {
    right: 30px;
}
.prodotti .prodotti__container {
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
    display: grid;
    grid-auto-columns: 200px;
    grid-auto-rows: 200px;
    gap: 15px;
    grid-template-areas: 
    "box-1 box-2 box-3 box-3"
    "box-1 box-4 box-4 box-5"
    "box-6 box-7 box-7 box-8"
    "box-9 box-9 box-10 box-10";
}
.prodotti .prodotti__container .box {
    box-shadow: 0 5px 8px var(--dark-grey);
    transition: scale .5s ease;
}
.prodotti .prodotti__container .box:hover {
    scale: 1.1;
}
.prodotti .prodotti__button {
    padding: 10px 20px;
    text-align: center;
}
.prodotti .prodotti__button a {
    background-color: var(--light-green);
    border: 2px solid var(--green);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .5s ease;
}
.prodotti .prodotti__button a:hover {
    background-color: transparent;
    border-color: var(--light-green);
    color: var(--light-purple);
}

/* SERVIZI */
.servizi {
    margin-top: 30px;
}
.servizi .servizi__text {
    text-align: center;
    color: var(--dark-purple);
    position: relative;
}
.servizi .servizi__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 37px;
    margin-left: 3px;
    color: var(--purple);
}
.servizi .servizi__text::after,
.servizi .servizi__text::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 2px;
    top: 50%;
    background-color: var(--dark-purple);
}
.servizi .servizi__text::after {
    left: 30px;
}
.servizi .servizi__text::before {
    right: 30px;
}
.servizi .servizi__container {
    margin: 20px auto;
    justify-content: center;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 200px);
    grid-template-rows: repeat(2, 200px);
    grid-template-areas: 
    "box-1 box-1 box-2 box-2"
    "box-3 box-3 box-4 box-4";
    z-index: 9;
}
.servizi .servizi__container .servizi__box {
    padding: 25px;
    background-color: var(--more-light-purple);
    border: 2px solid var(--dark-purple);
    border-radius: 30px;
    color: var(--white);
    position: relative;
}
.servizi .servizi__container .servizi__box::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: -2px;
    left: -2px;
    border-radius: 30px;
    background-color: var(--light-green);
    border: 2px solid var(--green);
    transform: rotate(0deg);
    transition: transform .5s ease;
    z-index: -1;
}
.servizi .servizi__container .servizi__box:hover.servizi__box::after {
    transform: rotate(6deg);
}
.servizi .servizi__container .servizi__box h3 {
    font-family: 'Sirivennela', sans-serif;
    font-size: 35px;
    text-align: center;
}
.servizi .servizi__container .servizi__box p {
    text-align: center;
    color: var(--dark-color);
}
.servizi .servizi__container .servizi__box p span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 25px;
    color: var(--dark-purple);
}
.servizi .servizi__button {
    padding: 20px 20px;
    text-align: center;
}
.servizi .servizi__button a {
    padding: 10px 20px;
    text-decoration: none;
    background-color: var(--light-green);
    border: 2px solid var(--green);
    border-radius: 30px;
    color: var(--dark-color);
    font-weight: 600;
    transition: .5s ease;
}
.servizi .servizi__button a:hover {
    border-color: var(--light-green);
    color: var(--light-purple);
    background-color: transparent;
}

/* COME ORDINARE */
.how__order {
    padding-top: 30px;
}
.how__order .how__order__section__text {
    text-align: center;
    color: var(--dark-purple);
    position: relative;
}
.how__order .how__order__section__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    color: var(--purple);
    font-size: 35px;
}
.how__order .how__order__section__text::before,
.how__order .how__order__section__text::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 2px;
    top: 50%;
    background-color: var(--dark-purple);
}
.how__order .how__order__section__text::after {
    left: 30px;
}
.how__order .how__order__section__text::before {
    right: 30px;
}
.how__order .how__order__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    gap: 20px;
}
.how__order .how__order__container .how__order__box {
    width: 200px;
    height: 200px;
    border: 2px solid var(--dark-purple);
    border-radius: 50%;
    background-color: var(--more-light-purple);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
}
.how__order .how__order__container .how__order__box h4 {
    font-family: 'Sirivennela', sans-serif;
    font-size: 26px;
    color: var(--white);
}
.how__order .how__order__container .how__order__box p span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 25px;
    color: var(--dark-purple);
}
.how__order .how__order__container .how__order__box a {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 30px;
    background-color: var(--light-green);
    border: 2px solid var(--green);
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: .5s ease;
    cursor: pointer;
}
.how__order .how__order__container .how__order__box a:hover {
    background-color: transparent;
    border-color: var(--light-green);
    color: var(--white);
}

/* ABOUT ME */
.about {
    padding-top: 30px;
}
.about .about__text__section {
    text-align: center;
    color: var(--dark-purple);
    position: relative;
}
.about .about__text__section h2 span {
    font-family: 'Sirivennela', sans-serif;
    color: var(--purple);
    font-size: 35px;
}
.about .about__text__section::after,
.about .about__text__section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 2px;
    top: 50%;
    background-color: var(--dark-purple);
}
.about .about__text__section::after {
    left: 30px;
}
.about .about__text__section::before {
    right: 30px;
}
.about .about__container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    margin-top: 25px;
}
.about .about__container .about__image img {
    width: 400px;
    border-radius: 50%;
    margin-right: 40px;
    box-shadow: 0 3px 7px var(--dark-grey);
}
.about .about__text {
    width: 40%;
    margin-left: 40px;
    padding: 40px;
    background-color: var(--more-light-purple);
    border: 2px solid var(--dark-purple);
    border-radius: 30px;
    color: var(--dark-color);
    text-align: center;
}
.about .about__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 38px;
    color: var(--dark-purple);
}
.about .about__text h3 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 30px;
    color: var(--dark-purple);
}
.about .about__text p span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 28px;
    color: var(--dark-purple);
    margin-left: 5px;
}

/* DOVE TROVARMI */
.where {
    margin-top: 40px;
}
.where .where__section__text {
    text-align: center;
    color: var(--dark-purple);
    position: relative;
}
.where .where__section__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 38px;
    color: var(--light-purple);
}
.where .where__section__text h3 {
    margin-top: -5px;
}
.where .where__section__text::after,
.where .where__section__text::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 2px;
    top: 50%;
    background-color: var(--dark-purple);
}
.where .where__section__text::after {
    left: 30px;
}
.where .where__section__text::before {
    right: 30px;
}
.where .where__container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    margin-top: 25px;
}
.where .where__container .where__text {
    margin-right: 40px;
    text-align: center;
    border: 2px solid var(--dark-purple);
    background-color: var(--more-light-purple);
    padding: 35px;
    border-radius: 30px;
    color: var(--dark-color);
}
.where .where__container .where__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    color: var(--white);
    font-size: 35px;
    margin-left: 2px;
}
.where .where__container .where__text p span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 28px;
    color: var(--dark-purple);
    font-weight: bold;
}
.where .where__container .where__image img {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 3px 7px var(--dark-grey);
}

/* CONTATTI */
.contatti {
    padding-top: 40px;
}
.contatti .contatti__section__text {
    position: relative;
    text-align: center;
    color: var(--dark-purple);
}
.contatti .contatti__section__text h2 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 38px;
    color: var(--light-purple);
}
.contatti .contatti__section__text::after,
.contatti .contatti__section__text::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 2px;
    top: 50%;
    background-color: var(--dark-purple);
}
.contatti .contatti__section__text::after {
    left: 30px;
}
.contatti .contatti__section__text::before {
    right: 30px;
}
.contatti .contatti__container {
    position: relative;
    width: 100%;
    padding: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contatti .contatti__container .contatti__section__form {
    width: 100%;
    max-width: 820px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 20px 1px var(--light-grey);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.contatti .contatti__container .contatti__section__form .contatti__form {
    background-color: var(--more-light-purple);
    position: relative;
}
.contatti .contatti__container .contatti__section__form .contatti__form .circle {
    border-radius: 50%;
    background-color: var(--purple);
    position: absolute;
}
.contatti .contatti__container .contatti__section__form .contatti__form .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}
.contatti .contatti__container .contatti__section__form .contatti__form .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}
.contatti .contatti__container .contatti__section__form .contatti__form::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--more-light-purple);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}
.contatti .contatti__container .contatti__section__form .contatti__form form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .title {
    color: var(--white);
    font-family: 'Sirivennela', sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container {
    position: relative;
    margin: 10px 0;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container .input {
    width: 100%;
    outline: none;
    border: 2px solid var(--dark-purple);
    background: none;
    padding: 0.6rem 1.2rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: .3s;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow: hidden;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: .5s;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container.textarea label {
    top: 1rem;
    transform: translateY(0);
}
.contatti .contatti__container .contatti__section__form .contatti__form form .bottone__submit {
    padding: 0.6rem 1.3rem;
    color: var(--dark-color);
    background-color: var(--light-green);
    border: 2px solid var(--green);
    border-radius: 30px;
    font-size: .95rem;
    line-height: 1;
    cursor: pointer;
    transition: .5s ease;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .bottone__submit:hover {
    background-color: transparent;
    border-color: var(--light-green);
    color: var(--white);
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: .8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container span::before,
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container span::after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: .3s;
    height: 5px;
    background-color: var(--more-light-purple);
    top: 50%;
    transform: translateY(-50%);
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container span::before {
    left: 50%;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container span::after {
    right: 50%;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: .8rem;
}
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container.focus span::before,
.contatti .contatti__container .contatti__section__form .contatti__form form .input__container.focus span::after {
    width: 50%;
    opacity: 1;
}
.contatti .contatti__container .contatti__section__form .contatti__info {
    padding: 2.3rem 2.2rem;
    position: relative;
}
.contatti .contatti__container .contatti__section__form .contatti__info .title {
    font-family: 'Sirivennela', sans-serif;
    color: var(--dark-purple);
    font-size: 35px;
}
.contatti .contatti__container .contatti__section__form .contatti__info .text {
    color: var(--dark-color);
    margin: 1.5rem 0 2rem 0;
}
.contatti .contatti__container .contatti__section__form .contatti__info .info .information {
    display: flex;
    color: var(--dark-color);
    margin: 0.7rem 0;
    align-items: center;
    font-size: .95rem;
}
.contatti .contatti__container .contatti__section__form .contatti__info .info .information p span {
    font-family: 'Sirivennela', sans-serif;
    color: var(--purple);
    font-size: 28px;
    margin-right: 3px;
}
.contatti .contatti__container .contatti__section__form .contatti__info .info .information .icon {
    font-size: 30px;
    color: var(--dark-purple);
    margin-right: 0.7rem;
}
.contatti .contatti__container .contatti__section__form .contatti__info .social__media {
    padding: 2rem 0 0 0;
}
.contatti .contatti__container .contatti__section__form .contatti__info .social__media p {
    color: var(--dark-color);
}
.contatti .contatti__container .contatti__section__form .contatti__info .social__media .social__icons {
    display: flex;
    margin-top: 0.5rem;
}
.contatti .contatti__container .contatti__section__form .contatti__info .social__media .social__icons a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--purple);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: .3s;
}
.contatti .contatti__container .contatti__section__form .contatti__info .social__media .social__icons a:hover {
    transform: scale(1.05);
}
.contatti .contatti__container .contatti__section__form .contatti__info::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--more-light-purple);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}
.contatti .contatti__container .big__circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--more-light-purple), var(--dark-purple));
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}
.contatti .contatti__container .big__circle::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: var(--white);
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

/* PAGINA PRODOTTI */
.prodotti__pagina {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
    color: var(--dark-purple);
}
.prodotti__pagina h2 span {
    font-family: 'Sirivennela', sans-serif;
    font-size: 38px;
    color: var(--purple);
}
.prodotti__pagina .prod__pag__container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}
.prodotti__pagina .prodotto {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 2px solid var(--green);
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px var(--light-grey);
    margin: 15px 0;
    position: relative;
    transition: .5s ease;
}
.prodotti__pagina .prodotto:hover {
    scale: 1.03;
}
.prodotti__pagina .prodotto img {
    width: 100%;
    border-radius: 20px;
}
.prodotti__pagina .prodotto .descrizione {
    text-align: start;
    padding: 10px 0;
}
.prodotti__pagina .prodotto .descrizione span {
    color: var(--dark-grey);
    font-size: 12px;
}
.prodotti__pagina .prodotto .descrizione h5 {
    padding-top: 7px;
    color: var(--dark-color);
    font-size: 14px;
}
.prodotti__pagina .prodotto .descrizione h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-purple);
}
.prodotti__pagina .prodotto .scrivimi__btn {
    padding: 10px 15px;
    border-radius: 30px;
    background-color: var(--light-green);
    border: 2px solid var(--green);
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: .5s ease;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
.prodotti__pagina .prodotto .scrivimi__btn:hover {
    color: var(--light-grey);
    background-color: transparent;
    border-color: var(--light-green);
}

/* FOOTER */
footer {
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, var(--purple), var(--dark-purple));
    color: var(--white);
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}
footer .row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
footer .row .col {
    flex-basis: 33%;
    padding: 10px;
}
footer .row .col .logo {
    width: 80px;
    margin-bottom: 30px;
}
.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email__id {
    width: fit-content;
    border-bottom: 2px solid var(--white);
    margin: 20px 0;
}
footer .row .col ul li {
    list-style: none;
    margin-bottom: 12px;
}
footer .row .col ul li a {
    text-decoration: none;
    color: var(--white);
}
footer hr {
    width: 90%;
    border: 0;
    border-bottom: 2px solid var(--white);
    margin: 20px auto;
}
footer .copyright {
    text-align: center;
}
footer .underline {
    width: 100%;
    height: 5px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
footer .underline span {
    width: 15px;
    height: 100%;
    background-color: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

/* MEDIA QUERY */
@media screen and (max-width: 1055px) {
    /* HEADER */
    header nav .nav__logo a {
        font-size: 25px;
    }
    header nav #menu {
        display: none;
    }
    header nav #menu {
        background-color: var(--dark-grey);
        width: 100%;
        position: absolute;
        top: 80px;
        right: 0;
        text-align: center;
        height: auto;
        box-shadow: 0 5px 10px var(--dark-grey);
    }
    header nav #menu li {
        display: block;
        margin: 10px 0;
    }
    header nav .nav__links li a {
        color: var(--white);
    }
    header nav .nav__links li a:hover {
        color: var(--dark-color);
    }
    header nav .nav__links li a::after {
        background-color: var(--white);
        transition: width .5s ease;
    }
    header nav .nav__links li a:hover::after {
        width: 100%;
    }
    header nav .nav__button .whatsapp__btn {
        display: none;
    }
    header nav .nav__button i {
        display: block;
    }
    header nav .nav__button #closeIcon {
        display: none;
    }

    /* HOME */
    .home .home__container {
        width: 80%;
        margin: 0 auto;
    }

    /* PRODOTTI (HOME PAGE) */
    .prodotti .prodotti__text::after,
    .prodotti .prodotti__text::before {
        width: 355px;
    }
    .prodotti .prodotti__container {
        justify-content: center;
    }
    
    /* SERVIZI */
    .servizi .servizi__text::after,
    .servizi .servizi__text::before {
        width: 335px;
    }
    .servizi .servizi__container {
        width: 90%;
        margin: 40px auto;
        justify-content: center;
    }

    /* COME ORDINARE */
    .how__order .how__order__section__text::after,
    .how__order .how__order__section__text::before {
        width: 220px;
    }

    /* CHI SONO */
    .about .about__text__section::after,
    .about .about__text__section::before {
        width: 280px;
    }

    /* DOVE TROVARMI */
    .where .where__section__text::after,
    .where .where__section__text::before {
        width: 260px;
    }

    /* CONTATTI */
    .contatti .contatti__section__text::after,
    .contatti .contatti__section__text::before {
        width: 320px;
    }
}

@media screen and (max-width: 910px) {
    /* HOME */
    .home .home__container {
        flex-direction: column;
        padding-top: 110px;
    }
    .home .home__container .home__images {
        margin-top: -25px;
    }
    .home .home__container .home__images .foto1 {
        width: 45%;
        transform: translateX(50px) rotate(-3deg);
    }
    .home .home__container .home__images .foto2 {
        width: 50%;
        transform: translateX(-60px) translateY(-20px) rotate(3deg);
    }

    /* PRODOTTI (HOME PAGE) */
    .prodotti .prodotti__text::after,
    .prodotti .prodotti__text::before {
        width: 280px;
    }
    .prodotti .prodotti__container {
        margin: 20px auto;
        justify-content: center;
        grid-template-areas: 
        "box-1 box-2 box-3 box-3"
        "box-1 box-4 box-4 box-5"
        "box-6 box-7 box-7 box-8"
        "box-9 box-9 box-10 box-10";
    }

    /* SERVIZI */
    .servizi .servizi__text::after,
    .servizi .servizi__text::before {
        width: 280px;
    }
    .servizi .servizi__container {
        width: 80%;
        margin: 40px auto;
        justify-content: center;
    }

    /* COME ORDINARE */
    .how__order .how__order__section__text::after,
    .how__order .how__order__section__text::before {
        width: 150px;
    }
    .how__order .how__order__container {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* CHI SONO */
    .about .about__text__section::after,
    .about .about__text__section::before {
        width: 210px;
    }

    /* DOVE TROVARMI */
    .where .where__section__text::after,
    .where .where__section__text::before {
        width: 260px;
    }

    /* CONTATTI */
    .contatti .contatti__section__text::after,
    .contatti .contatti__section__text::before {
        width: 230px;
    }
}

@media screen and (max-width: 850px) {
    .contatti__section__form {
        grid-template-columns: 1fr;
    }
    .contatti__info::before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(.95);
    }
    .contatti__form::before {
        top: -13px;
        left: initial;
        right: 70px;
    }
    .big__circle {
        bottom: 75%;
        transform: scale(.9) translate(-40%, 30%);
        right: 50%;
    }
    .text {
        margin: 1rem 0 1.5rem 0;
    }
    .social__media {
        padding: 1.5rem 0 0 0;
    }
}

@media screen and (max-width: 810px) {
    /* HOME */
    .home .home__container .home__images .foto1 {
        width: 40%;
        transform: translateX(50px) rotate(-3deg);
    }
    .home .home__container .home__images .foto2 {
        width: 50%;
        transform: translateX(-60px) translateY(-20px) rotate(3deg);
    }

    /* PRODOTTI (HOME PAGE) */
    .prodotti {
        padding-top: 20px;
    }
    .prodotti .prodotti__text::after,
    .prodotti .prodotti__text::before {
        width: 230px;
    }
    .prodotti .prodotti__container {
        margin: -20px auto;
        justify-content: center;
        grid-template-areas: 
        "box-1 box-2 box-2 box-3"
        "box-1 box-5 box-6 box-6"
        "box-4 box-7 box-8 box-9"
        "box-4 box-9 box-10 box-10";
        scale: .85;
    }
    .prodotti .prodotti__button {
        margin-top: -40px;
    }

    /* SERVIZI */
    .servizi {
        padding-top: 20px;
    }
    .servizi .servizi__text::after,
    .servizi .servizi__text::before {
        width: 230px;
    }
    .servizi .servizi__container {
        margin: -20px auto;
        justify-content: center;
        grid-template-areas: 
        "box-1 box-1 box-2 box-2"
        "box-3 box-3 box-4 box-4";
        scale: .85;
    }
    .servizi .servizi__container .servizi__box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* COME ORDINARE */
    .how__order .how__order__section__text::after,
    .how__order .how__order__section__text::before {
        width: 100px;
    }
    .how__order .how__order__container {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* CHI SONO */
    .about .about__text__section::after,
    .about .about__text__section::before {
        width: 160px;
    }
    .about .about__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .about .about__container .about__image {
        display: flex;
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }
    .about .about__container .about__image img {
        margin: auto;
        width: 280px;
        height: 280px;
        object-fit: cover;
    }
    .about .about__container .about__text {
        width: 700px;
        margin: auto;
    }
    

    /* DOVE TROVARMI */
    .where .where__section__text::after,
    .where .where__section__text::before {
        width: 140px;
    }
    .where .where__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .where .where__container .where__text {
        margin: auto;

    }
    .where .where__container .where__image {
        width: 700px;
        height: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .where .where__container .where__image img {
        width: 640px;
        height: 640px;
    }

    /* CONTATTI */
    .contatti .contatti__section__text::after,
    .contatti .contatti__section__text::before {
        width: 200px;
    }
}

@media screen and (max-width: 710px) {
    /* HOME */
    .home .home__container .home__images {
        width: 70%;
    }
    .home .home__container .home__images .foto1 {
        width: 60%;
        transform: translateY(20px) rotate(-3deg);
    }
    .home .home__container .home__images .foto2 {
        width: 70%;
        transform: translateY(-30px) rotate(2deg);
    }

    /* PRODOTTI (HOME PAGE) */
    .prodotti {
        padding-top: 30px;
    }
    .prodotti .prodotti__text::after,
    .prodotti .prodotti__text::before {
        width: 180px;
    }
    .prodotti .prodotti__container {
        margin: -40px auto;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(3, 200px);
        grid-template-rows: repeat(5, 200px);
        grid-template-areas: 
        "box-1 box-2 box-3"
        "box-1 box-4 box-4"
        "box-5 box-5 box-6"
        "box-7 box-8 box-8"
        "box-9 box-9 box-10";
    }
    .prodotti .prodotti__button {
        margin-top: -40px;
    }

    /* SERVIZI */
    .servizi {
        padding-top: 40px;
    }
    .servizi .servizi__text::after,
    .servizi .servizi__text::before {
        width: 180px;
    }
    .servizi .servizi__container {
        margin-top: -30px;
        justify-content: center;
        grid-template-columns: repeat(2, 200px);
        grid-template-areas: 
        "box-1 box-1"
        "box-2 box-2"
        "box-3 box-3"
        "box-4 box-4";
    }
    .servizi .servizi__button {
        margin-top: -60px;
    }

    /* COME ORDINARE */
    .how__order .how__order__section__text::after,
    .how__order .how__order__section__text::before {
        width: 60px;
    }

    /* CHI SONO */
    .about .about__text__section::after,
    .about .about__text__section::before {
        width: 110px;
    }
    .about .about__container .about__text {
        width: 500px;
    }

    /* DOVE TROVARMI */
    .where .where__section__text::after,
    .where .where__section__text::before {
        width: 95px;
    }
    .where .where__container .where__text {
        width: 600px;
    }
    .where .where__container .where__image {
        width: 600px;
        height: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .where .where__container .where__image img {
        width: 550px;
        height: 550px;
    }

    /* FOOTER */
    footer {
        bottom: unset;
    }
    footer .row .col {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 610px) {
    /* HOME */
    .home .home__container .home__images {
        width: 50%;
    }
    .home .home__container .home__images .foto1 {
        width: 80%;
        transform: translateX(-20px) translateY(20px) rotate(-3deg);
    }
    .home .home__container .home__images .foto2 {
        width: 90%;
        transform: translateX(10px) translateY(-30px) rotate(2deg);
    }

    /* PRODOTTI (HOME PAGE) */
    .prodotti .prodotti__text::after,
    .prodotti .prodotti__text::before {
        width: 130px;
    }
    .prodotti .prodotti__container {
        margin: -40px auto;
        justify-content: center;
        grid-template-columns: repeat(3, 200px);
        grid-template-rows: repeat(3, 200px);
        grid-template-areas: 
        "box-1 box-2 box-3"
        "box-1 box-4 box-5"
        "box-4 box-4 box-5"
        "box-6 box-7 box-8"
        "box-9 box-7 box-10";
    }

    /* SERVIZI */
    .servizi .servizi__text::after,
    .servizi .servizi__text::before {
        width: 130px;
    }
    .servizi .servizi__container {
        margin: -40px auto;
        justify-content: center;
        grid-template-columns: repeat(2, 200px);
        grid-template-areas: 
        "box-1 box-1"
        "box-2 box-2"
        "box-3 box-3"
        "box-4 box-4";
    }

    /* COME ORDINARE */
    .how__order .how__order__section__text::after,
    .how__order .how__order__section__text::before {
        width: 20px;
    }

    /* CHI SONO */
    .about .about__text__section::after,
    .about .about__text__section::before {
        width: 60px;
    }

    /* DOVE TROVARMI */
    .where .where__section__text::after,
    .where .where__section__text::before {
        width: 40px;
    }
    .where .where__container .where__text {
        width: 450px;
    }

    /* CONTATTI */
    .contatti .contatti__section__text::after,
    .contatti .contatti__section__text::before {
        width: 100px;
    }
}

@media screen and (max-width: 480px) {
    /* HOME */
    .home .home__container .home__images {
        width: 70%;
    }
    .home .home__container .home__images .foto1 {
        width: 100%;
        transform: translateX(-20px) rotate(-3deg);
    }
    .home .home__container .home__images .foto2 {
        width: 110%;
        transform: translateX(10px) translateY(-30px) rotate(2deg);
    }

    /* PRODOTTI (HOME PAGE) */
    .prodotti .prodotti__text::after,
    .prodotti .prodotti__text::before {
        width: 20px;
    }
    .prodotti .prodotti__container {
        margin: -180px auto;
        justify-content: center;
        grid-template-columns: 200px;
        grid-template-rows: 200px;
        grid-template-areas: 
        "box-1"
        "box-2"
        "box-2"
        "box-3"
        "box-4"
        "box-5"
        "box-6"
        "box-6"
        "box-7"
        "box-8"
        "box-8"
        "box-9"
        "box-10"
        "box-10";
    }

    /* SERVIZI */
    .servizi .servizi__text::after,
    .servizi .servizi__text::before {
        width: 20px;
    }
    .servizi .servizi__container {
        margin: -70px auto;
        justify-content: center;
        grid-template-columns: 200px;
        grid-template-areas: 
        "box-1"
        "box-1"
        "box-2"
        "box-2"
        "box-3"
        "box-3"
        "box-4"
        "box-4";
    }
    .servizi .servizi__container .servizi__box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .servizi .servizi__container .servizi__box h3 {
        font-size: 30px;
    }
    .servizi .servizi__container .servizi__box p {
        font-size: 16px;
    }

    /* COME ORDINARE */
    .how__order .how__order__section__text h2 {
        margin: 0 20px;
    }

    /* CHI SONO */
    .about .about__text__section::after,
    .about .about__text__section::before {
        display: none;
    }
    .about .about__container .about__image img {
        transform: scale(0.8);
    }
    .about .about__container .about__text {
        scale: .75;
        transform: translateX(-55px) translateY(-100px);
    }

    /* DOVE TROVARMI */
    .where {
        transform: translateY(-120px);
    }
    .where .where__container .where__text {
        scale: .75;
        transform: translateX(-25px);
    }
    .where .where__container .where__image {
        width: 320px;
        height: 320px;
    }
    .where .where__container .where__image img {
        width: 310px;
        height: 310px;
    }

    /* CONTATTI */
    .contatti {
        transform: translateY(-100px);
    }
    .contatti .contatti__section__text::after,
    .contatti .contatti__section__text::before {
        width: 15px;
    }
    .contatti__container {
        padding: 1.5rem;
    }
    .contatti__info::before {
        display: none;
    }
    .big__circle {
        display: none;
    }
    .contatti__form form,
    .contatti__info {
        padding: 1.7rem 1.6rem;
    }
    .text, .information, .social__media p {
        font-size: .8rem;
    }
    .title {
        font-size: 1.15rem;
    }
    .social__icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .icon {
        width: 23px;
    }
    .input {
        padding: .45rem 1.2rem;
    }
    .bottone__submit {
        padding: .45rem 1.2rem;
    }

    /* PRODOTTI PAGE */
    .prod__pag__container .prodotto {
        margin-left: 50px;
    }
}