/*
orange colour: #e67e22
dark blue: #254159
light blue: #d0ecf2
light tan: #d9c896
tan: #e0af49
dark tan: #8c7954
green: #b2eab0
*/

/* ----------------------------------------------------------- */
/* BASIC SETUP */
/* ------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color: #555;
    font-family: 'Montserrat', 'Arial', 'sans-serif';
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.meals-showcase.clearfix.bottom:after {
    padding-bottom: 5px;
}

/* ------------------------------------------------------------ */
/* REUSABLE COMPONENTS */
/* ------------------------------------------------------------ */

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* --------------- HEADINGS ------------------ */

h1, h2, h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 0 0 20px 0;
    text-align: center;
    font-size: 240%;
    letter-spacing: 1px;
    word-spacing: 4px;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #b2eab0;
    /* This is under the header text e.g About Me */
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}



/* ----------------- PARAGRAPHS ---------------- */

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;    
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/* ----------------- ICONS ---------------- */

.icon-big {
    font-size: 350%;
    display: block;
    color: #b2eab0;
    margin-bottom: 10px;
}

.icon-contact {
    font-size: 350%;
    color: #b2eab0;
    margin-bottom: 10px;
    display: inline-block;
    width: 30px;
    text-align: center;
    line-height: 80%;
    vertical-align: middle;
    margin-top: -5px;
}


.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #b2eab0;
    font-size: 80%;
    margin-right: 5px;
    line-height: 80%;
    vertical-align: middle;
    margin-top: -5px;
}

.icon-media {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #b2eab0;
    font-size: 90%;
    margin-right: 5px;
    line-height: 80%;
    vertical-align: middle;
    margin-top: -5px;
}

/* ----------------- LINKS ---------------- */

a:link,
a:visited {
    color: #b2eab0;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 2px solid #f4f4f4;
    /* This is when you hover on the nav!!!! */
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #f8f8f8;
    color: #b2eab0;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    background: #f1f1f1;
}
#back-to-top.show {
    opacity: 1;
}

#content {
    height: 2000px;
}

/* ----------------- BUTTONS ---------------- */

.btn:link,
.btn:visited, 
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #b2eab0;
    border: 1px solid #b2eab0;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #d49733;
    color: #d49733;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #b2eab0;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #b2eab0;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #b2eab0;
    color: #fff;
}

/* ------------------------------------------------------------ */
/* HEADER */
/* ------------------------------------------------------------ */

header {
    background-image: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0)), url(./images/livingroomtv.jpg);
    background-size: cover;
    background-position: center;
    /* This was center top */
    height: 70vh;
    background-attachment: fixed;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    height: 150px;
    width: auto;
    float: left;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* ------------------ MAIN NAV ------------------- */

.main-nav {
    float: right;
    list-style: none;
    margin-top: 75px;
}

.main-nav-icon {
    float: right;
    list-style: none;
    margin-top: 75px;
    text-decoration: none;
}

nav {
    background-color: #b2eab0;
}
.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding-bottom: 8px 0;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #b2eab0;
}

/* ------------------------------------------------------------ */
/* Interior */
/* ------------------------------------------------------------ */

.videomain{
    width: 45%;
    float: left;
    margin-left:315px;
}

/* ------------------------------------------------------------ */
/* MEALS */
/* ------------------------------------------------------------ */
.bride-img{ 
    opacity: 0.9;
}

.section-meals {
    padding: 1px;
    
}

.meals-showcase {
    list-style: none;
    width: 100%;
}

.meals-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.meal-photo {
    width: 100%;
    margin: 1.5%;
    overflow: hidden;
    background-color: #fff;
}

.meal-photo img {
    opacity: 0.8;
    width: 90%;
    height: auto;
    transform: scale(1.15);
    transition: transform 0.5s, opacity 0.5s;

}

.meal-photo img:hover {
    opacity: 1;
/*    transform: scale(1.03);*/
}

.caption-style-2{
    list-style-type: none;
    margin: 0px;
	padding: 0px;	
}

.caption-style-2 li{
    float: left;
    width: 25%;
    padding: 0px;
    position: relative;
    overflow: hidden;
}

.caption-style-2 li:hover .caption{
	opacity: 1;
	transform: translateY(-100px);
	-webkit-transform:translateY(-100px);
	-moz-transform:translateY(-100px);
	-ms-transform:translateY(-100px);
	-o-transform:translateY(-100px);
}


.caption-style-2 .caption{
	cursor: pointer;
	position: absolute;
	opacity: 0;
	top: 350px;
    /* This was 490px ^ */
	-webkit-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	transition:all 0.5s ease-in-out;
}
.caption-style-2 .blur{
	background-color: rgba(137, 137, 137, 0.8);
	height: 50px;
	width: 460px;
	z-index: 5;
	position: absolute;
}

