@charset "UTF-8";

@font-face {
    font-family: "Mada";
    src: local("Mada"), url("../fonts/madaVariable.woff2") format("woff2");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: local("Outfit"), url("../fonts/outfitVariable.woff2") format("woff2"); 
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: local("Playfair Display"), url("../fonts/playfairDisplayVariable.woff2") format("woff2"); 
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --black-colour: rgb(16, 16, 16);
    --white-colour: #fff;
    --pink-colour: #eacfc6;
    --grey-colour: #423b3b;
    --light-grey-colour: #E9E9E9;
    --gold-colour: rgb(192, 167, 90);
    --gold-border-colour: rgb(166, 124, 82);
    --shadow-style: 0px 100px 80px 0px rgba(0, 0, 0, 0.07),
                    0px 41.78px 33.42px 0px rgba(0, 0, 0, .0503), 
                    0px 22.34px 17.87px 0px rgba(0, 0, 0, .0417),
                    0px 12.52px 10.02px 0px rgba(0, 0, 0, .035),
                    0px 6.65px 5.32px 0px rgba(0, 0, 0, .0283),
                    0px 2.77px 2.21px 0px rgba(0, 0, 0, .0197);
    --icon-dimensions: 107px;
    --gold-gradient: linear-gradient(115deg, 
                    rgba(166, 124, 82, 1) 0%,
                    rgba(191, 167, 90, 1) 30%, 
                    rgba(201, 168, 106, 1) 45%,
                    rgba(225, 193, 110, 1) 55%, 
                    rgba(212, 175, 55, 1) 70%,
                    rgba(166, 124, 82, 1) 100%); 
    /* --gold-gradient: linear-gradient(95deg, 
                    rgba(183, 110, 121, 1) 0%,
                    rgba(218, 165, 32, 1) 40%,
                    rgba(255, 215, 0, 1) 45%, 
                    rgba(218, 165, 32, 1) 55%, 
                    rgba(255, 215, 0, 1) 70%, 
                    rgba(183, 110, 121, 1) 100%);  */
    
}

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

html {
    overflow-x: hidden;
}

body {
    background-color: var(--white-colour);
}

/*FLEX ROWS*/
.flex-align-end {
    display: flex;
    align-items: flex-end;
}

.flex-row-just-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-row-just-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/*FLEX COLUMNS*/
.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-col-align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-col-just-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*MADA*/
.mada {
    font-family: "Mada", sans-serif;
    color: var(--black-colour);
    text-transform: uppercase;
    line-height: 142%;
}

.cta-btn,
.cta-2 {
    padding: 15px 30px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-style);
    cursor: pointer;
    transition: all .6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cta-btn {
    font-size: 1.15em; /*20px*/
}

.pstyle {
    font-weight: 400;
    font-size: 1em; /*16px*/
}

.pcards {
    font-size: .75em; /*circa 13px*/
    color:rgba(16, 16, 16, 0.80);
    line-height: 138%;
}

.packet-name,
.client-name {
    font-weight: 700;
    font-size: 1.25em; /*20px*/
} 

/*PLAYFAIR DISPLAY*/
.playdisp {
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
    line-height: 94%;
}

h1 {
    text-align: left;
    font-weight: 600;
    letter-spacing: -0.04em;
    font-size: 5.5em; /* 92px*/
    color: var(--white-colour);
    text-shadow: var(--shadow-style);
    overflow: hidden;
} 

.h2 {
    text-align: left;
    font-weight: 500;
    font-size: 4.7em; /*78px = 4.875em*/
    letter-spacing: -0.04em;
    color: var(--black-colour);
}

.h3,
.numero-ptelenco {
    font-weight: 500;
    font-size: 3.625em; /*58px*/
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--black-colour);
}

.h4 {
    font-weight: 500;
    font-size: 2.6875em; /*43px*/
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--black-colour);
}

/*OUTFIT*/
.h3-var {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 3.5em; /*56px*/
    line-height: 100%;
    text-align: center;
    color: var(--black-colour);
    text-transform: capitalize;
}

