/*Default.css*/

/*    MAIN CSS          */

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

/*Header texts*/
.companylogo {
    height: 25%;
    width: 25%;
    margin-top: 15px;
    margin-left: 15px;
}
h1{
	text-transform: uppercase;
	font-weight: 300;
	font-size: 300%;
	word-spacing: 3px;
	letter-spacing: 0.75px;
	margin-bottom: 2%;
}

h2{
	text-transform: uppercase;
	font-weight: 300;
	font-size: 180%;
	margin-bottom: 2%;
    margin-top: 2%;
}

h2 a {
    text-decoration: none;
    color: black;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #48AB76;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
	text-transform: uppercase;
	font-weight: 300;
	word-spacing: 3px;
	margin: 10px;
}
h4 {
    text-transform: uppercase;
    font-weight: 200;
    word-spacing: 2px;
    margin: 4px;    
}

/*Header, containing background image, fills page*/
header{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(img/nature_bg.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

/*order Header class, containing background image, fills div (NOT PAGE)*/
.sideHeader1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(img/nature_bg.jpg);
    background-size: cover;
    background-position: 80% 80%;
    background-attachment: fixed;
    position: relative;
}


/*General text and HTML tag styling*/
p {
	line-height: 145%;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}
a {
    text-decoration: none;
}
* {
	font-family: Helvetica, Times;
	margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.sideTitle{
    padding: 0px;
    margin-top: 0px;
    display: block;
    text-align: center;
    overflow: hidden;
}


section {
    padding: 30px;
    display: block;
    text-align: center;
    overflow: hidden;
}
section > .row {
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
}
.generalText {
    text-transform: uppercase;
    font-weight: 200;
    word-spacing: 3px;  
}
.sideTitle
{
    color: white;
}
blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}
blockquote:before {
    content: "\201C";
    font-size: 400%;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
}
cite {
    font-size: 90%;
    margin-top: 25px;
    display: block;
}
cite img {
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/*Rows and cols*/
.box {
    padding: 1px;
    margin: 0;
}
.row {
    margin: auto;
}
.oneoffour p {
    line-height: 145%;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}
.col {
    display: block;
    float:left;
    margin: 1% 0 1% auto;
}
.oneoffour {
    width: 25%; 
}
.oneofthree {
    width: 33.33%; 
}
/*News feed*/
.odd {
    
}
.even {
    
}
.newsitem{
    padding: 10px;
}
.newsitem a:visited, .newsitem a:link {
    color: black;
    transition: font-size 0.2s;
    font-size: 100%;
}

.newsitem a:active, .newsitem a:hover {
    color: black;
    font-size: 105%;
}

p#newsdescription {
    font-style: italic;
}
p#newsdescription:after {
    display: block;
    height: 2px;
    background-color: #e4e819;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 10px;
}

/*Navigation Bar*/
.navbar {
	float: right;
	list-style: none;
	margin-top: 2%;
}
.navbar li {
	display: inline-block;
	margin: 5px 15px 5px 15px;
	text-transform: uppercase;
}
.navbar li a:visited,
.navbar li a:link {
	text-decoration: none;
	color: white;
	font-size: 150%;
	padding-bottom: 8px;
	padding-top: 8px;
	transition: border-bottom 0.3s, border-top 0.3s;
	border-bottom: 2px solid transparent;
}
.navbar li a:active,
.navbar li a:hover {
	border-bottom: 2px solid rgba(72, 171, 77, 1);
}

