/*
Theme Name: The Project
Theme URI: http://underscores.me/
Author: The Rope S.r.l
Author URI: https://www.therope.it
Description: Theme for The Project
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: the-project
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready, right-sidebar, custom-background, e-commerce, theme-options, sticky-post, full-width-template
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Woocommerce
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --letter-spacing: 0.5px;
  --line-height: 1.3;
  --color-line: #ddd;
  --color-line-dark-theme: #404040;
  --color-white: #FFFFFF;
  --color-black: #000;
  --color-light-grey: #F5F5F5;
  --color-grey: #545454;
  --color-dark-grey: #151515;
  --color-highlight: #CC0000;
  --color-green: #00FF32;
  --color-raspberry: #B01B4F;
  --color-blue: #60AAFF;
  --color-gold: #B5A655;
  --color-text-grey: #BCBCBC;
  --font-size-md: 0.55;
  --font-size-lg: 0.7;
  --font-size-h1: 220px;
  --font-size-h2: 190px;
  --font-size-h3: 80px;
  --font-size-h4: 40px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;
  --font-size-h7: 14px;
  --font-size-h8: 12px;
  --font-size-h1-mobile: 14vw;
  /*85px*/
  --font-size-h2-mobile: 12vw;
  /*75px*/
  --font-size-h3-mobile: 32px;
  --font-size-h4-mobile: 32px;
  --font-size-xxxl: clamp(20px, calc(20px + (14 * ((100vw - 768px) / 632))), 34px);
  --font-size-xxl: clamp(18px, calc(18px + (6 * ((100vw - 768px) / 632))), 24px);
  --font-size-xl: clamp(18px, calc(18px + (2 * ((100vw - 768px) / 632))), 20px);
  --font-size-xs: clamp(14px, calc(14px + (2 * ((100vw - 768px) / 632))), 16px);
  --font-size-p: clamp(14px, calc(14px + (2 * ((100vw - 768px) / 632))), 16px);
  --font-size-xs: clamp(13px, calc(13px + (2 * ((100vw - 768px) / 632))), 14px);
  --font-size-p2: 12px;
  --font-size-label: 10px;
  --font-size-label-3: 14px;
  --font-size-abstract: clamp(20px, calc(20px + (4 * ((100vw - 768px) / 632))), 24px);
  --icon-arrow-up: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23323232'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --icon-arrow-down: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23323232'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --padding: 22px;
  --padding-mobile: 11px;
}

:root body.dark {
  --color-primary: #FFFFFF;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-paragraph);
  font-size: var(--font-size-xs);
  font-weight: 400;
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  color: var(--color-black);
  background-color: #050505;
}

body.dark-theme {
  background-color: #050505;
  color: var(--color-white);
}

body.dark-theme #primary {
  border-bottom: solid 1px var(--color-line-dark-theme);
}

#main {
  min-height: 70vh;
}


.column-main p {
  line-height: 1.5;
  font-size: 18px;
}


.scroll-mobile {
  overflow: auto;
}

.no-scroll {
  overflow: hidden;
}

.dropdown-menu {
  border: none;
}

#content div:not(.gform_body):not(.ginput_container_checkbox)>ul {}

body .gform_wrapper .gform_body .gform_fields .gfield .gchoice {
  position: relative;
}

body .gform_wrapper.gravity-theme .gfield_validation_message {
  background: unset;
  border: none;
  padding: 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

#menu {
  background: var(--color-black);
  color: var(--color-white) !important;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  padding-inline-start: 0;
  min-height: 100vh;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: var(--padding) 3% 3%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

#menu.open::before {
  content: "";
  opacity: 0.7;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-black);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

#menu a,
#menu a:hover {
  color: var(--color-white) !important;
}

.menu-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}

.menu-side-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
}

.menu-side-left.hidden {
  display: none;
}

.menu-side-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
  overflow-y: scroll;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(inc/assets/images/ico_arrow_menu.svg) no-repeat center;
  background-size: 10px;
}

.menu-header {
  width: 100%;
  height: 75px;
  margin: 0 0 var(--padding);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 3% var(--padding) 0;
  position: relative;
}

.menu-header::before {
  content: "";
  display: block;
  width: 94%;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.2;
  position: absolute;
  bottom: 0;
  left: 3%;
}

.menu-header-logo {
  display: block;
  width: 73px;
  height: 73px;
  background: url(inc/assets/images/logo.svg) no-repeat center;
  background-size: contain;
  overflow: hidden;
  text-indent: -99999px;
}

.menu-header-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.btn-search-menu {
  display: block;
  width: 24px;
  height: 24px;
  background: url(inc/assets/images/ico_search.svg) no-repeat center;
  background-size: 20px;
  margin-right: var(--padding);
  overflow: hidden;
  text-indent: -9999px;
}

.btn-close-menu {
  display: block;
  width: 24px;
  height: 24px;
  background: url(inc/assets/images/ico_close.svg) no-repeat center;
  background-size: 20px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
}

.menu-blocco-start {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.menu-blocco-start ul li {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: var(--padding);
}

.menu-blocco-middle {
  width: 100%;
  flex: 1 1 auto;
  align-self: flex-start;
}

.menu-blocco-middle>div {
  padding: var(--padding) var(--padding-mobile);
}

.menu-blocco-end {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.menu-blocco-end ul li {
  font-size: 12px;
  font-weight: 400;
  margin-top: var(--padding-mobile);
}

#menu .menu-blocco-end ul li a,
#menu .menu-blocco-end ul li a:hover {
  color: #bcbcbc !important;
}

.menu-blocco-start>div,
.menu-blocco-end>div {
  flex-grow: 1;
  flex-basis: 175px;
  padding: 0 var(--padding) 0 var(--padding-mobile);
  margin-bottom: 40px;
}

.submenu-menu-list {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style: none;
}

.btn-back-menu {
  height: 73px;
  width: 73px;
  overflow: hidden;
  display: block;
  background: url(inc/assets/images/ico_arrow_left.svg) no-repeat center;
  background-size: 40px;
  text-indent: -999px;
  cursor: pointer;
}

.submenu-menu-title {
  padding: var(--padding) 3%;
}

#menu .submenu-menu-title a,
#menu .submenu-menu-title a:hover {
  display: block;
  text-align: left;
  color: var(--color-green) !important;
  font-family: var(--font-heading-bold);
  background-color: transparent !important;
}

.submenu-menu-list {
  padding: 0 3%;
  width: 100%;
}

.submenu-menu-list li {
  padding: var(--padding) 0;
  margin: 0;
  width: 100%;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.submenu-menu-list li a,
.submenu-menu-list li a:hover {
  margin: 0;
  padding: 0;
  background-color: transparent !important;
}


#menu-primary-submenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

#menu-primary-submenu>li {
  width: 100%;
  padding: var(--padding) 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

#menu-primary-submenu>li>a {
  font-size: var(--font-size-xs);
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
}

#menu.open {
  visibility: visible;
  opacity: 1;
  /* overflow-x: hidden; */
}

.menu-scroll {
  display: flex;
  flex-direction: column;
  height: calc(100% - 150px);
  overflow-y: scroll;
}

/* Personalizza l'intera barra di scorrimento */
.menu-scroll::-webkit-scrollbar {
  width: 2px;
  /* Larghezza della barra di scorrimento */
  height: 2px;
  /* Altezza della barra di scorrimento per scorrimento orizzontale */
}

/* Personalizza il tracciato (la parte dietro la "maniglia" dello scorrimento) */
.menu-scroll::-webkit-scrollbar-track {
  background: var(--color-line-dark-theme);
  /* Colore di sfondo della traccia */
}

/* Personalizza la maniglia dello scorrimento */
.menu-scroll::-webkit-scrollbar-thumb {
  background: var(--color-green);
  /* Colore della barra di scorrimento */
}

/* Opzionale: Cambia l'aspetto della maniglia dello scorrimento quando viene trascinata */
.menu-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-green);
  /* Colore più scuro al passaggio del mouse */
}


#bigmenu {
  width: 100%;
  position: relative;
  z-index: 3;
  overflow-x: hidden;
  padding-top: 130px;
  padding-bottom: 130px;
}

#bigmenu::-webkit-scrollbar {
  width: 0 !important;
}

#bigmenu {
  scrollbar-width: none;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
}

.put-on {
  z-index: 4;
  position: relative;
}

.logo-offset-color {
  margin-top: 0px;
}

#menu-primary .menu-item a:focus {
  outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
  color: inherit;
  text-decoration: none;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: var(--color-black);
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 2.5rem;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
  letter-spacing: var(--letter-spacing);
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  height: 10em !important;
  resize: none;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.overlay-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
  z-index: 1;
}

.default-hero .text-overlay {
  top: auto;
  left: -0.9vw;
  bottom: 3vw;
}

.gradient {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.22);
  transition: background-color 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1);
}

.ln-0 {
  line-height: 0 !important;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
#menu-primary,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
.h8,
.h9,
.h10,
.h11,
#menu-primary a,
#menu-primary .dropdown-toggle-ellipsis {
  font-family: var(--font-heading);
  clear: both;
  margin-bottom: 15px;
  line-height: var(--line-height);
}

.wp-block-heading {
  margin-top: 3rem;
}

#menu-primary,
#menu-header,
#menu-footer {
  margin-bottom: 0;
}

.h1,
.h2 {
  line-height: 0.9;
  letter-spacing: normal;
}

.h3,
.h4,
#menu-primary a,
#menu-primary .dropdown-toggle-ellipsis,
#menu-side a,
#menu-side .dropdown-toggle-ellipsis {
  line-height: 1;
}

.h5 {
  line-height: 1.1;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

p,
#content ul,
#content ol {
  margin-bottom: 15px;
  /*2rem*/
}

.paragraph {
  font-family: var(--font-paragraph) !important;
}

.page-template-default #content a:not(.wp-block-button__link) {
  font-weight: 600;
}

h1.entry-title {
  /* font-size: 1.31rem;
  border-bottom: 1px solid #eaecef; */
}

h2.entry-title {
  /* border-bottom: 1px solid #eaecef; */
}

h3.widget-title {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
.white,
.white * {
  color: var(--color-white);
}

.background-white,
hr.white {
  background-color: var(--color-white);
}

.black,
.black * {
  color: var(--color-black);
}

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

.light-grey,
.light-grey * {
  color: var(--color-light-grey);
}

.background-light-grey,
hr.light-grey {
  background-color: var(--color-light-grey);
}

.grey,
.grey * {
  color: var(--color-grey);
}

.background-grey,
hr.grey {
  background-color: var(--color-grey);
}

.dark-grey,
.dark-grey * {
  color: var(--color-dark-grey);
}

.background-dark-grey,
hr.dark-grey {
  background-color: var(--color-dark-grey);
}

/*--------------------------------------------------------------
# Spaces
--------------------------------------------------------------*/
.content-area section {
  padding-top: calc(4vw - -3rem);
  padding-bottom: calc(4vw - -3rem);
}

#error-page {
  padding-top: calc(8vw - -6rem);
  padding-bottom: calc(8vw - -6rem);
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
img.marquee {
  aspect-ratio: 640 / 906;
  width: 100%;
  object-fit: cover;
}

img.two-columns-location {
  aspect-ratio: 880 / 810;
  width: 100%;
  object-fit: cover;
}

img.two-columns-horizontal {
  aspect-ratio: 880 / 653;
  width: 100%;
  object-fit: cover;
}

img.two-columns-vertical {
  aspect-ratio: 880 / 978;
  width: 100%;
  object-fit: cover;
}

img.two-columns-square {
  aspect-ratio: 880 / 890;
  width: 100%;
  object-fit: cover;
}

img.three-columns-square {
  aspect-ratio: 640 / 753;
  width: 100%;
  object-fit: cover;
}

img.three-columns-horizontal {
  aspect-ratio: 640 / 378;
  width: 100%;
  object-fit: cover;
}

img.three-columns-news {
  aspect-ratio: 640 / 462;
  width: 100%;
  object-fit: cover;
}

img.three-columns-vertical {
  aspect-ratio: 640 / 1014;
  width: 100%;
  object-fit: cover;
}

img.four-columns-horizontal {
  aspect-ratio: 424 / 180;
  width: 100%;
  object-fit: cover;
}

img.four-columns-square {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

img.wide {
  aspect-ratio: 1920 / 614;
  width: 100%;
  object-fit: cover;
}

img.full-hd {
  aspect-ratio: 1920 / 1080;
  width: 100%;
  object-fit: cover;
  max-height: 90vh;
}

img.wide-mobile {
  aspect-ratio: 767 / 655;
  width: 100%;
  object-fit: cover;
}

img.full-mobile {
  aspect-ratio: 767 / 1095;
  width: 100%;
  object-fit: cover;
  max-height: 90vh;
}

img.logo {
  width: 100%;
  max-width: 240px;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
body {
  background: var(--color-white);
  /* Fallback for when there is no custom background color defined. */
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
header#masthead {
  margin-bottom: 0;
  z-index: 10;
  position: fixed;
  width: 100%;
  z-index: 100;
}

header#masthead.active {
  background: var(--color-white);
}

header#masthead .col{
  flex: 0;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}


header#masthead .col.block-right{
  flex: 0 0 0%;
}

.navbar-brand>a {
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.1rem;
  outline: medium none;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
}

.navbar-brand>a:visited,
.navbar-brand>a:hover {
  text-decoration: none;
}

#page-sub-header {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0;
  text-align: center;
  font-size: 1.25rem;
  background-size: cover !important;
}

body:not(.theme-preset-active) #page-sub-header h1 {
  line-height: 1.6;
  font-size: 4rem;
  color: #563e7c;
  margin: 0 0 1rem;
  border: 0;
  padding: 0;
}

#page-sub-header p {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: 300;
}

body:not(.theme-preset-active) #page-sub-header p {
  color: #212529;
}

a.page-scroller {
  color: #333;
  font-size: 2.6rem;
  display: inline-block;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  body:not(.theme-preset-active) #page-sub-header h1 {
    font-size: 3.750rem;
  }

  body:not(.theme-preset-active) #page-sub-header {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  #page-sub-header p {
    max-width: 43rem;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#masthead nav {
  padding-left: 0;
  padding-right: 0;
}

.company-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  transition: max-width 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1);
}

body:not(.no-scroll) header.active .company-logo {
  max-width: 220px;
}

header .mobile-fit {
  padding-top: 2rem;
  padding-bottom: 2rem;
  transition: all 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1);
}

body:not(.no-scroll) header.active .mobile-fit {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.put-one>a {
  position: relative;
}

#logo-header-white {
  position: absolute;
  top: 0;
  left: 0.75rem;
}

/* LIGHT HEADER BAR VERSION */
body:not(.light, .no-scroll) header:not(.active) #logo-header-black,
body:not(.light) header.active #logo-header-white,
body.no-scroll #logo-header-white,
body.light:not(.no-scroll) header:not(.active) #logo-header-white,
body.light:not(.no-scroll) header.active #logo-header-white,
body.light.no-scroll header #logo-header-white {
  opacity: 0;
}

/* DARK HEADER BAR VERSION */
/*
body:not(.light) #logo-header-black,
body.light:not(.no-scroll) header:not(.active) #logo-header-white,
body.light header.active #logo-header-black,
body.light.no-scroll header #logo-header-black {
  opacity: 0;
} */

#masthead .navbar-nav>li.current-menu-item>a {
  color: var(--color-highlight);
}

.navbar-brand {
  height: auto;
}

.navbar-toggle .icon-bar {
  background: var(--color-black) none repeat scroll 0 0;
}

