/* 
Theme Name: Alessio Camiolo
Description: Template Alessio Camiolo
Version: 1.0
Author: Sebastiano Cullemi
Author URI: https://www.cromopatico.it/
*/

@font-face {
  font-family: Noto;
  src: url(font/NotoSerifDisplay-Regular.ttf);
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: NotoSans;
  src: url(font/NotoSans-Bold.ttf);
  font-weight: 600;
  font-display:  swap;
}
@font-face {
  font-family: NotoSans;
  src: url(font/NotoSans-Regular.ttf);
  font-weight: 400;
  ont-display:  swap;

}


body{
    margin:0;
    padding: 0;
    font-family: Noto;
    font-weight: 400;
    color: #2a2a2a;
}

b, strong{
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    font-family:NotoSans ;
}
.left{
    text-align: left;
}
.right{
    text-align: right;
}
.center{
    text-align: center;
}
p{
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 26px;
}




/* HEADER */
header{
    background: #2A2A2A;
    transition: 0.2s all ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}
header.Home{
  background-color: transparent !important;
}
.marchio {
  height: 110px;
  transition: 0.2s all ease-in-out;
  width: auto;
}
.vh{
    display: table;
    width: 100%;
}
.mh{
    display: table-cell;
    width: 100%;
    height: 130px;
    vertical-align: middle;
    transition: 0.2s all ease-in-out;
}
.cta {
  font-family: notosans;
  font-weight: 400;
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 30px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  border: 1px solid #fff;
  transition: 0.2s all ease-in-out;
}
.socialh img {
  height: 18px;
  opacity: 1;
  transition: 0.2s all ease-in-out;
}
.socialh:hover img {
  opacity: 0.7;
}
.socialh {
  margin-left: 10px;
}


.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.arrow.bounce {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  text-align: center;
}
.arrow.bounce img {
  height: 20px;
}
.textscroll {
  color: #fff;
  font-family: notosans;
  text-transform: uppercase;
  font-size: 10px;
  margin: 0px 0px 2px 0px;
  letter-spacing: 0.5px;
}
.lingue, .contsocial {
  float: left;
  width: 50%;
}
.wpml-ls-legacy-list-horizontal a {
  padding: 0px 5px !important;
  margin: 0px 5px !important;
}
.wpml-ls-legacy-list-horizontal {
  border: 0px solid transparent !important;
  padding: 0px !important;
}
.wpml-ls-legacy-list-horizontal .wpml-ls-flag {
  display: table !important;
  height: 13px !important;
  width: auto !important;
  margin: 2px 0px !important;
}
.otgs-development-site-front-end {
  display: none;
}
/* END HEADER */






header.shrink{
    background: #2A2A2A !important;
}

header.shrink .marchio {
  height: 80px;
  width: auto;
}
header.shrink .mh{
    height: 100px;
}





/* MENU */
header ul{
    padding: 0px;
    list-style: none;
    margin: 0px;
}
header ul li{
    display: inline;
}
header ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0px 7px;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 0px 5px;
}
/* END MENU */









/* RESPONSIVE MENU */
#navresponsive {
    width: 35px;
    height: 23px;
    position: fixed;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    top: 37px;
    right: 20px;
    z-index: 4;
    display: none;
}
#navresponsive span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#navresponsive span:nth-child(1) {
  top: 0px;
}
#navresponsive span:nth-child(2) {
  top: 10px;
}
#navresponsive span:nth-child(3) {
  top: 20px;
}
#navresponsive.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  color: #fff
}
#navresponsive.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
  color: #fff
}
#navresponsive.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  color: #fff
}
.contrespmenu{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2A2A2A;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    color: #fff;
    display: none;
}
.contrespmenu.open{
    opacity: 1;
    z-index: 3
}
.Home #navresponsive span{
    background: #000
}
#navresponsive.open span{
    background: #fff
}
.marchio.marchiomenumenu {
    color: #fff;
    font-size: 30px !important;
    display: inline-block;
}
.contrespmenu .menu {
    list-style: none;
    border-top: 1px solid #fff;
    margin: 20px 0px;
    padding: 20px 0px;
    border-bottom: 1px solid #fff;
}
.contrespmenu .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    text-transform: uppercase;
}
.titleworkresp {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-family: notosans;
  line-height: 21px;
}
.titpromenu {
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff
}
.contrespmenu .imgwork {
    width: 30%;
    float: left;
}
.contrespmenu .imgwork img {
    display: inline;
    width: 100%;
    height: auto;
}
.contrespmenu .listwork li {
    margin-bottom: 0px;
}
.contrespmenu .listwork {
    margin: 0px 0px 20px;
    padding: 0px 0px 20px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    width: 100%;
    list-style: none;
}
.linksocialresp .socialh img {
  height: 27px;
}
.linksocialresp a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 8px;
}
.vcontresp{
    display: table;
    width: 100%;
}
.vcontresp{
    height: 100vh;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}
