@charset "UTF-8";
/*
 Theme Name: Ac Avvocati
 Description: Custom theme for Ac Avvocati
 Author: Antonio Trifirò
 Author URI: https://www.conlaccento.it
 Version: 1.0.0
 License: GPLv2 or greater
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: ac-avvocati */
/**
 * Swiper 4.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2017 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2017
 */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600,700);
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-container {
  width: 83.3333%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: auto;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next,
.swiper-button-prev {
  background-image: url(../images/slider-arrow.svg);
}

.swiper-button-next {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  right: 40px;
}

.swiper-button-prev {
  left: 40px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background: #fff;
  color: #5c5c5c;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

a {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Set weight depending on used font */
em {
  font-style: italic;
}

p {
  margin: 1em 0;
}

/* Clearfix */
.clearfix:after,
.ubermenu-nav:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

*:first-child + html .clearfix,
*:first-child + html .ubermenu-nav {
  zoom: 1;
}

/* No-style lists*/
.clean-list,
.clean-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*--------------------------------------------------------------
# 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;
}

/* Alignment */
.fleft {
  float: left;
}

.fright {
  float: right;
}

.alcenter {
  text-align: center;
}

.alleft {
  text-align: left;
}

.alright {
  text-align: right;
}

.aljustify {
  text-align: justify;
}

@media only screen and (max-width: 81.25em) {
  .xxl-alcenter {
    text-align: center;
  }
  .xxl-alleft {
    text-align: left;
  }
  .xxl-alright {
    text-align: right;
  }
}
@media only screen and (max-width: 68.75em) {
  .xl-alcenter {
    text-align: center;
  }
  .xl-alleft {
    text-align: left;
  }
  .xl-alright {
    text-align: right;
  }
}
@media only screen and (max-width: 56.25em) {
  .l-alcenter {
    text-align: center;
  }
  .l-alleft {
    text-align: left;
  }
  .l-alright {
    text-align: right;
  }
}
@media only screen and (max-width: 48em) {
  .m-alcenter {
    text-align: center;
  }
  .m-alleft {
    text-align: left;
  }
  .m-alright {
    text-align: right;
  }
}
@media only screen and (max-width: 40.625em) {
  .s-alcenter {
    text-align: center;
  }
  .s-alleft {
    text-align: left;
  }
  .s-alright {
    text-align: right;
  }
}
img.fleft {
  margin: 0 1em 1em 0;
}

img.fright {
  margin: 0 0 1em 1em;
}

/* Transition */
.csstransition {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/* Form Elements */
/* Wrap form elements in p or div with .form-item class */
.form-item:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

*:first-child + html .form-item {
  zoom: 1;
}

input,
button,
textarea,
select {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
}

textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
}

.form-item input,
.form-item button,
.form-item textarea,
.form-item select {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0;
  padding: 0.5em 1em;
}

.form-item input.fleft {
  float: left;
}

.form-item input.fright {
  float: right;
}

input[type=radio],
input[type=checkbox] {
  width: auto;
  border: none;
  margin: 0.25em 1em 0 0;
}

input[type=submit] {
  -webkit-appearance: none;
}

.form-item label {
  display: block;
  width: 100%;
  float: left;
}

.form-item input[type=submit],
.form-item input[type=reset] {
  cursor: pointer;
}

.form-item input[type=submit]:hover,
.form-item input[type=reset]:hover {
  -webkit-box-shadow: 0 0 5px #ddd;
          box-shadow: 0 0 5px #ddd;
}

/*50% size - Two in a row */
.form-item input.med-size,
.form-item button.med-size,
.form-item textarea.med-size,
.form-item select.med-size,
.form-item label.med-size {
  width: 47.5%;
  margin-left: 5%;
}

.form-item input.med-size:first-child,
.form-item button.med-size:first-child,
.form-item textarea.med-size:first-child,
.form-item select.med-size:first-child,
.form-item label.med-size:first-child {
  margin-left: 0;
}

/*33% - Three in a row */
.form-item input.small-size,
.form-item button.small-size,
.form-item textarea.small-size,
.form-item select.small-size,
.form-item label.small-size {
  width: 28.5%;
  margin-left: 5%;
}

.form-item input.small-size:first-child,
.form-item button.small-size:first-child,
.form-item textarea.small-size:first-child,
.form-item select.small-size:first-child,
.form-item label.small-size:first-child {
  margin-left: 0;
  width: 33%;
}

/*25% size - Four in a row */
.form-item input.smaller-size,
.form-item button.smaller-size,
.form-item textarea.smaller-size,
.form-item select.smaller-size,
.form-item label.smaller-size {
  width: 21.25%;
  margin-left: 5%;
}

.form-item input.smaller-size:first-child,
.form-item button.smaller-size:first-child,
.form-item textarea.smaller-size:first-child,
.form-item select.smaller-size:first-child,
.form-item label.smaller-size:first-child {
  margin-left: 0;
}

/* Buttons & Creative Styles */
.stitched {
  background: #ca2020;
  border: 2px dashed #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 4px #ca2020;
          box-shadow: 0 0 0 4px #ca2020; /* Set same color of background */
  margin: 0 4px; /* Set same px as box-shadow depth */
}

*, *::after, *::before, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ie8 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.col-group-row {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col-group-row.no-extgut {
  margin: 0 -1em;
}

.as-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.as-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.col-group-row.no-marg .col {
  margin: 0;
}

.col-group-row:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

*:first-child + html .col-group-row {
  zoom: 1;
}

.col {
  padding: 0.5em 1em;
  float: left;
  word-wrap: break-word;
  margin: 10px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.col-group-row.no-pad .col {
  padding: 0 1em;
}

.col-group-row.zero-pad .col {
  padding: 0;
}

.col.nopad {
  padding: 0 1em;
}

.col.removepad {
  padding: 0;
}

.col.removemarg {
  margin: 0;
}

.col.fright {
  float: right;
}

.col.fleft {
  float: left;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em 0;
}

.col-group-row h1, .col-group-row h2, .col-group-row h3, .col-group-row h4, .col-group-row h5, .col-group-row h6 {
  margin: 0 0 1em 0;
}

.no-grow {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.centered-col {
  margin: 10px auto;
}

.no-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.no-grow {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.container {
  width: 1140px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container::after {
  content: "";
  display: block;
  clear: both;
}

/* MIXIN RESPONSIVE */
/* Colonna al 100% */
.full-col {
  width: 100%;
  float: none;
  clear: both;
}

/* Sistema a 2 colonne */
.one-half {
  width: 100%/2;
}

/* Sistema a 3 colonne */
.one-third {
  width: 100%/3;
}

.two-third {
  width: 66.6666666667%;
}

/* Sistema a 4 colonne */
.one-fourth {
  width: 100%/4;
}

.two-fourth {
  width: 50%;
}

.three-fourth {
  width: 75%;
}

/* Sistema a 5 colonne */
.one-fifth {
  width: 100%/5;
}

.two-fifth {
  width: 40%;
}

.three-fifth {
  width: 60%;
}

.four-fifth {
  width: 80%;
}

/* Sistema a 6 colonne */
.one-sixth {
  width: 100%/6;
}

.two-sixth {
  width: 33.3333333333%;
}

.three-sixth {
  width: 50%;
}

.four-sixth {
  width: 66.6666666667%;
}

.five-sixth {
  width: 83.3333333333%;
}

/* Sistema a 6 colonne */
.one-seventh {
  width: 100%/7;
}

.two-seventh {
  width: 28.5714285714%;
}

.three-seventh {
  width: 42.8571428571%;
}

.four-seventh {
  width: 57.1428571429%;
}

.five-seventh {
  width: 71.4285714286%;
}

.six-seventh {
  width: 85.7142857143%;
}

/* Sistema a 8 colonne */
.one-eighth {
  width: 100%/8;
}

.two-eighth {
  width: 25%;
}

.three-eighth {
  width: 37.5%;
}

.four-eighth {
  width: 50%;
}

.five-eighth {
  width: 62.5%;
}

.sixth-eighth {
  width: 75%;
}

.seventh-eighth {
  width: 87.5%;
}

/*@media only screen and (min-width : 768px) and (max-width : 1024px) {
	.one-fourth { width:50%; }
	.two-fourth { width:50%; }
	.three-fourth { width:50%; }
	.one-sixth { width:16.66666666666667%; }
	.two-sixth { width:33.33333333333333%; }
	.three-sixth { width:50%; }
	.four-sixth { width:66.66666666666667%; }
	.five-sixth { width:83.33333333333333%; }
}

@media only screen and (max-width : 767px) {
 .col { width:100%; }
}
*/
/* SIZE XXL ===== == = === 81.25em (1300px) === = == ===== */
@media only screen and (max-width: 81.25em) {
  .xxl-1-1 {
    width: 100%;
  }
  .xxl-1-2 {
    width: 50%;
  }
  .xxl-1-3 {
    width: 33.3333333333%;
  }
  .xxl-2-3 {
    width: 66.6666666667%;
  }
  .xxl-1-4 {
    width: 25%;
  }
  .xxl-2-4 {
    width: 50%;
  }
  .xxl-3-4 {
    width: 75%;
  }
  .xxl-1-5 {
    width: 20%;
  }
  .xxl-2-5 {
    width: 40%;
  }
  .xxl-3-5 {
    width: 60%;
  }
  .xxl-4-5 {
    width: 80%;
  }
  .xxl-1-6 {
    width: 16.6666666667%;
  }
  .xxl-2-6 {
    width: 33.3333333333%;
  }
  .xxl-3-6 {
    width: 50%;
  }
  .xxl-4-6 {
    width: 66.6666666667%;
  }
  .xxl-5-6 {
    width: 83.3333333333%;
  }
  .xxl-1-8 {
    width: 12.5%;
  }
  .xxl-2-8 {
    width: 25%;
  }
  .xxl-3-8 {
    width: 37.5%;
  }
  .xxl-4-8 {
    width: 50%;
  }
  .xxl-5-8 {
    width: 62.5%;
  }
  .xxl-6-8 {
    width: 75%;
  }
  .xxl-7-8 {
    width: 87.5%;
  }
  .xxl-hide {
    display: none;
  }
  .xxl-show {
    display: block;
  }
}
/* SIZE XL ===== == = === 68.75em (1100px) === = == ===== */
@media only screen and (max-width: 68.75em) {
  .xl-1-1 {
    width: 100%;
  }
  .xl-1-2 {
    width: 50%;
  }
  .xl-1-3 {
    width: 33.3333333333%;
  }
  .xl-2-3 {
    width: 66.6666666667%;
  }
  .xl-1-4 {
    width: 25%;
  }
  .xl-2-4 {
    width: 50%;
  }
  .xl-3-4 {
    width: 75%;
  }
  .xl-1-5 {
    width: 20%;
  }
  .xl-2-5 {
    width: 40%;
  }
  .xl-3-5 {
    width: 60%;
  }
  .xl-4-5 {
    width: 80%;
  }
  .xl-1-6 {
    width: 16.6666666667%;
  }
  .xl-2-6 {
    width: 33.3333333333%;
  }
  .xl-3-6 {
    width: 50%;
  }
  .xl-4-6 {
    width: 66.6666666667%;
  }
  .xl-5-6 {
    width: 83.3333333333%;
  }
  .xl-1-8 {
    width: 12.5%;
  }
  .xl-2-8 {
    width: 25%;
  }
  .xl-3-8 {
    width: 37.5%;
  }
  .xl-4-8 {
    width: 50%;
  }
  .xl-5-8 {
    width: 62.5%;
  }
  .xl-6-8 {
    width: 75%;
  }
  .xl-7-8 {
    width: 87.5%;
  }
  .xl-hide {
    display: none;
  }
  .xl-show {
    display: block;
  }
}
/* SIZE L ===== == = === 56.25em (900px) === = == ===== */
@media only screen and (max-width: 56.25em) {
  .col {
    float: left;
  }
  .l-1-1 {
    width: 100%;
  }
  .l-1-2 {
    width: 50%;
  }
  .l-1-3 {
    width: 33.3333333333%;
  }
  .l-2-3 {
    width: 66.6666666667%;
  }
  .l-1-4 {
    width: 25%;
  }
  .l-2-4 {
    width: 50%;
  }
  .l-3-4 {
    width: 75%;
  }
  .l-1-5 {
    width: 20%;
  }
  .l-2-5 {
    width: 40%;
  }
  .l-3-5 {
    width: 60%;
  }
  .l-4-5 {
    width: 80%;
  }
  .l-1-6 {
    width: 16.6666666667%;
  }
  .l-2-6 {
    width: 33.3333333333%;
  }
  .l-3-6 {
    width: 50%;
  }
  .l-4-6 {
    width: 66.6666666667%;
  }
  .l-5-6 {
    width: 83.3333333333%;
  }
  .l-1-8 {
    width: 12.5%;
  }
  .l-2-8 {
    width: 25%;
  }
  .l-3-8 {
    width: 37.5%;
  }
  .l-4-8 {
    width: 50%;
  }
  .l-5-8 {
    width: 62.5%;
  }
  .l-6-8 {
    width: 75%;
  }
  .l-7-8 {
    width: 87.5%;
  }
  .l-hide {
    display: none;
  }
  .l-show {
    display: block;
  }
}
/* SIZE M ===== == = === 48em (768px) === = == ===== */
@media only screen and (max-width: 48em) {
  .m-1-1 {
    width: 100%;
    float: none;
  }
  .m-1-2 {
    width: 50%;
  }
  .m-1-3 {
    width: 33.3333333333%;
  }
  .m-2-3 {
    width: 66.6666666667%;
  }
  .m-1-4 {
    width: 25%;
  }
  .m-2-4 {
    width: 50%;
  }
  .m-3-4 {
    width: 75%;
  }
  .m-1-5 {
    width: 20%;
  }
  .m-2-5 {
    width: 40%;
  }
  .m-3-5 {
    width: 60%;
  }
  .m-4-5 {
    width: 80%;
  }
  .m-1-6 {
    width: 16.6666666667%;
  }
  .m-2-6 {
    width: 33.3333333333%;
  }
  .m-3-6 {
    width: 50%;
  }
  .m-4-6 {
    width: 66.6666666667%;
  }
  .m-5-6 {
    width: 83.3333333333%;
  }
  .m-1-8 {
    width: 12.5%;
  }
  .m-2-8 {
    width: 25%;
  }
  .m-3-8 {
    width: 37.5%;
  }
  .m-4-8 {
    width: 50%;
  }
  .m-5-8 {
    width: 62.5%;
  }
  .m-6-8 {
    width: 75%;
  }
  .m-7-8 {
    width: 87.5%;
  }
  .m-hide {
    display: none;
  }
  .m-show {
    display: block;
  }
}
/* SIZE S ===== == = === 40.625em (650px) === = == ===== */
@media only screen and (max-width: 40.625em) {
  .s-1-1 {
    width: 100%;
    float: none;
  }
  .s-1-2 {
    width: 50%;
  }
  .s-1-3 {
    width: 33.3333333333%;
  }
  .s-2-3 {
    width: 66.6666666667%;
  }
  .s-1-4 {
    width: 25%;
  }
  .s-2-4 {
    width: 50%;
  }
  .s-3-4 {
    width: 75%;
  }
  .s-1-5 {
    width: 20%;
  }
  .s-2-5 {
    width: 40%;
  }
  .s-3-5 {
    width: 60%;
  }
  .s-4-5 {
    width: 80%;
  }
  .s-1-6 {
    width: 16.6666666667%;
  }
  .s-2-6 {
    width: 33.3333333333%;
  }
  .s-3-6 {
    width: 50%;
  }
  .s-4-6 {
    width: 66.6666666667%;
  }
  .s-5-6 {
    width: 83.3333333333%;
  }
  .s-1-8 {
    width: 12.5%;
  }
  .s-2-8 {
    width: 25%;
  }
  .s-3-8 {
    width: 37.5%;
  }
  .s-4-8 {
    width: 50%;
  }
  .s-5-8 {
    width: 62.5%;
  }
  .s-6-8 {
    width: 75%;
  }
  .s-7-8 {
    width: 87.5%;
  }
  .s-hide {
    display: none;
  }
  .s-show {
    display: block;
  }
}
/* SIZE XS ===== == = === 30em (480px) === = == ===== */
@media only screen and (max-width: 30em) {
  .xs-1-1 {
    width: 100%;
    float: none;
  }
  .xs-1-2 {
    width: 50%;
  }
  .xs-1-3 {
    width: 33.3333333333%;
  }
  .xs-2-3 {
    width: 66.6666666667%;
  }
  .xs-1-4 {
    width: 25%;
  }
  .xs-2-4 {
    width: 50%;
  }
  .xs-3-4 {
    width: 75%;
  }
  .xs-1-5 {
    width: 20%;
  }
  .xs-2-5 {
    width: 40%;
  }
  .xs-3-5 {
    width: 60%;
  }
  .xs-4-5 {
    width: 80%;
  }
  .xs-1-6 {
    width: 16.6666666667%;
  }
  .xs-2-6 {
    width: 33.3333333333%;
  }
  .xs-3-6 {
    width: 50%;
  }
  .xs-4-6 {
    width: 66.6666666667%;
  }
  .xs-5-6 {
    width: 83.3333333333%;
  }
  .xs-1-8 {
    width: 12.5%;
  }
  .xs-2-8 {
    width: 25%;
  }
  .xs-3-8 {
    width: 37.5%;
  }
  .xs-4-8 {
    width: 50%;
  }
  .xs-5-8 {
    width: 62.5%;
  }
  .xs-6-8 {
    width: 75%;
  }
  .xs-7-8 {
    width: 87.5%;
  }
  .xs-hide {
    display: none;
  }
  .xs-show {
    display: block;
  }
}
/* SIZE XXS ===== == = === 20em (320px) === = == ===== */
@media only screen and (max-width: 20em) {
  .xxs-1-1 {
    width: 100%;
    float: none;
  }
  .xxs-1-2 {
    width: 50%;
  }
  .xxs-1-3 {
    width: 33.3333333333%;
  }
  .xxs-2-3 {
    width: 66.6666666667%;
  }
  .xxs-1-4 {
    width: 25%;
  }
  .xxs-2-4 {
    width: 50%;
  }
  .xxs-3-4 {
    width: 75%;
  }
  .xxs-1-5 {
    width: 20%;
  }
  .xxs-2-5 {
    width: 40%;
  }
  .xxs-3-5 {
    width: 60%;
  }
  .xxs-4-5 {
    width: 80%;
  }
  .xxs-1-6 {
    width: 16.6666666667%;
  }
  .xxs-2-6 {
    width: 33.3333333333%;
  }
  .xxs-3-6 {
    width: 50%;
  }
  .xxs-4-6 {
    width: 66.6666666667%;
  }
  .xxs-5-6 {
    width: 83.3333333333%;
  }
  .xxs-1-8 {
    width: 12.5%;
  }
  .xxs-2-8 {
    width: 25%;
  }
  .xxs-3-8 {
    width: 37.5%;
  }
  .xxs-4-8 {
    width: 50%;
  }
  .xxs-5-8 {
    width: 62.5%;
  }
  .xxs-6-8 {
    width: 75%;
  }
  .xxs-7-8 {
    width: 87.5%;
  }
  .xxs-hide {
    display: none;
  }
  .xxs-show {
    display: block;
  }
}
/************* IMPOSTARE NOME TEMA IN STYLE.CSS *************/
/*
font-family: 'Open Sans', sans-serif;
*/
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: black;
  -webkit-text-size-adjust: 100%;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

/* = GLOBAL CLASSES AND SETTING *****************/
/************************************************/
* {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.main-wrapper {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .main-wrapper {
    width: 90%;
  }
}

a {
  color: #790000;
}
a:hover {
  text-decoration: none;
}

.entry-content,
.page-content {
  line-height: 1.5em;
}
.entry-content p, .entry-content ol, .entry-content ul,
.page-content p,
.page-content ol,
.page-content ul {
  margin-bottom: 1.5rem;
}
.entry-content p,
.entry-content li,
.page-content p,
.page-content li {
  word-wrap: break-word;
}
.entry-content ul li,
.page-content ul li {
  list-style: outside disc;
  margin-left: 20px;
}
.entry-content small,
.entry-content .font_small,
.page-content small,
.page-content .font_small {
  font-size: 0.833em;
}
.entry-content pre,
.page-content pre {
  padding: 1em 1.5em;
  background: rgb(229.5, 229.5, 229.5);
  border: 1px solid white;
  margin: 1em 0;
}
.entry-content code,
.page-content code {
  font-size: 0.875em;
  font-family: "Lucida Console", Monaco, monospace;
}
.entry-content table,
.page-content table {
  margin: 1.5em 0;
  width: 100%;
  border: 1px solid rgb(229.5, 229.5, 229.5);
}
@media screen and (max-width: 650px) {
  .entry-content table table,
  .page-content table table {
    overflow-x: auto;
    display: block;
  }
}
.entry-content table th,
.page-content table th {
  background-color: rgb(229.5, 229.5, 229.5);
  color: white;
  text-align: left;
}
.entry-content table th,
.entry-content table td,
.page-content table th,
.page-content table td {
  padding: 0.5em;
  border: 1px solid rgb(229.5, 229.5, 229.5);
}
.entry-content blockquote,
.page-content blockquote {
  font-style: italic;
  padding-left: 1.75rem;
  position: relative;
  margin: 1em 0;
}
.entry-content blockquote:before,
.page-content blockquote:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f10d";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.entry-content ol,
.page-content ol {
  list-style: inside decimal;
}
.entry-content h2, .entry-content h3, .entry-content h4,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.entry-content h2,
.page-content h2 {
  font-size: 1.75em;
}
.entry-content h3,
.page-content h3 {
  font-size: 1.375em;
}
.entry-content h4,
.page-content h4 {
  font-size: 1.25em;
}
.entry-content table,
.page-content table {
  border: 1px solid rgb(229.5, 229.5, 229.5);
  width: 100%;
  overflow-x: auto;
}
.entry-content table th, .entry-content table td,
.page-content table th,
.page-content table td {
  border: 1px solid rgb(229.5, 229.5, 229.5);
  padding: 1rem;
}

.entry-content p:first-child {
  margin-top: 0;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.main-thumb img {
  display: block;
  width: 100%;
}
.main-thumb {
  margin-bottom: 1.5em;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img.size-full {
  width: 100%;
}

#pull {
  position: relative;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: 1em;
  display: none;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  cursor: pointer;
  padding: 1.5rem 1.25rem 1rem;
}
#pull:hover {
  color: fade(black, 90%);
}
@media (max-width: 768px) {
  #pull {
    display: block;
    color: black;
  }
}
@media (max-width: 768px) {
  #pull + div {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .site-navigation ul > li {
    display: inline-block;
    vertical-align: top;
  }
  .site-navigation ul > li a {
    display: block;
    text-transform: uppercase;
    font-size: 0.875rem;
    color: black;
    text-decoration: none;
    padding: 1.5rem 1.25rem;
  }
  .site-navigation ul > li a:hover {
    color: gray;
  }
  .site-navigation .sub-menu {
    display: none;
    position: absolute;
    border: 1px dotted gray;
    z-index: 10;
  }
  .site-navigation .sub-menu li {
    display: block;
    border-top: 1px dotted gray;
  }
  .site-navigation .sub-menu li:first-child {
    border-top: none;
  }
  .site-navigation .sub-menu li a {
    display: block;
    white-space: nowrap;
    padding: 1em 1em;
    background: white;
  }
  .site-navigation li:hover ul {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .site-navigation {
    float: none;
  }
  .site-navigation > ul {
    display: none;
  }
  .site-navigation ul li {
    display: block;
    text-align: center;
  }
  .site-navigation ul li.current-menu-item {
    background: none;
  }
  .site-navigation ul li a {
    color: black;
    padding: 0.5rem 1rem;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgb(166.25, 166.25, 166.25);
  }
  .site-navigation ul li:first-child a {
    border-top: 1px solid rgb(166.25, 166.25, 166.25);
  }
  .site-navigation .sub-menu li a {
    font-size: 0.875em;
    background: #b3b3b3;
  }
  .site-navigation .sub-menu li:first-child a {
    border-top: none;
  }
}

.gallery {
  margin: 1em -0.5rem !important;
}
.gallery .gallery-item {
  padding: 0 0.5rem;
}
.gallery .gallery-item img {
  border: none !important;
  display: block;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.gallery .gallery-item a {
  border: 2px solid #cfcfcf;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
  display: block;
  overflow: hidden;
}
.gallery .gallery-item a:hover {
  border: 2px solid black;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.gallery .gallery-item a:hover img {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
@media (max-width: 768px) {
  .gallery.gallery-columns-4 .gallery-item {
    width: 50% !important;
  }
  .gallery.gallery-columns-4 .gallery-item img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .gallery.gallery-columns-4 .gallery-item {
    width: 100% !important;
  }
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.rslides .item-slide {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides .item-slide::first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

.widget_search form {
  position: relative;
}
.widget_search input[type=search] {
  display: block;
  width: 100%;
  padding: 0.5em 3em 0.5em 0.5em;
  outline: none;
  border: 1px solid #cccccc;
}
.widget_search .submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0.5em 1em;
  background: none;
  border: none;
}

.standard-page .entry-content {
  line-height: 1.5em;
}
.standard-page .entry-content p,
.standard-page .entry-content li {
  line-height: 1.5em;
  word-wrap: break-word;
}
.standard-page .entry-content p, .standard-page .entry-content ol, .standard-page .entry-content ul {
  margin-bottom: 1.5em;
}
.standard-page .entry-content ul li {
  list-style: inside disc;
}
.standard-page .entry-content h1, .standard-page .entry-content h2, .standard-page .entry-content h3, .standard-page .entry-content h4, .standard-page .entry-content h5, .standard-page .entry-content h6 {
  line-height: 1em;
  margin: 0.5em 0;
}
.standard-page .entry-content h1 {
  margin-top: 0;
}
.standard-page .entry-content h2 {
  font-size: 2.25em;
  margin-bottom: 0.75em;
}
.standard-page .entry-content h3 {
  font-size: 1.75em;
  margin-bottom: 0.75em;
}
.standard-page .entry-content h4 {
  font-size: 1.375em;
  margin-bottom: 0.75em;
}
.standard-page .entry-content small,
.standard-page .entry-content .font_small {
  font-size: 0.833em;
}
.standard-page .entry-content pre {
  padding: 1em 1.5em;
  background: rgb(229.5, 229.5, 229.5);
  border: 1px solid #cccccc;
}
.standard-page .entry-content code {
  font-size: 0.875em;
  font-family: "Lucida Console", Monaco, monospace;
}
.standard-page .entry-content table {
  margin: 1.5em 0;
  width: 100%;
  border: 1px solid #cccccc;
}
@media screen and (max-width: 650px) {
  .standard-page .entry-content table table {
    overflow-x: auto;
    display: block;
  }
}
.standard-page .entry-content table th {
  font-weight: 700;
}
.standard-page .entry-content table th,
.standard-page .entry-content table td {
  padding: 0.5em;
  border: 1px solid #cccccc;
}
.standard-page .entry-content ol {
  list-style: inside decimal;
}

/************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/************************************************/
#masthead {
  border-bottom: 1px solid #dadada;
  position: absolute;
  top: 0;
  width: 100%;
}
#masthead.fixed-header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: white;
}
#masthead .container {
  padding: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#masthead .container h1.site-title {
  margin: 0;
}
#masthead .container #site-navigation .menus-wrapper {
  text-align: right;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item {
  font-size: 15px;
  font-weight: bold;
  color: #65503c;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item::after {
  content: "|";
}
#masthead .container #site-navigation .menus-wrapper li.menu-item:last-child::after, #masthead .container #site-navigation .menus-wrapper li.menu-item.no-sep::after {
  display: none;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.no-pad-rx a {
  padding-right: 0;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.active-lang a {
  text-decoration: underline;
  font-style: italic;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item a {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #65503c;
  padding: 8px 8px;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item a:hover {
  color: rgb(69.0062111801, 54.6583850932, 40.9937888199);
}
#masthead .container #site-navigation .menus-wrapper li.menu-item:last-child a, #masthead .container #site-navigation .menus-wrapper li.menu-item:last-child a::before {
  padding-right: 0 !important;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.social-menu a {
  font-size: 1px;
  letter-spacing: -1px;
  color: transparent;
  padding: 0;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.social-menu a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  color: #00a1fd;
  padding: 8px 10px;
  position: relative;
  top: -2px;
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.social-menu a:hover::before {
  color: rgb(0, 128.5454545455, 202);
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.social-menu.twitter-menu a::before, #masthead .container #site-navigation .menus-wrapper li.menu-item.social-menu.x-menu a::before {
  content: "\e61b";
}
#masthead .container #site-navigation .menus-wrapper li.menu-item.social-menu.linkedin-menu a::before {
  content: "\f0e1";
}
#masthead .container #site-navigation .menus-wrapper #top-menu li.menu-item a {
  color: #320e10;
}
#masthead .container #site-navigation .menus-wrapper #top-menu li.menu-item a:hover {
  color: rgb(89.84375, 25.15625, 28.75);
}
#masthead .container #site-navigation .menus-wrapper #top-menu li.menu-item::after {
  color: #320e10;
}

@media only screen and (max-width: 768px) {
  #masthead .container {
    display: block;
  }
  #masthead .container::after {
    content: "";
    display: block;
    clear: both;
  }
  #masthead .container .site-branding {
    float: left;
  }
  #masthead .container #site-navigation {
    float: right;
  }
  #masthead .container #site-navigation .menus-wrapper {
    background-color: #320e10;
  }
  #masthead .container #site-navigation .menus-wrapper li.menu-item {
    border: none;
  }
  #masthead .container #site-navigation .menus-wrapper li.menu-item::after {
    display: none;
  }
  #masthead .container #site-navigation .menus-wrapper li.menu-item:last-child a {
    padding-right: 20px !important;
  }
  #masthead .container #site-navigation .menus-wrapper li.menu-item a {
    border: none;
  }
}
#colophon {
  padding-top: 30px;
  padding-bottom: 18px;
}
#colophon .site-info p {
  font-size: 13px;
  color: #320e10;
  margin: 10px 0;
}
#colophon .site-info p a {
  text-decoration: none;
  color: #320e10;
}
#colophon .site-info p a:hover {
  text-decoration: underline;
}