.dropdown-menu .dropdown-toggle::after {
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  border-top: 0.3em solid transparent;
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children {
  position: relative;
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children:hover>.dropdown-menu {
  display: block;
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children:hover>a:after {
  border-left-color: var(--color-white);
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children.pull-left {
  float: none;
}

.dropdown.menu-item-has-children .dropdown.menu-item-has-children.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.dropdown-item {
  line-height: 1.2;
  padding-bottom: 0.313rem;
  padding-top: 0.313rem;
}

.dropdown .open .dropdown-menu {
  display: block;
  left: 12.250em;
  top: 0;
}

.dropdown-menu .dropdown-item {
  white-space: normal;
  background: transparent;
  line-height: 1.6;
}

.dropdown-menu .dropdown-item:hover {
  background: transparent;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-content.card-block {
  padding: 20px;
}

.navigation.post-navigation {
  padding-top: 1.875rem;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  border: 1px solid #ddd;
  border-radius: 0.938rem;
  display: inline-block;
  padding: 0.313rem 0.875rem;
  text-decoration: none;
}

.post-navigation .nav-next a::after {
  content: " \2192";
}

.post-navigation .nav-previous a::before {
  content: "\2190 ";
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 0.313rem;
  line-height: normal;
  padding: 0.938rem 1.438rem 0.875rem;
  text-decoration: none;
  top: 0.313rem;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0.313rem 0 1.25rem 1.25rem;
}

a img.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.alignleft {
  float: left;
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignleft {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignright {
  margin: 0.313rem 0 1.25rem 1.25rem;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  font-size: 0.875rem;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

.widget_search .search-form input[type="submit"] {
  display: none;
}

.nav>li>a:focus,
.nav>li>a:hover {
  background-color: #eee;
  text-decoration: none;
}

.half-rule {
  width: 6rem;
  margin: 2.5rem 0;
}

.widget_categories .nav-link {
  display: inline-block;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
/* body.light #content.site-content {
  padding-top: calc(6vw - -6rem);
  padding-bottom: calc(4vw - -4rem);
} */

body.light.page-template-page-single-service #content.site-content,
body.light.page-template-page-about-us #content.site-content,
body.light.single-post #content.site-content {
  padding-bottom: 0;
}

.sticky .entry-title::before {
  content: '\f08d';
  font-family: "Font Awesome 5 Pro";
  font-size: 1.563rem;
  left: -2.5rem;
  position: absolute;
  top: 0.375rem;
  font-weight: 900;
}

.sticky .entry-title {
  position: relative;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-template-blank-page .entry-content,
.blank-page-with-container .entry-content {
  margin-top: 0;
}

.post.hentry {
  margin-bottom: 4rem;
}

.posted-on,
.byline,
.comments-link {
  color: #9a9a9a;
}

.entry-title>a {
  color: inherit;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comment-body .pull-left {
  padding-right: 0.625rem;
}

.comment-list .comment {
  display: block;
}

.comment-list {
  padding-left: 0;
}

.comments-title {
  font-size: 1.125rem;
}

.comment-list .pingback {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.563rem 0;
}

.comment-list .pingback:first-child {
  border: medium none;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  background: #f1f1f1 none repeat scroll 0 0;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 0.313rem 0.313rem 0;
  text-align: center;
}

.wp-caption img[class*="wp-image-"] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text {
  font-size: 0.688rem;
  line-height: 1.063rem;
  margin: 0;
  padding: 0.625rem;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-item .gallery-columns-2 {
  max-width: 50%;
}

.gallery-item .gallery-columns-3 {
  max-width: 33.33333%;
}

.gallery-item .gallery-columns-4 {
  max-width: 25%;
}

.gallery-item .gallery-columns-5 {
  max-width: 20%;
}

.gallery-item .gallery-columns-6 {
  max-width: 16.66667%;
}

.gallery-item .gallery-columns-7 {
  max-width: 14.28571%;
}

.gallery-item .gallery-columns-8 {
  max-width: 12.5%;
}

.gallery-item .gallery-columns-9 {
  max-width: 11.11111%;
}

.gallery-caption {
  display: block;
}
.no-post-found-item {
  display: none;
}
.label-10:has(+ .no-post-found-item) {
    display: none;
}
.has-small-font-size {
  font-size: 12px !important;
}
/*--------------------------------------------------------------
# Plugin Compatibility
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Woocommerce
--------------------------------------------------------------*/
.woocommerce-cart-form .shop_table .coupon .input-text {
  width: 8.313rem !important;
}

.variations_form .variations .value>select {
  margin-bottom: 0.625rem;
}

.woocommerce-MyAccount-content .col-1,
.woocommerce-MyAccount-content .col-2 {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Elementor
--------------------------------------------------------------*/
.elementor-page article .entry-footer {
  display: none;
}

.elementor-page.page-template-fullwidth #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}

.elementor-page .entry-content {
  margin-top: 0;
}

/*--------------------------------------------------------------
## Visual Composer
--------------------------------------------------------------*/
.vc_desktop article .entry-footer {
  display: none;
}

.vc_desktop #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}

.vc_desktop .entry-content {
  margin-top: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
body:not(.theme-preset-active) footer#colophon {
  color: var(--color-white);
  background-color: var(--color-black);
  margin-top: 0;
  position: relative;
  top: 149px;
}

.navbar-dark .site-info {
  color: var(--color-white);
}

footer#colophon a {
  color: inherit;
}

/*--------------------------------------------------------------
# Media Query - Query List BEGIN
--------------------------------------------------------------*/

/* HOVER EFFECTS */
@media(hover:hover) and (pointer:fine) and (min-width:992px) {
  body:not(.theme-preset-active) #masthead .navbar-nav>li a:hover {
    color: var(--color-highlight);
  }

  .post-navigation .nav-previous a:hover,
  .post-navigation .nav-next a:hover {
    background: #eee none repeat scroll 0 0;
  }

  .btn:hover,
  #content .wp-block-button__link:hover,
  .gform_wrapper input[type=submit]:hover,
  .cky-btn:hover,
  .post-template-default .wp-block-button__link:hover {
    background-color: var(--color-white) !important;
    color: var(--color-black) !important;
  }

  body:not(.theme-preset-active) #masthead #menu-side li:nth-last-child(1) a:hover {
    color: var(--color-highlight);
  }

  body:not(.theme-preset-active) #masthead #menu-side li a:hover {
    -webkit-text-fill-color: var(--color-black);
    -webkit-text-stroke-color: transparent;
    color: var(--color-black);
  }

  .overlay-container>a:hover picture,
  .overlay-container>a:hover img:not(.icon-link-arrow),
  .overlay-container>a:hover video {
    transform: scale(1.2);
  }
}

/* 330 MAX WIDTH */
@media (max-width:330px) {
  #menu-side a {
    font-weight: 700 !important;
  }
}

/* 516 MAX WIDTH */
@media (max-width:516px) {}

/* 517 MIN WIDTH */
@media (min-width:517px) {}

/* 641 MIN WIDTH */
@media (min-width:641px) {
  .gform_wrapper .top_label li.gfield.gf_right_half {
    padding-left: 16px;
    padding-right: 0 !important;
  }
}

/* 767 MAX WIDTH */
@media (max-width:767px) {
  .h1 {
    font-size: var(--font-size-h1-mobile);
  }

  .h2 {
    font-size: var(--font-size-h2-mobile);
  }

  .h3,
  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    font-size: var(--font-size-h3-mobile);
  }

  .h4,
  #menu-side a,
  #menu-side .dropdown-toggle-ellipsis {
    font-size: var(--font-size-h4-mobile);
  }

  .h5 {
    font-size: var(--font-size-h5);
  }

  .h6 {
    font-size: var(--font-size-h6);
  }

  .h7 {
    font-size: var(--font-size-h7);
  }

  .h8 {
    font-size: var(--font-size-h8);
  }

  .h9 {
    font-size: var(--font-size-h9);
  }

  .h10 {
    font-size: var(--font-size-h10);
  }

  .h11 {
    font-size: var(--font-size-h11);
  }

  .h12 {
    font-size: var(--font-size-h12);
  }

  header .mobile-fit {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  #hamburger,
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 29px !important;
  }

  .copyright {
    margin-bottom: 0 !important;
  }

  #menu-policies-nav {
    margin-top: .2rem !important;
  }

  body .gform_wrapper ul li.gfield {
    margin-top: 2.8% !important;
  }

  .nl-footer-title,
  .copyright,
  #menu-footer-nav,
  .social,
  #menu-policies {
    text-align: center;
  }

  .company-logo {
    max-width: 187px;
  }

  .navbar-nav .dropdown-menu {
    transform: none !important;
  }

  #menu .dropdown-menu {
    position: relative !important;
  }

  .logo-offset-color {
    padding-top: 26px;
    margin-top: -26px;
    padding-bottom: 24px;
    margin-bottom: -24px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo-offset-color img {
    width: 130px;
  }

  .gform_wrapper .gform_footer input.button,
  .gform_wrapper .gform_footer input[type=submit],
  .gform_wrapper .gform_page_footer input.button,
  .gform_wrapper .gform_page_footer input[type=submit],
  .gform_wrapper .gfield_checkbox li,
  .gform_wrapper .gfield_radio li {
    margin: 0 0 16px !important;
  }

  footer .social-text {
    display: none;
  }

  #menu-footer-nav {
    margin-top: 0 !important;
    margin-bottom: 2.2rem !important;
  }

  #gform_1 .gform_footer.top_label {
    text-align: center;
    margin: .6rem 0 .6rem;
  }

  .cky-consent-container .cky-consent-bar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* 794 MAX WIDTH */
@media (max-width:794px) {
  .grid-item {
    right: 15px;
  }
}

/* 768 MIN WIDTH - 890 MAX WIDTH */
@media (min-width:768px) and (max-width:890px) {
  #masthead>.container>.row>.col-md-2 {
    -ms-flex: 0 0 19.666667%;
    flex: 0 0 19.666667%;
    max-width: 19.666667%;
  }

  #masthead>.container>.row>.col-md-8 {
    -ms-flex: 0 0 60.666667%;
    flex: 0 0 60.666667%;
    max-width: 60.666667%;
  }
}

/* 768 MIN WIDTH - 991 MAX WIDTH */
@media (min-width:768px) and (max-width:991px) {
  .h1 {
    font-size: calc(var(--font-size-h1) * var(--font-size-md));
  }

  .h2 {
    font-size: calc(var(--font-size-h2) * var(--font-size-md));
  }

  .h3,
  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    font-size: calc(var(--font-size-h3) * var(--font-size-md));
  }

  .h4,
  #menu-side a,
  #menu-side .dropdown-toggle-ellipsis {
    font-size: calc(var(--font-size-h4) * var(--font-size-md));
  }

  .h5 {
    font-size: var(--font-size-h5);
  }

  .h6 {
    font-size: var(--font-size-h6);
  }

  .h7 {
    font-size: var(--font-size-h7);
  }

  .h8 {
    font-size: var(--font-size-h8);
  }

  .h9 {
    font-size: var(--font-size-h9);
  }

  .h10 {
    font-size: var(--font-size-h10);
  }

  .h11 {
    font-size: var(--font-size-h11);
  }

  .h12 {
    font-size: var(--font-size-h12);
  }

  #bigmenu .dropdown-toggle-ellipsis::before {
    font-size: 3.2rem;
    top: -33px;
  }

  #bigmenu .show .dropdown-toggle-ellipsis::before {
    top: -35px;
  }

  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    padding-bottom: 1.5vh;
    padding-top: 1.5vh;
  }

  .cky-consent-container .cky-consent-bar {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
}

/* 768 MIN WIDTH */
@media (min-width:768px) {
  .bigmenu-wrapper {
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    bottom: 9%;
    left: 50%;
    transform: translate(-50%, 0);
    align-items: end;
  }

  .page-content p {
    text-align: justify;
  }

  #menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30%;
    min-width: 380px;
    padding: var(--padding);
  }

  #menu.open {
    z-index: 20;
    visibility: visible;
    opacity: 1;

  }

  .gform_wrapper form {
    margin: 0 !important;
  }

  #menu-footer-nav,
  .social,
  #menu-policies-nav {
    text-align: right;
  }

  body:not(.theme-preset-active) #page-sub-header h1 {
    font-size: 3.750rem;
  }

  body:not(.theme-preset-active) #page-sub-header {
    font-size: 1.25rem;
  }

  #menu.open:after {
    height: 165px;
  }

  .dropdown-menu li>.dropdown-menu {
    right: -9.875rem;
    top: 1.375rem;
  }

  footer>.container>.row:nth-child(1)>div:nth-child(1) {
    padding-right: 0;
  }

  /* #menu-footer > li:not(:nth-child(1)) {
    margin-left: 2.2rem;
  } */
  #menu-header>li,
  #menu-footer>li {
    display: inline-block;
  }

  .gform_wrapper .gform_footer input.button,
  .gform_wrapper .gform_footer input[type=submit],
  .gform_wrapper .gform_page_footer input.button,
  .gform_wrapper .gform_page_footer input[type=submit] {
    margin: 0 !important;
  }

  #gform_1 .top_label li ul.gfield_checkbox,
  #gform_1 .top_label li ul.gfield_radio {
    width: calc(100% - -166px);
  }

  #gform_1 .gform_footer.top_label {
    max-width: fit-content;
  }
}

/* 768 MIN WIDTH - 1499 MAX WIDTH */
@media (min-width:768px) and (max-width:1499px) {}

/* 769 MIN WIDTH */
@media (min-width:769px) {
  .dropdown-menu li>.dropdown-menu {
    right: -9.875rem;
    top: 1.375rem;
  }
}

/* 991 MAX WIDTH */
@media (max-width:991px) {
  #bigmenu {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  #bigmenu .dropdown-toggle-ellipsis::before {
    font-size: 2rem;
    position: relative;
    top: -20px;
    left: 4px;
  }

  #bigmenu .show .dropdown-toggle-ellipsis::before {
    top: -22px;
    left: 5px;
  }

  .navbar-nav .dropdown-menu {
    border: medium none;
    margin-left: 1.250rem;
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 0;
  }

  #masthead .navbar-nav>li>a {
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .navbar-light .navbar-toggler {
    border: medium none;
    outline: none;
  }

  .post-contact-us {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

}

/* 992 MIN WIDTH - 1499 MAX WIDTH */
@media (min-width:992px) and (max-width:1499px) {
  .h1 {
    font-size: calc(var(--font-size-h1) * var(--font-size-lg));
  }

  .h2 {
    font-size: calc(var(--font-size-h2) * var(--font-size-lg));
  }

  .h3,
  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    font-size: calc(var(--font-size-h3) * var(--font-size-lg));
  }

  .h4,
  #menu-side a,
  #menu-side .dropdown-toggle-ellipsis {
    font-size: calc(var(--font-size-h4) * var(--font-size-lg));
  }

  .h5 {
    font-size: var(--font-size-h5);
  }

  .h6 {
    font-size: var(--font-size-h6);
  }

  .h7 {
    font-size: var(--font-size-h7);
  }

  .h8 {
    font-size: var(--font-size-h8);
  }

  .h9 {
    font-size: var(--font-size-h9);
  }

  .h10 {
    font-size: var(--font-size-h10);
  }

  .h11 {
    font-size: var(--font-size-h11);
  }

  .h12 {
    font-size: var(--font-size-h12);
  }

  #bigmenu .dropdown-toggle-ellipsis::before {
    font-size: 4.9rem;
    top: -53px;
  }

  #bigmenu .show .dropdown-toggle-ellipsis::before {
    top: -55px;
  }

  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    padding-bottom: 1.5vh;
    padding-top: 1.5vh;
  }

  .cky-consent-container .cky-consent-bar {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
}

/* 992 MIN WIDTH */
@media (min-width:992px) {
  #page-sub-header p {
    max-width: 43rem;
    margin: 0 auto;
  }
  
}

/* 1024 MAX WIDTH */
@media (max-width:1024px) {
  .num-dots .owl-nav {
    top: -5.45rem;
  }

  .num-dots .owl-dots {
    top: -4.8rem;
  }
}

/* 1025 MIN WIDTH */
@media (min-width:1025px) {
  .num-dots .owl-nav {
    top: -4.85rem;
  }

  .num-dots .owl-dots {
    top: -4.55rem;
  }
}

/* 1199 MAX WIDTH */
@media (max-width:1199px) {}

/* 1200 MIN WIDTH */
@media (min-width:1200px) {}

/* 1499 MAX WIDTH */
@media (max-width:1499px) {}

/* 1500 MIN WIDTH */
@media (min-width:1500px) {
  .h1 {
    font-size: var(--font-size-h1);
  }

  .h2 {
    font-size: var(--font-size-h2);
  }

  .h3,
  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    font-size: var(--font-size-h3);
  }

  .h4,
  #menu-side a,
  #menu-side .dropdown-toggle-ellipsis {
    font-size: var(--font-size-h4);
  }

  .h5 {
    font-size: var(--font-size-h5);
  }

  .h6 {
    font-size: var(--font-size-h6);
  }

  .h7 {
    font-size: var(--font-size-h7);
  }

  .h8 {
    font-size: var(--font-size-h8);
  }

  .h9 {
    font-size: var(--font-size-h9);
  }

  .h10 {
    font-size: var(--font-size-h10);
  }

  .h11 {
    font-size: var(--font-size-h11);
  }

  .h12 {
    font-size: var(--font-size-h12);
  }

  #bigmenu .dropdown-toggle-ellipsis::before {
    top: calc(14vh - 19.3vh);
  }

  #bigmenu .show .dropdown-toggle-ellipsis::before {
    top: calc(14vh - 19.5vh);
  }

  #menu-primary a,
  #menu-primary .dropdown-toggle-ellipsis {
    padding-bottom: 1.75vh;
    padding-top: 1.75vh;
  }

  .num-dots .owl-item.active~.owl-item {
    margin-left: calc(1162px - 95vw);
    z-index: -1;
  }

  .num-dots .owl-item {
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
  }

  .cky-consent-container .cky-consent-bar {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
}

/*--------------------------------------------------------------
## Media Query - Query List END
--------------------------------------------------------------*/

/* Cookie Banner - BEGIN */

.cky-consent-container .cky-consent-bar {
  box-shadow: unset !important;
}

.cli-style-v2 .cli-bar-message {
  width: unset;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cli-style-v2.cli-bar-container {
  justify-content: center;
}

.cky-modal {
  border-color: transparent !important;
  border-radius: 0 !important;
  border-width: 0;
  border: unset !important;
}

.cky-modal .cky-preference-center {
  border-color: transparent !important;
  border-radius: 0 !important;
  border-width: 0;
  border: unset !important;
}

div[data-cky-tag="detail-powered-by"] {
  display: none !important;
}

.cli-style-v2.cli-bar-container #wt-cli-accept-all-btn {
  border: 1px solid var(--color-white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.cli-style-v2.cli-bar-container #wt-cli-accept-all-btn:hover {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

.cli-style-v2 .cli-bar-btn_container .cli-plugin-button {
  margin-top: 10px;
  margin-bottom: 10px;
}

.cky-btn {
  border-radius: 0 !important;
}

#cookie-law-info-bar[data-cli-style="cli-style-v2"],
#cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="widget"],
#cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="popup"] {
  padding: 8px 25px;
}

.cky-custom-brand-logo-wrapper,
.cky-notice .cky-title,
.cky-notice-des,
.cky-notice-btn-wrapper {
  padding: 0 !important;
}

@media (max-width: 985px) {
  .cli-style-v2 .cli-bar-btn_container {
    margin-left: 20px;
    margin-top: 0;
  }
}
/* HOME VETRINA MAGAZINE */
.magazine-showcase {
  padding: 30px 0 !important;
  position: relative;
}
.magazine-showcase h2 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
.magazine-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  background: #f5f5f5;
  justify-content: center;
  padding: 30px;
  position: relative;
}

.magazine-item {
  flex: 0 0 auto;
  width: 260px;
  text-align: center;
  padding: 10px
}
.magazine-item img {
  width: 100%;
  box-shadow: #000 0px 0px 10px;
  transition: transform 0.3s ease;
}
.magazine-date {
  margin-top: 10px;
  font-weight: bold;
}
.read-more-btn {
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  position: absolute;
  bottom: 113px;
  left: 480px;
  font-size: 14px !important;
  padding: 15px 45px !important;
}
.magazine-grid { 
  gap:0; 
}
.read-more-btn {
  bottom: 50px; 
  right:40px !important; 
  left:unset;
}
.magazine-grid > .magazine-item:first-child {
    width: 300px;
}
.magazine-showcase h2 {padding-left: 40px; border-bottom:0;}
@media (max-width: 992px) {
.magazine-grid {
  overflow-x: auto;
  justify-content: left;
  padding: 20px 20px 50px 20px;
}
.magazine-grid > .magazine-item:first-child {
    width: 260px;
}
.read-more-btn {
  bottom: 57px;
  left: 30px !important;
  padding: 10px 20px !important;
  font-size: 12px !important;
}
}


