/* Cattaneo & Postizzi - Styles */
/* Cattaneo & Postizzi - Main CSS */

body {
  font-family: 'Lato', sans-serif;
  padding: 40px;
  overflow-x: hidden;
}

body ::-moz-selection,
body ::-moz-selection {
  background-color: #032e01;
  color: #fff;
}

body ::-moz-selection,
body ::selection {
  background-color: #032e01;
  color: #fff;
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: 'Rosario', sans-serif;
  margin-bottom: 0;
}

body p {
  margin-bottom: 0;
}

body a {
  text-decoration: none;
}

body a,
body a:hover {
  color: inherit;
}

body .button {
  display: block;
  padding: 10px 20px;
  position: relative;
  text-align: center;
}

body .button.button-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #032e01;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .button.button-white:hover {
  background-color: #025400;
  color: #fff;
}

body .button.button-green {
  background-color: #025400;
  border: 1px solid #025400;
  color: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .button.button-green:hover {
  background-color: #032e01;
  color: #fff;
}

body .bg-white {
  background-color: #fff;
}

body .bg-light1 {
  background-color: #d7e1d9;
  color: #032e01;
}

body .bg-light2 {
  background-color: #e3e3e3;
  color: #032e01;
}

body .bg-dark1 {
  background-color: #032e01;
  color: #fff;
}

body .bg-image {
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

body .svg-container {
  position: relative;
}

body .svg-container svg {
  height: auto;
  max-width: 100%;
}

body .col-img,
body .col-photo {
  position: relative;
}

body .col-img img,
body .col-photo img {
  height: auto;
  max-width: 100%;
}

body .col-text {
  position: relative;
}

body .col-text ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

body .col-text ul:last-child {
  margin-bottom: 0;
}

body .col-text ul li {
  position: relative;
}

body .col-text ul li::before {
  content: url("../img/chevron-right-white.svg");
  display: inline-block;
  margin-right: 10px;
  height: 14px;
  width: 8px;
}

body .col-text ul.list-empty li::before {
  display: none;
}

body .col-hidden,
body .section-hidden {
  display: none;
}

body .logo-main {
  margin: 0 auto;
  position: relative;
  max-width: 450px;
  width: 100%;
}

body .logo-main svg {
  position: relative;
  z-index: 2;
}

body .logo-main svg .logo_main-path {
  fill: transparent;
  stroke: #fff;
  stroke-miterlimit: 10;
}

body .logo-main svg .logo_main-path.logo_main-path-1 {
  stroke-dasharray: 3934 3936;
  stroke-dashoffset: 3935;
  -webkit-animation: logo_main_draw 15000ms ease-in-out 700ms forwards, logo_main_fill 500ms ease-in-out 3000ms forwards;
          animation: logo_main_draw 15000ms ease-in-out 700ms forwards, logo_main_fill 500ms ease-in-out 3000ms forwards;
}

body .logo-main svg .logo_main-path.logo_main-path-2 {
  stroke-dasharray: 63 65;
  stroke-dashoffset: 64;
  -webkit-animation: logo_main_draw 2000ms ease-in-out 0ms forwards;
          animation: logo_main_draw 2000ms ease-in-out 0ms forwards;
}

body .logo-main svg .logo_main-path.logo_main-path-3 {
  stroke-dasharray: 63 65;
  stroke-dashoffset: 64;
  -webkit-animation: logo_main_draw 2000ms ease-in-out 1500ms forwards;
          animation: logo_main_draw 2000ms ease-in-out 1500ms forwards;
}

@-webkit-keyframes logo_main_fill {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes logo_main_fill {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@-webkit-keyframes logo_main_draw {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes logo_main_draw {
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes logo_main_fade {
  0% {
    stroke-opacity: 1;
  }
  95.1219512195122% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}

@keyframes logo_main_fade {
  0% {
    stroke-opacity: 1;
  }
  95.1219512195122% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}

body .page-header .menu-hamburger {
  background-color: #fff;
  cursor: pointer;
  position: fixed;
  top: 60px;
  right: 60px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  height: 50px;
  width: 50px;
  z-index: 4;
}

body .page-header .menu-hamburger .menu-toggle {
  cursor: pointer;
  opacity: 0;
  height: 100%;
  width: 100%;
}

body .page-header .menu-hamburger .menu-toggle:checked ~ .menu-icon > span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body .page-header .menu-hamburger .menu-toggle:checked ~ .menu-icon > span::before {
  top: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

body .page-header .menu-hamburger .menu-toggle:checked ~ .menu-icon > span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

body .page-header .menu-hamburger .menu-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 26px;
  width: 26px;
}

body .page-header .menu-hamburger .menu-icon > span,
body .page-header .menu-hamburger .menu-icon > span::before,
body .page-header .menu-hamburger .menu-icon > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #032e01;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
}

body .page-header .menu-hamburger .menu-icon span::before {
  content: '';
  top: -8px;
}

body .page-header .menu-hamburger .menu-icon span::after {
  content: '';
  top: 8px;
}

body .page-header .menu-hamburger:hover .menu-icon > span {
  width: 50%;
  margin-left: 20%;
}

body .page-header .menu-hamburger:hover .menu-icon > span::before {
  margin-left: -35%;
  width: 185%;
}

body .page-header .menu-hamburger:hover .menu-icon > span::after {
  margin-left: -35%;
  width: 185%;
}

body .page-header .menu-hamburger.active {
  background-color: #032e01;
}

body .page-header .menu-hamburger.active .menu-icon > span,
body .page-header .menu-hamburger.active .menu-icon > span::before,
body .page-header .menu-hamburger.active .menu-icon > span::after {
  background-color: #fff;
}

body .page-header .menu-hamburger.active:hover .menu-icon > span {
  width: 100%;
}

body .page-header .menu-hamburger.active:hover .menu-icon > span,
body .page-header .menu-hamburger.active:hover .menu-icon > span::before,
body .page-header .menu-hamburger.active:hover .menu-icon > span::after {
  margin: 0;
  width: 100%;
}

body .page-header .sidebar-wrapper {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(400px);
          transform: translateX(400px);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  height: 100%;
  width: 400px;
  z-index: 3;
}

body .page-header .sidebar-wrapper.active {
  right: 400px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 400px;
}

body .page-header .sidebar-wrapper .sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0 0 0 40px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 400px;
}

body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a {
  color: #032e01;
  display: block;
  font-size: 30px;
  padding: 15px;
  position: relative;
  text-decoration: none;
}

body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a::before {
  content: "";
  background-color: #032e01;
  position: absolute;
  bottom: -5px;
  left: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  height: 1px;
  width: 0;
}

body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a:hover::before {
  width: 80%;
}

body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a:active, body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a:focus {
  text-decoration: none;
}

body .page-section {
  margin-bottom: 40px;
  padding: 30px;
  position: relative;
  min-height: calc(350px - 80px);
  height: auto;
}

body .page-section .row-heading {
  padding-top: 30px;
  padding-bottom: 30px;
}

body .page-section .row-heading h2 {
  text-align: center;
  text-transform: uppercase;
}

body .page-section.page-section-1 {
  background-image: url("../img/bg-section-1.jpg");
  height: 350px;
}

body .page-section.page-section-1 .logo-wrapper {
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
}

body .page-section.page-section-1 .logo-wrapper::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: -30px;
  left: -30px;
  height: 110px;
  width: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  z-index: 1;
}

body .page-section.page-section-1 .logo-wrapper img {
  display: block;
  position: relative;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  height: auto;
  max-width: 100%;
  z-index: 2;
}

body .page-section.page-section-1 .logo-wrapper img.logo-top-dark {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

body .page-section.page-section-1 .logo-wrapper:hover::before {
  width: 240px;
}

body .page-section.page-section-1 .logo-wrapper:hover img.logo-top-dark {
  opacity: 1;
}

body .page-section.page-section-1 .row-content {
  height: 100%;
}

body .page-section.page-section-1 .row-content .col-left .col-photo {
  margin-bottom: -30px;
}

body .page-section.page-section-1 .row-content .col-left .col-photo .photo-wrapper {
  display: inline-block;
}

body .page-section.page-section-1 .row-content .col-right .col-text {
  margin-top: -30px;
}

body .page-section.page-section-1 .row-content .claim-wrapper h1 {
  font-size: 55px;
  display: inline-block;
}

body .page-section.page-section-1 .row-content .claim-wrapper h1 span {
  color: #032e01;
  font-size: 25px;
  display: block;
  margin-top: 10px;
  padding: 5px 0;
  position: relative;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  z-index: 2;
}

body .page-section.page-section-1 .row-content .claim-wrapper h1 span::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  height: 40px;
  width: 100%;
  z-index: -1;
}

body .page-section.page-section-1 .row-content .claim-wrapper h1:hover span {
  color: #fff;
}

body .page-section.page-section-1 .row-content .claim-wrapper h1:hover span::before {
  width: 0;
}

body .page-section.page-section-2 .slider-wrapper {
  position: relative;
}

body .page-section.page-section-2 .slider-wrapper::before {
  content: "";
  background-color: #032e01;
  position: absolute;
  top: 30px;
  left: 30px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

body .page-section.page-section-2 .slider-wrapper .slick-slide,
body .page-section.page-section-2 .slider-wrapper .slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 350px;
  width: auto;
}

body .page-section.page-section-2 .slider-wrapper .slick-slide {
  position: relative;
  z-index: 1;
}

body .page-section.page-section-2 .slider-wrapper .slick-slide img {
  border: 4px solid #fff;
}

body .page-section.page-section-2 .slider-wrapper .slick-dots {
  bottom: 30px;
}

body .page-section.page-section-2 .slider-wrapper .slick-dots li button {
  border: 2px solid #fff;
  border-radius: 50%;
}

body .page-section.page-section-2 .slider-wrapper .slick-dots li button::before {
  color: #d7e1d9;
  font-size: 18px;
  opacity: 1;
  top: 1px;
}

body .page-section.page-section-2 .slider-wrapper .slick-dots li.slick-active button::before {
  color: #032e01;
  opacity: 1;
}

body .page-section.page-section-3 {
  background-image: url("../img/bg-section-3.jpg");
}

body .page-section.page-section-3::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out;
}

body .page-section.page-section-3.opened {
  height: auto;
  max-height: unset;
}

body .page-section.page-section-3.opened::before {
  content: "";
  opacity: 1;
}

body .page-section.page-section-3.opened .col-svg {
  z-index: 1;
}

body .page-section.page-section-3.opened .col-content {
  opacity: 1;
  z-index: 2;
}

body .page-section.page-section-3.opened.opened-left .col-svg .svg-photo-left {
  margin-left: calc(-50% + 270px);
}

body .page-section.page-section-3.opened.opened-left .col-svg .svg-photo-left .name-wrapper {
  background-color: #fff;
  margin: -33px 0 0 0 !important;
  -webkit-transform: none;
          transform: none;
  max-height: 300px;
}

body .page-section.page-section-3.opened.opened-left .col-svg .svg-photo-left .name-wrapper p {
  display: none;
}

body .page-section.page-section-3.opened.opened-left .col-svg .svg-photo-left .photo-wrapper {
  -webkit-filter: grayscale(0%) !important;
          filter: grayscale(0%) !important;
}

body .page-section.page-section-3.opened.opened-left .col-svg .svg-photo-right {
  opacity: 0;
}

body .page-section.page-section-3.opened.opened-left .col-content .col-lawyer-left {
  display: block;
}

body .page-section.page-section-3.opened.opened-right .col-svg .svg-photo-right {
  margin-right: calc(-50% + 270px);
}

body .page-section.page-section-3.opened.opened-right .col-svg .svg-photo-right .name-wrapper {
  background-color: #fff;
  margin: -37px 0 0 0 !important;
  -webkit-transform: none;
          transform: none;
  max-height: 300px;
}

body .page-section.page-section-3.opened.opened-right .col-svg .svg-photo-right .name-wrapper p {
  display: none;
}

body .page-section.page-section-3.opened.opened-right .col-svg .svg-photo-right .photo-wrapper {
  -webkit-filter: grayscale(0%) !important;
          filter: grayscale(0%) !important;
}

body .page-section.page-section-3.opened.opened-right .col-svg .svg-photo-left {
  opacity: 0;
}

body .page-section.page-section-3.opened.opened-right .col-content .col-lawyer-right {
  display: block;
}

body .page-section.page-section-3 .col-svg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

body .page-section.page-section-3 .col-svg .svg-container {
  padding-top: 57px;
}

body .page-section.page-section-3 .col-svg .svg-container:hover .svg-photo .photo-wrapper {
  -webkit-filter: grayscale(40%);
          filter: grayscale(40%);
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo {
  display: inline-block;
  position: relative;
  -webkit-transition: all .75s ease-in-out, opacity .5s ease-in-out;
  transition: all .75s ease-in-out, opacity .5s ease-in-out;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo a {
  display: block;
  margin: 0;
  position: relative;
  -webkit-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  opacity: 0;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-height: 100px;
  max-width: 300px;
  height: 100%;
  width: 0;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  height: 100%;
  width: 0;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper p {
  font-size: 20px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  width: 100%;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper p strong {
  text-transform: uppercase;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper p span {
  display: block;
  font-size: 15px;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .photo-wrapper {
  position: relative;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  width: 100%;
  z-index: 2;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .photo-wrapper img {
  opacity: 0;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .svg-wrapper {
  opacity: 0;
  position: absolute;
  max-width: 250px;
  width: 250px;
  -webkit-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out;
  z-index: 1;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .svg-wrapper svg {
  overflow: visible;
  position: relative;
  height: auto;
  width: 100%;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left {
  margin-right: auto;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .name-wrapper {
  right: 0;
  -webkit-transition: all 1s ease-in-out, opacity 1s ease-in-out 2s;
  transition: all 1s ease-in-out, opacity 1s ease-in-out 2s;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .name-wrapper::before {
  right: 0;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .svg-wrapper {
  top: 10px;
  right: 0;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .photo-wrapper {
  text-align: right;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .photo-wrapper img {
  margin-top: -4px;
  margin-right: -21px;
  -webkit-transform: scale(0.94, 0.95);
          transform: scale(0.94, 0.95);
  -webkit-transition: all 2s ease-in-out .2s;
  transition: all 2s ease-in-out .2s;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right {
  margin-left: auto;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .name-wrapper {
  left: 0;
  -webkit-transition: all 1s ease-in-out, opacity 1s ease-in-out 3.5s;
  transition: all 1s ease-in-out, opacity 1s ease-in-out 3.5s;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .name-wrapper::before {
  left: 0;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .svg-wrapper {
  top: 17px;
  left: -39px;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .photo-wrapper {
  text-align: left;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .photo-wrapper img {
  margin-top: -1px;
  margin-left: -65px;
  -webkit-transform: scale(0.925, 0.94);
          transform: scale(0.925, 0.94);
  -webkit-transition: all 2s ease-in-out 2s;
  transition: all 2s ease-in-out 2s;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .name-wrapper {
  opacity: 1;
  width: 100%;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .name-wrapper p {
  opacity: 1;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .photo-wrapper img {
  opacity: 1;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .svg-wrapper {
  opacity: 1;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated.svg-photo-left .name-wrapper {
  margin-right: 223px;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated.svg-photo-right .name-wrapper {
  margin-left: 175px;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo:hover .name-wrapper p {
  color: #032e01;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo:hover .name-wrapper::before {
  width: 100%;
}

body .page-section.page-section-3 .col-svg .svg-container .svg-photo:hover .photo-wrapper {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

body .page-section.page-section-3 .col-content {
  opacity: 0;
  -webkit-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out;
}

body .page-section.page-section-3 .col-content .col-lawyer-content {
  display: none;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading {
  margin-bottom: 40px;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow {
  cursor: pointer;
  position: absolute;
  top: 50px;
  left: 50px;
  height: 50px;
  width: 50px;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow .back-arrow-wrapper {
  background-color: #fff;
  border: 1px solid #fff;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  height: 100%;
  width: 100%;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow .back-arrow-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow .back-arrow-wrapper svg path {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow:hover .back-arrow-wrapper {
  background-color: transparent;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow:hover .back-arrow-wrapper svg path {
  fill: #fff !important;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .name,
body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 70px;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email a,
body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email a {
  text-decoration: none;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email a:hover {
  text-decoration: underline;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email svg {
  margin-top: 5px;
  margin-right: 12px;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-text p,
body .page-section.page-section-3 .col-content .col-lawyer-content .col-text li {
  line-height: 27px;
  text-shadow: 2px 2px #000;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-text ul,
body .page-section.page-section-3 .col-content .col-lawyer-content .col-text p {
  margin-bottom: 20px;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-text li {
  margin-bottom: 10px;
}

body .page-section.page-section-3 .col-content .col-lawyer-content .col-text .date {
  padding-right: 25px;
}

body .page-section.page-section-3 .col-content .publications-trigger {
  position: absolute;
  right: 12px;
  bottom: -3px;
}

body .page-section.page-section-3 .col-content .publications-trigger a {
  color: #fff;
  padding: 30px 50px 30px;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .page-section.page-section-3 .col-content .publications-trigger a span {
  position: relative;
  z-index: 1;
}

body .page-section.page-section-3 .col-content .publications-trigger a::before {
  content: url("../img/chevron-down-white.svg");
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  height: 9px;
  width: 14px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .page-section.page-section-3 .col-content .publications-trigger a::after {
  content: "";
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body .page-section.page-section-3 .col-content .publications-trigger a:hover, body .page-section.page-section-3 .col-content .publications-trigger a.active {
  color: #032e01;
}

body .page-section.page-section-3 .col-content .publications-trigger a:hover::before, body .page-section.page-section-3 .col-content .publications-trigger a.active::before {
  margin: 0 -60px 0 0;
}

body .page-section.page-section-3 .col-content .publications-trigger a:hover::after, body .page-section.page-section-3 .col-content .publications-trigger a.active::after {
  height: 100%;
}

body .page-section.page-section-3 .col-content .publications-trigger a.active::before {
  -webkit-transform: translateY(0) scaleY(-1);
          transform: translateY(0) scaleY(-1);
}

body .page-section.page-section-3 .col-content .text-publications {
  color: #032e01;
  padding: 40px;
}

body .page-section.page-section-3 .col-content .text-publications * {
  text-shadow: none !important;
}

body .page-section.page-section-3 .col-content .text-publications ul {
  -webkit-columns: 2;
          columns: 2;
}

body .page-section.page-section-3 .col-content .text-publications ul li::before {
  content: url("../img/chevron-right-green.svg");
}

body .page-section.page-section-4 {
  padding-bottom: 100px;
}

body .page-section.page-section-4 .address-wrapper {
  margin: 0 auto;
  position: relative;
  max-width: 380px;
  width: 100%;
}

body .page-section.page-section-4 .address-wrapper::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: -30px;
  left: -30px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

body .page-section.page-section-4 .address-wrapper .address-wrapper-inner {
  background-color: #025400;
  background-image: url("../img/address-wrapper-bg.jpg");
  background-position: left;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  padding: 50px;
  position: relative;
  z-index: 2;
}

body .page-section.page-section-4 .address-wrapper .address-wrapper-inner a {
  margin-left: 7px;
  text-decoration: underline;
}

body .page-section.page-section-4 .address-wrapper .address-wrapper-inner .button {
  margin: 0 auto;
  text-decoration: none;
  width: 100%;
}

body .page-section.page-section-4 .form-wrapper .col-heading {
  text-transform: uppercase;
}

body .page-section.page-section-4 .form-wrapper form .form-item-input,
body .page-section.page-section-4 .form-wrapper form .form-item-textarea {
  background: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #b5b5b5;
  display: block;
  margin-bottom: 20px;
  padding: 15px 20px;
  width: 100%;
}

body .page-section.page-section-4 .form-wrapper form .form-item-name {
  display: inline-block;
  margin-right: 20px;
  width: 47.7%;
}

body .page-section.page-section-4 .form-wrapper form .form-item-tel {
  display: inline-block;
  width: 49%;
}

body .page-section.page-section-4 .form-wrapper form .form-item-submit {
  margin-left: auto;
  max-width: 225px;
  width: 100%;
}

body .page-footer {
  padding: 25px;
}

body .page-footer .footer-content {
  text-align: center;
}

body .page-footer .footer-content p {
  display: inline-block;
}

body .page-footer .footer-content p .separator {
  padding-right: 15px;
  padding-left: 15px;
}

body .page-footer .footer-content p a {
  color: #fff;
}

body .page-footer .footer-content p a:hover {
  color: #d7e1d9;
}

/*Modifica del 26.05.2021*/

body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper p strong {
    text-transform: none!important;
}
.text-right {
    text-align: justify;
}

.text-container.text-intro {
    text-align: justify;
}

.text-container.text-list-empty {
    text-align: justify;
}

.text-container.text-list {
    text-align: justify;
}

/*modifica del 27.05.2021*/
.text-container.text-list ul {
  list-style: disc!important;
  list-style-image: url(../img/chevron-right-white.svg)!important;
  padding-left: 10px;
}

.text-container.text-list.text-publications  ul {
  list-style: disc!important;
  list-style-image: url(../img/chevron-right-green.svg)!important;
  padding-left: 10px;
}

.text-container.text-list ul li::before {
    display: none!important;
}

::marker {
    font-size: 26px;
}

.text-container.text-list li {
    padding-left: 10px;
}

body .page-section.page-section-3 .col-content .text-publications ul li {
    margin-right: 10px!important;
}

/* Modifica del 24.06.2021 */
body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated.svg-photo-left .name-wrapper {
    margin-right: 210px;
}

body .page-section.page-section-3::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-transition: all .75s ease-in-out;
    transition: all .75s ease-in-out;
}

/* Cattaneo & Postizzi - Responsive CSS */
@media (min-width: 992px) {
  body .page-section {
    min-height: calc(750px - 80px);
  }
  body .page-section.page-section-1 {
    min-height: calc(450px - 80px);
  }
}

@media (min-height: 750px) {
  body .page-section {
    min-height: calc(750px - 80px);
  }
  body .page-section.page-section-1 {
    min-height: calc(750px - 80px);
    height: calc(750px - 80px);
  }
}

@media (max-width: 1750px) {
  body .page-section.page-section-3.opened .col-content .col-lawyer-content.col-lawyer-right {
    padding-right: 200px;
  }
  body .page-section.page-section-3.opened .col-content .col-lawyer-content.col-lawyer-left {
    padding-left: 200px;
  }
}

@media (max-width: 1399px) {
  body .page-section.page-section-4 .form-wrapper form .form-item-name {
    width: 46.1%;
  }
}

@media (max-width: 1199px) {
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger a.active::before {
    display: none;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo .name-wrapper {
    max-width: 270px;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .lawyer-select {
    margin-top: 1px;
  }
  body .page-section:not(.opened) .col-svg .svg-container .svg-photo-left .lawyer-select {
    margin-right: -50px;
  }
}

@media (max-width: 991px) {
  body {
    font-size: .9rem;
    line-height: 1.5rem;
    padding: 20px;
  }
  body .bg-image {
    background-attachment: unset;
  }
  body .page-header .menu-hamburger {
    top: 5px;
    right: 5px;
  }
  body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a {
    font-size: 25px;
  }
  body .page-section {
    margin-bottom: 20px;
    padding: 15px;
  }
  body .page-section .row-heading {
    padding-top: 20px;
    padding-bottom: 0;
  }
  body .page-section.page-section-2 .col-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body .page-section.page-section-2 .col-left .slider-wrapper::before {
    top: 10px;
    left: 10px;
  }
  body .page-section.page-section-2 .col-left .slider-wrapper .slick-slide,
  body .page-section.page-section-2 .col-left .slider-wrapper .slick-slide img {
    max-height: 100%;
  }
  body .page-section.page-section-2 .col-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  body .page-section.page-section-3 {
    padding-bottom: 50px;
  }
  body .page-section.page-section-3 .col-svg {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .photo-wrapper, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .photo-wrapper, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .photo-wrapper {
    margin-bottom: 120px;
    text-align: center;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .photo-wrapper img, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .photo-wrapper img, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .photo-wrapper img {
    display: block;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .name-wrapper, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .name-wrapper, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .name-wrapper {
    border: 4px solid #fff;
    margin: 0 !important;
    position: absolute;
    top: unset;
    right: unset;
    bottom: -88px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 3;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .name-wrapper::before, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .name-wrapper::before, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .name-wrapper::before {
    right: unset;
    left: 0;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .svg-wrapper, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .svg-wrapper, body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .svg-wrapper {
    top: 12px;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .name-wrapper {
    bottom: -85px;
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-right .svg-wrapper {
    top: 18px;
    right: unset;
    left: calc(50% + 5px);
  }
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-left .lawyer-select {
    margin-right: 0;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .back-arrow {
    top: 0;
    left: 0;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title {
    display: block;
    text-align: center;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .name,
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email {
    display: block;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .name {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email {
    margin: 0 auto;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .col-heading .title .email svg {
    margin-top: -2px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger {
    bottom: -34px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger a {
    padding: 20px 30px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger a::before {
    right: 0px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger a.active::before, body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger a:hover::before {
    margin: 0 -20px 0 0;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .text-publications {
    padding: 25px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .text-publications ul {
    -webkit-columns: unset;
            columns: unset;
  }
  body .page-section.page-section-3.opened .col-svg {
    display: none;
  }
  body .page-section.page-section-4 {
    padding-bottom: 50px;
  }
  body .page-section.page-section-4 .col-heading {
    text-align: center;
  }
  body .page-section.page-section-4 .col-heading h3 {
    margin-bottom: 5px;
  }
  body .page-section.page-section-4 .address-wrapper::before {
    content: "";
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: -10px;
  }
  body .page-section.page-section-4 .address-wrapper .address-wrapper-inner {
    font-size: .9rem;
    padding: 30px;
  }
  body .page-section.page-section-4 .form-wrapper form .form-item-input {
    margin-right: 0;
    width: 100%;
  }
  body .page-section.page-section-4 .form-wrapper form .form-item-submit {
    margin: 0 auto;
    max-width: 100%;
  }
  body .page-footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  body .page-footer .footer-content p {
    display: block;
  }
  body .page-footer .footer-content p .separator {
    display: none;
  }
}

@media (max-width: 575px) {
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger {
    margin-right: 25px;
  }
  body .page-section.page-section-3 .col-content .col-lawyer-content .publications-trigger a.active::before {
    display: none;
  }
}

@media (max-width: 400px) {
  body .page-header .sidebar-wrapper.active {
    right: 0;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
  body .page-header .sidebar-wrapper .sidebar-nav {
    padding-left: 0;
    right: 0;
    width: 100%;
  }
  body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a {
    font-size: 25px;
    text-align: center;
  }
  body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a::before {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  body .page-header .sidebar-wrapper .sidebar-nav .sidebar-nav-item a:hover::before {
    width: 50%;
  }
}

@media (max-width: 385px) {
  body .page-section.page-section-3 .col-svg .svg-container .svg-photo.svg-photo-animated .svg-wrapper {
    display: none;
  }
}

{
  background-color: #025400;
  background-image: url(../img/address-wrapper-bg.jpg);
  background-position: left;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

#map{
  border: 2px solid #fff;
}
/*# sourceMappingURL=styles.css.map */