.page-template-page-home .header-placeholder {
  display: none;
}
.page-template-page-home #masthead {
  position: relative;
  z-index: 999;
  border: none;
}
.page-template-page-home #masthead .custom-logo-link {
  display: block;
  background: transparent url("../images/ac-logo-white.png") no-repeat;
  background-size: contain;
}
.page-template-page-home #masthead .custom-logo-link img {
  visibility: hidden;
}
.page-template-page-home #masthead li.menu-item, .page-template-page-home #masthead a {
  color: white !important;
}
.page-template-page-home #masthead li.menu-item a:hover {
  color: #cccccc !important;
}
.page-template-page-home #masthead li.menu-item::after {
  color: white !important;
}
.page-template-page-home #masthead li.menu-item.social-menu a {
  color: transparent !important;
}
.page-template-page-home #masthead.fixed-header .custom-logo-link {
  display: inline;
  background: none;
}
.page-template-page-home #masthead.fixed-header .custom-logo-link img {
  visibility: visible;
}
.page-template-page-home #masthead.fixed-header li.menu-item, .page-template-page-home #masthead.fixed-header a {
  color: #65503c !important;
}
.page-template-page-home #masthead.fixed-header li.menu-item a:hover {
  color: rgb(37.0124223602, 29.3167701863, 21.9875776398) !important;
}
.page-template-page-home #masthead.fixed-header li.menu-item::after {
  color: #65503c !important;
}
.page-template-page-home #masthead.fixed-header li.menu-item.social-menu a {
  color: transparent !important;
}
.page-template-page-home #content {
  position: absolute;
  top: 0;
  width: 100%;
}
.page-template-page-home #content .home-section {
  padding: 74px 0;
}
.page-template-page-home #content .home-section.aree-di-attivita-wrapper {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.page-template-page-home #content .home-section.aree-di-attivita-wrapper h2 {
  font-weight: 600;
  font-size: 26px;
  color: white;
  text-transform: uppercase;
}
.page-template-page-home #content .home-section.aree-di-attivita-wrapper p {
  width: 83.3333%;
  color: white;
  margin-bottom: 40px;
}
.page-template-page-home #content .home-section.news-wrapper {
  background-color: #f3f2ee;
  text-align: center;
}
.page-template-page-home #content .home-section.news-wrapper h2 {
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
  text-align: center;
}
.page-template-page-home #content .home-section.news-wrapper p {
  margin-bottom: 46px;
  text-align: center;
}
.page-template-page-home #content .home-section.pros-careers-wrapper {
  padding: 0;
  min-height: 376px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .left-bg,