/* Cookie Banner - END */

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

.space {
  padding-top: 4rem;
  padding-bottom: 1.5%;
}

.space-low {
  padding-top: 4rem;
}

#hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 34px;
  height: 19px;
  position: relative;
  z-index: 4;
}

#hamburger.is-active .hamburger-inner,
#hamburger.is-active .hamburger-inner::before,
#hamburger.is-active .hamburger-inner::after {
  background-color: var(--color-black);
}

body:not(.light, .no-scroll) header:not(.active) #hamburger:not(.is-active) .hamburger-inner,
body:not(.light, .no-scroll) header:not(.active) #hamburger:not(.is-active) .hamburger-inner::before,
body:not(.light, .no-scroll) header:not(.active) #hamburger:not(.is-active) .hamburger-inner::after {
  background-color: var(--color-white);
}

body:not(.light, .no-scroll) header:not(.active) #menu-header a {
  color: var(--color-white);
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 26px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.social img {
  width: 19px;
  height: 19px;
}

.homepage-social img {
  width: 23px;
  height: 21px;
}

.contacts-social img {
  width: 20px;
  height: 20px;
}

/* #menu-footer,
.nl-footer-title {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: var(--letter-spacing);
} */

.social {
  color: var(--color-black);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
  margin-top: 2rem !important;
}

.homepage-social {
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
}

.page-template-page-homepage .homepage-social {
  margin-top: 3rem;
}

.contacts-social {
  text-transform: uppercase;
  color: var(--color-black);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
  line-height: 2.3;
  padding-top: 3.5%;
}

.social .divisor {
  width: 1px;
  height: 27px;
  background-color: var(--color-black);
  margin-left: 2%;
  margin-right: 2%;
}

.homepage-social .divisor {
  width: 1px;
  height: 41px;
  background-color: var(--color-black);
  margin-left: 2%;
  margin-right: 2%;
}

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

.social-text,
.divisor {
  vertical-align: middle;
}

.social-block,
.divisor {
  display: inline-block;
}

#menu-policies,
.copyright {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
}

#menu-policies>li {
  display: inline-block;
}

#menu-policies>li:not(:nth-child(1)) {
  margin-left: 3%;
}

#menu-header a {
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing);
  line-height: 1;
}

#menu-header,
footer .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
  display: block;
}

footer .social-block {
  padding-top: 18px;
  padding-bottom: 18px;
}

footer .social-block>a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: -12px;
}

#menu-header li {
  margin-left: 1.8%;
  margin-right: 1.8%;
}

footer .row:nth-child(1) {
  margin-top: 1.2rem;
}

footer .row:nth-child(2) {
  margin-bottom: 1.2rem;
}

footer .row>div>div {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

footer #gform_wrapper_1 {
  margin-top: .5%;
  margin-bottom: .5%;
  max-width: 500px;
}

.nl-footer-title {
  margin-bottom: 0 !important;
}

.nl-footer-title,
.copyright {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.header-right {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-right>*:not(:last-child) {
  margin-right: 25px;
}

.hamburger-container {
  display: inline-block;
  vertical-align: middle;
}

.gform_wrapper [type="checkbox"]:not(:checked),
.gform_wrapper [type="checkbox"]:checked,
.site-content .af-attributes-list [type="checkbox"]:not(:checked),
.site-content .af-attributes-list [type="checkbox"]:checked {
  position: absolute !important;
  left: -9999px;
}

.gform_wrapper [type="checkbox"]:not(:checked)+label,
.gform_wrapper [type="checkbox"]:checked+label,
.site-content .af-attributes-list [type="checkbox"]:not(:checked)+label,
.site-content .af-attributes-list [type="checkbox"]:checked+label {
  position: relative !important;
  padding-left: 30px !important;
  cursor: pointer !important;
  font-size: 10px !important;
}

.gform_wrapper [type="checkbox"]:not(:checked)+label:before,
.gform_wrapper [type="checkbox"]:checked+label:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-white);
  background: transparent;
  padding: 2px;
}

.gform_wrapper [type="checkbox"]:not(:checked)+label:after,
.gform_wrapper [type="checkbox"]:checked+label:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 1px;
  left: 3px;
  font-size: 1.3em;
  line-height: 0.8;
  background-color: var(--color-white);
  transition: all .2s;
}

#primary .gform_wrapper [type="checkbox"]:not(:checked)+label:before,
#primary .gform_wrapper [type="checkbox"]:checked+label:before {
  border-color: var(--color-black);
}

#primary .gform_wrapper [type="checkbox"]:not(:checked)+label:after,
#primary .gform_wrapper [type="checkbox"]:checked+label:after {
  background-color: var(--color-black);
}

#primary .gform_wrapper.gravity-theme .gfield-choice-input+label {
  text-transform: uppercase;
}

.gform_wrapper [type="checkbox"]:not(:checked)+label:after,
.site-content .af-attributes-list [type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

.gform_wrapper [type="checkbox"]:checked+label:after,
.site-content .af-attributes-list [type="checkbox"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

.gfield_checkbox a,
.gfield_consent_label a {
  text-decoration: underline;
}

footer .gform_wrapper input:not([type="submit"]) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid var(--color-white);
  color: inherit;
}

.gform_wrapper.gravity-theme fieldset.gfield--input-type-consent {
  margin-top: 8px;
}

body img.gform_ajax_spinner {
  display: none !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper li.gfield_error textarea {
  border: none;
  border-bottom: 1px solid #790000;
}

#gform_wrapper_1 input[type=text],
#gform_wrapper_2 input[type=text],
#gform_wrapper_2 textarea,
#gform_wrapper_3 input[type=text] {
  border: none;
  font-size: 14px !important;
  border: 1px solid var(--color-line);
  background: transparent;
  text-transform: uppercase;
  padding: 5px 20px;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  letter-spacing: var(--letter-spacing);
}

#gform_wrapper_2 input[type=email] {
  border: none;
  font-size: 14px !important;
  border: 1px solid var(--color-line);
  background: transparent;
  text-transform: uppercase;
  padding: 5px 20px;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  letter-spacing: var(--letter-spacing);
}

.gform_wrapper.gravity-theme .ginput_container_address span {
  flex: 0 0 100% !important;
}

.gform_wrapper.gravity-theme .ginput_complex label {
  display: none !important;
}

#gform_wrapper_1 select,
#gform_wrapper_2 select {
  border: none;
  border: 1px solid var(--color-line);
  background: transparent;
  text-transform: uppercase;
  padding: 5px 20px;
  width: 100%;
  font-size: 14px !important;
  height: 40px;
  border-radius: 20px;
  letter-spacing: var(--letter-spacing);
}

.gform_wrapper.gravity-theme .gfield_label {
  font-family: var(--font-heading-bold);
  font-size: 14px !important;
  text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gfield {
  margin-bottom: var(--padding-mobile);
}

.wp-block-spacer {
  height: .1rem !important;
}

.btn,
#content .wp-block-button__link,
input[type=submit],
.cky-btn {
  font-family: var(--font-paragraph) !important;
  font-size: var(--font-size-h8) !important;
  font-weight: 600 !important;
  letter-spacing: var(--letter-spacing);
  line-height: 1 !important;
  text-transform: uppercase !important;
  color: var(--color-white) !important;
  background-color: var(--color-black) !important;
  border: 1px solid var(--color-grey) !important;
  border-radius: 50px !important;
  width: 100%;
  max-width: 150px !important;
  min-width: fit-content;
  text-align: center;
  display: inline-block;
  cursor: pointer !important;
  padding: 12px 30px !important;
  opacity: 1 !important;
  transition: all 0.15s ease;
}

.post-template-default .wp-block-button__link {
  background-color: var(--color-black);
  border: 2px solid var(--color-black);
  border-radius: 0;
  box-shadow: none;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-size: .65rem;
  font-weight: 500;
  width: fit-content;
  text-transform: uppercase;
  margin: 0;
  padding: calc(.7rem - 1px) 2.4rem;
  text-align: center;
  text-decoration: none;
  overflow-wrap: unset;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: var(--color-black) !important;
}

.gform_wrapper input:-ms-input-placeholder,
.gform_wrapper textarea:-ms-input-placeholder {
  color: var(--color-black);
}

.gform_wrapper input::-ms-input-placeholder,
.gform_wrapper textarea::-ms-input-placeholder {
  color: var(--color-black);
}

footer .gform_wrapper input::placeholder,
footer .gform_wrapper textarea::placeholder {
  color: var(--color-white) !important;
}

footer .gform_wrapper input:-ms-input-placeholder,
footer .gform_wrapper textarea:-ms-input-placeholder {
  color: var(--color-white);
}

footer .gform_wrapper input::-ms-input-placeholder,
footer .gform_wrapper textarea::-ms-input-placeholder {
  color: var(--color-white);
}

::-moz-placeholder {
  opacity: 1;
}

#gform_1 .gform_footer {
  padding: 0;
}

.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li {
  line-height: unset !important;
}

body .gform_wrapper ul li.field_description_below div.ginput_container_checkbox,
body .gform_wrapper ul li.field_description_below div.ginput_container_radio {
  margin-top: 8px !important;
}

.ginput_container_checkbox {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gform_wrapper div.validation_error {
  display: none;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  margin-bottom: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.gform_wrapper .validation_message {
  font-size: .7rem !important;
  font-weight: 700 !important;
  letter-spacing: var(--letter-spacing) !important;
  text-transform: uppercase;
}

#gform_wrapper_1.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half),
#gform_wrapper_2.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half),
#gform_wrapper_3.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: unset !important;
}

#gform_wrapper_1 li.gfield.gfield_error.gfield_contains_required {
  padding-right: 16px !important;
}

#menu-side a {
  text-transform: uppercase;
  text-align: right;
  color: var(--color-black);
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  font-weight: 800;
  padding-bottom: 1.25vh;
  padding-top: 1.25vh;
}

#menu-side a {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-black);
  color: var(--color-white);
}

body:not(.theme-preset-active) #masthead #menu-side li.current-menu-item a {
  -webkit-text-fill-color: var(--color-black);
  -webkit-text-stroke-color: transparent;
  color: var(--color-black);
}

#menu-language-nav {
  z-index: 1;
  position: relative;
}

/* body:not(.no-scroll) #menu-language-nav {
  display: none;
}
body.no-scroll #menu-language-nav {
  display: inline-block;
} */

/* #language a {
  color: var(--color-black);
  text-transform: uppercase;
} */

.dropdown-toggle-ellipsis {
  cursor: pointer;
}

.dropdown-toggle-ellipsis::before {
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  content: "+";
  font-weight: 900;
}

.show .dropdown-toggle-ellipsis::before {
  content: "–";
}

.mobile-menu .dropdown-toggle-ellipsis {
  display: none;
}

#menu .menu-item {
  text-align: left;
}

.social-ico i {
  color: var(--color-white);
  font-size: 1.2rem;
  vertical-align: middle;
}

.gform_wrapper ul.gfield_checkbox li,
.gform_wrapper ul.gfield_radio li {
  overflow: visible !important;
}

.single-post figure {
  margin-top: 5%;
  margin-bottom: 5%;
}

.wp-block-embed__wrapper {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.wp-block-embed__wrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.gform_heading {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden
}

.captcha-text {
  font-size: 8.8px;
  letter-spacing: .3px;
  line-height: 1 !important;
  z-index: 1;
  color: var(--color-light-grey);
  text-transform: initial;
}

.captcha-text a {
  text-decoration: underline;
  color: var(--color-light-grey);
}

.gform_confirmation_message {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-h6);
  margin-top: 1.5rem;
}

#menu-footer-nav a {
  padding-top: 12px;
  padding-bottom: 12px;
}

footer .gform_footer {
  margin: 0 0 30px !important;
}





/* my css */
* {
  box-sizing: border-box;
}

.only-desktop {
  display: none;
}

.n-margin-bottom {
  margin-bottom: 0 !important;
}

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

/* header */
#masthead {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}  

.header-top {
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 44px;
  padding: 8px var(--padding-mobile);
  flex-wrap: nowrap;
  flex-direction: row;
  max-width: 1140px;
  margin: 0;
}

/* EVITARE CLS */
#top-header {
  height: 67px;
}
@media (min-width: 768px){
  #masthead {
    top: 90px;
    max-width: 1140px;
    left: 50%;
    transform: translateX(-50%);
  }
  #top-header {
    height: 265px;
  }
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 2;
    top: 90px;
  }
  body.area-profile .container {
    margin: -149px auto 0 0 !important;
  }

}

@media (max-width: 768px){
  body.area-profile .container {
    margin: -70px auto;
  }
}



.header-top div.main-voices-area,
.header-top div.login-search-area,
.header-top div.hamburger-area{
  width: auto;
}

@media (min-width: 992px ){
  .header-top div.main-voices-area, 
  .header-top div.login-search-area, 
  .header-top div.hamburger-area{
    padding: 0;
  }
}

.header-top div.main-voices-area{
  width: auto;
  flex: 1;
}

.header-top div.main-voices-area .header-logo-mobile{
  margin: 0 auto;
}

.header-top div.main-voices-area .nav-master{
  justify-content: center;
}
.header-top div.main-voices-area,
.header-top div.login-search-area,
.header-top div.hamburger-area{
  width: auto;
}

@media (max-width: 991px){
  .header-top div.hamburger-area,
  .header-top div.login-search-area{
    flex: 0 0 72px;
    justify-content: center;
  }

  .header-top div.main-voices-area{
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding-left: 35px;
  }
}


.header-logo-mobile {
  width: 73px;
  height: 73px;
  display: block;
  margin: 0 auto;
}

.ico-search {
  float: right;
}

.testata {
  width: 100%;
  padding: 12px 0;
  background-color: var(--color-white);
  border-bottom: solid 1px var(--color-line);
}

@media( max-width: 940px ){
  .testata {
    padding: 0;
    border-bottom: none;
  }
}

.logo-testa {
  display: block;
  overflow: hidden;
  width: 82px;
  height: 82px;
  transition: all 0.1s ease-in-out;
  text-indent: -9999px;
  background: url(inc/assets/images/logo-testata.svg) no-repeat center;
  background-size: contain;
}

body.dark-theme .logo-testata {
  background-image: url(inc/assets/images/logo_dark_theme.png);
}

.active-menu .logo-testa {
  width: 50px;
  height: 50px;
}

.active-menu .block-advisor [class*="label-"] {
  display: none;
}


.block-social-header {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.block-advisor {
  border: solid 1px var(--color-black);
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.block-advisor:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: var(--color-black);
  transform: rotate(-45deg);
  display: none !important;
}

.block-advisor [class*="title-"] {
  margin-bottom: 3px;
  white-space: nowrap;
}

#menu-language-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#language {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  margin-right: 50px;
}

#language li[class*="current"] a {
  color: var(--color-green);
}

.nav-master a {
  color: var(--color-white);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  margin: 0 20px;
  font-family: var(--font-heading);
}

[class*="btn-nav-master-"] {
  background-position: 0 center 0px;
  background-repeat: no-repeat;
  background-size: 24px;
  padding: 5px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
}

[class*="btn-nav-master-"].line:before {
  content: "";
  width: 100%;
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  display: block;
  border-top: solid 2px var(--color-green);
}
/*
.btn-nav-master-articoli {
  background-image: url(inc/assets/images/ico_articoli.svg);
}

.btn-nav-master-video {
  background-image: url(inc/assets/images/ico_video.svg);
}

.btn-nav-master-podcast {
  background-image: url(inc/assets/images/ico_podcast.svg);
}

.btn-nav-master-influential-brands {
  background-image: url(inc/assets/images/ico_brands.svg);
}

.btn-nav-master-trova-il-tuo-advisor {
  background-image: url(inc/assets/images/ico_hand.svg);
}

.btn-nav-master-homepage{
  background-image: url(inc/assets/images/ico_home.svg);
}

.btn-nav-master-financial-advisor-club {
  background-image: url(inc/assets/images/ico_bank.svg);
}

.btn-nav-master-scopri-i-talents {
  background-image: url(inc/assets/images/ico_star.svg);
}*/

