@charset "UTF-8";

:root {

    --bg-dark: #000000;
    --bg-dark-accent: var(--bg-dark);
    --bg-card: #18181b;
    --bg-light: #ffffff;
    --text-main: #ffffff;
    --text-muted: #a1a1a1;
    --text-light-muted: #6a7282;
    --text-dark: #111111;
    --text-gray: #9e9e9e;
    --text-gray-light: #9f9fa9;
    --border-color: #222222;
    --font-main: "Inter", sans-serif;
    --font-title: "Ropa Sans", sans-serif;
}

/*:focus { outline: 2px solid var(--primary-color) !important; outline-offset: 2px; }*/
:focus{ outline: none!important;}
  
@charset "UTF-8";

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Ropa Sans";
  src: url("../fonts/RopaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ropa Sans";
  src: url("../fonts/RopaSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

html {
  overflow-x: hidden;
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

a {
  background-color: transparent;
}

a.underline {
	text-decoration: underline;
}

strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
}

button,
input {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}
input::placeholder {
  color: var(--text-gray-light)!important;
}
button {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input {
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
  word-break: break-word;
  box-sizing: border-box;
}

 h2, h3, h5, h6 {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 20px;
}
h1{
	font-size: 48px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  margin: 0 0 20px;
}

i {
  font-style: italic;
}

.text-light {
  color: var(--text-main);
}
.text-light * {
  color: var(--text-main);
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.7);
    opacity: 0;
  }
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: var(--bg-dark)!important;
  overflow: hidden;
}

ul {
  margin: 0 0 20px;
  padding-left: 18px;
}

ul {
  list-style: disc;
}

li > ul {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.none-style {
  list-style: none;
  padding-left: 0;
}

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

button:focus, .site-logo a:focus{
	outline: none!important;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/* #button Group
================================================== */
.octf-btn {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  font-size: 13px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 14px 28px;
  line-height: 1.42857143;
  display: inline-block;
  margin-bottom: 0;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  vertical-align: middle;
  font-family: var(--font-main);
  font-weight: 600;
  text-align: center;
  background-color: var(--primary-color);
  cursor: pointer;
  color: var(--bg-dark);
  outline: none;
  position: relative;
  border: 2px solid var(--primary-color)!important;
  width: fit-content;
}
.ot-button.right{
	/*margin-left: 25px;*/
}
.ot-button.right .octf-btn{
  /*padding: 12px 12px;*/
}
.octf-btn:before, .octf-btn:after {
  content: "";
  position: absolute;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.octf-btn:focus{
	outline: none!important;
}
.octf-btn:hover, .octf-btn:active, .octf-btn:focus {
  color: var(--text-main);
  background-color: var(--bg-dark)!important;
}
.octf-btn:hover:before, .octf-btn:active:before, .octf-btn:focus:before {
  width: 0;
}
.octf-btn:hover:after, .octf-btn:active:after, .octf-btn:focus:after {
  height: 0;
}
.octf-btn.small-btn {
    padding: 9px 22px;
}
.octf-btn.spacing{
	letter-spacing: 2px;
}
.octf-btn.spacing strong{
	font-size: 16px;
}
.transparent-btn{
	border: 2px solid var(--text-main)!important;
	color: var(--text-main);
	background: transparent;
	letter-spacing: 2px;
	font-weight: 500;
}
.transparent-btn:hover{
    background-color: rgba(0, 0, 0, 0.8)!important
}
.transparent-btn i, .btn-slider i{
	transition: all 0.2s ease!important;
}
.transparent-btn:hover i,  .btn-slider:hover i{
    transform: translateX(5px);
}
.black-btn{
	border: 2px solid var(--text-main)!important;
	color: var(--text-main);
	background-color: var(--bg-dark);
	letter-spacing: 2px;
	font-weight: 500;	
}
.black-btn:hover {
    background-color: rgba(0, 0, 0, 0)!important
}
.black-btn i{
	transition: all 0.2s ease!important;
}
.black-btn:hover i {
    transform: translateX(5px);
}
.white-btn{
	border: 2px solid var(--text-main)!important;
	color: var(--bg-dark);
	background-color: var(--text-main);
	letter-spacing: 2px;
	font-weight: 500;
	
}
.white-btn i{
	transition: all 0.2s ease!important;
}
.white-btn:hover i {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0)!important;
}

.config-btn{
	padding: 8px;
	transition: all 0.2s ease!important;
	font-weight: 300; 
	display: block;	
	letter-spacing: 1.2px;
	margin: auto;
	font-size: 12px;
}
.config-btn:hover {
    box-shadow: 0 0 8px rgba(var(--primary-color-rgb), 0.7)!important;
    background-color: rgba(0, 0, 0, 0.4)!important;
}
.config-btn strong{
	display: block;
	font-weight: 600; 
	font-size: 18px;
	padding: 0px 5px;
	letter-spacing: 1.2px;
}
.config-btn.aspect-square {
  aspect-ratio: 1 / 1;
  height: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: normal;
  line-height: 1.2;
}


input[type=text],
input[type=url],
input[type=search],
input[type=number] {
  color: #555555;
  border: none;
  background: var(--text-main);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  font-weight: 500;
}
input[type=text]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=number]:focus {
  color: #555555;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #555555;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #555555;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  color: var(--text-main);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #9f9e9e;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Logo
--------------------------------------------------------------*/
#site-logo {
  min-width: 270px;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  line-height: 1;
}
#site-logo img {
  height: 70px;
  margin: 10px 10px 10px 0;
}

.is-stuck #site-logo img.logo-static {
  display: none;
}
.is-stuck #site-logo img.logo-scroll {
  display: block;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation ul {
  list-style: none;
  padding-left: 0;
}

.site-header {
  position: absolute;
  width: 100%;
  z-index: 999;
}
.site-header.header-static {
  position: absolute;
}

.octf-mainbar-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
}

.octf-mainbar {
  display: flex;
  flex-flow: column wrap;
  flex: 1 auto;
}

.octf-main-header .octf-mainbar-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 1 auto;
}

.octf-mainbar-row > [class^=octf-col] {
  display: flex;
  align-items: stretch;
  position: static;
}