.page-template-page-home #content .home-section.pros-careers-wrapper .right-bg {
  position: absolute;
  height: 100%;
  width: 50%;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .right-bg {
  left: 50%;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .container {
  position: relative;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .container .professionisti-column,
.page-template-page-home #content .home-section.pros-careers-wrapper .container .careers-column {
  float: left;
  width: 50%;
  color: white;
  padding-right: 8.333%;
  background-size: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .container .professionisti-column h2,
.page-template-page-home #content .home-section.pros-careers-wrapper .container .careers-column h2 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .container .professionisti-column p,
.page-template-page-home #content .home-section.pros-careers-wrapper .container .careers-column p {
  font-size: 16px;
  margin-bottom: 35px;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .container .professionisti-column {
  padding-left: 8.333%;
}
.page-template-page-home #content .home-section.pros-careers-wrapper .container .careers-column {
  padding-left: 8.333%;
}
.page-template-page-home #content .home-section.sedi-wrapper {
  text-align: center;
  background-color: #f0f0f0;
  padding: 44px 0 0;
}
.page-template-page-home #content .home-section.sedi-wrapper h2 {
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
  text-align: center;
}
.page-template-page-home #content .home-section.sedi-wrapper p {
  margin-bottom: 46px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page-template-page-home #content .home-section.aree-di-attivita-wrapper p {
    width: 100%;
  }
  .page-template-page-home #content .home-section.pros-careers-wrapper .left-bg,
  .page-template-page-home #content .home-section.pros-careers-wrapper .right-bg {
    display: none;
  }
  .page-template-page-home #content .home-section.pros-careers-wrapper .container {
    max-width: 100%;
  }
  .page-template-page-home #content .home-section.pros-careers-wrapper .container .professionisti-column,
  .page-template-page-home #content .home-section.pros-careers-wrapper .container .careers-column {
    background-size: cover;
    width: 100%;
    padding: 8.3333%;
  }
}
.entry-title,
.page-title {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  margin-top: 46px;
  margin-bottom: 38px;
  text-transform: uppercase;
  color: #65503c;
}