.btn-accedi,
.btn-accedi:hover,
.btn-area-privata,
.btn-area-privata:hover {
  background-color: var(--color-white);
  color: var(--color-black) !important;
  border-radius: 12px;
  height: 24px;
  font-size: 10px;
  display: inline-flex;
  padding: 6px 14px 6px 14px;
  text-transform: uppercase;
  font-weight: 600;
  border: solid 1px var(--color-white);
  margin-right: 7px;
  background-image: url(inc/assets/images/ico_user.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.btn-registrati {
  border: solid 1px var(--color-white);
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 12px;
  height: 24px;
  font-size: 10px;
  display: inline-flex;
  padding: 6px 14px 6px 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 7px;
  background-image: url(inc/assets/images/ico_lock_key.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
}



/* content */
#content {
  margin-top: 0;
  position: relative;
  top: 149px;
}

.block {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.block-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex: 1;
}

.block-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex: 1;
}

.block-right.login-search-area{
  flex: 0;
}

.block-right.login-search-area .login-icon-wrapper{
  display: none;
  align-items: center;
  margin-right: 10px;
}

.block-right.login-search-area .btn-login-icon{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-image: url(inc/assets/images/ico_user.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  text-indent: -9999px;
  overflow: hidden;
  filter: brightness(0) invert(1);
}

@media (max-width: 939px){
  .block-right.login-search-area .login-icon-wrapper{
    display: flex;
  }
}

.block-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex: 1;
  max-width: 20px;
}


/* titoli e paragrafi */
.title-34,
h2.wp-block-heading {
  font-size: var(--font-size-xxxl);
  font-family: var(--font-heading);
  font-weight: 600;
}

h2.wp-block-heading {
  margin-bottom: max(30px, min(50px, calc(30px + 4vw)));
}

.title-24 {
  font-size: var(--font-size-xxl);
  font-family: var(--font-heading);
  font-weight: 600;
}

.title-20 {
  font-size: var(--font-size-xl);
  font-family: var(--font-heading);
  font-weight: 600;
}

.title-16 {
  font-size: var(--font-size-xs);
  font-family: var(--font-heading);
  font-weight: 700;
}

.title-14 {
  font-size: var(--font-size-14);
  font-family: var(--font-heading);
  font-weight: 700;
}

.title-12 {
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.abstract {
  font-size: var(--font-size-abstract);
  font-family: var(--font-heading);
}

[class*="card-"] .abstract {
  font-size: 12px;
}

.label-10 {
  font-size: var(--font-size-label);
  text-transform: uppercase;
  font-weight: 600;
}

.card-video-podcast .label-10 {
  color: var(--color-white);
}

.label-10-highlight {
  font-size: var(--font-size-label);
  color: #676767;
  text-transform: uppercase;
  font-weight: 600;
}

.label-14 {
  font-size: var(--font-size-label-3);
  text-transform: uppercase;
  font-weight: 600;
}

.txt-center {
  text-align: center;
}

/* figure */
figure {
  margin: 0;
}

[class*="figure-"] {
  width: 100%;
  /* Imposta la larghezza al 100% del contenitore genitore */
  height: 0;
  /* Imposta l'altezza a 0 per evitare che l'elemento occupi spazio extra */
  overflow: hidden;
  /* Nasconde qualsiasi contenuto che potrebbe fuoriuscire */
  position: relative;
  background-color: var(--color-light-grey);
}

[class*="figure-"]::before {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-image: fill 0 linear-gradient(#0003, #000);
  content: "";
  top: 0;
  left: 0;
  opacity: 0.5;
}

.voices [class*="figure-"]::after {
  position: absolute;
  z-index: 0;
  width: 10%;
  height: 16%;
  content: "";
  top: 80%;
  left: 3%;
  transform: translateY(-50%);
  background: url(inc/assets/images/ico_video.svg) no-repeat center;
  background-size: 60%;
  border-radius: 50%;
  border: solid 1px var(--color-white);
}

.podcast [class*="figure-"]::after {
  position: absolute;
  z-index: 0;
  width: 10%;
  height: 16%;
  content: "";
  top: 80%;
  left: 3%;
  transform: translateY(-50%);
  background: url(inc/assets/images/ico_podcast.svg) no-repeat center;
  background-size: 60%;
  border-radius: 50%;
  border: solid 1px var(--color-white);
}

.voices .figure-aside::after,
.podcast .figure-aside::after {
  height: 14.5%;
}

.figure-header {
  padding-top: calc((353 / 1440) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
}

@media (max-width: 767px) {
  .figure-header{
    padding-top: calc(( 702 / 1440) * 100%);
  }
  
}

.figure-lancio {
  padding-top: calc((600 / 1440) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
}

.figure-default {
  padding-top: calc((546 / 927) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
  margin-bottom: 28px;
}

.list .figure-default {
  margin-bottom: var(--padding);
}

.figure-aside {
  padding-top: calc((126 / 182) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
}

.figure-cube {
  filter: grayscale(1);
  padding-top: calc((233 / 233) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
}

.card-people .figure-cube {
  background: url(inc/assets/images/bg_profile.jpg) no-repeat center;
  background-size: cover;
}

[class*="blocco-mondo-"] .figure-cube {
  filter: none;
}

.figure-place {
  padding-top: calc((233 / 233) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
}

.figure-pubb {
  padding-top: calc((260 / 182) * 100%);
  /* Usa calc() per mantenere il rapporto di aspetto */
}

.figure-people {
  /* padding-top: calc((230 / 230) * 100%); Usa calc() per mantenere il rapporto di aspetto */
  overflow: hidden;
  border-radius: 50%;
  width: 62px;
  min-width: 62px;
  height: 62px;
  filter: grayscale(1);
}

.figure-people-big {
  filter: grayscale(1);
  padding-top: calc((1196 / 1177) * 100%);
}

figure img {
  position: absolute;
  /* Posiziona assolutamente l'immagine all'interno del <figure> */
  top: 0;
  left: 0;
  width: 100%;
  /* Larghezza dell'immagine al 100% del <figure> */
  height: 100%;
  /* Altezza dell'immagine al 100% del <figure> */
  object-fit: cover;
  /* Assicura che l'immagine copra l'intera area mantenendo il suo aspect ratio */
}

@media(max-width: 767px) {
  .card-horizontal.podcast figure img {
    object-fit: contain;
  }

  .card-horizontal.podcast [class*="figure-"] {
    background-color: transparent;
  }
}

[class*="figure-"] figcaption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-family: var(--font-heading-bold);
  padding: var(--padding-mobile);
  color: var(--color-white);
}

.label-figure {
  position: relative;
}

.label-categories {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: var(--font-size-label);
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}

.label-categories::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  z-index: 0;
  background-color: var(--color-green);
}

.label-categories.pleasure::before {
  background-color: var(--color-raspberry);
}

.label-categories>span {
  background-color: var(--color-green);
  padding: 5px 10px;
  width: fit-content;
  display: inline-block;
  position: relative;
  z-index: 2;
  top: 8px;
}

.label-categories.pleasure>span {
  background-color: var(--color-raspberry);
  color: var(--color-white) !important;
}

.label-categories.pleasure>span a,
.label-categories.pleasure>span a:hover {
  color: var(--color-white) !important;
}

.podcast .label-categories::before,
.podcast .label-categories>span {
  background-color: var(--color-blue);
}

.item-100 .label-categories>span {
  left: 50%;
  transform: translateX(-50%);
}

.container-default-inside {
  width: 100%;
  max-width: 1444px;
  margin: 0 auto;
  padding-left: var(--padding-mobile);
  padding-right: var(--padding-mobile);
}

.container-default-inside.page {
  max-width: 900px;
  margin-bottom: max(30px, min(150px, calc(30px + 7vw)));
  ;
}

.container-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  /* Spazio tra le colonne */
  width: 100%;
  max-width: 1444px;
  margin: 0 auto;
}

.column-main {
  width: 100%;
}

body.home .column-main,
body.single .column-main {
  overflow-x: hidden;
}

.column-sidebar {
  width: 100%;
  overflow-x: hidden;
}

.line-bottom {
  width: 100%;
  height: 1px;
  margin-bottom: var(--padding);
  position: relative;
}

.line-bottom::before {
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  right: calc(var(--padding) * -1);
  background-color: var(--color-line);
  display: block;
}


/* banner ADV */
.adv-banner {
  width: 100%;
  min-width: 100%;
  min-height: 50px;
  background-color: var(--color-light-grey);
  border-top: solid 1px var(--color-line);
  border-bottom: solid 1px var(--color-line);
  padding: 7px;
  text-align: center;
}

.column-main,
.column-aside,
.container-main>.block {
  padding: var(--padding-mobile);
  /* Spazio interno per le colonne */
}

/*  column-aside */
.column-2-element-aside {
  display: grid;
  grid-template-columns: 4fr 4fr;
  /* Una colonna al 100% */
  gap: 21px;
  /* Spazio tra le colonne */
  margin-bottom: var(--padding);
}

.column-aside .column-2-element,
body.category .column-2-element {
  margin-bottom: var(--padding);
}

.column-aside>.label-10 {
  margin-bottom: var(--padding);
  border-top: solid 1px var(--color-line);
  padding-top: var(--padding-mobile);
}

.column-aside .adv-banner {
  border: none;
  margin-bottom: var(--padding);
}

.elemento {
  margin-bottom: 20px;
  /* Spazio tra gli elementi */
}

.item-100,
.item-50 {
  width: 100%;
  /* Tutti gli elementi al 100% */
  display: block;
}

[class*="item-"] {
  margin-bottom: 22px;
}


.cube {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--color-green);
  margin-right: var(--padding-mobile);
  position: relative;
  top: 2px;
}

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


.card-vertical-content-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.card-video-podcast .card-vertical-content-author a {
  color: var(--color-white);
}

.item-100 .card-vertical-content-author,
.column-2-element .card-vertical-content-author {
  justify-content: center;
}

.column-2-element .card-video-podcast .card-vertical-content-author {
  justify-content: flex-start;
}

.card-vertical-content-author a {
  text-decoration: underline;
}

figure.author-image {
  display: block;
  width: 25px;
  min-width: 25px;
  height: 25px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  margin-right: var(--padding-mobile);
  background-image: url(inc/assets/images/ico_gender.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  background-color: var(--color-line);
}

.author-image img {
  position: absolute;
  /* Posiziona assolutamente l'immagine all'interno del <figure> */
  top: 0;
  left: 0;
  width: 100%;
  /* Larghezza dell'immagine al 100% del <figure> */
  height: 100%;
  /* Altezza dell'immagine al 100% del <figure> */
  object-fit: cover;
}

/* INSERIMEWNTO BIOGRAFIA 29 APRILE 2025 */
/* Box che contiene il nome, la foto e la biografia dell'autore */
.author-box {
  font-size: 14px;
  background-color: #f4f4f4; /* Grigio chiaro */
  padding: 10px 10px 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Permette la rottura in caso di schermi piccoli */
  margin: 15px 0;
}

/* Nome dell'autore a sinistra, senza andare a capo */
.author-info {
  flex-grow: 1;
  font-size: 14px;
  line-height: 0;
  margin: 0;
  padding: 0;
  text-transform: none
}

.author-name {
  font-weight: bold;
  text-decoration: underline;
  white-space: nowrap; /* Impedisce che il nome vada a capo */
  overflow: hidden;
  text-overflow: ellipsis; /* Aggiunge '...' se il nome è troppo lungo */
}

/* Biografia dell'autore con font Times */
.author-bio-text p {
  color: #555;
  margin-top: 10px;
  font-size: 14px;
}

/* Media Query per dispositivi mobili */
@media (max-width: 768px) {
  /* Cambia la disposizione su schermi piccoli (mobile) */
  .author-box {

  }

  .author-image, .author-info {
  }

  .author-name {
      white-space: normal; /* Permette il ritorno a capo del nome su schermi piccoli */
  }
}



.credits {
  right: 50vw;
  position: absolute;
}

/* owl carousel */
.carousel-contributor .owl-stage,
.carousel-dicono .owl-stage,
.carousel-video-podcast .owl-stage,
.carousel-dicono .owl-stage {
  display: flex;
  align-items: stretch;
}

/* .owl-stage {
  right: -2px;
} */

.owl-dots {
  display: none !important;
}

.owl-nav {
  position: absolute;
  top: -48px;
  right: 0;
  width: fit-content;
  margin: 0 !important;
  z-index: 2;
}

.content-area-privata .owl-nav {
  top: -55px;
}

.column-main .owl-carousel {
  max-width: 100%;
  /* Assicurati che il carosello non superi la larghezza del suo contenitore */
}

.carousel-brands {
  border-top: solid 1px var(--color-line);
  padding-top: var(--padding);
}


/* btn */
.btn-green,
.btn-green:hover {
  width: fit-content;
  background-color: var(--color-green);
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 20px;
  overflow: hidden;
  font-weight: 600;
  font-size: var(--font-size-xs);
}

#gform_submit_button_2 {
  width: fit-content;
  background-color: var(--color-green) !important;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 30px !important;
  border-radius: 20px !important;
  overflow: hidden;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin: 0 auto !important;
  border: none !important;
  color: var(--color-black) !important;
  width: fit-content;
  min-width: 300px;
}

.container-filters .btn-green {
  padding-left: 30px;
}

.btn-green.download {
  padding-left: 30px;
}

.btn-green svg {
  margin-left: var(--padding);
}


/* card horizontal */
[class*="-author"] a,
[class*="-author"] a:hover {
  color: var(--color-grey);
}

.post-most-view {
  margin-bottom: var(--padding);
}

.card-horizontal,
.card-news-aside {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 0 22px;
}

.card-horizontal {
  border-bottom: solid 1px var(--color-line);
  margin-bottom: var(--padding-mobile);
}

.card-vertical.item {
  margin-bottom: var(--padding);
}

.card-horizontal:last-child,
.card-horizontal:last-of-type,
.list-item .card-horizontal:last-child,
.column-main .card-horizontal:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.card-news-aside {
  border-bottom: solid 1px var(--color-line);
  padding-bottom: var(--padding-mobile);
}

.column-aside>.card-horizontal {
  border-bottom: solid 1px var(--color-line);
}

.card-horizontal>[class*="label-"],
.card-news-aside>[class*="label-"],
.card-horizontal-content-text>[class*="label-"] {
  margin: 0 0 20px;
}

.card-horizontal-content,
.card-news-aside-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.card-news-aside-content-text {
  width: 100%;
}

.card-horizontal-content>* {
  width: 50%;
}

.card-horizontal-content-text {
  padding-left: var(--padding-mobile);
}

.column-main .card-horizontal-content {
  flex-direction: column;
}

.column-main .card-horizontal-content>* {
  width: 100%;
}

.column-main .card-horizontal-content>[class*="time"] {
  width: 70px;
  height: 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
  background: none;
  background-size: 22px;
  line-height: 2.3;
}



/* your Advisor */
.your-advisor {
  display: flex;
  background-color: var(--color-dark-grey);
  /* padding: calc( var(--padding) * 2 ); */
  padding-bottom: 40px !important;
  color: var(--color-white);
}

.lancio-advisor {
  width: 100%;
  max-width: 376px;
  display: flex;
  flex-direction: column;
}

.lancio-advisor>* {
  margin-top: 30px;
}

.card-your-advisor {
  border: solid 1px var(--color-white);
  padding: 50px var(--padding);
  display: none;
  flex-direction: column;
  margin-left: 35px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-your-advisor::before {
  content: "";
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  position: absolute;
  right: -40px;
  top: -40px;
  transform: rotate(-45deg);
}

.card-your-advisor [class*="title"] {
  padding-bottom: 30px;
  position: relative;
  padding-right: 15%;
}

.card-your-advisor [class*="title"]::before {
  content: "";
  width: 40%;
  height: 1px;
  background-color: var(--color-green);
  position: absolute;
  left: 0;
  bottom: 0;
}

.card-your-advisor>*:not(p) {
  margin-bottom: 30px;
  display: inline-block;
  color: var(--color-white);
}

.subcategory-list {

}

.subcategory-list ul {
  display: flex;              /* Mostra gli <li> in orizzontale */
  flex-wrap: wrap;            /* Va a capo se non ci sta tutto */
  gap: 10px;                  /* Spazio tra i link */
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcategory-list li {
  margin: 0;                  /* Niente margine verticale */
}

.subcategory-list a {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f5f5f5;
  border-radius: 6px;
  text-decoration: none;
  color: #1A2B4D;
  transition: background-color 0.2s;
  font-size: 12px;
}

.subcategory-list a:hover {
  background-color: #e0e0e0;
}



/* footer */
.container-default {
  padding: 40px var(--padding-mobile) 0;
  overflow: hidden;
  width: 100%;
}

footer .title-20 {
  text-align: center;
  margin-bottom: 30px;
  text-transform: none;
}

.footer-copy {
  color: var(--color-white);
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding: var(--padding);
}

.footer-row-menu {
  position: relative;
  padding: var(--padding) 0;
  margin-top: var(--padding);
  font-size: 12px;
  color: var(--color-text-grey);
}

.footer-row-menu [class*="label-"] {
  color: var(--color-white);
  margin-bottom: 40px;
  font-weight: 600;
}

.footer-copy::before,
.footer-row::before,
.footer-row-menu::before {
  content: "";
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-line);
  top: 0;
  left: 0;
}

.footer-row,
.footer-row>* {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-row>* span {
  display: inline-block;
  margin-right: var(--padding);
}

.footer-partners {
  order: 1;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.footer-social {
  order: 2;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.footer-logo {
  order: 3;
}

.footer-row {
  flex-direction: column;
  margin-top: 40px;
  padding: 30px 0;
}

.anasf {
  display: inline-block;
  width: 90px;
  height: 30px;
  background-image: url(inc/assets/images/logo_anasf.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: -9999px;
  margin-right: var(--padding);
  margin-left: var(--padding);
}

.nafop {
  display: inline-block;
  width: 90px;
  height: 28px;
  background-image: url(inc/assets/images/logo_nafop.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: -9999px;
}

[class*="ico-social-"] {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  overflow: hidden;
  text-indent: 999px;
  margin-left: var(--padding-mobile);
}

.ico-social-fb {
  background-image: url(inc/assets/images/ico_facebook.svg);
}

body:not(.dark-theme) .block-social-header .ico-social-fb,
.container-pubb-guide-social .ico-social-fb {
  background-image: url(inc/assets/images/ico_facebook_black.svg);
}

.ico-social-x {
  background-image: url(inc/assets/images/ico_x.svg);
  background-size: 20px;
}

body:not(.dark-theme) .block-social-header .ico-social-x,
.container-pubb-guide-social .ico-social-x {
  background-image: url(inc/assets/images/ico_x_black.svg);
}

.ico-social-ig {
  background-image: url(inc/assets/images/ico_instagram.svg);
}

body:not(.dark-theme) .block-social-header .ico-social-ig,
.container-pubb-guide-social .ico-social-ig {
  background-image: url(inc/assets/images/ico_instagram_black.svg);
}

.ico-social-linkedin {
  background-image: url(inc/assets/images/ico_linkedin.svg);
}

body:not(.dark-theme) .block-social-header .ico-social-linkedin,
.container-pubb-guide-social .ico-social-linkedin {
  background-image: url(inc/assets/images/ico_linkedin_black.svg);
}

.ico-social-youtube {
  background-image: url(inc/assets/images/ico_youtube.svg);
}

body:not(.dark-theme) .block-social-header .ico-social-youtube,
.container-pubb-guide-social .ico-social-youtube {
  background-image: url(inc/assets/images/ico_youtube_black.svg);
}

#gform_1 {
  position: relative;
}

#gform_1 input[type="email"] {
  height: 40px;
  border: solid 1px rgba(255, 255, 255, 0.5) !important;
  border-radius: 21px;
  padding: 0 var(--padding-mobile) 0 60px !important;
  font-size: 12px;
  background-image: url(inc/assets/images/ico_mail.svg);
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 24px;
}

#gform_1 .gform_footer {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

.gform_wrapper [type="checkbox"]:not(:checked)+label {
  font-size: 10px !important;
}

#gform_1 input[type="submit"] {
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
  height: 40px !important;
  border: solid 1px var(--color-white) !important;
  font-size: 12px;
}

#gform_1 #field_1_3,
#gform_1 #field_1_5 {
  padding: 0 var(--padding);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-nav {
  font-size: 12px;
  color: var(--color-text-grey);
  display: flex !important;
  flex-direction: column !important;
}

.navbar-nav li {
  margin: 0 0 0;
}

#menu-footer-nav .navbar-nav a {
  color: var(--color-text-grey);
  padding-top: 0;
}



/* card people */
.carousel-people {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 4px var(--color-line);
}

.card-people .label-10 {
  margin: var(--padding-mobile) 0;
  font-weight: 600;
}

.card-people .label-10 .cube {
  background-color: var(--color-black);
}

.provincia {
  font-size: 11px;
  color: var(--color-grey);
}


/* aside */
.aside-title {
  padding: var(--padding) 0;
  border-bottom: solid 1px var(--color-line);
  text-transform: uppercase;
  margin-bottom: var(--padding-mobile);
  font-family: var(--font-heading);
}

.aside-title.pleasure {
  background-color: var(--color-raspberry);
  color: var(--color-white);
  padding-left: var(--padding-mobile);
  padding-right: var(--padding-mobile);
  display: flex;
  justify-content: space-between;
}

.aside-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 var(--padding);
}

.btn-aside-link {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-black);
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: var(--padding-mobile) var(--padding-mobile) var(--padding-mobile) var(--padding-mobile);
  margin-bottom: var(--padding-mobile);
  font-size: 14px;
  font-style: normal;
}

.btn-aside-link:hover {
  color: var(--color-white);
}

.btn-aside-link:last-of-type {
  margin-bottom: 0;
}

.span-arrow {
  display: inline-block;
  width: 30px;
  height: 14px;
  background-image: url(inc/assets/images/ico_arrow_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}

.column-aside .card-news {
  border-bottom: solid 1px var(--color-line);
  margin-bottom: var(--padding-mobile);
}

.column-aside .card-news:last-of-type {
  margin-bottom: 0;
}

.column-aside .figure-default {
  margin-bottom: var(--padding-mobile);
}

.column-aside .card-news-content>p {
  display: none;
}

.label-news-categories {
  font-size: var(--font-size-label);
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin: 0 0 var(--padding-mobile);
  padding: 0;
  font-weight: 600;
}

.pleasure .label-news-categories a,
.pleasure.label-news-categories a {
  color: var(--color-raspberry);
}

.pleasure .cube {
  background-color: var(--color-raspberry);
}

.card-news-content {
  padding-bottom: var(--padding-mobile);
}

.card-news-content>p {
  font-size: 16px;
}

.secrets-places .item-50 {
  margin-bottom: 0;
}


/* agorà banner */
.agora-banner {
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 19px var(--padding);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  margin-bottom: var(--padding);
}

.agora-banner picture {
  min-width: 245px;
}

.agora-banner picture svg {
  width: 100%;
}


.card-news-content-author {
  margin-bottom: var(--padding-mobile);
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.card-news-content-author>a {
  text-decoration: underline;
}

.card-news-aside .card-news-content-author {
  margin-bottom: 0;
}

.card-news-aside .card-news-content-author>a,
.card-news-aside .card-news-content-author>a:hover {
  color: var(--color-grey);
}

.title-section {
  padding: var(--padding) 0 var(--padding);
  margin-bottom: var(--padding);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.title-section-center {
  padding: var(--padding-mobile) 0 var(--padding);
  width: 100%;
  display: block;
  text-align: center;
}

.title-section>div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.title-section [class*="title"] {
  margin-bottom: 0;
}

.title-section.line {
  border-bottom: solid 1px var(--color-line);
}



.btn-default-white,
.btn-default-white:hover {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  color: var(--color-black);
  background-color: var(--color-white);
  padding: 0 var(--padding);
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.btn-default-white .span-arrow {
  background-image: url(inc/assets/images/ico_arrow_right_black.svg);
  background-size: 14px;
  background-position: right center;
}

.btn-small {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 20px;
  padding: 1px 13px;
  font-size: 10px;
  font-weight: 700;
  width: fit-content;
  margin-left: 10px;
  text-transform: uppercase;
  border: solid 1px var(--color-black);
}

.btn-small:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-small svg {
  margin-left: 10px;
  width: 16px;
}

.btn-small:hover svg path {
  fill: var(--color-black);
}



/* card video */
.carousel-video-podcast {
  margin-bottom: var(--padding);
}

.card-video-podcast {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  color: var(--color-white) !important;
  height: 100%;
  position: relative;
}

@media(max-width: 767px) {
  .card-video-podcast {
    height: auto;
    margin-bottom: 25px;
  }
}

.card-video-podcast .card-horizontal-content-time {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.card-video-podcast.no-bg .card-horizontal-content-time {
  right: 35px;
}

.card-video-podcast [class*="title"] {
  color: var(--color-white);
  /*margin-top: var(--padding);*/
}

.search.search-results .card-video-podcast [class*="title"]{
  color: #000;
}

.single-enterprise .card-video-podcast [class*="title"] {
  color: var(--color-black);
}

.single-enterprise .card-video-podcast [class*="author"] a,
.search.search-results .card-video-podcast [class*="author"] a{
  color: var(--color-grey);
}

.card-video-podcast .cube {
  background-color: var(--color-white);
}

.card-video-podcast.podcast {
  background-color: transparent;
}

.card-video-podcast.podcast.no-bg,
.card-video-podcast.voices.no-bg {
  background-color: transparent;
  color: var(--color-white);
}

.single .card-video-podcast.blue.podcast h3,
.single .card-video-podcast.blue.voices h3,
.page-template-page-home .card-video-podcast h3,
.page-template-page-protagonisti .card-video-podcast h3 {
  color: var(--color-black);
}

body.single.dark-theme .bg-white .card-video-podcast.blue.podcast [class*=-author] a,
body.single.dark-theme .bg-white .card-video-podcast.blue.voices [class*=-author] a,
.page-template-page-home .card-video-podcast a,
.page-template-page-protagonisti .card-video-podcast a,
body.single .card-video-podcast.blue.podcast span,
body.single .card-video-podcast.blue.voices span,
.page-template-page-home .card-video-podcast span,
.page-template-page-protagonisti .card-video-podcast span {
  color: var(--color-grey);
}

.card-video-podcast figure {
  margin-bottom: 0;
}

.card-video-podcast-content {
  padding: var(--padding) var(--padding) 15px;
  position: relative;
  height: 100%;
}

.no-bg .card-video-podcast-content {
  padding-left: 0;
  padding-right: 0;
}

/*.card-video-podcast-content::before {
  display: block;
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #9B8D40;
  background-image: url(inc/assets/images/ico_video.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  bottom: 10px;
  right: 10px;
}

.podcast .card-video-podcast-content::before {
  background-image: url(inc/assets/images/ico_podcast.svg);
  background-color: #4A8CD8;
}

.podcast.no-bg .card-video-podcast-content::before,
.voices.no-bg .card-video-podcast-content::before {
  background-color: transparent;
  background-position: center right;
}*/

#masthead .block-social-header,
#masthead #menu-language-nav {
  display: none;
}



/* card contributor */
.blocco-contributor-aside {
  padding: var(--padding);
  background-color: #EFEFEF;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: var(--padding);
}

.blocco-contributor-aside-header {
  background-color: var(--color-black);
  padding: var(--padding) calc(var(--padding)*2);
}

.blocco-contributor-aside .title-16 {
  padding-bottom: var(--padding-mobile);
  border-bottom: solid 1px var(--color-line);
}

.contributor-di-categoria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--padding);
}

.contributor .card-people-content [class*="title"] {
  margin: var(--padding-mobile) 0;
}

.contributor .card-people-content .abstract {
  font-size: 12px;
  margin-bottom: 0;
}

.card-contributor {
  background-color: var(--color-line);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.column-aside .card-contributor {
  margin-bottom: var(--padding);
}

.card-contributor-figure {
  background-color: var(--color-black);
  padding: 20px var(--padding);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.card-contributor-figure figure {
  margin-right: var(--padding);
}

.card-contributor-content {
  padding: var(--padding);
  font-size: 14px;
}

.card-contributor-content p{
  line-height: 1.4;
  font-size: 16px;
}

/* category horintal */
.category-header.line-top {
  border-top: solid 1px var(--color-line);
  margin-top: 30px;
}

.category-header {
}

.category-header svg {
  margin-right: var(--padding-mobile);
}

.news-categories-navigation {
  border-bottom: solid 1px var(--color-line);
  padding-top: 13px !important;
}

.categorie-in-evidenza {
  display: flex;
  width: 100%;
  overflow: hidden;
  font-size: 10px;
  padding-bottom: 13px;
  justify-content: center;
  align-items: anchor-center;
}


.sub-categorie {
  width: 100%;
  max-width: 1440px;
  padding: var(--padding) var(--padding) 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.sub-categorie::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: var(--color-line);
  position: absolute;
  left: 50%;
  top: calc(50% + 11px);
  transform: translateX(-50%);
}

body.category-2251 .sub-categorie::before{
  display: none;
}

.categorie-in-evidenza .sub-categorie a {
  display: inline-block;
  margin: var(--padding-mobile);
}

.categorie-in-evidenza a {
  display: inline-block;
  position: relative;
  margin: 0 var(--padding-mobile);
}

.categorie-in-evidenza a.active::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -13px;
  left: 0;
  display: block;
}

.overlay-categorie {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 !important;
  position: relative;
  padding: var(--padding) var(--padding) 0;
}

.overlay-categorie.open {
  display: flex;
}

.overlay-categorie:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: var(--color-line);
}

.overlay-categorie li {
  padding: 0 var(--padding-mobile) var(--padding);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}


/* navigazione pagine */
.pagination-default,
.pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 0 18px 0;
}

.pagination {
  padding: 18px 0;
  position: relative;
  margin-top: 50px;
}

.pagination::before {
  content: "";
  position: absolute;
  top: 0;
  /*right: -22px;*/
  /*width: 100vw;*/
  right: 0px;
  width: 100%;
  border-top: solid 1px var(--color-line);
  height: 1px;
}

.nav-links,
.pagination>ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.nav-links>span,
.nav-links>a,
.pagination>ul>li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 27px;
  margin: 0 4px;
  border-radius: 14px !important;
  border: solid 1px var(--color-line) !important;
  font-size: 12px !important;
  padding: 0 10px !important;
  min-width: 27px;
  cursor: pointer !important;
}

.nav-links .next,
.nav-links .prev {
  overflow: hidden;
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
}

.nav-links .current,
.pagination>ul>li.active {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}



/* NEWS */
.js-news-full {
  display: none;
}

.entry-content.active {
  display: block !important;
}

.entry-content,
.entry-content p {
  font-size: 18px;
  line-height: 1.4;
}

.breadcrumb, .tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 15px 0 30px;
  font-size: var(--font-size-label);
}

.tags a, span.breadcrumb_last {
  font-size: var(--font-size-label);
  text-transform: uppercase;
  font-weight: 600;
  margin-right: var(--padding);
}

.breadcrumb a, .breadcrumb span {
  font-size: var(--font-size-label);
  text-transform: uppercase;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #00FF32;
}

.tags .cube {
  border: solid 1px var(--color-black);
  background-color: transparent;
}

.entry-hedear-title-time {
  display: flex;
  flex-direction: row;
}

.time-news {
  display: none;
  flex-direction: row;
  width: 140px;
  align-items: center;
  justify-content: flex-end;
  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
}

.time-news-video-podcast {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.time-news svg {
  margin-right: var(--padding-mobile);
}

.entry-hedear-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 15px 0 30px;
}

.entry-meta {
  font-size: 10px;
  font-weight: 600;
  margin-right: var(--padding);
}

.entry-meta svg {
  margin-right: 5px;
}

.entry-hedear-info .card-news-content-author {
  margin-bottom: 0;
  margin-right: var(--padding-mobile);
}

article .entry-content a,
article .entry-content a:hover {
  text-decoration: underline !important;
}

.column-6-element {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

/* language */
ul#language li:first-child {
  margin-right: 12px;
  position: relative;
}

ul#language li:first-child::before {
  content: "/";
  display: block;
  position: absolute;
  right: -9px;
  top: -2px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-black);
  font-family: var(--font-heading-bold);
}

body.dark-theme ul#language li:first-child::before {
  color: var(--color-white);
}

/* advisor */
.header-page {
  position: relative;
  width: 100%;
}

.header-page>.logo-advisor {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(inc/assets/images/logo-header-advisor.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(230px, 70%, 552px);
  padding-top: 7%;
  overflow: hidden;
  text-indent: -999px;
}

.header-page>.logo-agora {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(inc/assets/images/logo_agora_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(230px, 70%, 352px);
  padding-top: 7%;
  overflow: hidden;
  text-indent: -999px;
}


.carousel-brand {
  margin-left: 3px;
}

.item-brands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

.item-brands>a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 100%;
  position: relative;
  border: solid 1px var(--color-line);
}

.item-brands>a span,
.item-brands>a img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90% !important;
}




/* filtri */
.container-filters {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: calc(var(--padding)*2) 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.container-filters:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: var(--color-black);
  border-top: solid 3px var(--color-green);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.more-filters {
  display: none;
  flex: 0 1 100%;
  position: relative;
  width: 100%;
  height: 100%;
  height: fit-content;
  padding: var(--padding) 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

.more-filters.open {
  display: flex;
}

.container-filters label {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: relative;
  height: 68px;
}

.container-checkbox::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 38px;
  border-radius: 24px;
  border: solid 1px var(--color-line);
  display: block;
}

.container-checkbox {
  width: 75px;
  min-width: 75px;
  position: relative;
}

.container-checkbox b {
  position: absolute;
  bottom: 11px;
  right: 15px;
}

.container-checkbox input {
  position: relative;
  top: 8px;
  left: 10px;
}

.container-filters label span {
  font-family: var(--font-heading-bold);
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  margin: 0 0 11px;
}

.container-filters input[type="text"],
.container-filters select {
  width: 100%;
  height: 38px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 24px;
  border: solid 1px var(--color-line);
  font-size: 12px;
  padding-left: var(--padding-mobile);
  padding-right: var(--padding-mobile);
  text-transform: uppercase;
}

.container-filters select option {
  background: rgba(0, 0, 0, 1);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.btn-more-filters {
  width: 38px;
  height: 38px;
  border: solid 1px var(--color-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-more-filters.active svg {
  position: relative;
  transform: rotate(-45deg);
}

.containers-filters-fields {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.containers-filters-fields label:not(.container-checkbox) {
  width: 100%;
}

.containers-filters-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.container-dicono-di-noi {
  padding: 30px 0 0;
  margin-top: 20px;
  border-top: solid 1px var(--color-line);
}

.card-dicono {
  background-color: var(--color-black);
  padding: var(--padding);
  color: var(--color-white);
  position: relative;
  font-size: 12px;
  height: 100%;
}

.card-dicono [class*="title"] {
  padding-bottom: var(--padding-mobile);
  position: relative;
}

.card-dicono [class*="title"]::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background-color: var(--color-green);
  bottom: 0;
  left: 0;
  position: absolute;
}

.card-dicono-autore {
  font-family: var(--font-heading-bold);
  font-size: 12px;
  display: block;
  margin: 0;
}

.carousel-dicono {
  position: relative;
}

.carousel-dicono .owl-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.carousel-dicono .owl-nav button {
  border: none;
  background-color: transparent !important;
  margin: 0;
  width: 30px;
}

.carousel-dicono .owl-nav button span {
  color: var(--color-black);
  font-size: 18px;
}


.btn-default {
  width: fit-content;
  height: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 var(--padding);
  background-color: var(--color-black);
  color: var(--color-white) !important;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  border-radius: 13px;
  border: solid 1px var(--color-black);
}

.btn-default:hover {
  background-color: var(--color-white);
  color: var(--color-black) !important;
}

.btn-default.white {
  background-color: var(--color-white);
  color: var(--color-black) !important;
}

.btn-default.prev {
  background-image: url(inc/assets/images/ico_arrow_left.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 20px center;
  padding-left: 50px;
}

.btn-default.next {
  background-image: url(inc/assets/images/ico_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: calc(100% - 20px) center;
  padding-right: 45px;
  margin-left: var(--padding);
}

.btn-default.white.next {
  background-image: url(inc/assets/images/ico_arrow_right_black.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: calc(100% - 20px) center;
  padding-right: 45px;
  margin-left: var(--padding);
}

.btn-default.carousel {
  margin-right: 95px;
}

/* advisor page */
.entry-header-people {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: var(--padding) 0;
  margin-bottom: var(--padding);
}

.entry-header-people-info-name {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
}

.entry-header-people-info-name .title-34 {
  margin: 0;
}

.entry-header-people-image {
  width: clamp(126px, 33%, 246px);
}

.entry-header-people-info {
  width: 100%;
  max-width: calc(100% - 246px);
  padding: 0 0 0 var(--padding);
}

.entry-header-people-info .label-10 {
  margin-bottom: max(10px, min(20px, calc(10px + 2vw)));
}

.address {
  width: fit-content;
  display: flex;
  flex-direction: row;
  margin-bottom: max(10px, min(20px, calc(10px + 2vw)));
  position: relative;
}

.address::before {
  width: calc(100% - 35px);
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  bottom: 0;
  left: 35px;
  content: "";
  display: block;
}

.address span {
  display: inline-block;
  margin-left: var(--padding-mobile);
}

.ico-ocf {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.ico-ocf>div {
  margin-left: var(--padding-mobile);
}

.ico-ocf p {
  margin: 0;
}

.blocco-hubspot {
  margin-bottom: 40px;
}

.hubspot-logo p {
  font-size: 18px;
  text-align: left;
  line-height: 1.2em;
  color: #666;
  font-family: 'triumphbrokmanregular';
  font-weight: 700;
  width: 100%;
  clear: both;
}

.hubspot-description {
  text-align: left;
}



.hubspot-description>p {
  display: none;
}

.blocco-form-hubspot p {
  font-size: 16px;
  clear: both;
  width: 100%;
  text-align: left;
  line-height: 1.2em;
  font-style: italic;
}

.blocco-form-hubspot p::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f30f";
  margin-right: 8px;
  font-style: normal;
}

.hs_submit.hs-submit {
  margin-top: 20px;
}

@media(max-width: 767px) {

  .blocco-hubspot {
    display: block;
  }

  .hubspot-description {
    width: 100%;
    margin-bottom: 20px;
  }

  .hubspot-description p {
    font-size: 16px;
    line-height: 1.2em;
  }
}

/* ====== HUBSPOT FORM IN ARTICLE --- INIZIO */
/* Reset di base per il form all'interno di .blocco-form-hubspot */
.blocco-form-hubspot form {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.blocco-form-hubspot form fieldset.form-columns-1 .input {
  margin-right: 0;
}

/* Disposizione dei campi per desktop */
.blocco-form-hubspot form fieldset {
  border: none;
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Stile per i singoli campi */
.blocco-form-hubspot .hs-form-field {
  margin-top: 10px;
}

/* Stile per input e textarea */
.blocco-form-hubspot .hs-form-field .hs-input {
  padding: 14px;
  font-size: 18px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.blocco-form-hubspot .hs-form-field input.hs-input[type="text"],
.blocco-form-hubspot .hs-form-field input.hs-input[type="password"],
.blocco-form-hubspot .hs-form-field input.hs-input[type="email"],
.blocco-form-hubspot .hs-form-field input.hs-input[type="tel"],
.blocco-form-hubspot .hs-form-field textarea.hs-input {
  width: 100% !important;
}

/* Stile per textarea */
.blocco-form-hubspot .hs-form-field textarea {
  min-height: 100px;
  resize: vertical;
  /* Permette di ridimensionare verticalmente */
}

/* Stile per errori */
.blocco-form-hubspot .hs-error-msgs {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

/* Stile per messaggi di errore */
.blocco-form-hubspot .hs-error-msg {
  color: #d9534f;
  margin-top: 5px;
  font-size: 12px;
  font-style: italic;
}

/* Media query per mobile */
@media (max-width: 768px) {

  /* Campi uno sotto l'altro su mobile */
  .blocco-form-hubspot form fieldset {
    flex-direction: column;
  }

  .blocco-form-hubspot .hs-form-field {
    min-width: 100%;
    /* Ogni campo prende tutta la larghezza disponibile */
  }
}

/* ====== HUBSPOT FORM IN ARTICL --- FINE */


.blocco-consulenza {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 38px var(--padding);
  border-top: solid 3px var(--color-green);
  text-align: center;
  margin-bottom: 50px;
}

.blocco-consulenza .btn-green {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  border: solid 1px var(--color-green);
}

.blocco-consulenza .btn-green:hover {
  background-color: transparent;
}

.advisor-quote {
  font-size: var(--font-size-xxl);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 400;
  padding: 0 0 0 30px;
  margin-bottom: 50px;
  border-left: solid 2px var(--color-black);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.advisor-quote>* {
  order: 1;
}

.advisor-quote .user-icons {
  order: 0;
  width: 100%;
  margin-bottom: 11px;
}

.advisor-quote b,
.advisor-quote strong {
  font-weight: 600;
}

.entry-hedaer-people-site{
  padding-top: 15px;
}

.entry-hedaer-people-site .btn-visit-site,
.entry-hedaer-people-site .btn-visit-site-margin-left{
  font-size: 10px;
  text-transform: uppercase;
  height: 20px;
  line-height: 23px;
}

.entry-hedaer-people-site .btn-visit-site-margin-left{
  margin-left: 15px;
}

.btn-site {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  background-image: url(inc/assets/images/ico_globe.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-right: 25px;
  height: 20px;
  line-height: 2;
}

.btn-linkedin {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding-right: 25px;
  background-image: url(inc/assets/images/ico_linkedin_site.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px;
  height: 20px;
  line-height: 2;
}

.btn-facebook {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding-right: 25px;
  background-image: url(inc/assets/images/ico_facebook_black.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px;
  height: 20px;
  line-height: 2;
}

.btn-twitter {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding-right: 25px;
  background-image: url(inc/assets/images/ico_x_black.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 15px;
  height: 20px;
  line-height: 2;
}

.horizontal-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  font-size: 12px;
  font-family: var(--font-heading-bold);
  margin: 0 0 50px !important;
  padding: 0 !important;
  text-transform: uppercase;
}

.horizontal-list li {
  margin-right: var(--padding-mobile);
  margin-bottom: var(--padding);
  position: relative;
}

.ico-flag {
  padding-left: var(--padding);
  background-image: url(inc/assets/images/ico_flag.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 2px 0px;
}

.ico-flag::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: solid 1px var(--color-black);
  position: absolute;
  top: 2px;
  left: 0;
}

.blocco-certificazioni,
.blocco-esperienze {
  display: flex;
  flex-direction: column;
  margin: 0 0 50px;
}

.blocco-certificazioni li,
.blocco-esperienze li {
  margin-top: 24px !important;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px var(--color-line);
}

.entry-content .experience-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 !important;
}

.experience-list::marker {
  display: none;
}

.entry-content .experience-description {
  font-size: 14px !important;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  margin: 0px 0 20px !important;
}

.entry-content [class*="experience-"] {
  margin: 0 0 3px;
  text-transform: uppercase;
}

.entry-content p.experience-date {
  font-size: 12px !important;
  text-transform: uppercase;
  margin: 0;
}

.testata-page {
  width: 100%;
  padding: 0 0 var(--padding);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.testata-page [class*="title"] {
  margin-bottom: 0;
}

.full-line-bottom,
.full-line-top {
  position: relative;
}

.full-line-bottom::before,
.full-line-top::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: var(--color-line);
  position: absolute;
  bottom: 0;
  right: -22px;
  display: block;
}

.full-line-top::after {
  bottom: inherit;
  top: 0;
}

.posizione {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin: 0 0 10px;
}


/* guide */
.column-3-element {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px;
}

.column-aside .card-pubb-title,
.column-aside .card-pubb-description {
  display: none;
}

.card-pubb-title {
  margin-top: var(--padding);
}

.card-pubb-description {
  font-size: 12px;
  margin-top: var(--padding);
}

.container-pubb-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px 0px;
  padding-bottom: var(--padding);
  border-bottom: solid 1px var(--color-line);
}

.container-pubb-guide-social {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  justify-content: space-between;
  padding: var(--padding) 0 var(--padding-mobile);
}

.container-pubb-guide-social.podcast {
  padding-top: 0;
  margin-bottom: var(--padding);
  border-bottom: solid 1px var(--color-line);
  justify-content: flex-start;
}

body.single-news .container-pubb-guide-social,
body.single-podcast .container-pubb-guide-social {
  padding-top: 0;
  padding-bottom: var(--padding);
  margin-bottom: var(--padding);
  border-bottom: solid 1px var(--color-line);
  justify-content: flex-start;
}

body.single-news .container-pubb-guide-social {
  padding-top: var(--padding);
}

.container-pubb-guide-social a {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-indent: -999px;
  overflow: hidden;
  background-size: 20px !important;
}

.ico-social-bookmark,
.ico-social-whatsapp {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  overflow: hidden;
  text-indent: 999px;
  margin-left: var(--padding-mobile);
}

.ico-social-bookmark {
  background-image: url(inc/assets/images/ico_bookmark.svg);
}

.ico-social-whatsapp {
  background-image: url(inc/assets/images/ico_whatsapp.svg);
}

.blocco-ultime-pubblicazioni {
  border-top: solid 1px var(--color-line);
  padding: var(--padding) 0;
  margin-bottom: var(--padding);
}

.blocco-ultime-pubblicazioni .card-pubb-description {
  display: none;
}


#contributor-results,
#talents-results {
  margin-bottom: calc(var(--padding)*2);
}


/* secret places */
.card-place-small [class*="title-"] {
  margin-bottom: 0;
}

.card-place {
  display: flex;
  border: solid 1px var(--color-line);
}

body.category-pleasure-assets .card-place {
  background-color: var(--color-raspberry);
  color: var(--color-white) !important;
  border: none;
}

.card-place-picture {
  width: 50%;
}

.card-place-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: var(--padding);
  align-content: stretch;
  align-items: flex-start;
  justify-content: space-between;
}

.card-place-content-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.card-place-content-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.card-place-content-footer>* {
  margin: 0;
}

.circle-time {
  position: relative;
  width: 36px;
  height: 36px;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: var(--padding-mobile);
}

.circle-time svg {
  margin: 0;
  width: 26px;
  height: 26px;
}


.logo-enterprise {
  width: 100%;
  max-width: 1440px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  top: 2px;
  padding: 0 var(--padding);
}

.logo-enterprise picture {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--padding-mobile);
  width: 170px;
  height: 170px;
}

.enterprise-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--padding);
  border-bottom: solid 1px var(--color-line);
}

.enterprise-navigation a {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin: 0 var(--padding-mobile);
  position: relative;
}

.enterprise-navigation a.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  bottom: -22px;
  left: 0;
  display: block;
}

article.enterprise h2 {
  font-size: 18px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  margin-top: max(10px, min(30px, calc(10px + 2vw)));
  ;
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
  ;
}

article.enterprise h1 {
  font-size: var(--font-size-xxl);
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  position: relative;
  padding-left: var(--padding-mobile);
}

article.enterprise .entry-content>p:first-of-type {
  /* padding-left: var(--padding-mobile); */
}

article.enterprise h1::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--color-black);
  position: absolute;
  top: 0;
  left: 0;
}


.column-aside-contatti {
  width: 100%;
  border-top: solid 1px var(--color-line);
  border-bottom: solid 1px var(--color-line);
  padding: var(--padding) 0;
  font-size: var(--font-size-p);
}

article.enterprise .column-aside-contatti {
  border: none;
}

.column-aside-contatti>nav>ul {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  list-style: none;
  width: 100%;
}

.column-aside-contatti>nav>ul .fa,
.column-aside-contatti>nav>ul .fa-brands {
  display: inline-block;
  margin-right: var(--padding-mobile);
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}

.column-aside-contatti>nav>ul .fa-envelope {
  top: 1px;
}

.column-aside-contatti>nav>ul>li>a {
  display: flex;
  flex-direction: row;
}

.column-aside-contatti>nav>ul>li>a[href*="mailto"] {
  font-size: 14px;
}

.column-aside-contatti>nav>ul>li {
  margin: 0;
}

.prima {
  font-family: var(--font-heading-bold);
  font-size: 18px;
}

.column-aside-contatti>nav>ul .fa-map-marker::before {
  background: url(inc/assets/images/ico_map_pin.svg) no-repeat center;
  background-size: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
}

.column-aside-contatti>nav>ul .fa-envelope::before {
  background: url(inc/assets/images/ico_envelope_black.svg) no-repeat center;
  background-size: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
}

.column-aside-contatti>nav>ul .fa-phone::before {
  background: url(inc/assets/images/ico_phone.svg) no-repeat center;
  background-size: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
}

#menusidebarContact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

#menusidebarContact li {
  margin-bottom: var(--padding-mobile);
}

.fa-linkedin::before {
  background: url(inc/assets/images/ico_linkedin_black.svg) no-repeat center;
  background-size: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
}

.fa-twitter::before {
  background: url(inc/assets/images/ico_x_black.svg) no-repeat center;
  background-size: 16px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
}

#map {
  width: 100%;
  height: 50vh;
  margin-bottom: max(30px, min(50px, calc(30px + 3vw)));
  ;
}


.blocco-categoria {
  display: flex;
  flex-direction: column;
}

.blocco-categoria .title-section {
  order: 0;
}

.blocco-categoria .item-brands {
  order: 2;
}

.blocco-categoria .column-3-element {
  order: 1;
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
}

.blocco-categoria .adv-banner {
  order: 3;
  margin-bottom: max(10px, min(30px, calc(10px + 2vw))) !important;
}

.blocco-categoria .line-bottom {
  order: 4;
}



/* blocco patrimonio */
.blocco-patrimonio {
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  text-align: center;
  margin-bottom: var(--padding);
}

.logo-your-advisor {
  background-image: url(inc/assets/images/logo-header-advisor.svg);
  background-position: 40% center;
  background-repeat: no-repeat;
  background-size: 84%;
  width: 100%;
  padding-top: 30%;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
}

.blocco-patrimonio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--padding);
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}

.blocco-patrimonio-content p {
  padding: 0 10px;
}

.blocco-patrimonio-content .btn-green {
  width: 100%;
  min-width: 100%;
  color: var(--color-black) !important;
  font-size: 14px;
}



/* pleasure */
.lancio-copertina {
  position: relative;
}

.lancio-copertina-overlay {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: calc(100% - 44px);
  max-width: calc(1440px - 44px);
}

.lancio-copertina-card {
  float: right;
  width: 500px;
  height: 100%;
  padding: var(--padding);
  background-color: var(--color-raspberry);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
}

.story .lancio-copertina-card {
  float: left;
  width: 36.5%;
}

.lancio-copertina-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lancio-copertina-card a,
.lancio-copertina-card a:hover,
body.category-pleasure-assets .card-place a,
body.category-pleasure-assets .card-place a:hover {
  color: var(--color-white);
}

.lancio-copertina-card .cube {
  background-color: var(--color-white);
}

body.category-pleasure-assets .card-news .cube,
body.category-pleasure-assets .card-horizontal .cube {
  background-color: var(--color-raspberry);
}

body.category-pleasure-assets .card-news .label-news-categories {
  color: var(--color-raspberry);
}

.carousel-news-hp .card-news.item>.label-figure>a {
  display: none !important;
}

.line-top-title {
  border-top: solid 1px var(--color-line);
}

/* singel page */
.title-header-page {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  color: var(--color-white);
  text-align: center;
}



.blocco-categorie {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blocco-categorie>* {
  order: 2;
}

.blocco-categorie>.title-section {
  order: 1;
}

.disclaimer {
  border: solid 2px var(--color-green);
  padding: var(--padding);
  max-width: 900px;
  margin: var(--padding-mobile) auto 0;
  background-color: rgba(0, 0, 0, 0.03);
}

.disclaimer-button {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: var(--padding) 0 0;
}



.blocco-spreaker {
  width: 100%;
  margin-top: max(10px, min(30px, calc(10px + 2vw)));
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
}





/* dark-theme */
body.dark-theme .card-news-aside {
  border-bottom: solid 1px var(--color-line-dark-theme);
}

body.dark-theme [class*="label"] a,
body.dark-theme [class*="title-"] a {
  color: var(--color-white);
}

body.dark-theme .cube {
  background-color: var(--color-blue);
}

body.dark-theme[class*="voices"] .cube {
  background-color: var(--color-gold);
}

body.dark-theme .btn-aside-link,
body.dark-theme .blocco-patrimonio,
body.dark-theme :not(.bg-white) .adv-banner {
  background-color: #131313;
}

body.dark-theme .adv-banner {
  border-color: var(--color-line-dark-theme);
}

body.dark-theme .bg-white .adv-banner {
  background-color: var(--color-light-grey);
  border-color: var(--color-line);
}

body.dark-theme .title-section {
  border-bottom: solid 1px var(--color-line-dark-theme);
}

body.dark-theme .line-bottom::before {
  background-color: var(--color-line-dark-theme);
}

body.dark-theme .column-3-element,
body.dark-theme .column-2-element {
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
}

body.dark-theme a:not(.btn-accedi),
body.dark-theme a:not(.btn-area-privata),
body.dark-theme .bg-white .blocco-consulenza a.btn-registrati,
body.dark-theme .bg-white .card-video-podcast.blue [class*="-author"] a {
  color: var(--color-white);
}

body.dark-theme .bg-white a:not(.btn-accedi),
body.dark-theme .bg-white a:not(.btn-area-privata) {
  color: var(--color-black);
}

body.dark-theme .bg-white [class*="-author"] a {
  color: var(--color-grey);
}

body.dark-theme .nav-links .current,
body.dark-theme .pagination>ul>li.active {
  background-color: var(--color-white);
  color: var(--color-black);
}

body.dark-theme .testata {
  background-color: #050505;
  border-color: var(--color-line-dark-theme);
}

body.dark-theme .block-advisor {
  border-color: var(--color-white);
}

.block-advisor:before {
  background-color: var(--color-white);
}

body.dark-theme .logo-testa {
  background: url(inc/assets/images/logo_dark_theme.png) no-repeat center;
  background-size: 107px;
}

body.dark-theme.active-menu .logo-testa {
  background-size: 65px;
}

body.dark-theme .logo-testa svg {
  opacity: 0;
}

body.dark-theme .blue .cube {
  background-color: var(--color-white);
}

body.dark-theme .card-horizontal {
  border-bottom: solid 1px var(--color-line-dark-theme);
}


.header-page-title {
  width: 100%;
  text-align: center;
  margin-top: max(30px, min(70px, calc(30px + 4vw)));
  margin-bottom: max(10px, min(10px, calc(10px + 2vw)));
  padding-left: var(--padding);
  padding-right: var(--padding);
}

/* form registrazione */
.form-container {
  margin: 0 auto;
  width: 100%;
  max-width: 450px;
  padding: 0;
}

.form-container.form-step-3,
.form-default {
  padding: 0 var(--padding-mobile);
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-container input:not([type='checkbox']),
.form-container select,
.form-default input:not([type='checkbox']),
.form-default select {
  width: 100%;
  height: 40px;
  min-height: 40px;
  padding: 5px var(--padding-mobile);
  border: solid 1px var(--color-line);
  border-radius: 20px;
}

.form-container input[type=checkbox],
.form-default input[type=checkbox] {
  margin: 0 var(--padding-mobile) 0 0;
  position: relative;
  top: 3px;
}

.form-container input[type='submit'],
.form-default input[type='submit'] {
  background-color: var(--color-green) !important;
  color: var(--color-black) !important;
  border: solid 1px var(--color-green) !important;
  width: 100% !important;
  max-width: 300px !important;
  margin: var(--padding) auto;
}

.link-underline,
.link-underline:hover {
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #676767;
  text-transform: uppercase;
  margin: 0;
}

.link-underline a,
.link-underline a:hover {
  text-decoration: underline;
  color: #676767;
}

.row-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: max(10px, min(20px, calc(10px + 2vw)));
}

.row-form.no-column {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.row-form label {
  font-size: 14px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  margin-bottom: var(--padding-mobile);
  height: 100%;
}

.login-social {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-social-label {
  text-align: center;
  margin: var(--padding) 0;
  position: relative;
  border-top: solid 1px var(--color-line);
}

.login-social-label span {
  display: inline-block;
  color: #676767;
  font-size: 14px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  background-color: var(--color-white);
  padding: 2px 12px;
  position: relative;
  top: -13px;
}

.login-social-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: var(--padding);
}

.row-form-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #676767;
  text-transform: uppercase;
}



/* accordion */
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}

.tab input:checked~.tab__content {
  max-height: 10rem;
}

.tab__label::after {
  content: "\2039";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  /* transition: all 0.35s; */
  position: absolute;
  top: 0;
  right: 10px;
}

.tab input:checked+.tab__label::after {
  transform: rotate(270deg);
  right: 20px;
}

.accordion {
  width: 100%;
  padding: 0 0 !important;
  border-top: solid 1px var(--color-line);
}

.accordion .tab {
  width: 100%;
  padding: var(--padding) 0;
  border-bottom: solid 1px var(--color-line);
}

.tab__label {
  font-family: var(--font-heading-bold);
  padding-right: 60px;
  width: 100%;
  position: relative;
}

.accordion .tab__content p {
  padding: var(--padding) 60px 0 0;
}




/* contatti */
.blocco-address {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #efefef;
  padding: var(--padding);
}

.blocco-address-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: solid 1px var(--color-line);
  padding: var(--padding) 0;
}

.blocco-address-row:last-of-type {
  border-bottom: none;
}

.blocco-address-row-label {
  width: 40%;
  flex: 0 0 40%;
  font-size: 14px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.blocco-address-row-label svg {
  margin-right: 10px;
}

.blocco-address-row-info {
  text-align: right;
}

.blocco-address-row-info a {
  text-decoration: underline;
}

.double-line {
  border-top: solid 1px var(--color-line);
  border-bottom: solid 1px var(--color-line);
}

/* registrazione */
#registration-message,
#reset-password-message,
#new-password-message {
  width: 100%;
  text-align: center;
  padding: 0 var(--padding) var(--padding);
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--font-heading);
  text-decoration: underline;
}