.octf-mainbar-row .octf-col {
  flex-basis: 0;
  flex-grow: 0.65;
  max-width: 100%;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.octf-mainbar-row > [class^=octf-col] {
  flex-flow: row nowrap;
}
.octf-mainbar-row > [class^=octf-col].text-center {
  justify-content: center;
}
.octf-mainbar-row > [class^=octf-col].text-right {
  justify-content: flex-end;
  flex-grow: 1;
}

.octf-main-header .octf-row > div:empty {
  display: none;
}

.octf-row {
  margin-right: -15px;
  margin-left: -15px;
}

.octf-col:before {
  display: inline-flex;
}

/* Main Menu */
.main-navigation {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: auto;
}

.main-navigation a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.main-navigation > ul {
  position: relative;
  display: flex;
  width: 100%;
  vertical-align: middle;
  height: 100%;
}

.main-navigation ul {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  margin: 0px 0px;
  padding: 0px 0px;
}

.main-navigation > ul > li {
  margin: 0px 20px;
  padding: 0px 0px;
  float: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  border-bottom: 2px solid transparent;
}
.main-navigation > ul > li:last-child {
  margin-right: 0;
}
.main-navigation > ul > li:first-child {
  margin-left: 0;
}
.main-navigation > ul > li:hover{
	border-bottom: 2px solid #fff;
}

.main-navigation > ul > li:hover > a:before {
  bottom: -4px;
  opacity: 1;
}

.main-navigation ul ul {
  float: none;
  margin: 0px 0px;
  padding: 0px 0px;
}

.main-navigation ul > li > a {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  text-decoration: none;
  text-align: center;
  outline: none;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.main-navigation ul > li.menu-item-has-children > a {
}

.main-navigation > ul > li.menu-item-has-children:last-child > a:after {
  right: 0px;
}

.main-navigation ul li li {
  display: block;
  position: relative;
}

.main-navigation > ul > li.item-yellow{
	margin: 0px;
}

.main-navigation > ul > li.item-yellow > a{
	color: var(--primary-color);
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    padding: 0 20px;
}

.main-navigation > ul > li.item-yellow > a:hover{
	color: var(--bg-dark);
    background-color: var(--primary-color);
}
.main-navigation ul li li a {
  font-size: 14px;
  line-height: 30px;
  color: var(--bg-dark);
  text-align: left;
  display: block;
  padding: 5px 40px;
  position: relative;
  text-decoration: none;
  outline: none;
  text-transform: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  text-align: center;
   background-color: var(--text-main);
  border-bottom: 1px solid var(--bg-dark);
}

.main-navigation ul li li.yellow a{
	background-color: var(--primary-color);
	text-transform: uppercase;
} 

.main-navigation ul li li.trasparent a{
	background-color: transparent;
	color: var(--primary-color);
	text-transform: uppercase;
    cursor: default;
    pointer-events: none;	
    border-bottom: none;
}  

.main-navigation:not(.no-line) ul li li a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 0px;
  height: 1px;
  background: var(--text-main);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
}

.main-navigation:not(.no-line) ul li li a:hover:before {
	
}

.main-navigation ul li li a:hover {
  position: relative;
}

.main-navigation ul li li a::after  {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.main-navigation ul li li a:hover::after {
  opacity: 0.15; /* regola la percentuale di scurimento */
}

.main-navigation ul > li.menu-item-has-children > a:after {

}

.main-navigation ul > li.menu-item-has-children > a:hover:after {
  color: var(--text-main);
}

.main-navigation ul > li li.menu-item-has-children > a:after {
  position: absolute;
  content: "";
  font-family: Flaticon;
  top: 50%;
  right: 0;
  margin-top: -5px;
  font-size: 9px;
  color: #b6b6b6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
}

.main-navigation ul li ul {
    white-space: nowrap;
    padding: 0px;
    position: absolute;
    top: 61px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.main-navigation ul li ul ul {
  left: calc(100% + 2px);
  top: -30px;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
}

.main-navigation ul li:hover > ul {
  visibility: visible;
  opacity: 1;
}

@-webkit-keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.octf-main-header{
	border-bottom: 1px solid rgba(255, 255, 255, 0.25)!important;
}
.is-stuck {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  -moz-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.admin-bar .is-stuck,
.admin-bar .site-header-vertical {
  top: 32px;
}
@media screen and (min-width: 1024px) {
  .is-stuck {
    background: #000!important;  	
  }
  .is-stuck .main-navigation ul.menu > li > a {
    color: #fff;
  }
  .is-stuck .main-navigation ul.menu > li > a:after {
    color: #fff;
  }
  .is-stuck .main-navigation ul.menu > li > a:before {
    background: #fff;
  }
  .is-stuck .cart-contents .count {
    background: #fff;
    color: var(--bg-dark);
  }
}
/* Responsive */
@media (max-width: 1199px) {
  .main-navigation > ul > li {
    margin: 0 14px;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header,
.admin-bar .site-header-vertical,
.admin-bar .is-stuck {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar .is-stuck,
.admin-bar .site-header-vertical {
    top: 0;
  }
}

/*--------------------------------------------------------------
## Header Mobile
--------------------------------------------------------------*/
.header_mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .octf-main-header {
    display: none;
  }

  .header_mobile {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header_mobile.open, .header_mobile.is-stuck {
    background: var(--bg-dark);
    -webkit-box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.3);
  }
  .header_mobile .mlogo_wrapper {
    position: relative;
  }
  .header_mobile .mlogo_wrapper img {
    height: 90px;
  }
  .header_mobile .mlogo_wrapper .mobile_logo {
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .mlogo_wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .mobile_logo img {
    max-width: 230px;
    max-height: 47px;
  }
}

/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  width: 100%;
  color: var(--text-main);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 150px 0 0 0;
}
.page-header .breadcrumbs {
  margin-bottom: 0;
  padding-left: 0;
}
.page-header .breadcrumbs li {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  margin-left: 7px;
}
.page-header .breadcrumbs li:before {
  content: "\f054";
  position: absolute;
  color: var(--text-light-muted);
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  line-height: 1;
  letter-spacing: 4px;
  left: 1px;
  top: 3px;
}
.page-header .breadcrumbs li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.page-header .breadcrumbs li:first-child:before {
  display: none;
}
.page-header .breadcrumbs li a {
  color: var(--text-light-muted);
  background-size: 0 2px;
  background-position: 0 88%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, #7e7e7e, #f5f5f5);
}
.page-header .breadcrumbs li a:hover {
  background-size: 100% 2px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .page-header {
   
  }
}

/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/
.main-heading{
	font-family: var(--font-title);
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

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

.text-right {
  text-align: right;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}


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

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.post-box .post-inner {
  padding: 0px;
  margin-bottom: 60px;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  color: var(--text-main);
}
.post-box .entry-title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 25px;
  color: var(--text-main);
}
.post-box .entry-title.small {
  font-size: 22px;
}
.post-box .entry-title a {
  color: var(--bg-dark-accent);
  background-image: linear-gradient(0deg, #4b4b4b, #f5f5f5);
}
.post-box p {
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-box .entry-media {
  position: relative;
  margin-bottom: 34px;
  overflow: hidden;
}
.post-box .entry-media.post-cat-abs .post-cat {
  position: absolute;
  z-index: 1;
  bottom: 25;
  left: 0;
}
.post-inner .entry-media .post-cat{
	position: absolute;
	top: 5px;
	left: 10px;
}
.post-box .post-cat a, .post-inner .post-cat a {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.1;
  display: inline-block;
  color: var(--bg-dark);
  background: var(--text-main);
  padding: 8px 10px;
}
.post-box .post-cat a:hover, .post-inner .post-cat a:hover {
  background: #f5f5f5;
  color: var(--bg-dark-accent);
}
.post-box .entry-meta {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 12px;
  margin: 8px 0;
  color: var(--text-main);
}
.post-box .entry-meta > span {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-left: 25px;
}
.post-box .entry-meta > span:before {
  position: absolute;
  content: "••";
  font-size: 18px;
  line-height: 1;
  left: -2px;
  top: 4px;
}
.post-box .entry-meta > span:first-child {
  padding-left: 0;
}
.post-box .entry-meta > span:first-child:before {
  display: none;
}
.post-box .entry-meta > span a {
  color: #9f9e9e;
}
.post-box .entry-meta > span a:hover {
  color: var(--bg-dark-accent);
}
.post-box:not(.blog-post):hover .post-inner {
  border-color: var(--bg-dark-accent);
}

/* Product  */
.product-category-card {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  transition: background-color 0.5s ease;  
}

.product-category-card .cat-title, .product-category-card .link-brand{
  transition: background-color 0.5s ease;  
}
.product-category-card:hover{
	background-color: transparent;
}
.product-category-card.brand:hover{
	background-color: var(--bg-light);
}
.product-category-card.brand:hover .link-brand, .product-category-card.brand:hover .cat-title{
	color: var(--text-dark);
}
.img-container {
  position: relative;
  background-color: transparent;
  line-height: 0; /* Rimuove gap sotto immagine */
}
.category-container{
    width: 100%;
    height: 350px;
}
.category-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Correzione 4: solo 50% da sotto */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom-overlay.vertical{
	height: 90%!important;
}
.bottom-overlay-fixed {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 40%; /* Correzione 4: solo 50% da sotto */
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  transition: opacity 0.3s ease;
}
.bottom-overlay-fixed.vertical{
	height: 70%!important;
}
.info-container {
  padding-top: 20px;
  position: relative;
}
.info-container.products-category{
	position: absolute;
    bottom: 20px;
    left: 0;
    padding: 10px;	
}
.title-move-wrapper {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.side-line {
  width: 2px;
  background-color: var(--text-main);
  margin-right: 15px;
  align-self: stretch;
}
.cat-title {
  color: var(--text-main); 
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
.link-scopri {
  display: block;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 400; /* Normal */
  text-decoration: none !important;
  margin-top: 5px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}
.link-scopri:focus{
	outline: none!important;
}
.product-category-card-link {
  color: inherit;
}
.product-category-card-link:hover {
  color: inherit;
  text-decoration: none;
}
.card-link-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-category-card-link:hover .card-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.link-brand {
  display: block;
  color: var(--text-main);
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 300; /* Normal */
  text-decoration: none !important;
  margin-top: 5px;
}
.content{
	font-size: 14px;
	font-weight: 400;
	line-height: 22.75px;
	color: var(--text-gray);	
}
.brand-logo-hover {
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.product-category-card-link:hover .brand-logo-hover,
.product-category-card:hover .brand-logo-hover {
  filter: none;
}

/* --- STATO HOVER --- */
.product-category-card:hover .bottom-overlay {
  opacity: 1;
}
.product-category-card:hover .bottom-overlay-fixed {
  opacity: 1;
}
.product-category-card:hover .title-move-wrapper {
  transform: translateY(-10px);
}
.product-category-card:hover .link-scopri {
  opacity: 1;
  transform: translateY(0);
}

.search-form {
  position: relative;
}
.search-form .search-field {
  width: 100%;
  padding: 0 46px 0 10px;
  height: 46px;
  line-height: 1;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.search-form .search-submit {
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 46px;
  outline: none;
  text-align: center;
  vertical-align: middle;
  color: var(--bg-dark-accent);
  background: transparent;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.search-form .search-submit i:before, .search-form .search-submit i:after {
  font-size: 17px;
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  .post-box .post-inner {
    padding: 20px 20px 18px;
  }
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
  margin-left: -7px;
  margin-right: -7px;
}

/*--------------------------------------------------------------
## Heading
--------------------------------------------------------------*/
.ot-heading {
  position: relative;
}
.ot-heading > span {
    font-size: 30px;
    font-weight: 400;
    color: var(--text-main);
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: 0px;
}
.ot-heading h2, .ot-heading h1 {
  margin-bottom: 0;
  line-height: 48px;
  font-weight: 400;

}
@media (max-width: 767px) {
  .ot-heading > span {
    font-size: 12px;
  }

  .ot-heading h2 {
    font-size: 38px!important;
    line-height: 100%!important;
    font-weight: 600!important;
  }

  .ot-heading {
    padding-bottom: 20px;
  }
  .ot-heading:before {
    width: 40px;
  }
}
@media (max-width: 600px) {
  .ot-heading h2 br {
    display: none;
  }
}

/*--------------------------------------------------------------
## Cate Lines
--------------------------------------------------------------*/
.cate-lines {
  position: relative;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.cate-lines .cate-item_content {
  position: absolute;
  bottom: 0px;
  padding: 10px!important;
}
.cate-lines img {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.cate-lines h2 {
  position: relative;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.cate-lines p{
	color: var(--text-main);
	font-weight: 400;
	font-size: 16px;	
	line-height: 1.2;
}

.app-lines {
  position: relative;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  border: 1px solid rgba(255, 255, 255, 0.5); 
   
}
.app-lines .app-item_content {
    width: 100%;
    padding: 50px!important;
}
.app-lines img {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
 
}
.app-lines h3{
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 3px;
}
.app-lines h3 i{
	color: var(--primary-color);
}
.app-lines p{
	color: rgba(255, 255, 255, 0.5);
}
.app-lines ul {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
    list-style-type: square;
    display: flex;
    gap: 30px;
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
    font-size: 14px;
    justify-content: center;
    text-transform: uppercase;
}
.app-lines ul li{
	padding: 0px 0px 0px 10px;
}
.app-lines ul li:first-child {
	list-style: none;
}
.app-lines .app-item.highlights img{
	
}
.app-lines .app-item.highlights .app-item_content{
	padding: 1px!important; 
	bottom: 0px;
	top: inherit!important;
	position: relative;
}
.app-lines .app-item.highlights .app-item_content .number{
	position: absolute;
	left: 15px;
	color: rgba(255, 255, 255, 0.1);
	font-size: 38px;
	z-index: 2;
	top: 0px;
	font-weight: 800;
	border-top: 2px solid var(--text-main);
	line-height: 1;
}
.app-lines .app-item.highlights .app-item_content .title{
	font-family: var(--font-title);
	background-color: var(--bg-dark);
	color: var(--text-main); 
	font-size: 16px; 
	font-weight: 400;
	line-height: 150%;
	text-overflow: ellipsis;
	padding-right: 45px;
}
.app-lines .app-item.highlights .app-item_content .arrow{
	position: absolute; 
	right: 10px; 
	top: 5px; 
	border: 1px solid rgba(255, 255, 255, 0.5); 
	padding: 0px 8px;
}	
.app-lines .app-item.highlights .app-item_content .arrow i{
	color: white; display: 
	inline-block; 
	transform: rotate(-45deg);
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .cate-lines .cate-item_content {
    bottom: 56px;
  }
  .cate-lines h2 {
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cate-lines .cate-item_content {
    bottom: 35px;
    left: 30px;
  }
  .cate-lines h2 {
    font-size: 36px;
  }
}
@media (max-width: 479px) {
  .cate-lines h2 {
    font-size: 36px;
  }
}

.brand-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.brand-wrap img {
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.brand-wrap:hover img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
.isotope {
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
  -ms-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

/*--------------------------------------------------------------
## Miscellaneous
--------------------------------------------------------------*/
.site-overlay {
  background: transparent;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  z-index: -1;
}

/*--------------------------------------------------------------
## Search
--------------------------------------------------------------*/
.octf-cta-header {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.octf-cta-header .toggle_search {
  cursor: pointer;
}
.octf-cta-header .toggle_search i {
  color: var(--text-main);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  min-width: 22px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.octf-cta-header .toggle_search i:before, .octf-cta-header .toggle_search i:after {
  font-size: 22px;
}
.octf-cta-header .h-search-form-field {
  position: absolute;
  z-index: 99;
  top: -webkit-calc(100% + 10px);
  top: expression(100% + 10px);
  top: -moz-calc(100% + 10px);
  top: -o-calc(100% + 10px);
  top: calc(100% + 10px);
  right: -30px;
  width: 340px;
}
.octf-cta-header .h-search-form-field .h-search-form-inner {
  padding: 20px 35px 34px;
  background-color: var(--bg-dark);
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
}
.octf-cta-header .h-search-form-field .h-search-form-inner input {
  background: transparent;
  color: var(--text-main);
  font-weight: 400;
  border-color: rgba(255, 255, 255, 0.1);
}
.octf-cta-header .h-search-form-field .h-search-form-inner button {
  color: var(--text-main);
}
.octf-cta-header .h-search-form-field .h-search-form-inner button i:before {
  font-weight: normal;
}
.octf-cta-header .h-search-form-field .h-search-form-inner ::-webkit-input-placeholder {
  /* Edge */
  color: var(--text-main);
}
.octf-cta-header .h-search-form-field .h-search-form-inner :-ms-input-placeholder {
  /* Internet Explorer */
  color: var(--text-main);
}
.octf-cta-header .h-search-form-field .h-search-form-inner ::placeholder {
  color: var(--text-main);
}
.octf-cta-header .h-search-form-field.show {
  -webkit-animation: searchSlideUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: searchSlideUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@-webkit-keyframes searchSlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes searchSlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media only screen and (max-width: 600px) {
  .octf-cta-header .h-search-form-field {
    right: -65px;
  }
}

/*--------------------------------------------------------------
## Menu Mobile (FADE ONLY)
--------------------------------------------------------------*/

.header-mobile {
  display: none;
}

.header-mobile .is-stuck {
  background-color: var(--bg-dark);
}

.header-mobile .is-stuck .cart-contents .count {
  background: #fff;
  color: var(--bg-dark);
}

.mmenu-toggle button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  color: #fff;
}

.mmenu-toggle button i:before {
  font-size: 22px;
}

/* ==========================================================================
   MENU WRAPPER (FADE)
   ========================================================================== */
.mmenu-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  inset: 0;
  width: 100%;
  
  /* FIX SAFARI: Usa dvh (Dynamic VH) per calcolare la barra grigia di Safari. 
     Manteniamo 100vh come fallback per i browser più vecchi */
  height: 100vh;
  height: 100dvh; 
  
  background: var(--bg-dark);
  overflow-x: hidden;
  overflow-y: auto; /* Permette lo scroll globale se i sottomenu si allungano */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}

/* BODY LOCK */
body.mmenu-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* MENU OPEN (FADE IN) */
.mmenu-wrapper.mmenu-open {
  opacity: 1;
  visibility: visible;
}

/* INNER (Struttura Flex a tutta altezza) */
.mmenu-wrapper .mmenu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%; /* Copre l'intera altezza del display */
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  overflow: visible;
}

/* CLOSE BUTTON & LOGO AREA */
.mmenu-wrapper .mmenu-close {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
}

.mmenu-wrapper .mmenu-close i {
  position: absolute;
  right: 15px;
  top: 20px;
}

/* ==========================================================================
   MOBILE NAV (Allineato in alto, spinge giù il footer)
   ========================================================================== */
.mmenu-wrapper .mobile-nav {
  text-align: center;
  flex-grow: 1; /* Prende lo spazio necessario e spinge il blocco giallo in basso */
}

.mmenu-wrapper .mobile_mainmenu {
  margin: 0;
  padding: 0;
  width: 100%;
}

.mmenu-wrapper ul.mobile_mainmenu {
  position: relative;
  margin: 0;
  padding: 40px 0 0 0; /* Padding bilanciato per distanziare dal logo iniziale */
  z-index: 1000;
}

/* LIST ITEMS */
.mmenu-wrapper .mobile_mainmenu li {
  position: relative;
  list-style: none;
  width: 100%;
}

.mmenu-wrapper .mobile_mainmenu li a {
  padding: 10px 0; /* Spaziatura comoda tra i link del menu */
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

/* FOCUS */
.mmenu-wrapper .mobile_mainmenu a:focus {
  outline: none !important;
}

/* SUBMENU (Tendine Moto / Auto) */
.mmenu-wrapper .mobile_mainmenu ul {
  display: none;
}

.mobile-nav ul.sub-menu {
  margin: 0px !important;
  padding-left: 0px !important;
}

.mobile-nav .sub-menu li a {
  background-color: var(--text-main);
  color: var(--bg-dark);
  border-bottom: 1px solid var(--bg-dark);
  padding: 12px 0;
}

.mobile-nav .sub-menu li.yellow a {
  background-color: var(--primary-color);
  text-transform: uppercase;
}

/* ARROW (Gestione icone di apertura sottomenu) */
.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow {
  color: #fff;
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(50px);
  top: 6px;
  cursor: pointer;
  width: 50px;
  height: 40px;
  text-align: center;
  z-index: 1001;
}

.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow i {
  display: inline-block;
  line-height: 37px;
  transition: transform 0.3s ease-in-out;
}

.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow i:before {
  font-size: 10px;
  font-weight: 600;
}

.mmenu-wrapper .mobile_mainmenu > li.menu-item-has-children .arrow.active i {
  transform: rotate(45deg);
}

/* ITEM YELLOW VECCHI */
.mmenu-wrapper .mobile_mainmenu > li.item-yellow > a {
  color: var(--primary-color);
  text-transform: uppercase;
  border: 1px solid var(--primary-color);
  padding: 0 20px;
}

.mobile-nav .item-yellow {
  display: none;
  visibility: hidden;
}

/* ==========================================================================
   BLOCCO GIALLO (Footer B2B - Sempre ancorato in fondo)
   ========================================================================== */
.mobile-b2b {
  background-color: var(--primary-color);
  margin-top: auto;   /* Cruciale: si posiziona in fondo se c'è spazio vuoto */
  position: relative; /* Segue il flusso per farsi spingere dai sottomenu apribili */
  width: 100%;
  padding-top: 15px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom)); /* Protezione tacche iPhone/Android e Safari Bar */
  z-index: 999;
}

.mobile-b2b .config-btn {
  border: 1px solid var(--text-dark) !important;
}

.mobile-b2b h6 {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
}

.mobile-nav .widget-footer h6 {
  color: var(--bg-dark);
  font-size: 18px;
  font-weight: 700;
}

.mobile-nav .config-btn {
  border: 1px solid var(--bg-dark) !important;
}

/* BACKGROUNDS */
.mmenu-wrapper .mobile_mainmenu, 
.mmenu-wrapper .octf-mainbar-row {
  background-color: var(--bg-dark);
}

/* OVERLAY */
.mmenu-active .mmenu-overlay {
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 9998;
}

/* LEFT VERSION */
.mmenu-wrapper.on-left .mmenu-close {
  text-align: right;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (WP ADMIN BAR)
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  .header-mobile {
    display: block;
  }

  .admin-bar section:not(.is-stuck) .mmenu-wrapper {
    top: 32px;
  }
}

/*--------------------------------------------------------------
## Side Panel
--------------------------------------------------------------*/
.panel-btn {
  line-height: 1;
}
.panel-btn i {
  color: #fff;
  cursor: pointer;
}
.panel-btn i:before {
  font-size: 22px;
}

.admin-bar .side-panel {
  top: 32px;
}

.side-panel {
  width: 400px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--bg-dark);
  overflow-x: hidden;
  z-index: 9999;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}
.side-panel .side-panel-block {
  padding: 90px 42px 90px 25px;
  height: 100%;
  width: calc(100% + 17px);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.side-panel .side-panel-close {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 20px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  background: #2f2f2f;
  text-align: center;
}
.side-panel.on-left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.side-panel.on-left.mmenu-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.side-panel.side-panel-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.side-panel-active .panel-overlay {
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 9998;
}

/* Custom Side panel */
.side-panel-block .the-logo {
  margin: 10px 0 40px 0;
}
.side-panel-block .the-logo img {
  width: 175px;
}
.side-panel-block .ot-heading h2 {
    color: #FFF;
    font-size: 24px;
    margin-bottom: 20px;
}
.side-panel-block .gallery {
    margin: 0 -10px -10px 0;
    display: table;
}
.side-panel-block .gallery-item {
    padding: 0 10px 10px 0;
    display: inline-block;
    max-width: 33.33333333%;
}
.side-panel .side-panel-block {
    
}
.header_mobile .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
.header_mobile .octf-row {
    margin-left: 0;
    margin-right: 0;
}
.header_mobile .octf-col {
    padding-left: 0;
    padding-right: 0;
}
.header_mobile .octf-search {
    margin-right: 30px;
}
.header_mobile .octf-menu-mobile {
    padding-right: 15px;
}
.header_mobile .mlogo_wrapper img {
    height: 70px;
    margin: 10px;
    width: 250px;
}
.header_mobile .mlogo_wrapper img:focus{
	outline: none!important;
}
.header_mobile .octf-row{
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    flex: 1 auto;
}
.side-panel-cinfo {
    padding-bottom: 40px;
}
.side-panel-cinfo ul {
    padding-left: 0;
    margin-bottom: 0;
}
.side-panel-cinfo .icon-list-item, .side-panel-cinfo .icon-list-item a {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight);
}
.side-panel-cinfo li.icon-list-item, .side-panel-cinfo li.icon-list-item a {
    font-family: "Inter",sans-serif;
    color: #555;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
.side-panel-cinfo .icon-list-item, .side-panel-cinfo  .icon-list-item a {
    font-family: "Inter",Sans-serif;
    line-height: 18px;
}
.side-panel-cinfo  .icon-list-items:not(.elementor-inline-items) .icon-list-item:not(:last-child) {
    padding-bottom: calc(25px/2);
}
@media (min-width: 768px){
	.side-panel-block .gallery-columns-3 .gallery-item {
	    max-width: 33.33%;
	}
}
@media only screen and (max-width: 782px) {
  .admin-bar .side-panel {
    top: 46px;
  }
}

section {
  position: relative;
  padding: 120px 0 0 0;
}

.masonry-post .post-inner {
  padding: 0px;
  margin-bottom: 30px;
}

#rev_slider_one_wrapper {
    position: relative;
}

.slider-bottom-overlay {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.slider-bottom-overlay h3{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 400;
}


.FULL-container > div > div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.75) 25%,
        rgba(0,0,0,0.35) 55%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
}

.brands {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.space-20 {
    width: 100%;
    height: 20px;
}
.space-60 {
    width: 100%;
    height: 60px;
}
.cta {
	padding: 120px 0 0 0;	
	border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #A9A9A9;
}
.cta_page {
	padding: 120px 0 0 0;	
	margin: 0 15px;
    color: #A9A9A9;
}
.cta_page > div > div > div {
	padding: 40px;
	background-color: var(--bg-card);
}
.cta_page a.octf-btn{
	display: inline-block;
}
.search{
	padding: 120px 0 0 0;
	color: var(--text-main);
	font-size: 18px;
}
.search span{
	font-weight: 400;
	line-height: 1;
	letter-spacing: 3.6px;
	font-size: 16px;
	text-transform: uppercase;
}
.search .octf-btn span{
	font-size: 14px;
}
.search p{
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;	
}
.motto{
	padding: 120px 0 0 0;
	color: var(--text-main);
	font-size: 18px;
	line-height: 1.2;
}
.motto ul {
    list-style-type: square;   /* quadratini */
    display: flex;             /* mette gli elementi in riga */
    gap: 30px;                 /* spazio tra i punti */
    padding-left: 0;           /* rimuove rientro */
    margin: 0;
    font-size: 16px;
    justify-content: center;
}
.motto ul li {
    list-style-position: inside;
    font-size: 16px;
}
.engineering{
	padding: 120px 0 0 0;
	color: var(--text-main);
	font-size: 18px;
	line-height: 1.2;
}
.engineering .row {
    align-items: stretch;
}
.engineering .bkg-gray{
	background-color: var(--bg-card);	
	margin-left: 0px;
	margin-right: 0px;	
}
.engineering .bkg-gray .order-1{
	padding-left: 0px;
}
.engineering .bkg-gray .order-2{
	padding-right: 0px;
}
.engineering .bkg-gray .about-content-3{
	padding-left: 15px;
	padding-right: 15px;
}
.engineering-bg-image {
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
    .engineering-bg-image {
        min-height: 320px;
    }
}
.engineering .ot-heading > span {
	font-family: var(--font-title);
}
.div-content ul {
    list-style-type: square;   /* quadratini */
    display: flex;             /* mette gli elementi in riga */
    gap: 20px;                 /* spazio tra i punti */
    padding-left: 0;           /* rimuove rientro */
    margin: 0;
    font-size: 16px;
    justify-content: center;
}
.div-content ul li {
    list-style-position: inside;
    font-size: 16px;
    line-height: 120%;
}
.div-content p, .div-content h2{
	margin: 0 0 10px;
}

/* Index 2 */
.octf-mainbar-row .octf-col.logo-col {
    flex-grow: 0.2;
}
.ot-heading.s-light:before {
    border-color: var(--text-main);
}
.ot-heading.s-light h2 {
	font-family: var(--font-title);
    color: var(--text-main);
    font-size: 60px;
    font-weight: 400;
}
.ot-heading.s-light h2.title{
    font-size: 48px;
}
.ot-heading.s-light h2.small{
    font-size: 42px;
}

.logo-size-small {
    width: 250px;
    height: 70px;
}

.list-social li:last-child a {
    margin-right: 0;
}

.icon-box--bg {
	background-color: var(--bg-card);
}
.icon-box--icon-top{
	background: var(--bg-dark) !important;
    width: fit-content;
    padding: 3px 10px;		
}
.icon-box {
    padding: 30px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
.icon-box h5{
	font-size: 24px;
	font-weight: 400;
	line-height: 32x;
}
.icon-box p{
	font-size: 14px;
	font-weight: 400;
	line-height: 24x;
	color: rgba(var(--text-main), 0.70);
}
.icon-box ul {
    list-style: none;
    padding-left: 0;
}
.icon-box ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .5rem;
}
.icon-box ul li::before {
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: rgba(var(--text-main), 0.70);
}
.icon-box a{
	font-size: 12px;
	letter-spacing: 1.2px;
	line-height: 16px;
	text-transform: uppercase;
}

.cards-slider .owl-dots{
	text-align: center;
}

.ot-counter{
	font-weight: 400;
}
.ot-counter div{
	font-family: var(--font-title);
	font-size: 48px;
	line-height: 48x;
}
.ot-counter h6{
	font-size: 20px;
	line-height: 28x;	
}
.ot-counter p{
	font-size: 16px;
	line-height: 24px;	
    color: rgba(255, 255, 255, 0.60);	
}
.ot-counter i{
    border: 1px solid;
    padding: 10px;
    font-size: 24px;
}

@media (min-width: 1025px){
  .brands {
    background-attachment: fixed;
  }
}
@media (min-width: 1200px){
  .about-img-0 {
      margin: 0 0 0 -132px;
  }
  .about-img-1 {
      margin: 0 -132px 0 0 ;
  }  
  .ml-xl-70 {
      margin-left: 70px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Back To Top*/
#back-to-top {
  background: #9f9e9e;
  color: var(--text-main);
  border: 0 none;
  cursor: pointer;
  width: 42px;
  height: 45px;
  line-height: 45px;
  opacity: 0;
  visibility: hidden;
  outline: medium none;
  position: fixed;
  right: 40px;
  bottom: -20px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease-out 0s;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
#back-to-top i {
  display: block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#back-to-top i:before {
  font-size: 17px;
}

/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/
/* Custom HTML */
@media (min-width: 1230px){
  .container {
      max-width: 1200px;
  }
}
/* Custom Css Header HTML */
.octf-search {
    margin-right: 65px;
}
.pb-50 {
    padding-bottom: 50px;
}
/* Blog */
/* Footer */
.site-footer {
    color: var(--text-main);
}
.widget-footer{
	 font-size: 14px;
	 font-weight: 400;
}
.widget-footer ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.widget-footer a {
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 14px;
}
.widget-footer li {

}
.widget-footer li:last-child {
    padding-bottom: 0;
}
.widget-footer .footer-social li {
    padding-bottom: 0;
}
.widget-footer a:hover {
    color: var(--text-main);
}
.widget-footer p{
    font-size: 14px;
    line-height: 22.75px
}
.widget-footer h6 {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--text-main);
}
.footer-logo {
    max-width: 95%;
    padding-bottom: 32px;
}
.footer-social {
    padding-top: 9px;
    padding-bottom: 2px;
}
.footer-social ul, .list-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-social li, .list-social li {
    display: inline-block;
}
.footer-social a, .list-social a {
    font-size: 12px;
    border: 1px solid var(--text-main);
    padding: 7px;
    color: var(--text-main);
    text-align: center;
    margin-right: 11px;
}
.footer-social a:hover, .list-social a:hover {
    background-color: #444;
}
.footer-social a i, .list-social a i {
    width: 14px;
    height: 14px;
}
.footer-list {
    margin: 0;
    padding-top: 5px;
    padding-left: 0;
    list-style: none;
}
.footer-list-item i:before {
    font-size: 18px;
}
.footer-list-item .list-item-text {
    padding-left: 10px;
}
.footer-list-item {
    line-height: 1;
    padding-top: 11px;
    padding-bottom: 14px
}
.footer-list-item:first-child {
    padding-top: 0;
}
.footer-list-item:last-child {
    padding-bottom: 0;
}
.footer-bottom {
    padding: 23px 0;
    border-top: 1px solid var(--text-light-muted);
}
.footer-bottom p {
    color: var(--text-light-muted);
    font-size: 14px;
    margin-bottom: 0;
}
.footer-bottom ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-bottom ul li span{
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #7B7B7B;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-bottom ul li:first-child span {
    padding-left: 0;
}
.footer-bottom ul li:last-child span {
    padding-right: 0;
    border-right: none;
}
.footer-bottom li a {
    color: var(--text-light-muted);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 26px;
}
.footer-bottom li a:hover {
    color: var(--text-main);
}
.footer-bottom .small p, .footer-bottom .small a {
    font-size: 12px;
}
.octf-btn:hover i.fa-arrow-down {
   	transform: translate(0px, 5px)!important;
}

/* #Card
================================================== */
.card{
	border-radius: 15px;
	background-color: var(--bg-card);
	font-size: 14px;
}
.card h3{
	font-weight: 600;
}
.card .label{
	color: var(--text-gray-light);
}
.card .value{
	font-weight: 600;
}
/* #owl
================================================== */
.owl-theme .owl-dots .owl-dot {
	border: none;
	background: transparent;
}
.owl-theme .owl-dots .owl-dot span {
	border-radius: 0px;
	margin: 0px;
	background: rgba(255, 255, 255, .3);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--text-main);
}
.highlights-slider .owl-dots{
	position: absolute;	
	margin: 0px!important;
}

/* #features
================================================== */
.features ul,
.features ul li {
    list-style: none;
}

.features ul {
    padding-left: 0;
    margin: 0;
}

.features ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.features ul li:last-child {
    margin-bottom: 0;
}

.features ul li::marker {
    content: "";
}

.features ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 300;
}

.features p{
    color: #f8f9fa;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 0;	
}

.features p + p {
    margin-top: 1.5rem;
}

.mobile-read-more {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.no-border-btn{
    border:none!important;
}

/* Mobile Optimization - Custom Fixes */
@media (max-width: 767px) {
    /* Miglioramento Tap Targets per bottoni e menu */
	.slider-bottom-overlay {
	    bottom: 10px;
	}	
	
    /* Miglioramento Tap Targets per bottoni e menu */
    .octf-btn, .main-navigation ul.menu > li > a, .footer-bottom li a {
        
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevenzione overflow immagini */
    img {
        max-width: 100%;
        height: auto !important;
    }

    /* Ottimizzazione testi su schermi piccoli */
    body {
        font-size: 16px; /* Evita zoom automatico su input in iOS */
    }
    
	.w-mobile-auto {
    	width: fit-content !important;
  	}   
  	
	.brands {
	    padding: 0;
	    margin-top: 200px !important;
	}	
	
	.octf-btn {
	    padding: 12px 20px;
		max-width: 100%;
		white-space: normal;
		text-align: center;
		line-height: 1.3;	    
	}  	
	
    .octf-btn .btn-text {
    	overflow-wrap: anywhere;
    }	
	
    .ot-button.right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }  
    
	.octf-btn.small-btn {
	    padding: 9px;
	}    	 
    
    .config-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px;
        gap: 15px;
        width: 100%;
    }
   
    .config-btn span,
    .config-btn strong,
    .config-btn i {
        display: block;
    }      

    .app-lines ul,  .motto ul, .div-content ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        list-style: none;
        text-align: center;
        padding: 20px 0 0 0;
        line-height: 100%;
        font-size: 14px;
    }

    .app-lines ul li, .motto ul li, .div-content ul li {
        text-align: center;
        position: relative;
        padding: 2px 0 15px 0;
    }
    
    .app-lines ul li:not(:last-child)::after, .motto ul li:not(:last-child)::after, .div-content ul li:not(:last-child)::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        background: currentColor;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }   

	.engineering {
	    font-size: 16px;
	    font-weight: 300;
	}	
	    
	.engineering .ot-heading > span {
	    font-size: 28px;
	}

	.engineering .align-items-stretch.bkg-gray, .engineering .align-items-stretch.bkg-gray .order-1, .engineering .align-items-stretch.bkg-gray .order-2 {
		padding: 0px;
	}
	
	.bkg-gray{
		background-color: var(--bg-card);
		padding: 30px;
	}
	
	.motto {
	    font-size: 16px;
	}	
	
	.search span {
	    letter-spacing: 2px;
	}	
	
	.link-scopri {
	    opacity: 1!important;
	    transform: none!important;
	    transition: none!important;
	}		
	
	.widget-footer h6{
    	margin-bottom: 10px!important;
	}		
	
	.footer-list li{
		padding-bottom: 5px;
	}	 

    .quick-links {
        columns: 2;
        -webkit-columns: 2;
        padding-left: 0;
    }

    .quick-links li {
        break-inside: avoid;
        list-style: none;
        margin-bottom: 0px;
    }
    
	.post-box .entry-media {
	    margin-bottom: 10px;
	}    
    
	.post-cat-mobile-bottom {
    	position: relative;
  	}

  	.post-cat-mobile-bottom .post-cat {
  		top: auto!important;
		bottom: 10px!important;
  	}    
	    
    /*
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    */

}

/* Category News */
.category-news-page {
  background: var(--bg-dark);
  color: var(--text-main);
  padding: 178px 0 0;
}

.category-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 65px;
}

.category-news-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-light-muted);
  font-size: 16px;
}

.category-news-filter a {
  color: var(--text-light-muted);
}

.category-news-filter a.active,
.category-news-filter a:hover {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.category-news-card {
  height: 100%;
}

.category-news-image {
  position: relative;
  display: block;
  overflow: hidden;
  /*background: #111;*/
  color: var(--text-main);
}

.category-news-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: none;
}

.category-news-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.category-news-card.is-featured .category-news-image {
  border: 1px solid transparent;
}

.category-news-card.is-featured:hover .category-news-image {
  border-color: var(--text-main);
}

.category-news-card.is-featured .category-news-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.48) 50%,
    rgba(0,0,0,0.08) 100%
  );
  transition: background 0.6s ease;
}

.category-news-card.is-featured:hover .category-news-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.74) 60%,
    rgba(0,0,0,0.18) 100%
  );
}

.category-news-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: 1.1;
    display: inline-block;
    color: var(--bg-dark);
    background: var(--text-main);
    padding: 8px 10px;
}

.category-news-card.is-featured .category-news-badge {
  top: auto;
  left: auto;
  right: 28px;
  bottom: 28px;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: 1.1;
    display: inline-block;
    color: var(--bg-dark);
    background: var(--text-main);
    padding: 8px 10px; 
}

.category-news-featured-content {
  position: absolute;
  left: 25px;
  right: 120px;
  bottom: 34px;
  z-index: 2;
  color: var(--text-main);
}

.category-news-featured-main {
  display: block;
  transition: transform 0.6s ease;
}

.category-news-card.is-featured:hover .category-news-featured-main {
  transform: translateY(-132px);
}

.category-news-featured-content strong {
  display: block;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
}

.category-news-featured-reveal {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 28px);
  opacity: 0;
  transform: translateY(70px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-news-card.is-featured:hover .category-news-featured-reveal {
  opacity: 1;
  transform: translateY(-132px);
  pointer-events: auto;
}

.category-news-featured-excerpt {
  display: block;
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 300;
}

.category-news-featured-button {
  display: inline-flex;
}

.category-news-content {
  padding-top: 22px;
}

.category-news-date {
  display: block;
  margin-bottom: 10px;
  color: #b8b8b8;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.category-news-title {
  margin: 0 0 20px;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.category-news-title a {
  color: var(--text-main);
}

.category-news-title a:hover {
  color: #cfcfcf;
}

.category-news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 70px;
}

.category-news-page-dot {
  display: block;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, .3);
  text-indent: -9999px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.category-news-page-dot:hover,
.category-news-page-dot.active {
  background: var(--text-main);
}

.category-news-page-dot span {
  display: none;
}

@media (max-width: 991px) {
  .category-news-page {
    padding-top: 160px;
  }

  .category-news-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .category-news-featured-content {
    right: 25px;
  }

  .category-news-card.is-featured:hover .category-news-featured-main {
    transform: translateY(-96px);
  }

  .category-news-card.is-featured:hover .category-news-featured-reveal {
    transform: translateY(-96px);
  }

  .category-news-featured-excerpt {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
	.category-news-page {
		padding-top: 135px;
	}
	
	.category-news-filter {
		gap: 10px;
	}
	
	.category-news-featured-content {
		position: relative;
	    left: 0px;
	    bottom: -22px;		
	}
	
	.category-news-image {
		overflow: visible;
	}
	
	.category-news-card.is-featured:hover .category-news-featured-main,
	.category-news-card.is-featured:hover .category-news-featured-reveal {
		transform: translateY(0);
	}
	
	.category-news-featured-content strong {
		font-size: 25px;
	}
	
	.category-news-featured-reveal {
		display: block;
	}
	
	.category-news-featured-reveal {
	    position: relative;
	    opacity: 1;
	    transform: none
	}	
	
	.category-news-card.is-featured .category-news-badge {
		right: 18px;
		bottom: inherit;
		top: 20px;
		font-family: var(--font-main);
	    text-transform: uppercase;
	    font-size: 12px;
	    font-weight: 400;
	    letter-spacing: 0.6px;
	    line-height: 1.1;
	    display: inline-block;
	    color: var(--bg-dark);
	    background: var(--text-main);
	    padding: 8px 10px;  		
		
	}
	
	.category-news-card.is-featured .category-news-image {
	    border: none;
	}
	
	.category-news-card.is-featured .category-news-overlay {
		background: linear-gradient(
			to top,
			rgba(0,0,0,0.82) 0%,
			rgba(0,0,0,0.48) 50%,
			rgba(0,0,0,0.08) 100%
		);
		transition: none;
	}
	
	.category-news-card.is-featured:hover .category-news-overlay {
		background: linear-gradient(
			to top,
			rgba(0,0,0,0.82) 0%,
			rgba(0,0,0,0.48) 50%,
			rgba(0,0,0,0.08) 100%
		);
	}	

}

.category-news-mobile-arrow{
  display: none;
}

@media (max-width: 767px) {
  .category-news-card.is-mobile-home-card {
    display: block;
    margin-bottom: 20px;
  }

  .category-news-card.is-mobile-home-card .category-news-image {
    position: relative;
    display: block;
    width: calc(100% - 78.33px);
    overflow: visible;
  }

  .category-news-card.is-mobile-home-card .category-news-image img {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .category-news-card.is-mobile-home-card .category-news-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    top: auto;
    z-index: 4;    
	font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: 1.1;
    display: inline-block;
    color: var(--bg-dark);
    background: var(--text-main);
    padding: 8px 10px;    
    
  }

  .category-news-card.is-mobile-home-card .category-news-mobile-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    background: var(--text-main);
    color: var(--bg-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-size: 22px;
    line-height: 1;
  }

  .category-news-card.is-mobile-home-card .category-news-overlay {
    display: none;
  }

  .category-news-card.is-mobile-home-card .category-news-content {
    padding-top: 22px;
  }

  .category-news-card.is-mobile-home-card .category-news-read-more {
    display: none;
  }
  
  .single-link-not-featured{
	  position: absolute; 
	  right: 35px;
	  bottom: 117px;
  }
}

/* Single News */

body.single-post:not(.mmenu-active) {
  overflow-x: visible !important;
  overflow-y: visible !important;
  background: var(--bg-dark);
}

body.single-post.mmenu-active {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

body.single-post .site,
body.single-post .site-content,
body.single-post .single,
body.single-post .mq-single-body,
body.single-post .mq-single-body .container,
body.single-post .mq-single-body .row,
body.single-post .mq-single-sidebar-wrap {
  overflow: visible !important;
}

body.single-post .single {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
}

.mq-single-head {
  padding: 178px 0 65px;
}

.mq-single-title {
  margin: 0 0 24px;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
}

.mq-single-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #b8b8b8;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.mq-single-meta span + span:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 18px;
  vertical-align: middle;
  background: #7d8490;
}

.mq-news-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.mq-single-body {
  padding: 0 0 125px;
}

.mq-single-body .row {
  align-items: flex-start;
}

.mq-single-image {
  position: relative;
  margin: 0 0 70px;
  background: #111;
  overflow: hidden;
}

.mq-single-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

.mq-single-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mq-single-content {
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.mq-single-content p {
  margin-bottom: 24px;
}

.mq-single-content blockquote p.wp-block-paragraph{
  position: relative;
  padding-left: 42px;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.mq-single-content blockquote p.wp-block-paragraph:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 5px;
  width: 2px;
  background: var(--text-main);
}

.mq-single-sidebar-wrap {
  border-left: 1px solid #2c3440;
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
  padding-left: 22px;
}

.admin-bar .mq-single-sidebar-wrap {
  top: 157px;
}

.mq-sidebar-heading {
  margin: 0 0 45px;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.mq-sidebar-card {
  margin-bottom: 42px;
}

.mq-sidebar-image {
  position: relative;
  display: block;
  margin-bottom: 14px;
  padding-right: 62px;
}

.mq-sidebar-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mq-sidebar-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-main);
  color: var(--bg-dark);
  font-size: 24px;
  line-height: 1;
}

.mq-sidebar-date,
.mq-related-date {
  margin-bottom: 8px;
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.mq-sidebar-title {
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.mq-sidebar-title a {
  display: block;
  color: var(--text-main);
}

.mq-share-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #d8d8d8;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.mq-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7d8490;
  font-size: 20px;
  line-height: 1;
}

.mq-share-icon i {
  display: block;
  line-height: 1;
}

.mq-related-news {
  padding: 0;
}

.mq-related-head {
  margin-bottom: 50px;
}

.mq-related-head h2 {
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.mq-related-card {
  height: 100%;
}

.mq-related-image {
  position: relative;
  display: block;
  margin-bottom: 22px;
  overflow: hidden;
  background: #111;
}

.mq-related-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mq-related-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 16px;
  background: var(--text-main);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.mq-related-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
}

.mq-related-title a {
  color: var(--text-main);
}

/* Contact Page */
body.page-template-page-contatti:not(.mmenu-active),
body.page-template-contatti:not(.mmenu-active) {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  background: var(--bg-dark);
}

.page-template-page-contatti,
.page-template-contatti {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
}

.page-template-contatti .mq-contact-info-box a,
.page-template-page-contatti .mq-contact-info-box a {
  color: var(--text-main);
}

.page-template-contatti .mq-contact-link,
.page-template-contatti .underline,
.page-template-page-contatti .mq-contact-link,
.page-template-page-contatti .underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-template-contatti .mq-contact-section,
.page-template-page-contatti .mq-contact-section {
  padding: 0px 0 150px;
}

.page-template-contatti .mq-contact-top-row,
.page-template-page-contatti .mq-contact-top-row {
  align-items: stretch;
}

.page-template-contatti .mq-contact-info-box,
.page-template-contatti .mq-contact-card,
.page-template-contatti .mq-work-card,
.page-template-page-contatti .mq-contact-info-box,
.page-template-page-contatti .mq-contact-card,
.page-template-page-contatti .mq-work-card {
  background: var(--bg-card);
}

.page-template-contatti .mq-contact-info-box,
.page-template-page-contatti .mq-contact-info-box {
  min-height: 170px;
  padding: 45px 28px;
  display: flex;
  align-items: center;
}

.page-template-contatti .mq-contact-info-item,
.page-template-page-contatti .mq-contact-info-item {
  display: flex;
  gap: 22px;
  color: var(--text-main);
}

.page-template-contatti .mq-contact-icon,
.page-template-page-contatti .mq-contact-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1;
}

.page-template-contatti .mq-contact-info-item span,
.page-template-page-contatti .mq-contact-info-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light-muted);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.page-template-contatti .mq-contact-info-item p,
.page-template-page-contatti .mq-contact-info-item p {
  margin: 0;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.page-template-contatti .mq-contact-media-row,
.page-template-page-contatti .mq-contact-media-row {
  margin-top: 24px;
}

.page-template-contatti .mq-contact-media,
.page-template-page-contatti .mq-contact-media {
  display: block;
  height: 355px;
  overflow: hidden;
  background: #111;
}

.page-template-contatti .mq-contact-media img,
.page-template-page-contatti .mq-contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-template-contatti .mq-contact-card,
.page-template-page-contatti .mq-contact-card {
  height: 100%;
  padding: 28px;
}

.page-template-contatti .mq-contact-card h2,
.page-template-page-contatti .mq-contact-card h2 {
  margin: 0 0 14px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.page-template-contatti .mq-contact-card > p,
.page-template-page-contatti .mq-contact-card > p {
  color: var(--text-gray-light);
  font-size: 14px;
  line-height: 1.5;
}

.page-template-contatti .mq-contact-form input:not([type="checkbox"]):not([type="file"]),
.page-template-contatti .mq-contact-form textarea,
.page-template-contatti .mq-work-form input:not([type="checkbox"]):not([type="file"]),
.page-template-contatti .mq-work-form textarea,
.page-template-page-contatti .mq-contact-form input:not([type="checkbox"]):not([type="file"]),
.page-template-page-contatti .mq-contact-form textarea,
.page-template-page-contatti .mq-work-form input:not([type="checkbox"]):not([type="file"]),
.page-template-page-contatti .mq-work-form textarea {
  width: 100%;
  margin-bottom: 0px;
  padding: 12px;
  border: 1px solid transparent;
  border-bottom-color: rgba(255,255,255,.75);
  background: #000;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.page-template-contatti .mq-contact-form input:first-child,
.page-template-page-contatti .mq-contact-form input:first-child {

}

.page-template-contatti .mq-contact-form textarea,
.page-template-contatti .mq-work-form textarea,
.page-template-page-contatti .mq-contact-form textarea,
.page-template-page-contatti .mq-work-form textarea {
  min-height: 84px;
  resize: vertical;
  border-color: rgba(255,255,255,.75);
}

.page-template-contatti .mq-contact-form ::placeholder,
.page-template-contatti .mq-work-form ::placeholder,
.page-template-page-contatti .mq-contact-form ::placeholder,
.page-template-page-contatti .mq-work-form ::placeholder {
  color: var(--text-gray-light);
  opacity: 1;
}

.page-template-contatti .mq-check,
.page-template-page-contatti .mq-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 24px;
  color: #a6a6b0;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.25;
}

.page-template-contatti .mq-check input[type="checkbox"],
.page-template-page-contatti .mq-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  padding: 0;
  flex: 0 0 14px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #6b6b75;
  background: transparent;
}

.page-template-contatti .mq-check input[type="checkbox"]:checked,
.page-template-page-contatti .mq-check input[type="checkbox"]:checked {
  background: var(--text-main);
}

.page-template-contatti .mq-white-submit,
.page-template-page-contatti .mq-white-submit {
  min-width: 110px;
  padding: 15px 28px;
  border: 1px solid var(--text-main);
  background: var(--text-main);
  color: var(--bg-dark);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
}

.page-template-contatti .mq-white-submit:hover,
.page-template-page-contatti .mq-white-submit:hover {
  background: transparent;
  color: var(--text-main);
}

.page-template-contatti .mq-work-card,
.page-template-page-contatti .mq-work-card {
  margin-top: 48px;
  padding: 20px 40px;
  background: var(--bg-card);
}

.page-template-contatti .mq-work-head,
.page-template-page-contatti .mq-work-head {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.page-template-contatti .mq-work-head:focus,
.page-template-page-contatti .mq-work-head:focus {
  outline: none !important;
  box-shadow: none !important;
}

.page-template-contatti .mq-work-head h3,
.page-template-page-contatti .mq-work-head h3 {
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.page-template-contatti .mq-work-head i,
.page-template-page-contatti .mq-work-head i {
  color: var(--text-main);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.page-template-contatti .mq-work-head[aria-expanded="true"] i,
.page-template-page-contatti .mq-work-head[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.page-template-contatti .mq-work-panel,
.page-template-page-contatti .mq-work-panel {
  padding-top: 42px;
}

.page-template-contatti .mq-work-panel[hidden],
.page-template-page-contatti .mq-work-panel[hidden] {
  display: none !important;
}

.page-template-contatti .mq-work-intro,
.page-template-page-contatti .mq-work-intro {
  margin: 0 0 42px;
  color: var(--text-gray-light);
  font-size: 14px;
  line-height: 1.55;
}

.page-template-contatti .mq-file-field,
.page-template-page-contatti .mq-file-field {
  width: 100%;
  height: 45px;
  margin: 0 0 8px;
  border: 1px solid rgba(255,255,255,.75);
  background: #000;
  display: flex;
  align-items: center;
  color: var(--text-gray-light);
  cursor: pointer;
}

.page-template-contatti .mq-file-field input[type="file"],
.page-template-page-contatti .mq-file-field input[type="file"] {
  display: none;
}

.page-template-contatti .mq-file-icon,
.page-template-page-contatti .mq-file-icon {
  width: 46px;
  height: 43px;
  margin-right: 16px;
  background: var(--text-main);
  color: var(--text-gray-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.page-template-contatti .mq-work-form small,
.page-template-page-contatti .mq-work-form small {
  display: block;
  margin-bottom: 32px;
  color: #8f8f99;
  font-size: 13px;
}

.page-template-contatti .mq-work-bottom,
.page-template-page-contatti .mq-work-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
}

.page-template-contatti .mq-work-bottom .mq-check,
.page-template-page-contatti .mq-work-bottom .mq-check {
  max-width: 590px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .mq-single-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .mq-single-head {
    padding: 165px 0 50px;
  }

  .mq-single-title {
    font-size: 38px;
  }

  .mq-single-body {
    padding-bottom: 85px;
  }

  .mq-single-sidebar-wrap {
    position: static;
    top: auto;
    margin-top: 70px;
    padding-left: 15px;
    border-left: 0;
  }

  .mq-sidebar-image {
    padding-right: 0;
  }

  .mq-sidebar-arrow {
    right: 12px;
    bottom: 12px;
  }

  .page-template-contatti .mq-contact-section,
  .page-template-page-contatti .mq-contact-section {
    padding: 165px 0 100px;
  }

  .page-template-contatti .mq-contact-info-box,
  .page-template-page-contatti .mq-contact-info-box {
    padding: 30px;
  }

  .page-template-contatti .mq-contact-info-item,
  .page-template-page-contatti .mq-contact-info-item {
    margin-bottom: 26px;
  }

  .page-template-contatti .mq-contact-info-item:last-child,
  .page-template-page-contatti .mq-contact-info-item:last-child {
    margin-bottom: 0;
  }

  .page-template-contatti .mq-work-card,
  .page-template-page-contatti .mq-work-card {
    padding: 36px 30px 42px;
  }

  .page-template-contatti .mq-work-bottom,
  .page-template-page-contatti .mq-work-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .mq-single-head {
    padding: 135px 0 42px;
  }

  .mq-single-title {
    font-size: 34px;
  }

  .mq-single-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .mq-single-image {
    margin-bottom: 42px;
  }

  .mq-single-content p:first-child {
    padding-left: 28px;
  }

  .mq-related-head {
    margin-bottom: 35px;
  }

  .mq-related-head h2 {
    font-size: 32px;
  }

  .mq-related-title {
    font-size: 20px;
  }

  .page-template-contatti .mq-contact-section,
  .page-template-page-contatti .mq-contact-section {
    padding: 0 0 80px;
  }

  .page-template-contatti .mq-contact-media,
  .page-template-page-contatti .mq-contact-media {
    height: 280px;
  }

  .page-template-contatti .mq-contact-card,
  .page-template-page-contatti .mq-contact-card {
    padding: 24px;
  }

  .page-template-contatti .mq-work-head h2,
  .page-template-page-contatti .mq-work-head h2 {
    font-size: 38px;
  }

  .page-template-contatti .mq-white-submit,
  .page-template-page-contatti .mq-white-submit {
    width: 100%;
  }
}

.wpforms-field-container{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;	
}
.wpforms-container label{
	display: none;
}

.wpforms-form em.wpforms-error {
    margin-top: 5px!important;
    font-size: 12px;
    color: var(--primary-color);    
}
.wpforms-error{
	border-bottom-color: var(--primary-color)!important;
}
.wpforms-field {
    padding-bottom: 15px!important;
}

.mq-check-wrap label{
	font-size: 12px!important;
	color: var(--text-gray-light)!important;
}
.mq-check-wrap ul{
	list-style: none;
    margin: 0px;
    padding-left: 0px;	
}
.mq-check-wrap input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 1px 0 0;
    padding: 0;
    flex: 0 0 14px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #6b6b75;
    background: transparent;
}
.mq-check-wrap input[type="checkbox"]:checked {
  background: var(--text-main);
}
.mq-check-wrap label {
   display: block;
}
.error-404 .text-center{
	margin: auto;
}
.error-404 .page-content h1 {
    font-size: 180px;
    font-weight: 200;
}
.error-404 h2 {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 30px;
}
.wpforms-field-container legend{
	display: none!important;
}
.wpforms-field-checkbox ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wpforms-field-checkbox li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.wpforms-field-checkbox input[type="checkbox"] {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
}
.wpforms-field-checkbox .wpforms-field-label-inline {
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.25;
}
.wpforms-submit-container {
  display: flex;
  justify-content: flex-end;
}
.wpforms-confirmation-scroll p{
	color: var(--text-gray-light);
    font-size: 14px;
    line-height: 1.5;	
}
.wpforms-hidden{
	display: none!important;
}
.wpforms-submit-spinner{
	display: none!important;
	visibility: hidden;
	width: 0!important;
	height: 0!important;
}