.page-content {
  background-color: #f3f2ee;
  padding: 55px 0;
  font-size: 14px;
  line-height: 25px;
}
.page-content .container .content-wrapper {
  width: 83.3333%;
  margin-left: auto;
  margin-right: auto;
}
.page-content .container .content-wrapper .evidence-paragaph {
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
}

.page-template-page-about .page-content .container .content-wrapper {
  width: 83.3333%;
  margin-left: auto;
  margin-right: auto;
}
.page-template-page-about .page-content .container .content-wrapper h2 {
  font-weight: 600;
  font-size: 21px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 48px;
  margin-bottom: 42px;
}
.page-template-page-about .page-content .container .content-wrapper h2.evidence-paragaph,
.page-template-page-about .page-content .container .content-wrapper h3.evidence-paragaph {
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  text-transform: none;
  text-align: left;
}
.page-template-page-about .page-content .container .cards-container {
  margin: 65px auto 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-template-page-about .page-content .container .cards-container .card-wrapper {
  margin-bottom: 0;
}
.page-template-page-about .page-content .container .cards-container .card-wrapper .card .card-header .card-date::before {
  display: none;
}
.page-template-page-about .riconoscimenti-wrapper {
  padding: 31px 0;
}

.professionisti-riferimento-section h2 {
  margin: 100px 0 66px;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
}

.news-correlate-section {
  text-align: center;
}
.news-correlate-section h2 {
  margin: 76px 0 62px;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
}

footer.aree-attivita-footer {
  clear: both;
  margin-top: 2rem;
}
footer.aree-attivita-footer a {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  text-transform: uppercase;
}
footer.aree-attivita-footer a:hover {
  text-decoration: none;
}

.header-professionista {
  padding-bottom: 32px;
  border-bottom: 2px solid white;
  margin-bottom: 45px;
}
.header-professionista::after {
  content: "";
  display: block;
  clear: both;
}
.header-professionista .header-professionista-left-column {
  width: 16.6666%;
  margin-right: 8.3333%;
  float: left;
}
.header-professionista .header-professionista-left-column img {
  width: 100%;
}
.header-professionista .header-professionista-right-column {
  width: 75%;
  float: left;
}
.header-professionista .header-professionista-right-column::after {
  content: "";
  display: block;
  clear: both;
}
.header-professionista .header-professionista-right-column h2 {
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 2px solid white;
}
.header-professionista .header-professionista-right-column .professionista-meta-info {
  width: 33%;
  float: left;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-position,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-phone,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard {
  font-weight: 700;
  font-size: 16px;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-position a,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-phone a,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email a,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard a {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-position a:hover,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-phone a:hover,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email a:hover,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard a:hover {
  text-decoration: underline;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-phone::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f095";
  font-size: 16px;
  padding-right: 8px;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard {
  color: #65503c;
  margin-bottom: 30px;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email a,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard a {
  color: #65503c;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0e0";
  font-size: 16px;
  padding-right: 8px;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f2c2";
  font-size: 16px;
  padding-right: 8px;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-linkedin,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-x,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-threads,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-print,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-pdf {
  font-size: 1px;
  letter-spacing: -1000px;
  color: transparent;
  padding: 0 15px 0 0;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-linkedin a::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-x a::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-threads a::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-print a::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-pdf a::before {
  display: inline-block;
  font-size: 18px;
  padding: 0 15px 0 0;
  position: relative;
  top: -2px;
  color: #000;
  cursor: pointer;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-linkedin a:hover::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-x a:hover::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-threads a:hover::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-print a:hover::before,
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-pdf a:hover::before {
  color: #333333;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-linkedin a::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0e1";
  color: #0a66c2;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-linkedin a:hover::before {
  color: rgb(7.5, 76.5, 145.5);
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-x a::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e61b";
  color: #000;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-x a:hover::before {
  color: #333;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-threads a::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e618";
  color: #000;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-threads a:hover::before {
  color: #333;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-print a::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f02f";
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .professionista-pdf a::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1c1";
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .dkpdf-button-container {
  display: inline;
  float: none;
  font-size: 1px;
  letter-spacing: -1000px;
  color: transparent;
  padding: 0 15px 0 0;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .dkpdf-button-container a .dkpdf-button-icon {
  display: none;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .dkpdf-button-container a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1c1";
  font-size: 18px;
  padding: 0 15px 0 0;
  position: relative;
  top: -2px;
  color: #000;
  cursor: pointer;
}
.header-professionista .header-professionista-right-column .professionista-meta-info .professionista-social .dkpdf-button-container a:hover::before {
  color: #333333;
}

.professionista-main-info {
  width: 75%;
  float: left;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 55px;
  border-right: 2px solid white;
}
.professionista-main-info h3 {
  font-weight: 600;
  font-size: 21px;
  color: #320e10;
  margin-bottom: 14px;
  margin-top: 30px;
}
.professionista-main-info h3:first-child {
  margin-top: 0;
}
.professionista-main-info p {
  margin: 0 0 1em;
}

aside.professionista-sidebar {
  width: 25%;
  float: left;
  margin-bottom: 55px;
  padding-left: 5%;
}
aside.professionista-sidebar h3 {
  font-weight: 600;
  font-size: 21px;
  color: #320e10;
  margin-bottom: 14px;
  margin-top: 0;
}
aside.professionista-sidebar ul li {
  margin: 0 0 1em;
  list-style: none;
  font-weight: 600;
  font-size: 14px;
  color: #65503c;
}
aside.professionista-sidebar ul li::before {
  content: url(../images/list-bullet-arrow-brown.svg);
  position: relative;
  top: 1px;
  padding-right: 8px;
  width: 8px;
}
aside.professionista-sidebar ul li a {
  font-weight: 600;
  font-size: 14px;
  color: #65503c;
  text-decoration: none;
}
aside.professionista-sidebar ul li a:hover {
  color: rgb(69.0062111801, 54.6583850932, 40.9937888199);
  text-decoration: underline;
}

footer.professionista-footer {
  clear: both;
}
footer.professionista-footer a {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  text-transform: uppercase;
}
footer.professionista-footer a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .header-professionista .header-professionista-left-column,
  .header-professionista .header-professionista-right-column {
    width: 100%;
    float: none;
  }
  .header-professionista .header-professionista-left-column img,
  .header-professionista .header-professionista-right-column img {
    width: auto;
  }
  .professionista-main-info,
  aside.professionista-sidebar {
    width: 100%;
    float: none;
    padding-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .header-professionista .header-professionista-right-column .professionista-meta-info {
    width: 100%;
    float: none;
    margin-bottom: 18px;
  }
  .header-professionista .header-professionista-right-column .professionista-meta-info .professionista-email,
  .header-professionista .header-professionista-right-column .professionista-meta-info .professionista-vcard {
    margin-bottom: 18px;
  }
}
.index-footer {
  text-align: center;
}

.page-header {
  padding: 24px 0;
}
.page-header .page-title {
  margin: 0;
  text-align: center;
}
.page-header .page-breadcrumbs {
  margin-top: 6px;
  margin-bottom: 0;
  text-align: center;
}
.page-header .page-breadcrumbs .breadcrumbs {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}
.page-header .page-breadcrumbs .breadcrumbs li {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: #8a8a8a;
}
.page-header .page-breadcrumbs .breadcrumbs li a {
  color: #65503c;
  text-decoration: none;
}
.page-header .page-breadcrumbs .breadcrumbs li a:hover, .page-header .page-breadcrumbs .breadcrumbs li a:focus-visible {
  color: #320e10;
  text-decoration: underline;
  outline: none;
}
.page-header .page-breadcrumbs .breadcrumbs li span {
  color: #8a8a8a;
}

.filter-wrapper {
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 70px;
}
.filter-wrapper .filter-button-group button {
  background-color: transparent;
  border: none;
  font-weight: 600;
  font-size: 15px;
  color: #65503c;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0;
  margin: 0 14px;
}
.filter-wrapper .filter-button-group button.active {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #65503c;
  border-bottom-color: currentColor;
}
.filter-wrapper .filter-button-group button:hover, .filter-wrapper .filter-button-group button:focus {
  color: #320e10;
  outline: none;
}

.page-content--archive-list .archive-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 28px;
}
@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
}
.page-content--archive-list .archive-layout-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-layout-main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.page-content--archive-list .archive-sidebar.filter-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-sidebar.filter-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
    max-width: 260px;
    width: 260px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-left: 1px solid #f3f2ee;
    position: sticky;
    top: var(--site-header-sticky-top, 100px);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  .page-content--archive-list .archive-sidebar.filter-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
.page-content--archive-list .archive-sidebar__heading {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 15px;
}
@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-sidebar__heading {
    padding-right: 8px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #65503c;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 991px) {
  .page-content--archive-list .archive-sidebar__nav-mask {
    margin-right: -16px;
    mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
  }
  .page-content--archive-list .archive-sidebar__nav-mask::before, .page-content--archive-list .archive-sidebar__nav-mask::after {
    display: none;
  }
}
.page-content--archive-list .archive-sidebar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-sidebar__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: visible;
  }
  .page-content--archive-list .archive-sidebar__nav a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .page-content--archive-list .archive-sidebar__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .page-content--archive-list .archive-sidebar__nav a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    white-space: nowrap;
  }
  .page-content--archive-list .archive-sidebar__nav::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
  }
}
.page-content--archive-list .archive-sidebar__nav a {
  margin: 0;
  padding-bottom: 4px;
  color: #65503c;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  -webkit-transition: color 0.15s ease, border-color 0.15s ease;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.page-content--archive-list .archive-sidebar__nav a:hover, .page-content--archive-list .archive-sidebar__nav a:focus-visible {
  color: #320e10;
  outline: none;
}
.page-content--archive-list .archive-sidebar__nav a.is-active {
  border-bottom-color: #65503c;
}
@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-sidebar__nav a {
    width: 100%;
    padding: 0 0 12px;
    margin-bottom: 12px;
    line-height: 1.25;
    border-bottom: 1px solid rgba(101, 80, 60, 0.18);
  }
  .page-content--archive-list .archive-sidebar__nav a:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }
}
.page-content--archive-list .archive-pagination {
  margin-top: 32px;
  text-align: center;
}
.page-content--archive-list .archive-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.page-content--archive-list .archive-pagination .nav-links .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(101, 80, 60, 0.25);
  font-weight: 700;
  text-decoration: none;
  color: #65503c;
}
.page-content--archive-list .archive-pagination .nav-links .page-numbers.current {
  border-color: #65503c;
  background-color: rgba(101, 80, 60, 0.08);
}
.page-content--archive-list .archive-pagination .nav-links .page-numbers.dots {
  border: none;
  min-width: auto;
  padding-left: 4px;
  padding-right: 4px;
}
.page-content--archive-list .archive-pagination .nav-links .page-numbers.prev, .page-content--archive-list .archive-pagination .nav-links .page-numbers.next {
  padding-left: 16px;
  padding-right: 16px;
}
.page-content--archive-list .archive-pagination .nav-links .page-numbers:hover:not(.dots):not(.current), .page-content--archive-list .archive-pagination .nav-links .page-numbers:focus-visible:not(.dots) {
  outline: none;
  border-color: #320e10;
  color: #320e10;
}
.page-content--archive-list .archive-pagination .nav-links .page-numbers.prev, .page-content--archive-list .archive-pagination .nav-links .page-numbers.next {
  font-weight: 700;
}

.single-post .single-main-column,
.single-posizioni_aperte .single-main-column,
.single-pubblicazioni .single-main-column {
  width: 75%;
  float: left;
  font-size: 14px;
  line-height: 25px;
  border-right: 2px solid white;
  padding-right: 8.3333%;
}
.single-post .single-main-column p,
.single-posizioni_aperte .single-main-column p,
.single-pubblicazioni .single-main-column p {
  margin-bottom: 34px;
}
.single-post .single-main-column .entry-header .entry-meta,
.single-posizioni_aperte .single-main-column .entry-header .entry-meta,
.single-pubblicazioni .single-main-column .entry-header .entry-meta {
  margin-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-post .single-main-column .entry-header .entry-meta .date,
.single-posizioni_aperte .single-main-column .entry-header .entry-meta .date,
.single-pubblicazioni .single-main-column .entry-header .entry-meta .date {
  font-weight: 600;
  font-size: 15px;
}
.single-post .single-main-column .entry-header .entry-meta .date::before,
.single-posizioni_aperte .single-main-column .entry-header .entry-meta .date::before,
.single-pubblicazioni .single-main-column .entry-header .entry-meta .date::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f073";
  font-size: 16px;
  padding-right: 10px;
}
.single-post .single-main-column .entry-header .entry-meta .category a,
.single-posizioni_aperte .single-main-column .entry-header .entry-meta .category a,
.single-pubblicazioni .single-main-column .entry-header .entry-meta .category a {
  font-weight: 600;
  font-size: 18px;
  color: #320e10;
  text-transform: uppercase;
  text-decoration: none;
}
.single-post .single-main-column .entry-header .entry-meta .category a:hover,
.single-posizioni_aperte .single-main-column .entry-header .entry-meta .category a:hover,
.single-pubblicazioni .single-main-column .entry-header .entry-meta .category a:hover {
  text-decoration: underline;
}
.single-post .single-main-column .entry-header h1,
.single-posizioni_aperte .single-main-column .entry-header h1,
.single-pubblicazioni .single-main-column .entry-header h1 {
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.single-post .single-main-column .entry-header .single-featured-image,
.single-posizioni_aperte .single-main-column .entry-header .single-featured-image,
.single-pubblicazioni .single-main-column .entry-header .single-featured-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 0 34px;
  overflow: hidden;
  background: white;
}
.single-post .single-main-column .entry-header .single-featured-image img,
.single-posizioni_aperte .single-main-column .entry-header .single-featured-image img,
.single-pubblicazioni .single-main-column .entry-header .single-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-post .single-main-column .news-professionisti-coinvolti,
.single-posizioni_aperte .single-main-column .news-professionisti-coinvolti,
.single-pubblicazioni .single-main-column .news-professionisti-coinvolti {
  margin-top: 48px;
  clear: both;
}
.single-post .single-main-column .news-professionisti-coinvolti h2,
.single-posizioni_aperte .single-main-column .news-professionisti-coinvolti h2,
.single-pubblicazioni .single-main-column .news-professionisti-coinvolti h2 {
  font-weight: 600;
  font-size: 21px;
  color: #320e10;
  margin: 0 0 20px;
}
.single-post .single-main-column .news-professionisti-coinvolti .card-wrapper,
.single-posizioni_aperte .single-main-column .news-professionisti-coinvolti .card-wrapper,
.single-pubblicazioni .single-main-column .news-professionisti-coinvolti .card-wrapper {
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .single-post .single-main-column .news-professionisti-coinvolti .card-wrapper,
  .single-posizioni_aperte .single-main-column .news-professionisti-coinvolti .card-wrapper,
  .single-pubblicazioni .single-main-column .news-professionisti-coinvolti .card-wrapper {
    width: 100%;
    float: none;
  }
}
.single-post .single-main-column .posts-nav,
.single-posizioni_aperte .single-main-column .posts-nav,
.single-pubblicazioni .single-main-column .posts-nav {
  margin-top: 72px;
  margin-bottom: 20px;
}
.single-post .single-main-column .posts-nav h2,
.single-posizioni_aperte .single-main-column .posts-nav h2,
.single-pubblicazioni .single-main-column .posts-nav h2 {
  display: none;
}
.single-post .single-main-column .posts-nav .nav-links,
.single-posizioni_aperte .single-main-column .posts-nav .nav-links,
.single-pubblicazioni .single-main-column .posts-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-post .single-main-column .posts-nav .nav-links a,
.single-posizioni_aperte .single-main-column .posts-nav .nav-links a,
.single-pubblicazioni .single-main-column .posts-nav .nav-links a {
  font-weight: 700;
  font-size: 14;
  color: #000;
  text-transform: uppercase;
}
.single-post .single-main-column .posts-nav .nav-links a:hover,
.single-posizioni_aperte .single-main-column .posts-nav .nav-links a:hover,
.single-pubblicazioni .single-main-column .posts-nav .nav-links a:hover {
  text-decoration: none;
}
.single-post .single-side-column,
.single-posizioni_aperte .single-side-column,
.single-pubblicazioni .single-side-column {
  width: 25%;
  float: left;
  margin-bottom: 55px;
  padding-left: 5%;
}
.single-post .single-side-column .btn,
.single-posizioni_aperte .single-side-column .btn,
.single-pubblicazioni .single-side-column .btn {
  margin-bottom: 46px;
}
.single-post .single-side-column .share-widget h2,
.single-posizioni_aperte .single-side-column .share-widget h2,
.single-pubblicazioni .single-side-column .share-widget h2 {
  font-weight: 600;
  font-size: 18px;
  color: #320e10;
  margin-bottom: 18px;
}
.single-post .single-side-column .share-widget .single-share,
.single-posizioni_aperte .single-side-column .share-widget .single-share,
.single-pubblicazioni .single-side-column .share-widget .single-share {
  font-size: 1px;
  letter-spacing: -1000px;
  color: transparent;
  padding: 0 8px 0 0;
}
.single-post .single-side-column .share-widget .single-share::before,
.single-posizioni_aperte .single-side-column .share-widget .single-share::before,
.single-pubblicazioni .single-side-column .share-widget .single-share::before {
  display: inline-block;
  font-size: 18px;
  letter-spacing: normal;
  position: relative;
  top: -2px;
  color: #000;
  cursor: pointer;
}
.single-post .single-side-column .share-widget .facebook-share::before,
.single-posizioni_aperte .single-side-column .share-widget .facebook-share::before,
.single-pubblicazioni .single-side-column .share-widget .facebook-share::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f09a";
  color: #1877f2;
}
.single-post .single-side-column .share-widget .x-share::before,
.single-posizioni_aperte .single-side-column .share-widget .x-share::before,
.single-pubblicazioni .single-side-column .share-widget .x-share::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e61b";
  color: #000;
}
.single-post .single-side-column .share-widget .linkedin-share::before,
.single-posizioni_aperte .single-side-column .share-widget .linkedin-share::before,
.single-pubblicazioni .single-side-column .share-widget .linkedin-share::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0e1";
  color: #0a66c2;
}
.single-post .single-side-column .share-widget .threads-share::before,
.single-posizioni_aperte .single-side-column .share-widget .threads-share::before,
.single-pubblicazioni .single-side-column .share-widget .threads-share::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e618";
  color: #000;
}
.single-post .single-side-column .share-widget .whatsapp-share::before,
.single-posizioni_aperte .single-side-column .share-widget .whatsapp-share::before,
.single-pubblicazioni .single-side-column .share-widget .whatsapp-share::before {
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f232";
  color: #25d366;
}
.single-post .single-side-column .share-widget .mail-share::before,
.single-posizioni_aperte .single-side-column .share-widget .mail-share::before,
.single-pubblicazioni .single-side-column .share-widget .mail-share::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0e0";
}
.single-post .single-side-column .share-widget .print-share::before,
.single-posizioni_aperte .single-side-column .share-widget .print-share::before,
.single-pubblicazioni .single-side-column .share-widget .print-share::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f02f";
}
.single-post .single-side-column .share-widget .pdf-share::before,
.single-posizioni_aperte .single-side-column .share-widget .pdf-share::before,
.single-pubblicazioni .single-side-column .share-widget .pdf-share::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1c1";
}