[class*="step-title-"] {
  display: none;
}

[class*="step-title-"].active {
  display: block;
}

.step-registrazione {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: var(--padding) 0 0;
  width: 100%;
}

.step-registrazione>* {
  display: block;
  width: 60px;
  height: 5px;
  border-radius: 3px;
  background-color: #ddd;
  margin: var(--padding) 5px 0;
}

.step-registrazione>div.active {
  background-color: var(--color-black);
}

.row[class*="step-"] {
  display: none;
}

.row[class*="step-"].active {
  display: flex;
}

.label-form-registrazione {
  border: solid 1px var(--color-line);
  padding: var(--padding-mobile);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  color: #676767;
}

.title-checkbox {
  font-size: 14px;
  font-family: var(--font-heading-bold);
  margin: 0 0 6px;
  padding: 0;
}

.label-form-registrazione input[type="checkbox"] {
  min-width: 14px;
}

.label-form-registrazione.checkbox-checked {
  color: var(--color-black);
  border-color: var(--color-black);
}

.form-step-2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-step-2>*,
.form-container.form-step-3>*,
.form-default>* {
  width: 48.5%;
}

.form-step-2>* label {
  height: 100%;
}

.form-button,
.form-container.form-step-3>.form-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.step-2 .form-button {
  justify-content: flex-end;
}