.h6,
.tagfooter {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.h6 {
    font-size: 1em; /*16px*/
    letter-spacing: 10%;
    color: rgba(66, 59, 59, 0.75);
}

/*TAGLINES*/
.tagline,
.pcontatto,
.parte-dx-footer {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    line-height: 100%;
}

.tagline {
    font-size: .8125em; /*13px*/
    text-transform: uppercase;
    color: rgba(16, 16, 16, 0.62);
}

.pcontatto {
    font-size: 1em;
    letter-spacing: 0.04em;
    color: rgba(16, 16, 16, 0.85);
}

.tagline-packet-client,
.link {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: .8125em; /*13px*/
    line-height: 100%;
    text-transform: uppercase;
    color: rgba(16, 16, 16, 0.65);
} 

/*HERO SECTION GRID*/
#hero {
    height: 100vh;
    width: 100vw;
    background: url(../image/hero.webp) no-repeat;
    background-size: cover;
    background-position: center; 
    display: grid;
    grid-template-columns: 8.25% 64.362% auto;
    grid-template-rows: auto auto;
    grid-template-areas:
                        "iconlogo content buttons"
                        "icon cta scroll";
    padding: 38px 38px 22px 38px;
    align-content: space-between;
    justify-items: stretch;
    align-items: start;
}

#div_logo {
    grid-area: iconlogo;
}

.logo {
    background: #A67C52;
    background: -webkit-linear-gradient(var(--gold-gradient));
    background: -moz-linear-gradient(var(--gold-gradient));
    background: var(--gold-gradient);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#A67C52", endColorstr="#A67C52", GradientType=0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -0.04em;
}

#hero-content {
    grid-area: content;
    justify-self: end;
}

#div-buttons-hero {
    grid-area: buttons;
    justify-self: end;
    display: flex;
    gap: 16px;
    color: var(--white-colour);
}

#parte-sx-bottom {
    grid-area: icon;
    align-self: end;
}

#cta-center {
    grid-area: cta;
    align-self: end;
}

#scroll-down {
    grid-area: scroll;
    justify-self: end;
    align-self: end;
}

/*HERO SECTION CONTENUTO TOP*/
.logo img{
    width: 40px;
    height: 40px;
}

#hero-content {
    gap: 26px;
}

.paragrafi-hero {
    width: 100%;
    justify-content: flex-end;
}

#text-large {
    color: var(--white-colour);
    font-weight: 500;
    flex-basis: 63%;
    text-shadow:  1px 1px 2px rgba(16, 16, 16, 0.2);
    letter-spacing: 0.03ch; 
    word-spacing: 0.5ch;
    line-height: 138%;
    font-size: 0.95em; /*circa 16px*/
    text-align: justify;
}

#text-small {
    font-size: .75em; /* 12px*/
}

#text-small span {
    font-weight: 600;
}

/*BUTTONS*/
.circle-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: var(--shadow-style);
    transition: all .6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.circle-btn:hover,
.cta-btn:hover,
.cta-2:hover {
    transform: scale(1.1);
    background: var(--gold-gradient);
    color: var(--black-colour);
    outline: none;
    transition: all .4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.circle-btn:focus,
.cta-btn:focus,
.cta-2:focus {
    outline: 3px solid var(--gold-border-colour);
    opacity: 0.85;
}

.circle-btn:hover svg {
    fill: var(--black-colour);
}

.circle-btn:active,
.cta-btn:active,
.cta-2:active {
    opacity: 0.75;
    outline: none;
    background: var(--light-grey-colour);
}

.btn-text {
    font-size: 11px;
    text-transform: uppercase;
    font-family: "Mada", sans-serif;
    font-weight: 500;
    line-height: 142%;
}

.prenota-btn {
    background-color: var(--grey-colour);
    color: var(--white-colour);
}

.contatti-btn {
    background-color: var(--pink-colour);
    color: var(--black-colour);
}

.circle-btn svg {
    opacity: 0.85;
    transition: all .6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

/*HERO CONTENUTO BOTTOM*/
.mini-icon {
    width: 16px;
    height: 16px;
    opacity: 0.85;
}

.cta-btn-hero {
    background-color: var(--white-colour);
}

#scroll-down {
    gap: 10px;
    opacity: 0.82;
    position: fixed;
    cursor: pointer;
    z-index: 6;
    transition: all .6s cubic-bezier(0.39, 0.575, 0.565, 1);
}

#scroll-down:hover,
#scroll-down:focus {
    opacity: 0.5;
}