.single-pubblicazioni .entry-meta,
.single-pubblicazioni .rivista {
  margin-bottom: 0.7rem !important;
}
.single-pubblicazioni .rivista {
  font-weight: bold;
  margin-top: 0;
}
.single-pubblicazioni .autore {
  font-weight: bold;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 1.5rem !important;
}

@media only screen and (max-width: 1200px) {
  .single-post .single-main-column,
  .single-posizioni_aperte .single-main-column,
  .single-pubblicazioni .single-main-column {
    padding-right: 4%;
  }
  .single-post .single-side-column,
  .single-posizioni_aperte .single-side-column,
  .single-pubblicazioni .single-side-column {
    padding-left: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .single-post .single-main-column,
  .single-post .single-side-column,
  .single-posizioni_aperte .single-main-column,
  .single-posizioni_aperte .single-side-column,
  .single-pubblicazioni .single-main-column,
  .single-pubblicazioni .single-side-column {
    width: 100%;
    float: none;
    padding: 0;
    border: none;
  }
}
.careers-navigation-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.careers-navigation-box .careers-box {
  width: 33.3333333333%;
  min-height: 282px;
  padding: 56px 67px 37px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.careers-navigation-box .careers-box .box-content h2 {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.careers-navigation-box .careers-box .box-content p {
  font-size: 16px;
  line-height: 25px;
  margin: 0 0 24px;
}

.careers-page-content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.careers-page-content .container .left-column {
  line-height: 25px;
  width: 41.6666%;
  margin-right: 8.6666%;
}
.careers-page-content .container .left-column h2 {
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
  margin-bottom: 27px;
  line-height: 1.3;
}
.careers-page-content .container .left-column h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 32px;
}
.careers-page-content .container .left-column p {
  font-size: 14px;
}
.careers-page-content .container .right-column {
  width: 50%;
}
.careers-page-content .container .right-column .form-box h2 {
  font-weight: 600;
  font-size: 16px;
  color: #65503c;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.careers-page-content .container .right-column .form-box p {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .careers-navigation-box {
    display: block;
  }
  .careers-navigation-box .careers-box {
    width: 100%;
  }
  .careers-page-content .container {
    display: block;
  }
  .careers-page-content .container .left-column,
  .careers-page-content .container .right-column {
    width: 100%;
  }
}
.posizioni-card {
  background-color: white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 33px 43px;
  margin-bottom: 36px;
}
.posizioni-card h3 {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #65503c;
}

.sedi-page-content .left-column {
  width: calc(33% - 30px);
  margin-right: 30px;
  float: left;
}
.sedi-page-content .left-column h2 {
  font-weight: 700;
  font-size: 30px;
  color: #65503c;
}
.sedi-page-content .left-column p {
  font-size: 16px;
  margin-bottom: 11px;
}
.sedi-page-content .right-column {
  width: 66%;
  float: left;
}

@media only screen and (max-width: 768px) {
  .sedi-page-content .left-column,
  .sedi-page-content .right-column {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}
.page-template-page-newspub .newspub-page-header .page-title {
  margin-bottom: 0;
}
.page-template-page-newspub .newspub-section .newspub-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-template-page-newspub .newspub-section .newspub-block .newspub-title {
  margin: 0;
}
.page-template-page-newspub .newspub-section .newspub-block .newspub-grid {
  margin-top: 0;
}
.page-template-page-newspub .newspub-section .newspub-block .newspub-grid .card-wrapper {
  margin-bottom: 24px;
}
.page-template-page-newspub .newspub-section .newspub-block .newspub-cta {
  justify-self: start;
}

@media only screen and (min-width: 992px) {
  .page-template-page-newspub .newspub-section .newspub-block {
    grid-template-columns: 1fr auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    row-gap: 24px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-template-page-newspub .newspub-section .newspub-block .newspub-title {
    grid-column: 1;
    grid-row: 1;
  }
  .page-template-page-newspub .newspub-section .newspub-block .newspub-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .page-template-page-newspub .newspub-section .newspub-block .newspub-grid {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.featured-area {
  padding: 208px 0 113px;
  background-size: cover;
  background-position: center;
  color: white;
}
.featured-area .content {
  width: 58.333%;
}
.featured-area .content h2 {
  font-weight: bold;
  font-size: 34px;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.featured-area .content p {
  font-size: 15px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 768px) {
  .featured-area .content {
    width: 100%;
  }
}
.btn {
  padding: 10px 46px;
  border-width: 2px;
  border-radius: 36px;
  border-style: solid;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.btn.btn-transparent {
  border-color: white;
  background: transparent;
  color: white;
}
.btn.btn-transparent:hover {
  background: #65503c;
}
.btn.btn-brown-border {
  border-color: #65503c;
  background: transparent;
  color: #65503c;
}
.btn.btn-brown-border:hover {
  background: #65503c;
  color: white;
}
.btn.btn-no-uppercase {
  text-transform: none;
}
.btn.btn-low-padding {
  padding: 4px 13px;
}
.btn.btn-careers {
  padding: 7px 20px;
}
.btn.btn-careers::after {
  content: url(../images/button-arrow-down.svg);
  position: relative;
  padding-left: 10px;
  top: -1px;
  display: inline-block;
}

.riconoscimenti-wrapper h2 {
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  color: #65503c;
  text-transform: uppercase;
}

.cards-container {
  text-align: left;
}
.cards-container::after {
  content: "";
  display: block;
  clear: both;
}

.card-wrapper {
  width: 25%;
  padding: 0 7px;
  margin-bottom: 46px;
  float: left;
  -webkit-transition: none;
  transition: none;
}
.card-wrapper .card {
  position: relative;
  overflow: hidden;
  background: white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.card-wrapper .card:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.card-wrapper .card a.card-block-link {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
}
.card-wrapper .card .card-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.16;
  pointer-events: none;
}
.card-wrapper .card.card-with-image {
  background: #fff;
}
.card-wrapper .card.card-with-image .card-header,
.card-wrapper .card.card-with-image .card-body,
.card-wrapper .card.card-with-image .card-footer {
  position: relative;
  z-index: 1;
}
.card-wrapper .card .card-header {
  border-bottom: 1px solid #f3f2ee;
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
}
.card-wrapper .card .card-header .card-date {
  font-size: 12px;
  display: inline-block;
}
.card-wrapper .card .card-header .card-date::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f073";
  font-size: 16px;
  padding-right: 6px;
}
.card-wrapper .card .card-header .card-category {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  position: relative;
  top: 2px;
  text-align: right;
  text-transform: uppercase;
}
.card-wrapper .card .card-body {
  padding: 0 16px;
  height: 196px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}
.card-wrapper .card .card-body h3 {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #320e10;
  margin-bottom: 6px;
}
.card-wrapper .card .card-body p.excerpt {
  font-size: 11px;
  line-height: 20px;
  text-align: left !important;
  margin: 0 !important;
}
.card-wrapper .card .card-body .card-author {
  margin: 8px 0 0 !important;
  padding-top: 6px;
  border-top: 1px solid #d9d9d9;
  line-height: 1.2;
}
.card-wrapper .card .card-body .card-author small {
  font-size: 10px;
  font-weight: 600;
}
.card-wrapper .card .card-footer {
  height: 45px;
}
.card-wrapper .card .card-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: white;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  padding: 16px 0;
}
.card-wrapper .card .card-footer a::after {
  content: url(../images/card-btn-arrow-right.svg);
  position: relative;
  top: 2px;
  padding-left: 5px;
}

.card-download .card .card-header .card-date .fa {
  font-size: 16px;
}
.card-download .card .card-header .card-date .fa::before {
  font-size: 16px;
  position: relative;
  top: 2px;
}
.card-download .card .card-footer a::after {
  top: -1px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.card-attivita .card .card-header {
  height: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px;
}
.card-attivita .card .card-header h2 {
  font-weight: 700;
  font-size: 15px;
  color: #65503c;
  margin: 0;
  line-height: 1.2;
}
.card-attivita .card .card-body {
  height: 145px;
}
.card-attivita .card .card-footer {
  background-color: #65503c;
}

.card-professionista .card .card-header {
  padding: 12px 16px;
}
.card-professionista .card .card-header .card-date::before {
  display: none;
}
.card-professionista .card .card-header .card-date span a {
  padding-right: 10px;
  font-size: 18px;
  color: #000;
}
.card-professionista .card .card-header .card-date span.linkedin a {
  color: #00a1fd;
}
.card-professionista .card .card-header .card-date span:last-child a {
  padding-right: 0;
}
.card-professionista .card .card-header .card-category {
  top: 0;
}
.card-professionista .card .card-header .card-category .phone a {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}
.card-professionista .card .card-header .card-category .phone a::before {
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f095";
  font-size: 16px;
  padding-right: 8px;
}
.card-professionista .card .card-body img {
  width: 75px;
  margin-bottom: 20px;
}
.card-professionista .card .card-body .professionista-name {
  font-weight: 700;
  font-size: 18px;
  color: #65503c;
  margin: 0 0 2px;
}
.card-professionista .card .card-body .professionista-position {
  font-size: 14px;
  margin: 0;
}
.card-professionista .card .card-footer {
  background-color: #65503c;
}

.card-pubblicazioni .card .card-header {
  display: block;
  height: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .card-pubblicazioni .card .card-header {
    height: 145px;
  }
}
.card-pubblicazioni .card .card-header .card-rivista span,
.card-pubblicazioni .card .card-header .card-date span,
.card-pubblicazioni .card .card-header .card-autore span {
  font-weight: bold;
  font-size: 13px;
}
.card-pubblicazioni .card .card-header .card-date::before {
  display: none;
}
.card-pubblicazioni .card .card-header .card-autore span {
  font-style: italic;
}
.card-pubblicazioni .card .card-body {
  height: 141px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .card-pubblicazioni .card .card-body {
    height: 170px;
  }
}

@media only screen and (min-width: 992px) {
  .page-content--archive-list .archive-layout-main .cards-container .card-wrapper {
    width: 33.3333%;
  }
}
@media only screen and (max-width: 1024px) {
  .card-wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .card-wrapper {
    width: 100%;
  }
}
#map {
  height: 422px;
}

input,
textarea {
  border: 1px solid #e6e6e6;
}

input[type=submit] {
  cursor: pointer;
}

input,
textarea {
  padding: 11px 13px;
  margin-bottom: 15px;
  font-size: 12px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #000;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #000;
}
input::placeholder,
textarea::placeholder {
  color: #000;
}
input[type=file],
textarea[type=file] {
  width: 100%;
}

textarea {
  width: 100%;
}

.half-input {
  display: inline-block;
  width: calc(50% - 13px) !important;
  margin-right: 22px;
}

.wpcf7-form-control-wrap:nth-of-type(2n) .half-input {
  margin-right: 0;
}

input[name=cv] {
  margin-right: 0;
}

.form-privacy {
  border: 1px solid #e6e6e6;
  padding: 11px 13px;
  font-size: 9px;
  line-height: 12px;
  height: 72px;
  overflow-y: scroll;
}

.form-terms {
  text-align: center;
  margin: 11px 0 30px;
  font-size: 10px;
}

.form-submit-wrapper {
  text-align: center;
}
.form-submit-wrapper input[type=submit] {
  border-radius: 12px;
  padding: 6px 14px;
}

.form-box {
  background-color: white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 30px 44px;
}

span.wpcf7-not-valid-tip {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.privacy span.wpcf7-not-valid-tip {
  height: auto;
  clip-path: none;
  margin: auto;
  overflow: visible;
  width: 100%;
  position: relative !important;
  clip: auto;
}

input.wpcf7-not-valid {
  border-color: #790000;
}

@media only screen and (max-width: 480px) {
  .half-input {
    width: 100% !important;
    margin-right: 0;
  }
}
.dkpdf-button-container {
  display: inline;
  float: none !important;
  font-size: 1px;
  letter-spacing: -1000px;
  color: transparent;
  padding: 0 15px 0 0;
  width: auto !important;
}
.dkpdf-button-container a .dkpdf-button-icon {
  display: none;
}
.dkpdf-button-container a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1c1";
  font-size: 18px;
  padding: 0 15px 0 0;
  position: relative;
  top: -2px;
  color: #000;
  cursor: pointer;
}
.dkpdf-button-container a:hover::before {
  color: #333333;
}