.form-button>label {
  margin-left: 24px;
  width: 100%;
  flex: 1 1 100%;
}

.form-step-3 .form-button>label {
  margin-left: 0;
}

.form-button>p {
  margin: var(--padding) 0;
  width: 100%;
  flex: 1 1 100%;
  font-size: 12px;
}

.btn-form-prev {
  width: 40%;
  max-width: 300px;
  height: 40px;
  border: solid 1px var(--color-black);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 5px var(--padding);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
}

.btn-green-prosegui {
  cursor: pointer;
  width: 40%;
  max-width: 300px;
  height: 40px;
  border: solid 1px var(--color-green);
  background-color: var(--color-green);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 5px var(--padding);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}


.blocco-mondo-ww {
  background-color: var(--color-dark-grey);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--padding);
  color: var(--color-white);
}

.blocco-mondo-ww-header {
  width: 70%;
  padding-bottom: var(--padding);
}

.blocco-mondo-ww-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.blocco-mondo-ww-card {
  width: 48%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--padding);
}

.blocco-mondo-ww-card-title {
  font-size: 12px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  margin: var(--padding) 0 0;
}

.blocco-mondo-ww-card-title span {
  color: var(--color-green);
}

.blocco-mondo-ww-footer {
  margin-top: var(--padding);
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  padding-top: var(--padding);
  font-size: 14px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.blocco-mondo-ww-footer h3 {
  font-size: 14px;
  margin: 0;
}

.btn-stroke-white {
  width: fit-content;
  display: flex;
  align-items: center;
  height: 40px;
  border: solid 1px var(--color-white);
  border-radius: 21px;
  padding: 0 var(--padding);
  text-transform: uppercase;
  color: var(--color-white);
}


.btn-lanci {
  width: 100%;
  height: 100%;
  padding: var(--padding) var(--padding-mobile);
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.btn-lanci svg {
  min-width: 20px;
  display: block;
}

.btn-lanci span {
  display: inline-block;
  width: 100%;
  margin: 0 10px;
  font-size: 14px;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
}


/* area privata */
body.area-profile #masthead,
body.area-profile #topbanner-container,
body.area-profile footer.site-footer {
  display: none !important;
}

body.area-profile #content {
  margin-top: 0 !important;
}

body.area-profile .container {
  top: 0 !important;
  max-width: auto !important;
}


.page-area-privata {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
}

.nav-area-privata {
  width: 380px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--padding-mobile) var(--padding);
  align-self: auto;
}