.metaprogmenu {
    float: left;
    width: 65%;
    margin-left: 5%;
    color: #fff;
}
.contmetaprogmenu {
    vertical-align: middle;
    display: table-cell;
    height: 70px;
}
.gotoprojectresp {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 2px;
}
.arrowrighttopresp {
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    transform: rotate(-45deg);
}
.contmetaprogmenu a {
  text-decoration: none;
}
/* RESPONSIVE MENU */











/* CONTENT */
.slides{
    height: 900px;
    width: 100%;
    list-style: none;
    margin: 0px;
    padding: 0px;
    position: relative;
}
.slides li{
    height: 900px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}
.overlayslide{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.testoslide {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-family: notosans;
  font-weight: 400;
  margin: 0px;
}
.vs{
    display: table;
    position: relative;
    z-index: 2;
    width: 100%;
}
.ms{
    display: table-cell;
    width: 100%;
    height: 900px;
    vertical-align: middle;
}
.titoloslide {
  font-size: 50px;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 15px;
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 60px;
}
.due {
  padding: 150px 0px;
 background: rgb(94,50,20);
background: linear-gradient(174deg, rgba(94,50,20,1) 0%, rgba(162,113,81,1) 100%); 
  color: #fff;
  position: relative;
  overflow: hidden;
}
.subhome {
  margin-top: 0px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0px;
  font-family: notosans;
}
.titlehome {
  margin-top: 5px;
  text-transform: uppercase;
  line-height: 34px;
}
.imgdue {
  background-image: url(https://www.alessiocamiolo.it/wp-content/themes/alessiocamiolo/images/foto.webp);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  background-size: cover;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
  top: 150px;
  background-position: center;
}
.lineimgdue {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 45%;
  top: 130px;
  border: 1px solid #ffffff4a;
}
.button {
  text-transform: uppercase;
  font-family: notosans;
  text-decoration: none;
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  padding: 10px 25px;
  border-radius: 40px;
  margin-top: 20px;
  display: inline-block;
  font-size: 14px;
}
.buttonw {
  text-transform: uppercase;
  font-family: notosans;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 25px;
  border-radius: 40px;
  margin-top: 20px;
  display: inline-block;
  font-size: 14px;
  transition: 0.2s all ease-in-out;
}
.buttonw:hover {
  color: #a27151;
  border: 1px solid #fff;
  background-color: #fff;
}
.tre {
  padding: 150px 0px;
 background: rgb(217,217,217);
background: linear-gradient(28deg, rgba(217,217,217,1) 0%, rgba(217,217,217,0) 100%); 
}
.title {
  margin: 0px;
  font-size: 50px;
}
.subtitle {
  font-size: 18px;
  text-align: center;
  width: 50%;
  margin: 20px auto 60px;
  font-family: notosans;
  font-weight: 400;
  opacity: 0.7;
}
.contstorie {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.imagestoria {
  background-size: cover;
  height: 250px;
}
.contenutocard {
  padding: 20px;
}
.catstoriah {
  margin: 0px;
  font-family: notosans;
  color: #5e3f2a;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  opacity: 0.7;
}
.titlestoriah {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
}
.excerptsth {
  height: 65px;
}
.titlestoriah{
  height: 52px;
}
.contstorie {
  margin-bottom: 30px;
}
.excerptsth p {
  font-size: 13px;
  font-family: notosans;
  text-align: center;
  line-height: 21px;
  margin-bottom: 0px;
}
.vaicard {
  text-align: center;
  display: inline-block;
  width: 100%;
  background: #5e3214;
  color: #fff !important;
  padding: 11px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.2s all ease-in-out;
}
.contstorie:hover .vaicard {
  background: #a27151;
}

.button.big {
  margin: 60px auto 0px;
  display: table;
  font-size: 20px;
  font-family: noto;
  letter-spacing: 1px;
  padding: 15px 40px;
  transition: 0.2s all ease-in-out;
}
.button.big:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.contenutochi .button.big:hover {
  color: #5e3214;
  border: 1px solid #fff;
  background-color: #fff;
}

.quattro{
  padding: 150px 0px;
 background: rgb(217,217,217);
background: linear-gradient(0deg, rgba(217,217,217,1) 0%, rgba(217,217,217,0) 100%); 
}
.testorece {
  text-align: center;
  font-size: 20px;
  width: 60%;
  line-height: 25px;
  margin: 0 auto 40px;
}
.titquattro.title {
  text-align: center;
  margin-bottom: 40px;
}
.testorece b {
  font-family: notosan;
}
.audio {
  text-align: center;
  margin-bottom: 10px;
}
audio {
  background: #1c1c1c;
  width: 50%;
  padding: 10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.titleaudio {
  margin: 0 auto;
  font-size: 14px;
  font-family: notosan;
  background: #666;
  color: #fff;
  padding: 5px 10px 3px;
  width: 50%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.texttestimonial p {
  font-size: 14px;
  width: 80%;
  margin: 40px auto 0px;
}
.meta {
  display: table;
  float: left;
}
.metauno {
  width: 60%;
  padding: 0px 50px 0px 140px !important;
}
.metadue {
  width: 40%;
}
.contmeta {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  height: 600px;
  padding: 50px;
}
.iconahome {
  display: table;
  text-align: center;
  position: relative;
  margin: 0 auto;
  bottom: -20px;
  background: #fff;
  padding: 10px;
}
.ipr{
  height: 58px;
  padding-top: 17px;
}
.igu, .ifa{
  height: 58px;
}
.icoho a {
  color: #5e3214;
  border: 1px solid #5e3214;
  text-decoration: none;
  padding: 20px 30px 15px;
  display: table;
  margin: 0px auto;
  font-size: 18px;
  text-transform: uppercase;
  font-family: notosan;
  letter-spacing: 0.5px;
  width: 300px;
  text-align: center;
}
.titcinque {
  margin-top: 0px;
  font-size: 29px;
  text-transform: uppercase;
  line-height: 33px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.texthome p {
  line-height: 31px;
  font-size: 17px;
}
.texthome p strong {
  font-family: notosans;
  font-weight: 600;
}
.texthome a {
  text-align: left !important;
  width: auto !important;
  margin: 40px 0px 0px !important;
}


.texthomedue p {
  line-height: 28px;
  font-size: 15px;
}
.texthomedue p strong {
  font-family: notosans;
  font-weight: 600;
}
.texthomedue a {
  text-align: left !important;
  width: auto !important;
  margin: 40px 0px 0px !important;
}
.cinque{
  display: inline-block;
  width: 100%;
}
.chiuno{
  margin-top: 120px;
}
.fotoleft {
  background-image: url('https://www.alessiocamiolo.it/wp-content/themes/alessiocamiolo/images/about1.webp');
  height: 720px;
  background-size: cover;
  float: left;
  width: 28%;
  position: relative;
  margin-top: 40px;
  margin-left: 2%;
}
.fotoright {
  background-image: url('https://www.alessiocamiolo.it/wp-content/themes/alessiocamiolo/images/about2.webp');
  height: 720px;
  background-size: cover;
  float: left;
  width: 28%;
  position: relative;
  margin-top: 40px;
}
.contenutocentrale{
  background-color: #5e3214;
  display: table;
  width: 40%;
  float: left;
}
.cocontenutocentrale {
  display: table-cell;
  width: 100%;
  height: 800px;
  vertical-align: middle;
  color: #fff;
  padding: 0px 60px;
  text-align: center;
}
.contenutochi {
  display: table;
  width: 100%;
  background: #5e3214;
}
.overlayfoto1 {
  position: absolute;
  right: -20px;
  top: 20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.overlayfoto2 {
  position: absolute;
  left: -20px;
  top: 20px;
  bottom: -20px;
  right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.contenutochi .button.big {
  color: #fff;
  border: 1px solid #fff;
}
.cocontenutocentrale h1 {
  font-family: noto;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
  text-transform: uppercase;
}
.subtitlepage {
  margin-top: 0px;
  font-size: 14px;
  margin-bottom: 50px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cocontenutocentrale p {
  font-family: notosans;
  font-size: 15px;
  line-height: 25px;
}
.imgcontatti {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.overlaycont{
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); 
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
}
.vc {
  display: table;
  width: 100%;
}
.mc {
  display: table-cell;
  height: 70vh;
  vertical-align: middle;
  color: #fff;
  text-align: center;
}
.mc h1 {
  margin-top: 0px;
  font-size: 40px;
  margin-bottom: 0px;
}
.testocont {
  margin-bottom: 100px;
  margin-top: 10px;
  font-size: 20px;
}
.boxcontatti {
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
  padding: 40px;
  width: 70%;
  margin: 0 auto;
  position: relative;
  top: -150px;
}
.testobox {
  margin-top: 0px;
  font-family: notosans;
  font-size: 15px;
  line-height: 21px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  font-weight: 600;
}
.field{
  display: inline-block;
  width: 100%;
}
.label {
  font-size: 14px;
  margin-bottom: 0px;
}
.halfuno {
  float: left;
  width: 48%;
  margin-right: 2%;
}
.halfdue {
  float: left;
  width: 50%;
}
.halftre {
  float: left;
  width: 100%;
}
.field input, .field textarea {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  border-radius: 3px;
  border: 1px solid #ddd;
  font-family: notosans;
}
.field textarea {
  height: 200px;
}
.field select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: transparent;
}
.fieldtree .wpcf7-form-control-wrap input {
  width: auto !important;
}
.wpcf7-list-item-label {
  font-family: notosans;
  font-size: 14px;
}
.field .wpcf7-list-item {
  margin: 5px 15px 5px 0px;
}
.quart input {
  background: #5e3214;
  color: #fff;
  text-transform: uppercase;
  font-family: noto;
  font-size: 21px;
  display: inline-block;
  width: 100%;
  cursor: pointer;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7-not-valid-tip {
  font-size: 12px !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  background: #ffb900;
  padding: 20px;
  text-transform: uppercase;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: #46b450;
  padding: 20px;
  text-transform: uppercase;
  text-align: center;
}
.field.fielddue {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 20px;
}
.labeldue {
  margin: 0px;
  font-family: notosans;
  font-size: 12px;
}
.labeldue a {
  color: #000;
  font-weight: 600;
}
.labeldue .wpcf7-list-item {
  margin: 0px;
}
.cinquedue{
  position: relative;
  top: -100px;
}
.quattro .slick-dots {
  bottom: -20px;
}
.quattro .slick-dots li button {
  border: 2px solid #000;
}
.quattro .slick-active button {
  background: #000 !important;
}
.recaudiue{
  margin-bottom: 50px;
}
.rectesto {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.rectesto p {
  font-size: 16px;
  line-height: 27px;
}
.toppage {
  margin-top: 130px;
  padding-top: 100px;
}
.imageprice {
  background-position: center;
  background-size: cover;
  display: table;
  width: 100%;
  height: 540px;
  position: relative;
}
.contimgpri {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
}
.titlepri {
  text-align: center;
  color: #fff;
  font-size: 40px;
  margin: 0px;
}
.testoprice {
  text-align: center;
  color: #000;
  font-family: notosans;
  background: rgba(255, 255, 255, 0.7);
  margin: 20px 30px 0px;
  padding: 10px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
.sezioneprice {
  margin: 50px 0px;
}
.sezionepricedue p {
  text-align: center;
  width: 80%;
  margin: 0 auto 30px;
  font-size: 21px;
  line-height: 34px;
}
.sezionepricedue{
  display: inline-block;
  width: 100%;
  margin-bottom: 100px;
}
.minititle {
  margin-top: 80px;
  margin-bottom: 0px;
  text-align: center;
  font-size: 40px;
}
.sezioneprice .button.big {
  margin: 30px auto 0px;
}
.liststories {
  display: inline-block;
  width: 100%;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.required {
  color: #d01919;
  font-family: notosans;
  font-weight: 600;
  font-size: 12px;
}
/* END CONTENT */








/* LANDING */
.slidelanding {
  margin-top: 0px;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: table;
  width: 100%;
  position: relative;
}
.contenutoslide {
  position: relative;
  color: #fff;
  z-index: 1;
  display: table-cell;
  height: 900px;
  vertical-align: middle;
  text-align: center;
}
.overlaylanding{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.titleland {
  width: 50%;
  margin: 0 auto;
  font-size: 44px;
  line-height: 54px;
  font-family: noto;
  font-weight: 400;
}
.sottotisli {
  width: 50%;
  margin: 20px auto 0px;
  font-weight: 400;
  font-size: 16px;
  border-top: 1px solid #fff;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contenutotesto {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.contenutotesto p {
  font-size: 18px;
  line-height: 32px;
}
.duelandi {
  padding: 100px 0px;
}
.buttonlan {
  margin: 60px auto 0px;
  display: table;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 15px 40px;
  transition: 0.2s all ease-in-out;
  text-transform: uppercase;
  font-family: notosans;
  text-decoration: none;
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: 40px;
}
.buttonlan:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.headerland .col-sm-3, .headerland .col-sm-6 {
  display: none;
}
.headerland .colmarchio{
  display: block !important;
  width: 100% !important;
  text-align: center; 
}
.headerland header{
  background: transparent;
}
.footerland .hiddenland{
  display: none;
}
.footerland .design {
  margin-top: 0px !important;
  border-top: none !important;
  padding-top: 0px !important;
}
.headerland #navresponsive{
  display: none;
}
/* END LANDING */









/* STORIES */
.contstories {
  margin-top: 130px;
  padding: 150px 0px;
  background: rgb(217,217,217);
  background: linear-gradient(28deg, rgba(217,217,217,1) 0%, rgba(217,217,217,0) 100%); 
  display: table;
  width: 100%;
}
.contstorie > a {
  color: #000;
  text-decoration: none;
}
.singlestories{
  margin-top: 130px;
  padding: 150px 0px;
  background: rgb(217,217,217);
  background: linear-gradient(28deg, rgba(217,217,217,1) 0%, rgba(217,217,217,0) 100%); 
  display: table;
  width: 100%;
}
.singlestories .title {
  margin: 0px 0px 10px 0px;
  font-size: 36px;
}
.testostoria a {
  font-family: notosans;
  font-weight: 400;
  color: #000;
}
.testostoria p {
  font-size: 15px;
  text-align: center;
}
.images {
  height: auto;
  width: 100%;
  opacity: 1;
  transition: 0.2s all ease-in-out;
}
.images:hover {
  opacity: 0.7;
}
.singleimage {
  float: left;
  width: 100%;
  padding: 0px;
  margin-bottom: 10px;
}


.nextprev {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0px;
}
.thumbprogsing {
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: inline-block;
}
.contnextprev {
    display: inline-block;
    width: 100%;
}
.contprogprev {
    float: left;
    width: 50%;
    text-align: center;
    padding-right: 20px;
    min-height: 100px;
}
.contprognext {
    float: left;
    width: 50%;
    padding-left: 20px;
    min-height: 100px;
    text-align: center;
}
.contnextprev a {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: notosans;
}
.contnextprev span {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  font-family: noto;
  width: 100%;
  margin: 0 auto 20px;
  font-weight: 600;
}
.listcat {
  padding: 20px 0px;
  list-style: none;
  margin: 0px 0px 50px;
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.listcat li {
  display: inline;
}
.listcat li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-family: notosans;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px 14px;
  transition: 0.2s all ease-in-out;
}
.listcat li a:hover {
  color: #a27151;
}
.title span {
  color: #a27151;
  font-family: noto;
}
/* END STORIES */






/* FOOTER */
footer{
  background: #2A2A2A;
  padding: 50px 0px;
  color: #fff;
}
.conttopfoo {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
.conttopfoo img {
  float: left;
}
.conttopfoo p {
  float: left;
  margin: 0px;
  font-size: 12px;
  text-transform: uppercase;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid;
  color: #000;
}
.conttopfoo p a {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}
footer p, footer a {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}
.footertwo p {
  margin: 0px;
  font-family: notosans;
  line-height: 20px;
  font-size: 13px;
}
.textfoocin {
  font-family: notosans;
  line-height: 20px;
  font-size: 13px;
}
.cocontfoo{
    margin-top: 30px;
}
.contfoo {
  font-size: 14px;
  margin-bottom: 12px;
  margin-top: 30px;
}
.contfoo span {
  font-family: notosans;
  font-weight: 600;
}
.contfoo a {
  text-decoration: none;
}
footer ul{
    padding: 0px 0px 0px 30px;
    list-style: none;
    margin: 10px 0px 0px;
}
footer ul li{
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
footer ul li a {
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
}
.titfoocin {
  margin-top: 0px;
  font-weight: 600;
  margin-top: 0px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}
.design {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.design p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 12px;
  font-family: notosans;
}
.design p a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 12px;
}
.credits {
  margin-left: 0px !important;
  text-decoration: underline !important;
}
/* END FOOTER */






/* VARIE */
#back-to-top {
    background: #5e3214;
    bottom: 20px;
    color: #fff;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 15px;
    text-align: center;
    z-index: 9999;
    opacity: 0.7;
    padding: 2px 0px 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
}
/* Style the buttons that are used to open and close the accordion panel */
 .tabss {
  margin-top: 0px;
}
.titleblock {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 60px;
  text-transform: uppercase;
}
.accordion {
  background-color: #5e3214;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 16px;
}
 .tabss .active, .accordion:hover {
  background-color: #a27151;
}
.panell {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 15px;
  background: #f1f1f1;
}
 .tabss .accordion:after {
  content: '+';
  font-size: 13px;
  color: #fff;
  float: right;
  margin-left: 5px;
}
 .tabss .active:after {
  content: "-";
}
.panel p {
  line-height: 28px;
  font-size: 16px;
}
.lastblocco{
  margin-bottom: 100px;
}
/* END VARIE */






/* RESPONSIVE */

/* SMALL DESKTOP */
@media only screen and (min-width : 1025px) and (max-width : 1198px) {

}
/* IPAD */
@media (min-width: 768px) and (max-width: 1024px) {

}

/* IPAD LANDSCAPE */
@media (min-width: 768px) and (max-width: 1080px) and (orientation:landscape) {
.metauno {
  padding: 0px 50px 0px 70px !important;
}
.fotoleft, .fotoright {
  height: 450px;
  width: 25%;
}
.contenutocentrale {
  width: 46%;
}
.cocontenutocentrale p {
  font-size: 14px;
  line-height: 23px;
}
.contenutocard {
  height: 245px;
}
.contstorie {
  margin-bottom: 30px;
}
}

/* IPAD PORTRAIT */
@media (min-width: 768px) and (max-width: 1080px) and (orientation:portrait){
#navresponsive{
    display: block;
}
.contrespmenu{
    display: block;
    z-index: -1;
}
.due {
  text-align: center;
  padding-bottom: 0px;
}
.imgdue {
  position: relative;
  height: 360px;
  width: 90%;
  display: table;
  margin: 70px auto 0px;
  top: 0;
}
.lineimgdue {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 90%;
  height: 320px;
  border: 1px solid #ffffff4a;
  top: inherit;
}
.liststories li:last-child {
  display: none;
}
.subtitle {
  width: 70%;
}
.testorece {
  width: 90%;
}
.titleaudio, audio{
  width: 80%;
}
.metauno {
  width: 100%;
  padding: 80px !important;
}
.contmeta {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  height: auto;
  padding: 0px;
  text-align: center;
}
.contmeta .button.big {
  display: inline-block;
}
.metadue {
  width: 100%;
  padding-bottom: 100px;
}
.icoho {
  width: 50%;
  float: left;
}
.titfoocin {
  margin-top: 30px;
}
.contenutocentrale {
  background-color: #5e3214;
  display: inline-block;
  width: 100%;
  float: none;
}
.cocontenutocentrale {
  height: auto;
  padding: 100px 90px;
}
.fotoleft {
  height: 500px;
  background-size: cover;
  float: left;
  width: 45%;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 40px;
}
.fotoright {
  height: 500px;
  background-size: cover;
  float: left;
  width: 45%;
  margin-left: 4%;
  margin-right: 2%;
}
.boxcontatti {
  width: 90%;
}
.contpriceco {
  margin: 0px auto 40px;
  width: 70%;
}
.titpri{
  text-align: center;
}
.contstorie {
  margin-bottom: 30px;
}
.contenutoslide {
  height: 80vh;
}
.footerland, .footerland .right {
  text-align: center;
}
}

/* SMARTPHONE */
@media only screen and (min-width: 320px) and (max-width: 767px) {
#navresponsive{
    display: block;
}
.contrespmenu {
  display: block;
  z-index: -1;
}
.ms, .slides li, .slides{
  height: 100vh;
}
.due {
  text-align: center;
  padding-bottom: 0px;
  padding-top: 80px;
}
.imgdue {
  position: relative;
  height: 260px;
  width: 80%;
  display: table;
  margin: 70px auto 0px;
  top: 0;
}
.lineimgdue {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 90%;
  height: 220px;
  border: 1px solid #ffffff4a;
  top: inherit;
}
.titlehome {
  font-size: 25px;
  margin-bottom: 40px;
  line-height: 28px;
}
.texthome p {
  line-height: 26px;
  font-size: 16px;
}
.subtitle {
  width: 100%;
  margin: 20px auto 60px;
}
.contstorie {
  margin-bottom: 30px;
}
.testorece {
  font-size: 18px;
  width: 100%;
}
.titleaudio, audio{
  width: 100%;
}
.cinque{
  background: #fff;
}
.metauno {
  width: 100%;
  padding: 20px !important;
}
.contmeta {
  height: auto;
  padding: 20px;
  text-align: center;
}
.titcinque {
  font-size: 23px;
  line-height: 29px;
}
.metadue {
  width: 100%;
}
.texthomedue .button {
  margin: 0 auto;
  display: inline-block;
}
footer ul {
  padding: 0px 0px 0px 0px;
  list-style: none;
  margin: 40px 0px 40px;
}
.design .right {
  text-align: left;
}
.design p a {
  margin-left: 0px;
  text-decoration: none;
  font-size: 12px;
  margin-right: 10px;
}
.contenutocentrale {
  display: inline-block;
  width: 100%;
  float: none;
}
.cocontenutocentrale {
  width: 100%;
  height: auto;
  padding: 70px 40px;
}
.cocontenutocentrale h1 {
  margin-bottom: 10px;
  font-size: 30px;
}
.fotoleft {
  height: 430px;
  width: 90%;
  position: relative;
  background-position: center;
  margin-bottom: 40px;
}
.titquattro.title {
  font-size: 40px;
  line-height: 46px;
}
.quattro {
  padding: 90px 0px;
}
.rectesto {
  width: 100%;
}
.rectesto p {
  font-size: 15px;
  line-height: 23px;
}
.boxcontatti {
  width: 100%;
  padding: 30px;
}
.contstories {
  padding: 70px 0px;
}
.title {
  font-size: 40px;
}
.listcat li a {
  font-size: 13px;
  margin: 0px 9px;
}
.contprognext {
  float: none;
  width: 100%;
  padding-left: 0px;
}
.contpriceco {
  margin-bottom: 40px;
}
.imageprice {
  height: 480px;
}
.minititle {
  font-size: 34px;
  line-height: 36px;
}
.sezionepricedue p {
  width: 90%;
  font-size: 19px;
  line-height: 28px;
}
.contenutoslide {
  height: 80vh;
}
.footerland, .footerland .right {
  text-align: center;
}
.titleland {
  width: 90%;
  margin: 0 auto;
  font-size: 31px;
  line-height: 37px;
}
.sottotisli {
  width: 90%;
  font-size: 14px;
}
.duelandi {
  padding: 50px 0px;
}
.contenutotesto {
  width: 90%;
}
.contenutotesto p {
  font-size: 16px;
  line-height: 28px;
}
.excerptsth {
  height: auto
}
.titlestoriah{
  height: auto;
}
}