#scroll-down:active {
    opacity: 0.25;
}

#scroll-down span {
    font-size: .8125em; /*13px*/
    font-weight: 600;
}

#scroll-down svg {
    margin-bottom: 8%; 
}

/*ABOUT ME SECTION*/
#about-me {
    width: 100vw;
    height: fit-content;
    display: grid;
    grid-template-columns: 16.181% auto 24%;
    grid-template-rows: auto;
    grid-template-areas:
                        "partesx center partedx";
    padding: 91px 38px 91px 145px;
    gap: 30px;
    background: var(--light-grey-colour);
    align-items: stretch;
}

#parte-sx-aboutme,
#parte-sx-benefits {
    grid-area: partesx;
}

.h2-aboutme,
.h2-benefits {
    grid-area: center;
    align-self: start;
}

#parte-dx-aboutme {
    line-height: 132%;
    grid-area: partedx;
    align-self: stretch; 
}

.bottom-text {
    font-weight: 400;
    font-size: 1em;
}

.bottom-text span {
    font-weight: 600;
}

#parte-dx-aboutme {
    font-size: 0.95em; /*circa 16px*/
    max-width: 85ch;
}

#parte-dx-aboutme span,
.titolo-ptelenco,
.testo-ptelenco span  {
    font-weight: 700;
}

/*FEATURES e TESTIMONIALS*/
#features,
#testimonials {
    gap: 2.1875em; /* 35px */
}

#features {
    padding: 4.5% 15%;
}

#features-title,
#testimonials-title {
    gap: 1em;
}

#p-features {
    text-align: center;
}

.container {
    width: 100%;
    gap: 4.5%;
}

.servizio {
    width: fit-content;
    height: 36.25em; /* 500px */
    gap: 12px;
}

.servizio img {
    width: 100%;
    height: 100%;
}

#p-servizio-uno,
#p-servizio-due,
#p-servizio-tre {
    height: inherit;
}

.ul-servizio {
    margin-left: 8%;
}

.cta-servizio {
    background-color: var(--pink-colour);
    font-size: 1em !important;
}

/*BENEFITS GRID*/
#benefits {
    width: 100vw;
    height: fit-content;
    display: grid;
    grid-template-columns: 16.181% auto 27%;
    grid-template-rows: auto;
    grid-template-areas:
                        "partesx center partedx";
    padding: 91px 38px 91px 145px;
    gap: 30px;
    background: var(--light-grey-colour);
    align-items: stretch;
}

#parte-dx-benefits {
    grid-area: partedx;
    align-self: stretch;
}

/*BENEFITS*/
#benefits {
    position: relative;
}

.punto-elenco {
    gap: 1em;
    z-index: 2;
    justify-content: flex-end;
}

.paragrafo-ptelenco {
    gap: 4px;
}

.testo-ptelenco {
    font-size: 0.8em;
    min-width: 45ch;
    max-width: 85ch; /* .8125em;  */
    color: rgba(16, 16, 16, 0.75);
    line-height: 132%;
}

.pt-3,
.pt-4 {
    padding-bottom: 4px;
}

/* ICONA */
.icona-bcc-benefits {
    position: absolute;
    display: flex;
    align-items: center;
}

.icona-bcc-benefits img {
    width: 139px;
    height: 139px;
    opacity: 0.06;
    pointer-events: none; 
    user-select: none;
}

.icona-uno {
    left: 68.5%;
    top: 9.5%;
    transform: rotate(-51.49deg);
}

.icona-due {
    left: 49.10%;
    bottom: 6%;
    transform: rotate(51.49deg);
}

/*TESTIMONIALS*/
#testimonials {
    gap: 100px; 
    padding: 4.5% 12%;
}

.container-testimonials {
    gap: 3.75%;
}

.card {
    width: 345px;
    justify-content: center;
    gap: 12px;
    text-align: center;
    background: #E9E9E9;
    padding: 52px 30px;
    position: relative;
}

.card span {
    color: var(--black-colour);
}

.p-testimonials {
    color: var(--black-colour);
    font-size: .8em; /*circa 13px*/
}