.caption-style-2 .caption-text{
	z-index: 10;
	color: #000;
	position: absolute;
	width: 400px;
	height: 300px;
	text-align: center !important;
	top:12px;
    padding-left: 60px;
}

a.credit {
    color: #fff;
    font-size: 14px;
}

.fa-camera {
    color: #fff !important;
    margin-right: 5px;
    font-size: 15px;
}

/* ------------------------------------------------------------ */
/* HOW IT WORKS SECTION */
/* ------------------------------------------------------------ */

.section-steps {
    background-color: #f4f4f4;
    overflow: auto;
}

.steps-box:first-child {
    text-align: right;
    padding-right: 3%;
    margin-top: 30px;
}

.steps-box:last-child {
    padding-left: 3%;
    margin-top: 70px;
}

.app-screen {
    width: 40%;
}

.works-step {
    margin-bottom: 50px;
}

.works-step:last-of-type {
    margin-bottom: 80px;
}

.works-step div {
    color: #8c7954;
    border: 2px solid #b2eab0;
    display: inline-block;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    padding: 5px;
    float: left;
    font-size: 150%;
    margin-right: 25px;
}

.btn-app:link,
.btn-app:visited {
    border: 0;
}

.btn-app img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

/* ------------------------------------------------------------ */
/* CITIES */
/* ------------------------------------------------------------ */

.box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.city-feature {
    margin-bottom: 5px;
}

/* ------------------------------------------------------------ */
/* TESTIMONIALS */
/* ------------------------------------------------------------ */

.section-testimonials {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/exteriortesti.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    background-position: 50% 30%;
    height: 700px;
}

/*
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/DT-212.jpg);
    background-position: 50% 30% ;
*/

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}

blockquote:before {
    content: "\201C";
    font-size: 500%;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
}

cite {
    font-size: 90%;
    margin-top: 25px;
    display: block;
}

cite img {
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
 transition: 0.6 ease;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
  color: white;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: #b2eab0;
  opacity: 0.5;
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #959595;
}

/* Add an italic font style to all quotes */
q {font-style: italic; }

/* Add a blue color to the author */
.author {color: #c1c1c1;}

/* ------------------------------------------------------------ */
/* SIGN UP */
/* ------------------------------------------------------------ */

.section-plans {
    background-color: #f4f4f4;
}

.plan-box {
    background-color: #fff;
    border-radius: 5px;
    width: 90%;
    margin-left: 5%;
    box-shadow: 0 2px 2px #e3e3e3;
}

.plan-box div {
    padding: 15px;
    border-bottom: 1px solid #efefef;
}

.plan-box div:first-child {
    background-color: #fcfcfc;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.plan-box div:last-child {
    text-align: center;
    border: 0;
}

.plan-price {
    font-size: 300%;
    margin-bottom: 10px;
    font-weight: 100;
    color: #b2eab0;
}

.plan-price span {
    font-size: 30%;
    font-weight: 300;
}

.plan-price-month {
    font-size: 80%;
}

.plan-price-month-caption {
    font-size: 65%;
}

.plan-box ul {
    list-style: none;
}

.plan-box ul li {
    padding: 5px 0;
}

.center{
    text-align: center;
}
/* ------------------------------------------------------------ */
/* FORM */
/* ------------------------------------------------------------ */Lightning1
.contact-form {
    width: 60%;
    margin: auto;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {outline: none;}

.difficult {
    margin-top: 10px;
}

.ion-ios-telephone{
    font-size: 55px;
    margin-top: 5px;
    margin-bottom: 18px;
}

/* ------------------------------------------------------------ */
/* FOOTER */
/* ------------------------------------------------------------ */
.footer-link {
    color: #ddd !important;
    border-bottom: none !important;
}

.footer-link:hover {
    color: #888 !important;
}

footer {
    background-color: #333;
    padding: 50px;
    font-size: 80%;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: left;
    font-size: 160%;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.fa-facebook-square:hover {
  color: #3b5998; 
}

.fa-instagram:hover {
  color: #CC3366;  
}

.fa-envelope:hover {
  color: #0072c6;  
}

.fab {
    font-size: 28px;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}

footer p {
    color: #888;
    text-align: center;
    margin-top: 20px;
}


/* ------------------------------------------------------------ */
/* IMG CAPTIONS */
/* ------------------------------------------------------------ */

/* ANIMATIONS */
/* ------------------------------------------------------------ */

@media only screen and (max-width: 888px) {
  .main-nav {
    display: none;
  }
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 55px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #b2eab0;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #b2eab0;
  font-size: 28px;
  font-weight: bold;
  padding: 20px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: #ffffff;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.button {
  background-color: #b2eab0;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
  border: 2px solid #b2eab0;
}

.button:hover {
  background-color: white; /* Green */
  color: #b2eab0;
border-color: #b2eab0;

/*

@media only screen and (min-width: 888px) { 
    #myTopnav {
        display: none;
    }
}*/