/*Home page text (main)*/
.title-page-text {
    position: absolute;
    width: 65%;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*Employment Input Box*/
input[type=text], input[type=email], input[type=tel]  {
  width: 65%;
  padding: 20px;
  font-size: 120%;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
}

input[type=submit], input[type=file]  {
  margin: 15px;
  padding: 20px;
  font-size: 100%;
  border-radius: 20px;
  background-color: rgba(72, 171, 77, 0.2);
}

textarea {
  width: 65%;
  padding: 20px;
  font-size: 120%;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
}

select  {
  width: 15%;
  padding: 20px;
  font-size: 120%;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
}


/*Home page button*/
.btn:link, .btn:visited {
	padding: 10px 30px;
	text-decoration: none;
	font-weight: 300;
	border-radius: 200px;
    color: #000;
    background-color: rgba(72, 171, 77, 0.5);
	transition: background-color 0.2s, border 0.3s, color 0.4s;
}
.btn:hover,
.btn:active {
    background-color: rgba(72, 171, 77, 1);
}

/*Meal section - 8 Pictures on main page of food items*/
.home-photos {
	margin-top: 20px;
	padding: 0;
}
.home-photos-list {
	list-style: none;
	width: 100%;
}
.home-photos-list li {
	display:block;
	float:left;
	width: 25%;
}
.home-photo {
	width: 100%;
	margin: 0;
	overflow: hidden;
	background-color: #000;
}
.home-photo img {
	width: 100%;
	height: auto;
	opacity: 0.7;
    transform: scale(1.15);
    transition: transform 0.5s, opacity 0.5s;
}
.home-photo img:hover {
    opacity: 1;
    transform: scale(1.03);
}

/*Contact us main page*/
.highlight-features{
    margin-bottom: 10px;
}
.contact-message {
    margin-bottom: 5px;
}
/*Featured restaurants section*/

/*Customer Review section*/
.customer-reviews {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/m1.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

/*My account div box*/
.myAccount {
    background-color: white;
    position: absolute;
    text-align: center;
    width: 50%;
    height: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid gray;
    padding: 15px;
}

.icon-disclaimer, .icon-disclaimer a {
    text-decoration: none;
    font-size: 75%;
    color: gray;
    position: bottom;
}
/*Employment List*/
.employment-list {
    float: center;
    list-style: none;
    margin-top: 2%;
}
.employment-list li {
    display: block;
    margin: 5px 15px 5px 15px;
    text-transform: uppercase;
}
.employment-list-box ul{
    position: center;
}

.money {
    color: green;
    font-weight: bold;
}
/*


   ---- MEDIA QUERIES FOR RESPONSIVE DESIGN ----


*/


@media screen and (max-width: 1000px)
{
    .companylogo {
        height: 25%;
        width: 25%;
        margin-top: 5px;
        margin-left: 5px;
    }


    .oneoffour {
        width: 50%; 
    }
    .navbar li a:visited,
    .navbar li a:link {
        text-decoration: none;
        color: white;
        font-size: 150%;
        padding-bottom: 8px;
        padding-top: 8px;
        transition: border-bottom 0.3s, border-top 0.3s;
        border-bottom: 2px solid transparent;
    }
    .navbar li a:active,
    .navbar li a:hover {
        border-bottom: 2px solid rgba(72, 171, 77, 1);
    }
    section.sideTitle{
        margin-top: 2%;
        display: block;
        text-align: center;
        overflow: hidden;
    }

    .icon-disclaimer, .icon-disclaimer a {
    text-decoration: none;
    font-size: 25%;
    color: gray;
    position: bottom;
}

}

@media screen and (max-width: 750px)
{
    .companylogo {
        height: 35%;
        width: 35%;
        margin-top: 5px;
        margin-left: 5px;
    }
    h1{
        text-transform: uppercase;
        font-weight: 300;
        font-size: 250%;
        word-spacing: 3px;
        letter-spacing: 0.75px;
        margin-bottom: 2%;
    }
    .oneoffour {
        width: 100%; 
    }
    .home-photos-list li {
        display:block;
        float:left;
        width: 50%;
    }
    .oneofthree {
        width: 100%;
    }
    section {
        padding: 10px;
        display: block;
        text-align: center;
        overflow: hidden;
    }
    p {
        line-height: 145%;
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
    .navbar li {
        display: block;
        margin: 15px 15px 15px 15px;
        text-transform: uppercase;
    }
    .navbar li a:visited,
    .navbar li a:link {
        text-decoration: none;
        color: white;
        font-size: 150%;
        padding-bottom: 8px;
        padding-top: 8px;
        transition: border-bottom 0.3s, border-top 0.3s;
        border-bottom: 2px solid transparent;
    }
    .navbar li a:active,
    .navbar li a:hover {
        border-bottom: 2px solid rgba(72, 171, 77, 1);
    }
    h2{
        text-transform: uppercase;
        font-weight: 300;
        font-size: 140%;
        margin-bottom: 2%;
    }
    .newsitem a:visited, .newsitem a:link {
        color: black;
        font-size: 95%;
    }

    .btn:link, .btn:visited {
        padding: 5px 20px;
        text-decoration: none;
        font-weight: 300;
        border-radius: 100px;
        color: #000;
        background-color: rgba(72, 171, 77, 0.5);
        transition: background-color 0.2s, border 0.3s, color 0.4s;
    }
    section.sideTitle{
        margin-top: 5%;
        display: block;
        text-align: center;
        overflow: hidden;
    }

    .icon-disclaimer, .icon-disclaimer a {
    text-decoration: none;
    font-size: 25%;
    color: gray;
    position: bottom;
    }


    .title-page-text {
    position: absolute;
    width: 90%;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }


}

@media screen and (max-width: 568px)
{
    .companylogo {
        height: 50%;
        width: 50%;
        margin-top: 5px;
        margin-left: 5px;
    }
    .navbar {
        float: right;
        list-style: none;
        margin-top: 2%;
    }
    .navbar li {
        display: block;
        margin: 15px 15px 15px 15px;
        text-transform: uppercase;
    }
    .navbar li a:visited,
    .navbar li a:link {
        text-decoration: none;
        color: white;
        font-size: 90%;
        padding-bottom: 8px;
        padding-top: 8px;
        transition: border-bottom 0.3s, border-top 0.3s;
        border-bottom: 2px solid transparent;
    }
    .navbar li a:active,
    .navbar li a:hover {
        border-bottom: 2px solid rgba(72, 171, 77, 1);
    }    
    h1{
        text-transform: uppercase;
        font-weight: 300;
        font-size: 200%;
        word-spacing: 3px;
        letter-spacing: 0.75px;
        margin-bottom: 2%;
    }
    section.sideTitle{
        margin-top: 12%;
        display: block;
        text-align: center;
        overflow: hidden;
    }

    .icon-disclaimer, .icon-disclaimer a {
    text-decoration: none;
    font-size: 25%;
    color: gray;
    position: bottom;
    }

    input[type=text], input[type=email], input[type=tel]  {
      width: 85%;
      padding: 20px;
      font-size: 120%;
      margin: 8px 0;
      display: inline-block;
      border: 1px solid #ccc;
      border-radius: 20px;
      box-sizing: border-box;
    }

    input[type=submit], input[type=file]  {
      margin: 2%;
      padding: 2%;
      font-size: 100%;
      border-radius: 20px;
      background-color: rgba(72, 171, 77, 0.2);
    }

    textarea {
      width: 65%;
      padding: 20px;
      font-size: 120%;
      margin: 8px 0;
      display: inline-block;
      border: 1px solid #ccc;
      border-radius: 20px;
      box-sizing: border-box;
    }

    select  {
      width: 50%;
      padding: 20px;
      font-size: 120%;
      margin: 8px 0;
      display: inline-block;
      border: 1px solid #ccc;
      border-radius: 20px;
      box-sizing: border-box;
    }

    
}

@media screen and (max-width: 350px)
{
    .navbar li a:visited,
    .navbar li a:link {
        text-decoration: none;
        color: white;
        font-size: 75%;
        padding-bottom: 8px;
        padding-top: 8px;
        transition: border-bottom 0.3s, border-top 0.3s;
        border-bottom: 2px solid transparent;
    }
}

@media screen and (max-height: 500px)
{
    .companylogo {
        height: 25%;
        width: 25%;
        margin-top: 5px;
        margin-left: 5px;
    }
}