/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  color: #212121;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #cb1518;
  text-decoration: none;
}

.salvatore a {
    color: #cb1518;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.scroll {
    display: inline-block;
    font-size: 1.3em;
    height: 100px;
    margin-top: 20px;
    position: relative;
}

.scroll::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
	-ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Safari */
}
.scroll::after {
    content: "";
    height: 40px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 40px;
}

.scroll.black::after {
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
}

.btn {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 40px;
    margin: 20px auto 0;
    max-width: 170px;
    padding: 5px 10px;
    text-shadow: 1px 2px 2px #444;
    text-transform: uppercase;
}

h1 span {
    font-size: 70%;
    text-transform: none;
}

.text-m {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  color: white;}
  
.col4 {
    float: left;
    width: 25%;
}

.col4 > a {
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    color: #444;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
}

.text-m h3 {
    margin-bottom: 70px;
    text-transform: uppercase;
}

.btn.spe {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: #ddd;
    line-height: 30px;
    max-width: 100%;
    width: 260px;
	cursor: pointer;
	letter-spacing: 2px;
}

.list-aw {
    color: #444;
    list-style: inside none square;
	margin-left: 30px;}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  color: #444;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
	display: block;
	max-height: 70px;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 74px;
  }
  .cd-header #cd-logo {
    margin: 4px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 992px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    font-size: 0.813em;
	letter-spacing: 2px;
  }
  .no-touch .cd-main-nav a:hover {
    color: #CB1518;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 70%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  color: white;
}

.cd-fixed-bg.intro {
    background-image: url("../img/artedellapizza-59-rs1400.jpg");
}

.cd-fixed-bg.cd-bg-1 {
    background-image: url("../img/artedellapizza-49-rs1400.jpg");
}
.cd-fixed-bg.cd-bg-2 {
    background-image: url("../img/artedellapizza-57-rs1400.jpg");
}
.cd-fixed-bg.cd-bg-3 {
    background-image: url("../img/artedellapizza-72-rs1400.jpg");
}
.cd-fixed-bg.cd-bg-4 {
	    background-image: url("../img/artedellapizza-46-rs1400.jpg");
}

.specialita .cd-fixed-bg.intro {background-image: url("../img/specialita-45m.jpg");}
.specialita .cd-fixed-bg.cd-bg-1 {background-image: url("../img/panuozzo-70.jpg");}
.specialita .cd-fixed-bg.cd-bg-2 {background-image: url("../img/mallone-62.jpg");}
.specialita .cd-fixed-bg.cd-bg-3 {background-image: url("../img/salsiccia-51.jpg");}
.specialita .cd-fixed-bg.cd-bg-4 {background-image: url("../img/pollo-53.jpg");}

.salvatore .cd-main-content {
    margin-top: 70px;
}

.col2.left, .col2.right {
    float: left;
    width: 50%;
}

.col2.left > img {
    height: 100%;
    max-width: 100%;
    min-height: 780px;
    visibility: hidden;
    width: 100%;
}

.col2.left {background: #fff url("../img/salvatore-63a.jpg") no-repeat scroll center center / cover ;}
.col2.left.premi {background: #fff url("../img/premi-eccellenze-italiane.jpg") no-repeat scroll center center / cover ;}

.col2.right {
    padding: 50px 70px;
	font-family: 'Cookie', cursive;
    font-size: 28px;
    line-height: 30px;
}

.col2.right p {
    margin: 1em;
}

@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
	font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;}
}

@media only screen and (min-width: 1170px) {
	.cd-fixed-bg {background-attachment: fixed;}
}

.cd-scrolling-bg.last {min-height: auto;}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
  font-family: 'Cookie', cursive;
}

.cd-scrolling-bg.cd-color-1 {
    background-color: #fff;
    color: #3d3536;
}

.cd-scrolling-bg.cd-color-2 {
  background-color: #99a478;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 5em 0;
    font-size: 28px;
    font-size: 1.8em;
    line-height: 2;
    font-weight: 400;}
}

.sign {
    color: #CB1518;
    font-style: italic;
    text-align: right;}