.header-area-privata {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white) !important;
  font-size: 14px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 30px;
}

.link-area-privata {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.link-area-privata a,
.link-area-privata a:hover {
  color: var(--color-white);
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--font-heading-bold);
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: var(--padding) 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.link-area-privata a.active,
.link-area-privata a.active:hover {
  color: var(--color-green);
}

.link-area-privata a svg {
  color: var(--color-white);
  width: auto;
  height: 24px;
  display: inline-block;
  margin-right: 10px;
}

.logout-area-privata a svg {
  width: auto;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}

.link-area-privata a svg path {
  fill: var(--color-white);
}

.link-area-privata a.active svg path {
  fill: var(--color-green);
}

.logout-area-privata {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 100px 0 var(--padding);
}

.logout-area-privata a,
.logout-area-privata a:hover {
  color: var(--color-white);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  width: 100%;
  padding: var(--padding) 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.content-area-privata {
  width: calc(100% - 380px);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.content-area-privata-header {
  width: 100%;
  padding: 45px;
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px var(--color-line);
}

.content-area-privata-main {
  padding: 45px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-default {
  margin-bottom: 20px;
  padding: 30px 0 50px;
  position: relative;
}

.form-default::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: var(--color-line);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.row-form input[type="checkbox"] {
  margin-left: 0;
  margin-right: 15px;
}

.title-area-privata {
  border-bottom: solid 1px var(--color-line);
  padding: 0 0 var(--padding);
  margin-bottom: 30px;
}

.content-area-privata .title-section .btn-default {
  margin-right: 60px;
}

.card-interesse {
  display: flex;
  flex-direction: column;
  border: solid 1px var(--color-line);
}

.card-interesse.active {
  border-color: var(--color-black);
}

.card-interesse figure {
  margin-bottom: 0;
}

.card-interesse label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--padding);
  text-transform: uppercase;
}

.card-interesse.active label {
  background-color: var(--color-black);
  color: var(--color-white);
}


/* search */
.ico-search {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
}

.ico-search svg{
  width: 16px;
  height: 16px;
}

@media (min-width: 992px){
  .header-top .ico-search{
    width: 25px;
    height: 25px;
    border: none;
  }

  .header-top .ico-search svg{
    width: 12px;
    height: 12px;
  }
}

.ico-search.active {
  background-color: var(--color-white);
  border-radius: 50px;
}

.ico-search.active svg {
  width: 16px;
  height: auto;
}

.ico-search.active svg path {
  fill: var(--color-black);
}

.container-form-search {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 2000;
  background-color: var(--color-black);
  top: 44px;
  left: 0;
  width: 100%;
  min-height: 110px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vh var(--padding);
  color: var(--color-white) !important;
}

.container-form-search.open {
  display: flex;
}

.search-form {
  width: clamp(300px, 50%, 600px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  margin-top: 2vh;
}

.search-form label {
  width: 100%;
}

input[type="search"] {
  height: 40px;
  width: 100%;
  border: solid 1px var(--color-grey);
  border-radius: 20px;
  padding: 5px var(--padding) 5px 60px;
  border: solid 1px var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  background: url(inc/assets/images/ico_search.svg) no-repeat 10px center;
  background-size: 16px;
}

.search-form .search-submit {
  position: absolute;
  right: 1px;
  top: 1px;
  width: fit-content;
  height: 38px;
  background-color: var(--color-white) !important;
  border-radius: 20px;
  color: var(--color-black) !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px rgba(255, 255, 255, 0.8);
}

.js-data-url {
  cursor: pointer;
}



/* video */
.js-player-video {
  visibility: hidden;
  height: 0;
  opacity: 0;
}

.js-player-video.active {
  visibility: visible;
  height: auto;
  opacity: 1;
  position: relative;
  padding-bottom: 56%;
  /* Mantiene il rapporto di aspetto */
  height: 0;
  overflow: hidden;
}

.blocco-video iframe,
.blocco-video-login iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blocco-video {
  position: relative;
  width: 100%;
  margin-top: max(10px, min(30px, calc(10px + 2vw)));
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
}

.blocco-video-login {
  position: relative;
  width: 100%;
  margin-top: max(10px, min(30px, calc(10px + 2vw)));
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
  position: relative;
  padding-bottom: 56%;
  /* Mantiene il rapporto di aspetto */
  height: 0;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.sommario {
  width: 100%;
  padding: 0 0 0 var(--padding);
  border-left: solid 4px var(--color-black);
  margin: var(--padding) 0;
  text-transform: none;
}


.highlighted_cta {
  display: none !important;
}

.blocco-tag {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: var(--padding) 0 0;
  margin: var(--padding) 0 0;
  border-top: solid 1px var(--color-line);
}

.blocco-tag li {
  margin-right: var(--padding-mobile);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.blocco-tag li a,
.blocco-tag li a:hover {
  color: var(--color-grey);
  font-weight: 600;
  text-decoration: underline;
}



/* bullets point */
.bullet-point {
  width: 100%;
  position: relative;
  margin-bottom: max(10px, min(30px, calc(10px + 2vw)));
}

.entry-content .bullet-point p {
  font-family: var(--font-heading-bold);
  padding: 0 0 0 var(--padding);
  margin-left: var(--padding);
  position: relative;
  font-size: 18px !important;
}

.bullet-point p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green);
  position: absolute;
  top: 9px;
  left: 0;
}


article .wp-block-image img {
  position: relative !important;
}


.js-news-small {
  display: none;
}

.js-news-full,
.js-news-full.active,
.js-news-small.active {
  display: block !important;
}


/* banner */
#native-adv {
  margin-bottom: var(--padding);
}

.single-native>a {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: var(--padding-mobile);
  padding-bottom: 14px;
  border-bottom: solid 1px var(--color-line);
}

.single-native>* p {
  margin: 0 !important;
  margin-bottom: 10px !important
}

.single-native-image {
  min-width: 88px;
  min-height: 66px;
  margin-right: var(--padding-mobile);
  height: 0;
  overflow: hidden;
  position: relative;
  background-color: var(--color-light-grey);
}

.home .single-native-image {
  min-width: 176px;
  min-height: 122px;
}

.single-native-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-native-infos>p {
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 6px;
}

.single-native-infos img {
  width: auto;
  height: 26px;
}

.adv-mobile {
  display: none;
}

.adv-desktop {
  display: block;
}

@media (max-width: 576px) {
  .adv-mobile {
    display: block;
  }

  .adv-desktop {
    display: none;
  }
}

.header-page-mobile {
  display: none;
}




/* preview response */
.preview-response .entry-content p,
.preview-response .entry-hedear-title [class*="title"] {
  background-color: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0) !important;
}

.preview-response .guide-thumbnail {
  background-color: rgba(0, 0, 0, 0.03);
}

.preview-response .guide-thumbnail img {
  opacity: 0;
}

.preview-response .container-pubb-guide-social,
.preview-response .btn-green.download {
  opacity: 0 !important;
}




/* mobile */
@media (max-width: 940px) {

  #content {
    margin-top: 20px;
    top: 85px;
  }

  .block-advisor {
    padding: 7px 15px;
  }

  .full-line-bottom::before,
  .full-line-bottom::after {
    left: -11px;
  }

  .column-main {
    padding-top: var(--padding);
    overflow: hidden;
  }

  .column-6-element {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px;
  }

  .item-brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .container-default .container-default-inside {
    padding-left: 0;
    padding-right: 0;
  }

  .entry-header-people {
    flex-wrap: wrap;
  }

  .entry-header-people-info {
    max-width: calc(100% - 130px);
    padding: 0 0 0 var(--padding-mobile);
  }

  .address::before {
    display: none;
  }

  .address svg {
    width: 13px;
    height: 13px;
  }

  .address span {
    font-size: 12px;
    margin-left: 2px;
  }

  .blocco-ocf {
    position: relative;
    padding: var(--padding);
    font-size: 12px !important;
    margin-top: var(--padding);
    width: 100%;
    align-items: center;
  }

  .profile-site-linkedin {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: var(--padding);
  }

  .profile-site-linkedin::before {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background-color: var(--color-line);
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .advisor-quote {
    border-left: solid 4px var(--color-black);
  }

  .card-news-aside-content-figure {
    width: 33%;
    margin-right: var(--padding);
  }

  .testata .block-center,
  .block-advisor>.label-10 {
    display: none;
  }

  .testata .block-left,
  .testata .block-right {
    flex: 1 1 48%;
    max-width: 48%;
  }

  body.single-news .container-pubb-guide-social,
  body.single-podcast .container-pubb-guide-social {
    padding-top: var(--padding);
  }

  /* footer */
  #menu-footer-nav {
    display: none;
  }

  #menu-footer-nav.open {
    display: flex;
  }

  .footer-row-menu [class*="label-"] {
    position: relative;
    margin: var(--padding) 0;
  }

  .footer-row-menu [class*="label-"]::before {
    content: "+";
    display: block;
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-heading);
  }


  /* header menu */
  #menu {
    padding-top: 8px;
  }

  .btn-search-menu {
    margin: 0;
  }

  .btn-close-menu {
    position: relative;
    left: 2px;
  }

  .menu-scroll {
    width: 100%;
    height: calc(100vh - 145px);
    overflow-x: scroll;
  }

  .menu-header-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }

  .menu-blocco-start ul li {
    margin-top: var(--padding-mobile);
  }

  .menu-blocco-login,
  .menu-blocco-lingua {
    padding: 0 0 var(--padding-mobile);
    margin: var(--padding-mobile);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .menu-blocco-login {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }

  .menu-blocco-lingua {
    justify-content: space-between;
  }

  #menu .menu-blocco-login a.btn-accedi,
  #menu .menu-blocco-login a.btn-accedi:hover,
  #menu .menu-blocco-login a.btn-area-privata,
  #menu .menu-blocco-login a.btn-area-privata:hover {
    color: var(--color-black) !important;
    margin: 0 var(--padding-mobile);
    padding: 6px 20px 6px 25px;
  }

  .btn-registrati{
    padding: 6px 20px 6px 25px;
  }

  .menu-blocco-lingua #menu-language-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .menu-blocco-lingua #menu-language-nav #language {
    margin: 0;
  }

  .menu-blocco-lingua #menu-language-nav #language li {
    margin: 0 var(--padding-mobile) 0 0;
  }

  .menu-blocco-lingua #menu-language-nav #language li.wpml-ls-current-language a {
    color: var(--color-green) !important;
  }

  #masthead .menu-scroll .block-social-header {
    display: flex !important;
  }

  #masthead .menu-scroll .block-social-header a {
    text-indent: 0;
  }

  #masthead .menu-scroll .block-social-header a.ico-social-x svg {
    position: relative;
    top: 3px;
    left: 3px;
  }

  #masthead .menu-scroll .block-social-header svg path {
    fill: var(--color-white) !important;
  }


  /* title sectiom */
  .title-section>a {
    overflow: hidden;
    /*text-indent: -99999px;*/
  }


  /* card-horizontal */
  .card-horizontal-content-text {
    padding: var(--padding) 0 0;
  }


  /* sectret places aside */
  .column-2-element.secrets-places {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
  }


  /* .column-3-element .card-news.item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: solid 1px var(--color-line);
  }
  .column-3-element .card-news.item .label-figure {
    min-width: 33%;
    width: 33%;
    margin-right: var(--padding);
  }
  .column-3-element .card-news.item  .card-news-content > p {
    display: none;
  } */


  /* search */
  .container-form-search {
    top: 89px;
    height: calc(100vh - 80px);
  }



  /* categorie all news page */
  .categorie-in-evidenza {
    overflow-x: scroll;
    justify-content: left;
  }

  .categorie-in-evidenza a {
    white-space: nowrap;
  }

  .overlay-categorie {
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .overlay-categorie li {
    padding-left: 0 !important;
  }


  .item-brands>a {
    padding-bottom: 0;
    height: calc(50vw - 22px);
  }


  input,
  select,
  textarea {
    font-size: 16px !important;
    /* Imposta le dimensioni del font a 16px o più */
  }


  /* area privata */
  .header-page-mobile {
    background-color: var(--color-black);
    padding: var(--padding-mobile);
    display: flex;
    flex-direction: column;
    margin: 0 var(--padding-mobile);
    width: calc(100% - 22px);
    position: relative;
    z-index: 100;
  }

  .header-page-mobile [class*="title"] {
    margin-bottom: 0;
    color: var(--color-white) !important;
  }

  .header-page-mobile span {
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6)
  }

  .page-area-privata {
    flex-direction: column;
  }

  .nav-area-privata {
    width: 100%;
    background-color: var(--color-white);
    padding: 0;
  }

  .header-area-privata {
    background-color: var(--color-black);
    padding: var(--padding-mobile) var(--padding) var(--padding-mobile) var(--padding-mobile);
  }

  .link-area-privata {
    background-color: var(--color-black);
    margin: 0 var(--padding-mobile);
    width: calc(100% - 22px);
    display: none;
  }

  .link-area-privata.open {
    display: flex;
  }

  .link-area-privata a,
  .link-area-privata a:hover {
    padding: var(--padding-mobile);
    font-size: 10px;
  }

  .link-area-privata a svg {
    width: 18px;
  }

  .content-area-privata {
    width: 100%;
  }

  .logout-area-privata {
    margin-top: var(--padding);
  }

  .content-area-privata {
    margin-top: 20px;
  }

  .content-area-privata-header,
  .content-area-privata-main {
    width: 100%;
    padding: var(--padding-mobile);
  }

  .form-container.form-step-3,
  .form-default {
    flex-direction: column;
  }

  .form-step-2>*,
  .form-container.form-step-3>*,
  .form-default>* {
    width: 100%;
  }



  /* aside */
  .card-horizontal-content>* {
    width: 48%;
  }



  /* talents & ADVISOR */
  .container-filters label {
    margin-bottom: var(--padding);
    width: 100%;
  }

  .container-filters .btn-green {
    width: 100%;
  }

  .containers-filters-fields {
    flex-direction: column;
  }

  .container-filters label.label-altro {
    width: 60px;
    margin-left: var(--padding);
  }

  body.safari-browser .container-checkbox input {
    left: 40px;
  }


  /* magazine e guide */
  body.single-guide .title-section,
  body.single-magazine .title-section {
    flex-direction: column;
    align-items: flex-start;
  }

  body.single-guide .title-section>div,
  body.single-magazine .title-section>div {
    margin-top: var(--padding-mobile);
    justify-content: space-between;
    width: 100%;
  }

  body.single-guide .title-section>div>a,
  body.single-magazine .title-section>div>a {
    margin: 0;
  }

  .btn-green.download.mobile {
    width: 100%;
    margin-top: 25px;
  }



  /* category pleasure assets */
  body.category-pleasure-assets .sub-categorie {
    display: none;
  }

  .lancio-copertina-overlay {
    position: relative;
    top: 0;
  }

  .lancio-copertina-card {
    width: 100%;
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
  }

  body.category-pleasure-assets .card-place {
    flex-direction: column;
    width: 100vw;
    position: relative;
    left: -11px;
  }

  body.category-pleasure-assets .container-main .line-bottom {
    display: none;
  }

  body.category-pleasure-assets .container-main .category-header {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
  }

  .card-place-content {
    width: 100%;
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
    order: 2;
  }

  .card-place-picture {
    width: 100%;
    order: 1;
  }

  .story .lancio-copertina-card {
    width: 100%;
  }

  .agora-banner-text {
    width: 100%;
    margin: var(--padding) 0;
    font-size: 14px;
  }

  .agora-banner .btn-default-white {
    position: absolute;
    right: 10%;
    margin: 11px 0 0 0;
  }

}