.div-icon-clients {
    position: absolute;
    top: -56px;
    left: -18px;
    aspect-ratio: 1/1;
    height: var(--icon-dimensions);
    border-radius: 50%;
    outline: solid 3px var(--grey-colour);
    background-color: var(--grey-colour);
    box-shadow: var(--shadow-style);
}

.img-icon-clients {
    height: var(--icon-dimensions);
    aspect-ratio: 1/1;
    mix-blend-mode: luminosity;
}

.div-icon-clients a {
    display: none;
}

/*CTA SECTION*/
#cta-section {
    width: 100%;
    height: 82vh;
    background: url(../image/cta-section.webp) no-repeat;
    background-size: cover;
    background-position: center; 
    padding: 38px 218px 78px 145px;
    position: relative;
    /* gap: 128px; */
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
}

#mini-icona-2 {
    position: absolute;
    top: 38px;
    left: 38px;
}

.tagline-cta {
    color: var(--black-colour);
    font-weight: 600;
}

.psocials {
    color: var(--black-colour);
    font-size: 0.70em;
}

.cta-content {
    gap: 123px;
    width: 100%;
    align-items: center;
}

.container-sx-cta {
    gap: 30px;
    width: 26.73%;
}

.elenco-socials {
    gap: 14px;
}

.elenco-socials a {
    text-decoration: none;
}

.link {
    height: 2.625em;
    align-items: center;
    border-bottom: 2px solid var(--black-colour);
    color: var(--black-colour);
    transition: all .25s cubic-bezier(0.075, 0.82, 0.165, 1);
    text-rendering: optimizeLegibility; 
    will-change: transform;
}

.oblique-arrow {
    padding: 2px;    
}

.oblique-arrow svg {
    transform: rotate(-135deg);
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.link:hover,
.link:focus {
    transform: scale(1.1);
    background-color: var(--pink-colour);
    padding: 2% 4% 0;
    outline: none;
}

.link:hover svg,
.link:focus svg {
    transform: rotate(-45deg);
}

.link:active {
    background-color: var(--white-colour);
}

.frame {    
    padding: 42px 47px;
    border: solid 2px;
    border-image-source: linear-gradient(124.865deg, rgba(255, 255, 255, 50%) 0%, rgba(153, 153, 153, 0%) 100%); 
    border-image-slice: 1;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
    gap: 25px;
    box-shadow: var(--shadow-style);
}

.frame .h6 {
    margin-bottom: 15px;
}

.cta-2 {
    background-color: var(--pink-colour);
    font-size: 0.95em; /*20px*/
}

.cta-2-responsive {
    display: none;
}

/*FOOTER*/
footer {
    width: 100%;
    background: var(--light-grey-colour);
    z-index: 15;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 51px 38px;
}

#div_logo_footer {
    margin-top: -1.5%;
}

footer a,
#div_logo a {
    text-decoration: none;
    color: inherit!important;
}

.parte-sx-footer {
    align-items: flex-start;
    width: 45%;
}

.infofooter_content {
    gap: 20px;
    color: var(--black-colour);
    font-size: 0.7em; /*16px*/
}

.parte-dx-footer {
    align-self: flex-end;
    gap: 20px;
    font-size: .8125em; /*13px*/
}

.parte-dx-footer span {
    color: rgba(16, 16, 16, 0.75);
    font-size: 0.66em;
    letter-spacing: 0.02em;
}

a .pcontatto:hover,
a .pcontatto:focus {
    color: var(--gold-colour);
}

a .pcontatto:active {
    color: var(--white-colour);
}

/* MODAL */
#calendly-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    align-items: center;
    justify-content: center;
    z-index: 100;
}

#calendly-modal .modal-content {
    position: relative;  
    background: var(--light-grey-colour);
    padding: .25rem;
    width: 80vw;
    max-width: 500px;
    min-height: 80vh;
    box-shadow: var(--shadow-style);
}

#close-calendly {
    position: absolute;
    top: .5rem;
    right: 1.2rem;
    background: var(--pink-colour);
    color: var(--black-colour);
    box-shadow: var(--shadow-style);
    border: none;
    font-size: 3rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 0.30rem 1.3rem 0.4rem;
    z-index: 120;
}