.col2.left.map {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

/*footer*/
.footer-basic-centered{
	background-color: #999;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	padding: 45px;
	clear: both;
}

.footer-basic-centered .footer-company-motto{
	color:  #8d9093;
	font-size: 24px;
	margin: 0;
}

.footer-basic-centered .footer-company-name{
	color:  #212121;
	font-size: 14px;
	margin: 0;
}

.footer-basic-centered .footer-links{
	list-style: none;
	line-height: 20px;
	color:  #212121;
	padding: 35px 0 23px;
	margin: 0;
}

.footer-basic-centered .footer-links a{
	display:inline-block;
	text-decoration: none;
	color: inherit;
}

@media (max-width: 600px) {

	.footer-basic-centered{padding: 35px;}

	.footer-basic-centered .footer-company-motto{font-size: 18px;}

	.footer-basic-centered .footer-company-name{font-size: 12px;}

	.footer-basic-centered .footer-links{font-size: 14px; padding: 25px 0 20px;}

	.footer-basic-centered .footer-links a{line-height: 1.8;}
}

@media (max-width: 1050px) {
	.col4 {
	float: none;
	width: 100%;}
	.col2.left, .col2.right {
    float: none;
    width: 100%;}
}

@media (max-width: 1100px) {
	.col2.left, .col2.right {
    float: none;
    width: 100%;}
}
/*go to top*/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(203, 21, 24, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index:9999;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #CB1518;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

.form-control {
    background-color: #f6f6f6;
    background-image: none;
    border: 2px solid #f6f6f6;
    border-radius: 0;
    color: #373737;
    display: block;
    font-size: 14px;
    line-height: 1.42857;
    padding: 15px 18px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    font-family: 'Roboto', sans-serif;
	letter-spacing: 2px;
}

.form-control::-moz-placeholder {
    color: #b8b8b8;
    opacity: 1;
}

*::-moz-selection {
    background: #000000 none repeat scroll 0 0;
    color: #ffffff;
}

.form-control:invalid {
    box-shadow: none;
}
.form-group {
    margin-bottom: 12px;
}
.mbr-header__text {
	font-family: 'Roboto', sans-serif;
	letter-spacing: 2px;
}

.btn-contact {
    background-color: #CB1518;
    border-color: #888;
    color: #ffffff;
	cursor: pointer;
    float: right;
    font-size: 16px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 2px;
}
.cd-fixed-bg-contatti {
    background-image: url("../img/contattahead-65.jpg");
	background-attachment: fixed;
    min-height: 400px;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.cd-fixed-bg-contatti h1, .cd-fixed-bg-contatti h2 {
    bottom: auto;
    color: white;
    font-size: 1.875rem;
    left: 50%;
    max-width: 1170px;
    position: absolute;
    right: auto;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%); /* IE 9 */
    -webkit-transform: translateX(-50%) translateY(-50%); /* Safari */
    width: 90%;
}

.cd-main-nav .active {
    color: #CB1518;
}

@media only screen and (max-width: 559px) {
	h1 span {display: none;}
}

@media only screen and (max-width: 1023px) {
.cd-container {padding-right: 70px;}
}

@media only screen and (max-width: 767px) {
	.cd-header #cd-logo img {
		max-height: 40px;}
}

@media only screen and (max-width: 1023px) {
.salvatore .cd-main-content {margin-top: 0;}

.salvatore .col2.right {
    font-size: 22px;
    line-height: 26px;
    padding: 50px 10px;}
}

.social {margin-top: 30px;}
.social img {
    margin: 0 7px;
    vertical-align: middle;
}

.cd-container h2 {
    color: #cb1518;
    font-size: 36px;
    text-align: center;}

@media only screen and (max-width: 600px) {
	.cd-container h2 {font-size: 20px;}
}

@media only screen and (max-width: 1024px) {
	  .cd-scrolling-bg{
	  min-height: auto;
	  height: auto;
	  padding: 4em 0 0;}
}

/* enneit the fork */
@media only screen and (min-width: 992px)
{

li#thefork {
    background: green;
}
a#thefork { color:white;
}
}

a#thefork {
	color:white;
	background:green;
}