/* Media query per dispositivi con larghezza m inima di 940px  - desktop */
@media (min-width: 940px) {

  /* guide */
  .container-pubb-guide {
    grid-template-columns: 4fr 8fr;
    gap: 21px;
  }

  .guide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: var(--padding);
  }


  .blocco-consulenza {
    padding: 38px 23%;
  }

  .container-filters {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .container-filters.center {
    justify-content: center;
  }

  .container-filters.center input[type="text"],
  .container-filters select {
    width: 230px;
  }

  .container-filters.center .btn-green {
    margin-left: var(--padding);
    margin-top: var(--padding);
  }

  .container-filters input[type="text"],
  .container-filters select {
    max-width: 230px;
  }

  .container-filters-field:not(:first-child) {
    padding-left: var(--padding);
  }

  .container-checkbox {
    margin-left: var(--padding);
  }

  .containers-filters-fields {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: calc(100% - 350px);
  }

  .more-filters {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: calc(100% - 350px);
  }

  .containers-filters-button {
    width: 350px;
    align-items: flex-end;
    padding-left: var(--padding);
  }

  .containers-filters-fields label:not(.container-checkbox),
  .more-filters label:not(.container-checkbox) {
    width: 23%;
  }

  .only-desktop {
    display: flex;
  }

  .only-mobile {
    display: none;
  }

  #masthead .block-social-header,
  #masthead #menu-language-nav {
    display: flex;
  }

  #masthead .container-default-inside .block-center {
    max-width: 82px;
    width: 82px;
  }

  #masthead .container-default-inside .block-left,
  #masthead .container-default-inside .block-right {
    width: calc(50% - 41px);
  }

  .container-default,
  .container-default-inside {
    padding-left: var(--padding);
    padding-right: var(--padding);
  }

  body:not(.home) #main>.container-default .container-default-inside {
    padding-left: 0;
    padding-right: 0;
  }

  .container-main {
    grid-template-columns: 8.7fr 3.3fr;
  }

  .column-main {
    border-right: solid 1px var(--color-line);
  }

  body.dark-theme .column-main {
    border-right: solid 1px var(--color-line-dark-theme);
  }

  .column-main,
  .column-aside,
  .container-main>.block {
    padding: var(--padding);
    /* Spazio interno per le colonne */
  }

  .column-aside {
    min-width: 360px;
  }

  .column-2-element {
    display: grid;
    grid-template-columns: 4fr 4fr;
    /* Una colonna al 100% */
    gap: 21px;
    /* Spazio tra le colonne */
  }

  .column-3-element {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    /* Una colonna al 100% */
    gap: 21px;
    /* Spazio tra le colonne */
  }

  .column-6-element {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 21px;
  }

  .column-6-element .item {
    width: 100%;
  }

  [class*="item-"] {
    margin-bottom: 45px;
  }

  .list [class*="item-"] {
    margin-bottom: var(--padding);
  }

  .item-brands {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 21px;
  }

  .column-aside .item-brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* header */
  .header-logo-mobile {
    display: none;
  }

  .header-top {
    padding: 8px var(--padding);
  }

  .header-top [class*="col-"] {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  /* footer */
  .footer-row {
    justify-content: space-between;
    padding: var(--padding-mobile) 0;
    flex-direction: row;
  }

  .footer-row-menu {
    padding-top: 90px;
    margin-top: 50px;
    display: flex;
  }

  .footer-partners {
    order: 1;
    width: auto;
    padding-bottom: inherit;
    border: none;
  }

  .footer-logo {
    order: 2;
    width: auto;
    padding-bottom: inherit;
    border: none;
  }

  .footer-social {
    order: 3;
    text-align: right;
    width: auto;
    padding-bottom: inherit;
    border: none;
  }

  .footer-copy::before {
    width: calc(100% + (var(--padding)*2));
    left: -22px;
  }

  .footer-row::before,
  .footer-row-menu::before {
    width: calc(100% + (var(--padding)*4));
    left: -44px;
  }

  .footer-row-menu p,
  footer .title-20 {
    display: inline-block;
    padding-right: 30%;
    text-align: left;
  }

  .anasf {
    width: 137px;
  }

  .nafop {
    width: 132px;
  }

  .lancio-advisor {
    margin-right: 50px;
    min-width: 376px;
  }

  .card-your-advisor {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
  }

  .card-your-advisor:last-child{
    margin-bottom: 0;
  }

  .card-your-advisor a, .card-your-advisor p{
    margin-bottom: 0;
  }

  .card-your-advisor p{
    padding-bottom: 5px;
  }

  .card-your-advisor [class*="title"]{
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .column-main .card-horizontal-content {
    flex-direction: row;
  }

  .column-main .card-horizontal-content .card-horizontal-content-figure {
    width: 32%;
  }

  .column-main .card-horizontal .card-horizontal-content .card-horizontal-content-text {
    width: calc(67% - 0px);
    padding-right: var(--padding);
  }

  .column-main .card-horizontal.podcast .card-horizontal-content .card-horizontal-content-text {
    width: calc(67% - 90px);
    padding-right: var(--padding);
  }

  .card-news-aside-content-figure {
    width: 88px;
    min-width: 88px;
    margin-right: var(--padding-mobile);
  }
  .agora-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .agora-banner-text {
    width: 100%;
    padding: 0 3%;
  }

  .block>div {
    width: 33.33%;
  }

  .block .your-advisor-cards-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-right: var(--padding);
  }

  .your-advisor .block .lancio-advisor{
    display: flex;
    justify-content: center;
  }
  /* NEWS */
  .entry-content,
  .entry-content p {
    /*font-size: 18px !important;*/  
  }

  .entry-hedear-title-time {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .time-news {
    display: flex;
  }


  /* ADV */
  .column-aside .adv-banner {
    padding-top: 7px;
    /*padding: 25px; */
  }

}


@media (min-width: 1200px) {
  .block-advisor {
    width: 300px;
  }
}

@media (max-width: 1140px) {
  #masthead .nav-master>a {
    display: none;
  }
}

@media screen and (max-width: 2270px) and (min-width: 770px) {
  .block-advisor {
    min-width: 200px;
  }

  .lancio-advisor {
    min-width: auto;
  }

  .nav-master a {
    font-size: 12px;
  }
}

/* STYLE FOR LIVE CONTAINER */
#live-container {
  display: none;
  flex-direction: column;
  background-color: #000;
  max-width: 520px;
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 999;
}

#live-container .live-container-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

#live-container .live-container-header .link-redirect-container,
#live-container .live-container-header .close-box {
  padding: 5px;
}

#live-container .link-redirect,
#live-container .close-box {
  color: #FFF;
  font-size: 16px;
}

#live-container .link-redirect {
  text-decoration: underline;
}

#live-container .live-container-header .close-box {
  cursor: pointer;
}

#live-container .live-container-embed {
  display: flex;
  height: 315px;
}

@media (max-width: 1024px) {
  #live-container {
    max-width: 50vw;
  }
}

@media (max-width: 768px) {
  #live-container {
    max-width: 100vw;
    max-height: 30vh;
    bottom: 0px;
  }

  #live-container .live-container-embed iframe {
    width: 100%;
    height: auto;
  }
}

body.page-template-page-home .column-aside>.card-horizontal:last-child {
  border-bottom: 0px;
}

#onlinesim-feed ul.onlinesim-rss-news {
  padding-inline-start: 0px !important;
}

#onlinesim-feed .onlinesim-rss-news a {
  color: #000;
}

#onlinesim-feed .onlinesim-rss-news .card-horizontal:last-child {
  border-bottom: solid 1px var(--color-line);
}

/* ADDED STYLE FOR READ ALL TALENT NEWS */
body.single-talents .read-all-talent-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

body.single-talents .read-all-talent-container h3.title-16 {
  margin-bottom: 0px;
}

/* I PROTAGONISTI DEL WEALTH */
.page-template-page-protagonisti .container-main {
  grid-template-columns: 10fr
}

.page-template-page-protagonisti .container-main .column-main {
  border-right: 0;
}

.page-template-page-protagonisti .category-header {
  text-align: center;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 20px;
}

.page-template-page-protagonisti .line-bottom::before {
  right: 0;
}

.page-template-page-protagonisti .protagonisti-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SKIN CONTAINER */
#banner-skin-container{
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-image: none;
  background-attachment: fixed;
}
#banner-skin{
  line-height: 0px;
}

/* CTA YOUR ADVISOR */

.blocco-contributor-aside-header.cta-advisor{
  padding: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.blocco-contributor-aside-header.cta-advisor .advisor-cta-logo{
  padding-left: 20px;
  padding-right: 20px;
}

.blocco-contributor-aside-header.cta-advisor .advisor-cta-text{
  color: white;
  padding: 15px 20px;
  text-align: center;
}

.blocco-contributor-aside-header.cta-advisor .advisor-cta-button{
  text-align: center;
  margin-top: 15px;
}

.blocco-contributor-aside-header.cta-advisor .advisor-cta-button a{
  background-color: #00FF32;
  color: black;
  width: fit-content;

  text-align: center;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: normal;
}

body.single-glossary .cmtt-backlink.cmtt-backlink-top{
  display: none;
}

div.google-auto-placed{
  display: none !important;
}

/* FAQ SU ARTICOLO */
.gemini-faq-disclaimer {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}
.gemini-faq-container {
  background: #f2f2f2;
  padding: 15px;
  margin: 15px 0;
} 
.gemini-faq-container h2 {
  font-size: 17px;
} 
.gemini-faq-item {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.5;
}
.gemini-faq-question {
  font-size: 16px;
  font-weight: 700;
}
.gemini-faq-answer p {
  font-size: 15px !important;
}


.gemini-faq-title {
  color: #333;
  margin-bottom: 30px;
}

.gemini-faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

/* Stile per la domanda che funge da cliccabile */
.gemini-faq-question {
  background-color: #f2f2f2;
  padding: 15px 30px 15px 15px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

/* Aggiungi l'icona + alla domanda */
.gemini-faq-question:after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Nascondi tutte le risposte inizialmente */
.gemini-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 15px;
}

/* L'effetto hover mostra la risposta */
.gemini-faq-item:hover .gemini-faq-answer {
  max-height: 300px;
  padding: 15px;
}

/* Cambia l'icona in - quando hovering */
.gemini-faq-item:hover .gemini-faq-question:after {
  content: '−';
}

/* Cambia il colore di sfondo della domanda in hover */
.gemini-faq-item:hover .gemini-faq-question {
  background-color: #f2f2f2;
}

/* Stile per il contenuto della risposta */ 
.gemini-faq-answer p {
  margin: 0;
  color: #333;
}


/* 13 MAGGIO 2025 SITO EN FIX */
html[lang="en-US"] {

  #native-adv {
    display: none;
  }
  .events-container {
    display: none;
  } 
  .agora-banner {
    display: none;
  }
  .our-top-advisor-box-en {
    display: none;
  }
  .we-advisor-banner {
    display: none;
  }
  article .blocco-hubspot {
    display: none;
  }
  article .wafacb-injected-content {
    display: none;
  }

}

/* dichiarazione proveniente da wordpress "css aggiuntivo" */

.gemini-faq-section .wafacb-injected-content {display: none !important; }

/* VERSIONE ITALIANA: solo se il bottone è dentro .container-default.your-advisor */
html[lang="it-IT"] .container-default.your-advisor .btn-green {
  font-size: 0; /* Nasconde il testo originale */
  position: relative;
}

html[lang="it-IT"] .container-default.your-advisor .btn-green::before {
  content: "Scopri di più";
  font-size: 16px;
  font-weight: normal;
  position: relative;
}

html[lang="it-IT"] .container-default.your-advisor .btn-green:hover {
  font-size: 0;
}

html[lang="it-IT"] .container-default.your-advisor .btn-green:hover::before {
  content: "Scopri di più";
}


/* VERSIONE INGLESE: solo se il bottone è dentro .container-default.your-advisor */
html[lang="en-US"] .container-default.your-advisor .btn-green {
  font-size: 0;
  position: relative;
}

html[lang="en-US"] .btn-nav-master-video {
	display: none;
}

html[lang="en-US"] .magazine-showcase {
	display: none;
}

html[lang="en-US"] .blocco-categorie {
	display: none;
}

html[lang="en-US"] .container-default.your-advisor .btn-green::before {
  content: "Discover more";
  font-size: 16px;
  font-weight: normal;
  position: relative;
}

html[lang="en-US"] .container-default.your-advisor .btn-green:hover {
  font-size: 0;
}

html[lang="en-US"] .container-default.your-advisor .btn-green:hover::before {
  content: "Discover more";
}

html[lang="en-US"] .footer-row-menu, .blocco-patrimonio-content, .logo-your-advisor {
	display: none;
}

html[lang="en-US"] .card-news-content-author p {
	display: none;
}

html[lang="en-US"] .aside-title, .aside-link {
	display: none;
}

html[lang="en-US"] .container-filters {
	display: none;
}

html[lang="en-US"] .category-2251 .site-main,
.category-2251 .column-aside {
/*    display: none;*/
}

html[lang="en-US"] body.post-type-archive-podcast .column-aside {
  display: none !important;
}

html[lang="en-US"] body.post-type-archive-podcast .container-main {
  grid-template-columns: 100% !important; /* se devi annullare */
}

.has-small-font-size {
font-size: 12px !important;
}

.menu-blocco-start, .menu-blocco-end {
	display: none;
}

.link-redirect-container {
  visibility: hidden !important;
}

@media (min-width: 768px) {#live-container { max-width: 350px !important; height:227px;}}

#ww-chatbot-container {display:none;
}

body.news-template-default #ww-chatbot-container {display:block;}

/* Company Autocomplete Styles */
.company-autocomplete-wrapper {
  position: relative;
  width: 100%;
}

.company-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

.company-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #333333;
  border-bottom: 1px solid #f5f5f5;
}

.company-dropdown-item:last-child {
  border-bottom: none;
}

.company-dropdown-item:hover,
.company-dropdown-item.active {
  background-color: #f8f8f8;
  color: #000000;
}

.company-dropdown::-webkit-scrollbar {
  width: 8px;
}

.company-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.company-dropdown::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.company-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}