/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 01-mar-2021, 16.39.08
    Author     : Davide
*/
/* _mixins.scss
    Usage: 
        http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/
        http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
        http://sachagreif.com/useful-sass-mixins/
*/
/* Colors definition */
/*********************/
.bg-white, .btn-white {
  background-color: #FFF !important; }

.bg-black, .btn-black {
  background-color: #000000 !important; }

.bg-yellow, .btn-yellow, a.btn-yellow {
  background-color: #FFFF00 !important; }

.bg-coldgrey, .btn-cold-grey {
  background-color: #C3CACD !important; }

.bg-lightcoldgrey, .btn-light-cold-grey {
  background-color: #D1D8DB !important; }

.bg-lightcoldgrey.bg-candle, .bg-candle.btn-light-cold-grey {
  background: #D1D8DB url(../images/bg-candle.svg) no-repeat 1% 2em !important; }

.bg-darkcoldgrey {
  background-color: #4E5A61 !important; }

.bg-facebook {
  background-color: #3b5998 !important; }

.bg-twitter {
  background-color: #4099FF !important; }

.bg-whatsapp {
  background-color: #34AF23 !important; }

.bg-transparent {
  background-color: transparent !important; }

.bg-white-opacity {
  background-color: rgba(255, 255, 255, 0.95) !important; }

.txt-white, .btn-black {
  color: #FFF !important; }
  .txt-white i:before, .btn-black i:before {
    color: #FFF !important; }

.txt-black, .btn-white, .btn-cold-grey, .btn-light-cold-grey, .btn-yellow, a.btn-yellow {
  color: #000000 !important; }

.txt-yellow {
  color: #FFFF00 !important; }

.txt-grey {
  color: grey !important; }

.txt-coldgrey {
  color: #C3CACD !important; }

.txt-lightcoldgrey {
  color: #D1D8DB !important; }

.txt-darkcoldgrey {
  color: #4E5A61 !important; }

.txt-facebook {
  color: #3b5998 !important; }

.txt-twitter {
  color: #4099FF !important; }

.txt-whatsapp {
  color: #34AF23 !important; }

.txt-transparent {
  color: transparent !important; }

.underline, .underline-white, .underline-black, .underline-yellow, .underline-coldgrey, .underline-lightcoldgray {
  text-decoration: underline; }
  .underline:hover, .underline-white:hover, .underline-black:hover, .underline-yellow:hover, .underline-coldgrey:hover, .underline-lightcoldgray:hover {
    text-decoration: underline; }

.underline-white {
  text-decoration-color: #FFF;
  -moz-text-decoration-color: #FFF;
  -webkit-text-decoration-color: #FFF; }

.underline-black {
  text-decoration-color: #000000;
  -moz-text-decoration-color: #000000;
  text-decoration-color: #000000; }

.underline-yellow {
  text-decoration-color: #FFFF00;
  -moz-text-decoration-color: #FFFF00;
  -webkit-text-decoration-color: #FFFF00; }
  .underline-yellow:hover {
    text-decoration-color: #FFFF00;
    -moz-text-decoration-color: #FFFF00;
    -webkit-text-decoration-color: #FFFF00; }

.underline-coldgrey {
  text-decoration-color: #C3CACD;
  -moz-text-decoration-color: #C3CACD;
  -webkit-text-decoration-color: #C3CACD; }

.underline-lightcoldgray {
  text-decoration-color: #D1D8DB;
  -moz-text-decoration-color: #D1D8DB;
  -webkit-text-decoration-color: #D1D8DB; }

.border-bottom, .border-bottom-white, .border-bottom-black, .border-bottom-yellow, .border-bottom-coldgrey, .border-bottom-lightcoldgray, .border-bottom-darkcoldgrey {
  border-bottom: 1px solid; }

.border-bottom-white {
  border-bottom-color: #FFF; }

.border-bottom-black {
  border-bottom-color: #000000; }

.border-bottom-yellow {
  border-bottom-color: #FFFF00; }

.border-bottom-coldgrey {
  border-bottom-color: #C3CACD; }

.border-bottom-lightcoldgray {
  border-bottom-color: #D1D8DB; }

.border-bottom-darkcoldgrey {
  border-bottom-color: #4E5A61; }

.border-bottom-5px, .border-bottom-white-5px, .border-bottom-black-5px, .border-bottom-yellow-5px, .border-bottom-coldgrey-5px, .border-bottom-lightcoldgray-5px, .border-bottom-darkcoldgrey-5px {
  border-bottom: 5px solid; }

.border-top-5px, .border-top-black-5px, .border-top-white-5px, .border-top-yellow-5px, .border-top-coldgrey-5px, .border-top-lightcoldgray-5px, .border-top-darkcoldgrey-5px {
  border-top: 5px solid; }

.border-bottom-white-5px {
  border-bottom-color: #FFF; }

.border-bottom-black-5px {
  border-bottom-color: #000000; }

.border-top-black-5px {
  border-top-color: #000000; }

.border-bottom-yellow-5px {
  border-bottom-color: #FFFF00; }

.border-bottom-coldgrey-5px {
  border-bottom-color: #C3CACD; }

.border-bottom-lightcoldgray-5px {
  border-bottom-color: #D1D8DB; }

.border-bottom-darkcoldgrey-5px {
  border-bottom-color: #4E5A61; }

.border-top, .border-top-white, .border-top-black, .border-top-yellow, .border-top-coldgrey, .border-top-lightcoldgray, .border-top-darkcoldgrey {
  border-top: 1px solid; }

.border-top-white {
  border-top-color: #FFF; }

.border-top-black {
  border-top-color: #000000; }

.border-top-yellow {
  border-top-color: #FFFF00; }

.border-top-coldgrey {
  border-top-color: #C3CACD; }

.border-top-lightcoldgray {
  border-top-color: #D1D8DB; }

.border-top-darkcoldgrey {
  border-top-color: #4E5A61; }

.border-top-5px, .border-top-black-5px, .border-top-white-5px, .border-top-yellow-5px, .border-top-coldgrey-5px, .border-top-lightcoldgray-5px, .border-top-darkcoldgrey-5px {
  border-top: 5px solid; }

.border-top-white-5px {
  border-top-color: #FFF; }

.border-top-black-5px {
  border-top-color: #000000; }

.border-top-yellow-5px {
  border-top-color: #FFFF00; }

.border-top-coldgrey-5px {
  border-top-color: #C3CACD; }

.border-top-lightcoldgray-5px {
  border-top-color: #D1D8DB; }

.border-top-darkcoldgrey-5px {
  border-top-color: #4E5A61; }

/* _typography.scss */
/* _fonts.scss */
/* TYPEKIT FIX */
/*h1,h2,h3,h4,h5,h6,p,a,li,span,button{
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-out;
}

.wf-active{
    h1,h2,h3,h4,h5,h6,p,a,li,span,button{
        opacity: 1;
        visibility: visible;
    }
}
/* EOF TYPEKIT FIX */
html {
  font-size: 100%; }

.font-franklin-book, .text, .data2, .data3 {
  font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: 400; }

.font-franklin-medium, .claim1, .claim2 {
  font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: 500; }

.font-franklin-demi, .scopri, .tag2, .tag3, .newsH3, .newsH3 a {
  font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: 700; }

.font-alternate-gothic {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  font-weight: 400; }

* {
  font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 16px;
  line-height: 22px; }

a:hover, a:active, a:focus {
  text-decoration: none; }

h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  border-top: 0px;
  margin-top: 0px;
  text-transform: uppercase;
  color: #000000; }

.title-container h1.font-franklin-demi, .title-container h1.scopri, .title-container h1.tag2, .title-container h1.tag3, .title-container h1.newsH3 {
  text-transform: none !important; }

.nav a {
  text-transform: uppercase; }

#menu-main a {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif; }

h1, h1 a {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.3em; }
  @media (min-width: 767px) {
    h1, h1 a {
      letter-spacing: 0.01em; } }
  @media (max-width: 767px) {
    h1, h1 a {
      font-size: 30px; } }

h2, h2 a {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3em; }
  @media (min-width: 767px) {
    h2, h2 a {
      letter-spacing: 0.01em; } }
  @media (max-width: 767px) {
    h2, h2 a {
      font-size: 22px; } }

h3, h3 a {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3em; }
  @media (min-width: 767px) {
    h3, h3 a {
      letter-spacing: 0.01em; } }
  @media (max-width: 767px) {
    h3, h3 a {
      font-size: 20px; } }

h4, h4 a {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3em;
  letter-spacing: 0.01em; }
  @media (max-width: 767px) {
    h4, h4 a {
      font-size: 18px; } }

h5, h5 a {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3em;
  letter-spacing: 0.05em; }

@media (max-width: 767px) {
  h5, h5 a {
    line-height: 24px; } }
.highlighted-white, .highlighted-yellow {
  line-height: 1.7em !important; }

.highlighted, .highlighted-white, .highlighted-yellow {
  white-space: pre-wrap;
  display: inline-block;
  position: relative;
  /* Fix the paddings in highlighted titles splitted in multiple lines */
  /* It applies to the following properties: background, padding, border, border-image, box-shadow, margin and clip-path */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 4px 8px 0px; }

.highlighted-white {
  background: #FFF !important; }

.highlighted-yellow {
  background: #FFFF00 !important; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2, h2 a {
    font-size: 26px; } }
/* _utils.scss */
.condensed {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px; }
  .condensed div[class^="col-"] {
    padding-left: 0px;
    padding-right: 0px; }

.space-top {
  margin-top: 40px; }

.space-top.space-mini {
  margin-top: 20px; }

.space-top.space-micro {
  margin-top: 10px; }

.space-top.space-zero {
  margin-top: 0px; }

.space-top.space-extra {
  margin-top: 60px; }

.space-top.space-mega {
  margin-top: 80px; }

.space-bottom {
  margin-bottom: 40px; }

.space-bottom.space-mini {
  margin-bottom: 20px; }

.space-bottom.space-micro {
  margin-bottom: 10px; }

.space-bottom.space-zero {
  margin-bottom: 0px; }

.space-bottom.space-extra {
  margin-bottom: 60px; }

.space-bottom.space-mega {
  margin-bottom: 80px; }

.space-bottom.space-ultra {
  margin-bottom: 120px; }

.space-left {
  margin-left: 10px; }

.space-right {
  margin-right: 10px; }

.space-left-negative-micro {
  margin-left: -15px; }

.space-right-negative-micro {
  margin-right: -15px; }

.wrap-padding {
  padding: 10px; }

.wrap-padding-medium {
  padding: 15px; }

.wrap-padding-large {
  padding: 20px; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.absolute-top {
  top: 0px; }

.absolute-bottom {
  bottom: 0px; }

.absolute-right {
  right: 0px; }

.absolute-left {
  left: 0px; }

.fluid {
  width: 100%; }

.alignleft {
  float: left; }

.alignright {
  float: right; }

img.aligncenter, .wp-caption.aligncenter, figure.aligncenter {
  margin: 15px auto;
  float: none; }

img.alignleft, .wp-caption.alignleft, figure.alignleft {
  margin-right: 15px; }
  @media (max-width: 767px) {
    img.alignleft, .wp-caption.alignleft, figure.alignleft {
      margin: 15px auto;
      float: none;
      text-align: center; } }

img.alignright, .wp-caption.alignright, figure.alignright {
  margin-left: 15px; }
  @media (max-width: 767px) {
    img.alignright, .wp-caption.alignright, figure.alignright {
      margin: 15px auto;
      float: none;
      text-align: center; } }

.clear {
  clear: both; }

.inline {
  display: inline; }

.block {
  display: block; }

hr {
  border-top-color: #C3CACD; }

.border-white-2px {
  border: 2px solid #FFF; }

.border-right {
  border-right: 1px solid #C3CACD; }

.margin-left-right-0 {
  margin-left: 0px;
  margin-right: 0px; }

.text-normal {
  text-transform: none; }

.inline-block {
  display: inline-block; }

.fa-1-3x {
  font-size: 1.3em; }

.fa-1-5x {
  font-size: 1.5em; }

.fa-0-7x {
  font-size: 0.7em; }

@media (min-width: 767px) {
  .space-padding-right-0 {
    padding-right: 0px; }

  .space-padding-left-0 {
    padding-left: 0px; } }
.btn {
  text-transform: uppercase;
  border-radius: 0px;
  padding: 5px 15px;
  font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.02em;
  font-weight: bold;
  transition: all 0.14s linear; }

/* Bottone nero */
@media (min-width: 768px) {
  .black-button-container h2 {
    font-size: 34px;
    padding-top: .25em; } }

.btn-black:hover {
  background-color: #4E5A61 !important; }

/* Bottone bianco */
/* Bottone $cold_grey */
/* Bottone $cold_grey */
/* Bottone $yellow */
.btn-yellow:hover, a.btn-yellow:hover {
  background-color: #ffd400 !important;
  color: #000000 !important; }

a.txt-black:hover, a.btn-white:hover, a.btn-cold-grey:hover, a.btn-light-cold-grey:hover, a.btn-yellow:hover {
  color: #4E5A61; }

.row.vdivide [class*='col-']:not(:last-child):after {
  background: #e0e0e0;
  width: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  min-height: 70px; }

.circle {
  border-radius: 50%; }

.top-1px {
  margin-top: -1px; }

.padding-top-micro {
  padding-top: 1px; }

.btn-padding-10 {
  padding-top: 10px;
  padding-bottom: 10px; }

.btn-padding-15 {
  padding-top: 15px;
  padding-bottom: 15px; }

.text {
  font-size: 16px;
  line-height: 22px; }

.scopri {
  font-size: 16px;
  line-height: 40px;
  letter-spacing: -0.01em; }

.claim1 {
  font-size: 30px;
  line-height: 34px;
  letter-spacing: -0.01em; }

@media (max-width: 767px) {
  .claim1 {
    font-size: 22px;
    line-height: 28px; } }
.claim2 {
  font-size: 24px;
  line-height: 30px; }

@media (max-width: 767px) {
  .claim2 {
    font-size: 18px;
    line-height: 24px; } }
.number {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 78px;
  line-height: .9em;
  letter-spacing: -0.02em; }
  @media (max-width: 767px) {
    .number {
      font-size: 63px; } }

.mini-number {
  font-family: alternate-gothic-no-3-d, "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "TeXGyreHerosCnBold", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 52px;
  letter-spacing: -0.02em;
  line-height: 68px; }

@media (max-width: 767px) {
  .xs-big-number.responsive-line-height-68 {
    line-height: 1em !important; }

  .wrap-padding-medium-xs {
    padding: 15px; } }
@media (max-width: 767px) {
  .text-left-xs {
    text-align: left !important; }

  .font-size-15-xs {
    font-size: 15px !important; }

  .space-left-negative-micro-xs {
    margin-left: -15px; }

  .space-right-negative-micro-xs {
    margin-right: -15px; } }
.gradient-box-bottom-white {
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, white 70%, white 100%); }

.gradient-box-bottom {
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.75) 100%); }

.gradient-box-top {
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 39%, rgba(0, 0, 0, 0.65) 100%); }

.gradient-box-left {
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 39%, rgba(0, 0, 0, 0.65) 100%); }

.gradient-box-left-big {
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%); }

.gradient-box-right {
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 39%, rgba(0, 0, 0, 0.65) 100%); }

.width-sm-66 {
  max-width: 66%; }

@media (max-width: 767px) {
  .width-xs-100 {
    max-width: 100%; } }
.tag2 {
  font-size: 16px;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  color: #4E5A61;
  margin-bottom: 0px; }

.tag3 {
  font-size: 12px;
  line-height: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  color: #4E5A61;
  margin-bottom: 0px; }

.newsH3, .newsH3 a {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 0px;
  color: #000000;
  text-transform: none; }

.data2 {
  font-size: 14px;
  line-height: 17px; }

.data3 {
  font-size: 10px;
  line-height: 12px; }

.grey-block {
  background-color: rgba(255, 255, 255, 0.8); }
  .grey-block p {
    padding: 20px 0px;
    font-size: 20px; }

.hidden-effect {
  opacity: 0;
  visibility: hidden;
  transition-duration: 1s; }

.text-none {
  text-transform: none; }

@media (max-width: 767px) {
  .padding-right-0-xs {
    padding-right: 0px !important; }

  .padding-left-0-xs {
    padding-left: 0px !important; } }
@media (min-width: 768px) {
  .padding-left-0 {
    padding-left: 0px !important; } }
label {
  font-weight: inherit; }

.middle-dot {
  font-size: 0.3em;
  vertical-align: middle; }

.block-2-image {
  background-position: center;
  background-size: cover;
  height: 75vh;
  float: left; }

/* Headings titles vertical centering */
.thumbnail-container.bgimage {
  display: flex;
  align-items: center;
  justify-content: center; }

.bgimage {
  background-position: center;
  background-size: cover; }

.height-70vh {
  height: 50vh; }
  @media (min-width: 768px) {
    .height-70vh {
      height: 70vh; } }

@media (max-width: 767px) {
  .height-70vh-xs {
    height: 70vh; } }

.height-80vh {
  height: 80vh; }
  @media (min-width: 768px) {
    .height-80vh {
      height: 70vh; } }

a.share-link {
  padding-right: 1.5em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center; }

a.share-link.share-link-yellow {
  background-image: url(../images/icon-share-yellow.svg); }

a.share-link.share-link-white {
  background-image: url(../images/icon-share-white.svg); }

input.donation-amount {
  border-radius: 0px;
  background: #FFF url(../images/icon-euro.svg) right 30px center no-repeat;
  background-size: 14px; }
  input.donation-amount.monthly-donation {
    background: #FFF url(../images/icon-euro-mese.svg) right 30px center no-repeat;
    background-size: 50px; }

.video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 1em; }

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video .issuuembed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }

.owl-theme.tweets-carousel .video, .tweets-carousel .video {
  position: relative;
  padding-bottom: 0;
  padding-top: 0;
  height: auto;
  margin-bottom: auto; }
.owl-theme.tweets-carousel .owl-controls .owl-dots, .tweets-carousel .owl-controls .owl-dots {
  margin: 10px 13px 0;
  text-align: center; }

.modal-content {
  border-radius: 0; }

/* _new-home-section-slider.scss */
section.section--slider .carousel-home .owl-stage {
  background-color: #D1D8DB; }
section.section--slider .carousel-home .item {
  height: 70vh;
  background-position: center;
  background-size: cover; }
section.section--slider .carousel-home-thumbnails-wrapper {
  background-color: #4E5A61;
  padding: 15px 0; }
  section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails {
    margin-left: 15px;
    display: flex; }
    section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item {
      flex-grow: 1;
      flex-basis: 0;
      /*transition: flex-grow .75s;*/ }
      section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item a {
        position: relative;
        display: block;
        min-height: 80px;
        margin-right: 15px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        transition: none; }
        section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item a .title {
          position: relative;
          color: white;
          font-size: 14px;
          line-height: 17px;
          padding: 10px 15px;
          font-weight: bold;
          z-index: 1; }
          @media screen and (max-width: 359px) {
            section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item a .title {
              word-break: break-all; } }
        section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item a::before {
          content: "";
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background-color: rgba(0, 0, 0, 0.5); }
      section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item.active {
        flex-grow: 0;
        flex-basis: 65px; }
        section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item.active a {
          border: 3px solid #C3CACD; }
          section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item.active a .title {
            display: none; }
          section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item.active a::before {
            display: none; }
      @media screen and (min-width: 768px) {
        section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item a {
          min-height: 100px;
          margin: 0 7.5px; } }
    section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails[data-count="2"] .item.active {
      flex-basis: 95px; }
    @media screen and (min-width: 768px) {
      section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails {
        margin: 0 auto;
        width: 735px; }
        section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails .item.active {
          flex-basis: 185px; } }
    @media screen and (min-width: 992px) {
      section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails {
        width: 955px; } }
    @media screen and (min-width: 1200px) {
      section.section--slider .carousel-home-thumbnails-wrapper .carousel-home-thumbnails {
        width: 1155px; } }

/* _new-home-section-close-up.scss */
section.section--close-up {
  margin: 20px 0 40px; }
  section.section--close-up h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    font-size: 30px;
    line-height: 30px; }
    section.section--close-up h2::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 50%;
      background-color: #FFFF00;
      z-index: -1; }
  section.section--close-up h3 {
    font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: bold;
    text-transform: initial;
    font-size: 18px;
    line-height: 22px; }
  section.section--close-up h4.tag2 {
    margin: 15px 0;
    font-size: 14px;
    line-height: 17px; }
  section.section--close-up p {
    font-size: 14px;
    line-height: 18px;
    color: #000000; }
  @media screen and (max-width: 767px) {
    section.section--close-up h4.tag2 {
      margin-bottom: 4px; }
    section.section--close-up p {
      margin-bottom: 40px; } }

/* _new-home-section-last-news-n-monitoring.scss */
section.section--last-news-n-monitoring {
  position: relative;
  /*border-top: 1px solid $cold_grey;*/
  border-bottom: 1px solid #C3CACD;
  padding: 45px 0 20px; }
  section.section--last-news-n-monitoring .mobile-divisor {
    margin: 45px 0 40px; }
  section.section--last-news-n-monitoring::before {
    content: "";
    position: absolute;
    right: calc(((100% + 30px) / 3) - 15px);
    top: 0;
    bottom: 0;
    border-left: 1px solid #C3CACD;
    display: none; }
  section.section--last-news-n-monitoring .thumbnail.box-supporter {
    background-color: #efefef !important;
    margin-top: -45px; }
    section.section--last-news-n-monitoring .thumbnail.box-supporter .box-story-supporter {
      background: transparent !important;
      padding: 25px 15px 0 !important; }
    section.section--last-news-n-monitoring .thumbnail.box-supporter .caption {
      padding: 15px; }
  @media screen and (min-width: 768px) {
    section.section--last-news-n-monitoring > .row > div:first-of-type {
      padding-right: 30px; }
    section.section--last-news-n-monitoring > .row > div:last-of-type {
      padding-left: 30px; } }
  @media screen and (max-width: 767px) {
    section.section--last-news-n-monitoring {
      padding: 30px 0; }
      section.section--last-news-n-monitoring::before {
        display: none; } }

section.section--last-news {
  position: relative; }
  section.section--last-news .temp-donation-border {
    border-bottom: 1px solid #C3CACD;
    position: absolute;
    top: -45px;
    left: 0;
    right: 0; }
  section.section--last-news .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px; }
    section.section--last-news .heading .title-n-update {
      display: flex;
      flex-wrap: wrap;
      align-items: center; }
      section.section--last-news .heading .title-n-update h2 {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 15px; }
      section.section--last-news .heading .title-n-update small {
        font-size: 12px;
        line-height: 16px;
        color: #4E5A61; }
    section.section--last-news .heading a {
      color: #000000;
      font-weight: bold; }
      section.section--last-news .heading a i {
        margin-left: 8px; }
  section.section--last-news .item > a {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #C3CACD; }
    section.section--last-news .item > a .img-wrapper {
      margin-bottom: 10px; }
    section.section--last-news .item > a .title-wrapper small {
      font-size: 12px;
      line-height: 16px;
      color: #4E5A61;
      margin-right: 10px; }
    section.section--last-news .item > a .title-wrapper .evidence {
      background-color: #FFFF00;
      text-transform: uppercase;
      padding: 2px 5px;
      font-size: 12px; }
    section.section--last-news .item > a .title-wrapper h3 {
      font-size: 18px;
      line-height: 22px;
      font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      margin-top: 5px;
      margin-bottom: 0;
      text-transform: inherit; }
  section.section--last-news .item:not(.first-item) > a .img-wrapper {
    width: 33%;
    margin-right: 15px;
    margin-bottom: 0; }
  section.section--last-news .item:not(.first-item) > a .title-wrapper {
    width: calc(67% - 15px); }
    section.section--last-news .item:not(.first-item) > a .title-wrapper h3 {
      font-size: 16px;
      line-height: 19px; }
  section.section--last-news .item:last-of-type > a {
    border-bottom: none; }
  section.section--last-news .carousel-last-news {
    margin-right: -15px;
    width: calc(100% + 15px); }
    section.section--last-news .carousel-last-news .owl-controls .owl-dots {
      text-align: center; }
  @media screen and (max-width: 767px) {
    section.section--last-news .heading {
      flex-wrap: nowrap;
      align-items: flex-start; }
      section.section--last-news .heading .title-n-update {
        align-items: flex-start;
        flex-direction: column; }
    section.section--last-news .item > a {
      padding-bottom: 15px;
      margin-bottom: 15px;
      border-bottom: none; }
    section.section--last-news .item:not(.first-item) {
      margin-bottom: 10px; } }

section.section--monitoring .heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px; }
  section.section--monitoring .heading .img-n-title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
    section.section--monitoring .heading .img-n-title img {
      margin-top: 2px;
      margin-right: 20px; }
    section.section--monitoring .heading .img-n-title .title-n-subtitle {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column; }
      section.section--monitoring .heading .img-n-title .title-n-subtitle h2 {
        display: inline-block;
        margin-bottom: 0;
        font-size: 25px;
        line-height: 25px; }
      section.section--monitoring .heading .img-n-title .title-n-subtitle small {
        font-size: 12px;
        line-height: 16px; }
  section.section--monitoring .heading a {
    margin-top: 3px;
    color: #000000;
    font-weight: bold; }
    section.section--monitoring .heading a i {
      margin-left: 8px; }
section.section--monitoring article {
  margin-bottom: 30px; }
  section.section--monitoring article h6 {
    font-weight: normal;
    margin-bottom: 5px; }
  section.section--monitoring article h3 {
    font-size: 15px;
    line-height: 18px;
    font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin-bottom: 5px;
    text-transform: inherit; }
  section.section--monitoring article .source {
    font-size: 12px;
    line-height: 14px;
    color: #4E5A61; }
section.section--monitoring .carousel-monitoring {
  margin-right: -15px;
  width: calc(100% + 15px); }
  section.section--monitoring .carousel-monitoring .owl-controls .owl-dots {
    text-align: center; }

/* _new-home-section-stories.scss */
section.section--stories-n-good-news {
  position: relative;
  padding: 45px 0;
  border-bottom: 1px solid #c3cacd;
  margin-bottom: 45px; }
  section.section--stories-n-good-news .mobile-divisor {
    margin: 45px 0 40px; }
  section.section--stories-n-good-news::before {
    content: "";
    position: absolute;
    right: calc(((100% + 30px) / 2) - 15px);
    top: 0;
    bottom: 0;
    border-left: 1px solid #c3cacd; }
  @media screen and (min-width: 768px) {
    section.section--stories-n-good-news > .row > div:first-of-type {
      padding-right: 30px; }
    section.section--stories-n-good-news > .row > div:last-of-type {
      padding-left: 30px; } }
  @media screen and (max-width: 767px) {
    section.section--stories-n-good-news {
      padding: 30px 0; }
      section.section--stories-n-good-news::before {
        display: none; } }

section.section--stories .heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px; }
  section.section--stories .heading h2 {
    display: inline-block;
    margin-bottom: 0; }
  section.section--stories .heading a {
    color: #000000;
    font-weight: bold; }
    section.section--stories .heading a i {
      margin-left: 8px; }
section.section--stories .item > a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px;
  margin-bottom: 10px;
  min-height: 200px; }
  section.section--stories .item > a h3,
  section.section--stories .item > a .read-more {
    color: white;
    z-index: 1; }
  section.section--stories .item > a h3 {
    font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    max-width: 50%;
    text-transform: initial; }
  section.section--stories .item > a .read-more {
    display: inline-block;
    border: 1px solid white;
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: bold; }
  section.section--stories .item > a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-out;
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.75) 100%); }
section.section--stories .carousel-stories {
  margin-right: -15px;
  width: calc(100% + 15px); }
  section.section--stories .carousel-stories .owl-item .item {
    width: 359px; }
    section.section--stories .carousel-stories .owl-item .item > a h3 {
      max-width: 100%; }
  section.section--stories .carousel-stories .owl-controls {
    margin-right: 15px; }
    section.section--stories .carousel-stories .owl-controls .owl-dots {
      text-align: center; }

/* _new-home-section-good-news.scss */
section.section--good-news .heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px; }
  section.section--good-news .heading h2 {
    display: inline-block;
    margin-bottom: 0; }
  section.section--good-news .heading a {
    color: #000000;
    font-weight: bold; }
    section.section--good-news .heading a i {
      margin-left: 8px; }
section.section--good-news .item > a {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px; }
  section.section--good-news .item > a .title-wrapper {
    width: 73%; }
    section.section--good-news .item > a .title-wrapper .evidence {
      background-color: #FFFF00;
      text-transform: uppercase;
      padding: 2px 5px;
      font-size: 12px;
      margin-bottom: 10px; }
    section.section--good-news .item > a .title-wrapper h3 {
      font-size: 18px;
      line-height: 22px;
      font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      margin-bottom: 0;
      text-transform: inherit; }
  section.section--good-news .item > a .img-wrapper {
    width: calc(27% - 20px);
    margin-left: 20px; }
section.section--good-news .item:first-of-type > a .title-wrapper h3 {
  font-size: 20px;
  line-height: 24px; }
section.section--good-news .carousel-good-news {
  margin-right: -15px;
  width: calc(100% + 15px); }
  section.section--good-news .carousel-good-news .owl-item .item > a h3 {
    font-size: 16px;
    line-height: 19px;
    max-width: 100%; }
  section.section--good-news .carousel-good-news .owl-controls {
    margin-right: 15px; }
    section.section--good-news .carousel-good-news .owl-controls .owl-dots {
      text-align: center; }
@media screen and (max-width: 767px) {
  section.section--good-news > .item > a {
    margin-bottom: 35px; }
  section.section--good-news .item > a .title-wrapper {
    width: 65%; }
  section.section--good-news .item > a .img-wrapper {
    width: calc(35% - 20px); } }

/* _new-home-section-report.scss */
section.section--report {
  margin-bottom: 105px; }
  section.section--report .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px; }
    section.section--report .heading h2 {
      display: inline-block;
      margin-bottom: 0; }
    section.section--report .heading a {
      color: #000000;
      font-weight: bold; }
      section.section--report .heading a i {
        margin-left: 8px; }
  section.section--report .items-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px; }
  section.section--report .item {
    width: 25%;
    padding-right: 15px;
    padding-left: 15px; }
    section.section--report .item .content-wrapper {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: space-between;
      min-height: 310px;
      padding: 25px 15px 15px;
      background-color: #f0f1f2; }
      section.section--report .item .content-wrapper h3 {
        font-size: 16px;
        line-height: 19px;
        font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        margin-bottom: 3px;
        text-transform: inherit; }
      section.section--report .item .content-wrapper .top-link {
        display: inline-block;
        font-size: 12px;
        line-height: 14px;
        font-weight: bold;
        color: #4E5A61;
        text-decoration: underline;
        margin-bottom: 13px;
        text-transform: uppercase; }
      section.section--report .item .content-wrapper .body-wrapper .image-wrapper {
        position: relative;
        width: 125px; }
        section.section--report .item .content-wrapper .body-wrapper .image-wrapper img.report-image {
          margin-bottom: -30px;
          background-color: white;
          border: 1px solid #C3CACD;
          border-bottom: 0;
          max-width: 100%;
          padding: 10px; }
        section.section--report .item .content-wrapper .body-wrapper .image-wrapper img.new-report {
          position: absolute;
          left: 0;
          top: 0;
          transform: translate(-50%, -50%);
          width: 48%;
          z-index: 1; }
        section.section--report .item .content-wrapper .body-wrapper .image-wrapper::after {
          content: "";
          position: absolute;
          top: calc(100% + 30px);
          left: 0;
          height: 7px;
          width: 100%;
          background-image: url("/images/book-shadow.png");
          border: 1px solid #C3CACD;
          border-top: 0; }
      section.section--report .item .content-wrapper .body-wrapper .description-wrapper {
        display: none; }
        section.section--report .item .content-wrapper .body-wrapper .description-wrapper .description {
          font-size: 14px;
          line-height: 17px; }
        section.section--report .item .content-wrapper .body-wrapper .description-wrapper .bottom-link {
          display: inline-block;
          font-size: 16px;
          line-height: 19px;
          padding: 5px 15px;
          text-transform: uppercase;
          font-weight: bold;
          background-color: #FFFF00; }
    section.section--report .item.item-first {
      width: 50%; }
      section.section--report .item.item-first .content-wrapper {
        padding-left: 30px; }
        section.section--report .item.item-first .content-wrapper h3 {
          font-size: 20px;
          line-height: 24px;
          margin-bottom: 20px; }
        section.section--report .item.item-first .content-wrapper .top-link {
          display: none; }
        section.section--report .item.item-first .content-wrapper .body-wrapper {
          display: flex;
          flex-wrap: wrap; }
          section.section--report .item.item-first .content-wrapper .body-wrapper .image-wrapper {
            width: 145px;
            margin-right: 35px; }
          section.section--report .item.item-first .content-wrapper .body-wrapper .description-wrapper {
            display: inline-block;
            width: calc(100% - 180px); }
            section.section--report .item.item-first .content-wrapper .body-wrapper .description-wrapper .bottom-link {
              font-size: 18px;
              line-height: 22px; }
  section.section--report .carousel-report {
    margin-right: -15px;
    width: calc(100% + 15px); }
    section.section--report .carousel-report .owl-item .item {
      width: 100%;
      padding: 0; }
      section.section--report .carousel-report .owl-item .item .content-wrapper {
        padding-bottom: 25px;
        height: 100%;
        justify-content: flex-start; }
        section.section--report .carousel-report .owl-item .item .content-wrapper h3 {
          text-align: center;
          font-size: 18px;
          line-height: 22px;
          margin-bottom: 30px; }
        section.section--report .carousel-report .owl-item .item .content-wrapper .top-link {
          display: none; }
        section.section--report .carousel-report .owl-item .item .content-wrapper .body-wrapper .image-wrapper {
          width: 145px;
          margin: 0 auto; }
          section.section--report .carousel-report .owl-item .item .content-wrapper .body-wrapper .image-wrapper img.report-image {
            margin-bottom: 25px; }
          section.section--report .carousel-report .owl-item .item .content-wrapper .body-wrapper .image-wrapper::after {
            top: 100%; }
        section.section--report .carousel-report .owl-item .item .content-wrapper .body-wrapper .description-wrapper {
          display: block;
          text-align: center; }
          section.section--report .carousel-report .owl-item .item .content-wrapper .body-wrapper .description-wrapper .description {
            text-align: left;
            margin-bottom: 45px; }
          section.section--report .carousel-report .owl-item .item .content-wrapper .body-wrapper .description-wrapper .bottom-link {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%); }
    section.section--report .carousel-report .owl-controls {
      margin-right: 15px; }
      section.section--report .carousel-report .owl-controls .owl-dots {
        text-align: center;
        margin-top: 25px; }
  @media screen and (max-width: 767px) {
    section.section--report {
      margin-bottom: 25px; } }

section.section--report-map .container-map-justice {
  position: relative;
  max-width: 1140px;
  margin: 60px auto 90px;
  z-index: 1; }
  section.section--report-map .container-map-justice > h2 {
    margin-bottom: 20px; }
  section.section--report-map .container-map-justice .data-wrapper {
    display: flex;
    width: 67%; }
    section.section--report-map .container-map-justice .data-wrapper .world-rights {
      width: 24%;
      padding: 26px 10px;
      background-color: #edeff0; }
      section.section--report-map .container-map-justice .data-wrapper .world-rights h3 {
        font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 30px; }
      section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px; }
        section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data > div {
          display: flex;
          width: 100%; }
        section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .title {
          font-size: 14px;
          line-height: 17px;
          color: #333;
          margin-bottom: 5px; }
        section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .number {
          font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
          font-size: 34px;
          line-height: 34px;
          margin-right: 8px;
          min-width: 58px;
          text-align: right; }
          section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .number span.numbers-label {
            display: block;
            font-size: 14px;
            line-height: 14px;
            font-weight: 300; }
        section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .text p {
          font-size: 16px;
          line-height: 18px;
          margin-bottom: 0; }
          section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .text p strong {
            text-transform: uppercase; }
        @media screen and (max-width: 767px) {
          section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .text {
            display: flex;
            align-items: center; }
            section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data .text p {
              margin-bottom: 0; } }
    section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container {
      width: 52%;
      height: auto;
      background-color: white; }
      section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox {
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        border-top: 5px solid #FFFF00; }
        section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox h3 {
          font-family: franklin-gothic-urw, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }
        section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox .js-map-btns {
          width: 15%; }
          section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox .js-map-btns .btn {
            background-color: transparent; }
            section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox .js-map-btns .btn i {
              font-size: 20px; }
          @media screen and (max-width: 767px) {
            section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox .js-map-btns {
              width: 25%; } }
        section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox .js-map-justice-description {
          border-top: none;
          font-size: 14px;
          line-height: 17px; }
        section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container .map-justice__infobox .js-map-justice-image img {
          max-width: 100%; }
  @media screen and (max-width: 767px) {
    section.section--report-map .container-map-justice {
      padding: 0 15px;
      margin: 30px auto 40px; }
      section.section--report-map .container-map-justice .data-wrapper {
        width: 100%;
        flex-wrap: wrap; }
        section.section--report-map .container-map-justice .data-wrapper .world-rights {
          width: 100%;
          background-color: transparent;
          padding: 15px 0 30px; }
          section.section--report-map .container-map-justice .data-wrapper .world-rights .numbers-wrapper .number-data {
            margin-bottom: 20px; }
        section.section--report-map .container-map-justice .data-wrapper #map-justice-info-container {
          width: 100%; } }

/* _new-home-section-newsletter-socials.scss */
section.section--newsletter-socials {
  position: relative;
  background-color: #f3f4f5;
  border-top: 1px solid #C3CACD;
  border-bottom: 1px solid #C3CACD;
  padding: 40px 0; }
  section.section--newsletter-socials .newsletter,
  section.section--newsletter-socials .socials {
    padding: 0 15px; }
  section.section--newsletter-socials .newsletter {
    margin-bottom: 25px; }
    section.section--newsletter-socials .newsletter .form-inline .input-group {
      display: flex; }
      section.section--newsletter-socials .newsletter .form-inline .input-group .form-group {
        margin-bottom: 0 !important;
        margin-right: 10px; }
        section.section--newsletter-socials .newsletter .form-inline .input-group .form-group .form-control {
          height: 42px;
          font-size: 16px; }
  section.section--newsletter-socials hr {
    margin: 0; }
  section.section--newsletter-socials .corriere {
    margin-top: 25px;
    padding-right: 15px; }
    section.section--newsletter-socials .corriere a {
      display: flex;
      flex-wrap: nowrap;
      align-items: center; }
      section.section--newsletter-socials .corriere a .icon-link {
        margin-left: 20px; }
  section.section--newsletter-socials .socials a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #4E5A61;
    margin-bottom: 10px; }
    section.section--newsletter-socials .socials a .fa-stack {
      margin-right: 5px; }
    section.section--newsletter-socials .socials a > div {
      color: #000000;
      line-height: 16px; }
      section.section--newsletter-socials .socials a > div strong {
        line-height: inherit; }
    section.section--newsletter-socials .socials a:hover {
      color: #4E5A61; }
  section.section--newsletter-socials::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 15px);
    border-left: 1px solid #C3CACD; }
  @media screen and (max-width: 767px) {
    section.section--newsletter-socials {
      padding: 25px 0; }
      section.section--newsletter-socials .socials a > div {
        display: none; }
      section.section--newsletter-socials::before {
        display: none; } }

/*# sourceMappingURL=new-home.css.map */
