@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
padding: 0px;
margin: 0px;
font-family: Roboto, sans-serif;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


h1 {
    font-family: Roboto-thin, sans-serif !important;
}

h2 {
    font-family: Roboto-thin, sans-serif !important;
}

h3 {
    font-family: Roboto-thin, sans-serif !important;
}

h4 {
    font-family: Roboto-thin, sans-serif !important;
}
h5 {
    font-family: Roboto-thin, sans-serif !important;
}
h6 {
    font-family: Roboto-thin, sans-serif !important;
}

p {
    font-family: Roboto, sans-serif !important;
}

.splash {
	min-height: 60vh;/*original 75*/
	background-image: url("http://www.nateerickson.com/cooking2/recipeImages/croppedChicken.jpg");
	background-repeat: no-repeat;
    background-size:100% auto;
	background-position: center center; 
	position: relative;
	display: flex; 
    justify-content: center;
    align-items: center;
    background: #404040;
	
}

.jumbotron {
  background: url(recipeImages/croppedChicken.jpg) no-repeat center center;
  background-size: cover;
  color: white;
  height: 400px;
  margin-bottom: -10px;

}
.header {
	/*background: white;*/
	height: 120px;

}

.green-box{
    background-color: green;
}

.red-box{
    background-color: red;
}
/* this is from w3 schools
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}
/* this is end of w3 schools stuff */

select.icon-menu option {
background-repeat:no-repeat;
background-position:bottom left;
padding-left:30px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.desc {
  padding: 15px;
  text-align: center;
}

/* Style the search box inside the navigation bar */
.nav input[type=text] {
  float: right;
  padding: 3px;
  border: none;
  margin-top: 3px;
  margin-right: 2px;
  font-size: 17px;
}

#searchform {
    background-color: #fff;
  width: 250px;
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
      border: 2px solid lightgray;
  border-radius: 15px; 
  margin-top: 5px;
}

#query {
    all: unset;
  font: 16px system-ui;
  color: #f7c90a;
  height: 100%;
  width: 100%;
  padding: 6px 10px;  
}
::placeholder {
  color: gray;
  opacity: 0.7; 
}
/*was #searchbutton  */        
#searchbutton {
      all: unset;
  cursor: pointer;
  width: 44px;
  height: 44px;
  
}

#searchsvg{
      color: #474747;/* #f7c90a;*/
  fill: currentColor;
  width: 45px;
  height: 45px;
  padding: 10px;
}

#logo {
	margin: 30px auto 18px 50px;
	width: 310px;
}



#serves {

}

#heroText {
     margin: auto;
     display: block;
 /* justify-content: center;
  align-items: center;*/
}

#porkchop {
    /*width: 90px;*/
margin-bottom: 20px;
 border-radius: 25px; 
}

#porkchop2 {
margin-top: 20px;
}

#logo3 {
    float: left;
    /*margin: 35px auto 10px; */
	/*margin: 35px auto 14px 80px; turned off 9-28*/ 
	margin-top: 48px;/*was 35px*/
	margin-left: 80px;
	margin-bottom: 18px;
 /*   margin: 5px, 18px, 50px, 10px;*/
 /*margin: 5px auto 18px 50px;*/
	width: 335px; /*was 275*/
}

#logo2 {
    float: left;
	margin: 30px auto 18px 50px; 
 /*   margin: 5px, 18px, 50px, 10px;*/
 /*margin: 5px auto 18px 50px;*/
	width: 310px;
}

#user {
    float: right; 
    margin-right: 40px;
    margin-top: 20px;
}

#user2 {
   /* float: right; */
    margin-right: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#userScreenName {
    margin-top: 10px;
    height: 50px;
}

#username {
    float: right;
    margin-right: 10px;
    margin-top: 23px;
}

#commentDate {
    margin-top: 23px;
    float: right;
}

#comment1 {
    margin-top: 3px;
    padding-bottom: 11px;
    margin-bottom: 11px;
}

#comment2 {
    margin-top: 1px;
    padding-bottom: 0px;
    margin-bottom: -5px;
}

#comment3 {
    margin-top: 6px;
    padding-bottom: 7px;
    margin-bottom: 7px;
}

#comment4 {
    margin-top: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

#avatar2 {

    width: 40px;
}

#avatar3 {

    width: 110px;
}

#avatar4 {

    width: 45px;
    margin-bottom: 4px;
    margin-top: 5px;
}

#avatar5 {

    width: 56px;
    margin-bottom: 8px;
    margin-top: 5px;
}

#adPic {
    align-items: center;
    margin-top: 3px;
    width: 280px;
    padding-bottom: 11px;
    margin-bottom: 11px;
   /* border-radius: 10px;*/
}

.iframe {
    margin-bottom: 15px;
}

.vertical-center {
vertical-align: center;
}

.bg {
	/*background-color:Gainsboro;*/
	
}

.redbox {
    background-color: red;
    color: #fff;
    padding: 40px 80px;
}
.greenbox {
    background-color: green;
    color: #fff;
    padding: 40px 80px;
}
.bluebox {
    background-color: blue;
    color: #fff;
    padding: 40px 80px;
}


#formbg {
  background-color: #e5e5e5;
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  color: #4f4f4f;
  border-radius: 10px;
  margin-bottom: 20px;

}

#formbg2 {
  background-color: #e5e5e5;
/*  margin-top: 5px; */
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  color: #4f4f4f;
    border-radius: 10px;
    margin-bottom: 20px;
  /*  margin-right: 10px;
    margin-left: 10px;*/
}

#formbg3 {
  background-color: #e5e5e5;
/*  margin-top: 5px; */
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  color: #4f4f4f;
    border-radius: 10px;
    margin-bottom: 20px;
  /*  margin-right: 10px;
    margin-left: 10px;*/
}

#submit_btn {
	  background: #ffad33;
    color: white;
  margin-bottom: 25px;

}

#favorite_btn {
	  background: #e5e5e5;
    color: #4f4f4f;
  margin-top: 7px;
  width: 100%;
  border-radius: 10px;

}

#favorite_btn7 {
	  background: #e5e5e5;
    color: #4f4f4f;
  margin-top: 7px;
  width: 100%;
  border-radius: 10px;

}

#photo {
    border-radius: 15px;
}

#submit_btn4 {
	  background: #ffad33;
    color: white;
  margin-bottom: 35px;

}

#submit_btn8 {
	  background: #e5e5e5;
    color: #4f4f4f;
  margin-top: 7px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;

}

#submit_btn3 {
	  background: #ffad33;
    color: white;
  margin-bottom: 25px;
  margin-top: 1px;

}

#submit_btn2 {

    color: black;
  margin-bottom: 25px;

}

#submit_btn6 {
	  background: #e5e5e5;
    color: 383838;
  margin-bottom: 12px;
  width: 100%;
    border-radius: 10px;
    height: 50px;
}

#button4 {
   /* background-color:  #e5e5e5; 
    color: #4f5353;
    border: none;
    text-decoration: none; */
    margin-bottom: 12px;
} 

#ketoshepherdspie {
    width: 580px;
    margin-bottom: 18px;
    border-radius: 4%;
}

#ksPrint {
    width: 340px;
    margin-bottom: 18px;
    border-radius: 4%;
}

#instructions {
    margin-top: 18px;
}

/*.search {
  background-color: #fff;
  width: 300px;
  height: 44px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#searchInput{
  all: unset;
  font: 16px system-ui;
  color: #fff;
  height: 100%;
  width: 100%;
  padding: 6px 10px;
}

::placeholder {
  color: #fff;
  opacity: 0.7; 
}



svg {
  color: #fff;
  fill: currentColor;
  width: 24px;
  height: 24px;
  padding: 10px;
}*/

.button5 {
  background-color: #04AA6D;
border: 2px solid #04AA6D;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.myform_bg-secondary1 {
text-align: right; 
 /*width:50%;*/
}
.myform_bg-secondary2 {
/*text-align: right; 
 /*width:50%;*/
 margin-top: 1px;
}

.submit_btn {
  background: #a5a5a5;
    color: white;
  margin-bottom: 25px;

}

.button4 {
    background-color:  #e5e5e5; 
color: #707575;
    border: none;
    text-decoration: none;

} 

.button6 {
    background-color:  #e5e5e5; 
color: #707575;
    border: none;
    text-decoration: none;
    text-align: right;
} 

.btn {
 /* background: #ffad33;*/
    color: dark-gray;
  margin-bottom: 18px;
}

#adBtn {
    border-style: none;
    background-color: transparent;
   z-index: 2;
}

.adBtn {
    border-style: none;
    background-color: transparent;
   z-index: 2;
   margin-bottom: 10px;
}


video::-webkit-media-controls-volume-slider {
display:none;
}

.btn2 {

    color: black;
  margin-bottom: 18px;
}

.btn3 {
background-color: #e5e5e5;
    color: #4f4f4f;
  margin-top: 15px;
}

.btn4 {
  background: #e5e5e5;
    color: white;
  margin-bottom: 18px;
  width: 100%;
}

#main_btn2 {
	  background: #ffad33;
    color: white;
  margin-bottom: 20px;
  width: 50%;

}

.nav {
	 height: 50px;

 margin-bottom: 0px;
 font-family: arial, Serif;
}

.nav li {
float: left;
list-style-type: none;
width: 25%;
line-height: 50px;
text-align: center;

 }

 .nav a {
 text-decoration: none;
 display: block;
 color: DimGray;
 font-size: 16px;
 }

 .nav a:hover {
 
 color: orange;
 text-decoration:none;
 }

.nav2 {
	 height: 50px;

 margin-bottom: 0px;
 font-family: arial, Serif;
}

.nav2 li {
float: left;
list-style-type: none;
width: 25%;
line-height: 50px;
text-align: center;

 }

 .nav2 a {
 text-decoration: none;
 display: block;
 color: DimGray;
 font-size: 16px;
 }

 .nav2 a:hover {
 
 color: orange;
 text-decoration:none;
 }

 #submenu {
	width:940px;
 }

 #submenu ul {
	 background:Gainsboro;
	 margin-bottom: 20px;
 }

#submenu li {
	list-style-type:none;
	float: left;
	text-align:center;
width:20%;


	line-height:45px;
}

#submenu a {

}

.blueberry {
width: 100%;
height: auto;
/*padding-left: -20px;*/

}

.img-responsive {
  display: block;
  height: auto;
  width: 100%;
}

#homeabout {
	width: 100%;
	height: auto;
}

#servicesPics {
	width: 100%;
	height: auto;
}

#servicesPic {
	margin-top: 20px;
}

#description {
	margin-top: 20px;
	background-color: white;
	padding-bottom: 40px;
}

#imm{
    width: 100%;
    height: auto;

}

#arrows {
    margin-top: 45px;
}

.container {

	margin: 0 auto 0 auto;
	padding-right: -15px;
	padding-left: -15px;


}
.container2 {

	margin: 0 auto 0 auto;
	padding-right: -15px;
	padding-left: -15px;


}


#about {
	height: 251px;
}

#drawings {
	height:430px;
}

#wide {
	width: 940px;
	background:white;
	border-bottom: 10px solid Gainsboro;
	padding-left: 45px;
	margin: 0 auto 0 auto;
}




#left1 {
	/*margin-right:15px;*/
}

ul.slides {
margin-top:0px;
width: 100%;
height: auto;
padding-left: -20px;


}

h1 {
	font-family: Arial, Serif;
	color: bold;
	font-style: bold, italic;
	font-size:2em;
	margin-bottom:7px;
	color: #5f5f5f;
}

h3 {
	font-family: Calibri, Arial, Serif;
	font-size:.9em;
	font-size:italic;
}

.classWithPad { 
margin-top: 7px;
margin-bottom: 7px;

}




h1#dimension {
	padding-top: 40px;
	color: #5f5f5f;
}

h3#contact {
	padding-bottom: 220px;
}



 div.box1,
 div.box2,
 div.box3 {
	padding: 5px 3px 2px 0;
	 float: left;
	 margin-bottom: .007em;
 }

  div.box4,
 div.box5,
 div.box6 {
	padding: 2px 3px 5px 0;
	 float: left;
	 margin-bottom: .007em;
 }

 div.box1 img {


 }

div.box1 a:hover {
	 background:orange;
 }

div.box2 a:hover {
	 background:orange;
 }

  div.box3 a:hover {
	 background:orange;
 }

  div.box4 a:hover {
	 background:orange;
 }

div.box5 a:hover {
	 background:orange;
 }

  div.box6 a:hover {
	 background:orange;
 }


  div.box3 {

 }
 
  .footer3 {

	height: 100px;
	background: white;
	border-top: 1px solid gray;
	clear: both;
	font-family: Arial, Serif;
	font-size: 13px;
	color: #5f5f5f;
	bottom: 0px;
left: 0px;
right: 0px;
margin-bottom: 0px;


}

.footer3 li {
float: left;
list-style-type: none;
width: 33%;
line-height: 100px;
text-align: center;
 }
 
 .footer2 {

	height: 55px;
	background: white;
	border-top: 1px solid gray;
	clear: both;
	font-family: Arial, Serif;
	font-size: 13px;
	color: #5f5f5f;
	bottom: 0px;
left: 0px;
right: 0px;
margin-bottom: 0px;
position: fixed;

}

.footer2 li {
float: left;
list-style-type: none;
width: 33%;
line-height: 65px;
text-align: center;
 }

.footer {

	height: 70px;
	background: white;
	border-top: 1px solid gray;
	clear: both;
	font-family: Arial, Serif;
	font-size: 13px;
	color: #5f5f5f;
}

.footer li {
float: left;
list-style-type: none;
width: 33%;
line-height: 100px;
text-align: center;
 }

 /* Media Queries */
 
 @media (max-width: 1000px) {
	#description {
	margin-top: 20px;
	background-color: white;
	margin-bottom: 250px;
	padding-bottom: 25px;
	padding-top: 18px;
}

#logo3 {
    float: left;
	margin: 25px auto 18px 50px;
	width: 280px;
}

#logo2 {
    float: left;
	margin: 25px auto 18px 50px;
	width: 280px;
}

#logo2print {
    float: left;
	margin: 25px auto 18px 50px;
	width: 200px;
}

user {
    float: right;
        margin-right: 40px;
    margin-top: 20px;
}

#avatar2 {
    
    width: 32px;

}

.footer {

	height: 100px;
	background: white;
	border-top: 1px solid gray;
	clear: both;
	font-family: Arial, Serif;
	font-size: 13px;
	color: #5f5f5f;
}

.footer li {
float: left;
list-style-type: none;
width: 33%;
line-height: 100px;
text-align: center;
 }
	
}
 
 


 /*  .footer2 li {
float: left;
list-style-type: none;
width:100%;
text-align: center;
line-height:40px;
 }

  .footer2 {
	  height:130px;

  }*/
@media (max-width: 950px) {
    
    .header {
	background: white;
	height: 80px;

}
    #logo {
	margin: 10px auto 18px 50px;
	width: 220px;
}

    #avatar4 {

    width: 38px;
    margin-bottom: 2px;
    margin-top: 3px;
}
}

@media (max-width: 770px) {
    
    #avatar4 {

    width: 30px;
    margin-bottom: 2px;
    margin-top: 3px;
}
 /* .header li a {
    display: block;
    float: left;
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .header ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .header li {
    display: block;
    float: left;
    line-height: 38px;
    margin: 0;
    text-align: center;
    width: 50%;
  }
  .pull-right {
    margin: 30px auto;
    width: 100%;
  }
    .pull-right img {
    margin: 30px auto;
    width: 100%;
  }
}

.logo {
  height: 45px;
  padding-right: 35px;
}
*/
}
@media (max-width: 736px) {

.header {
	background: white;
	height: 80px;

}

#logo2 {
    float: left;
    margin-top: 18px;
	margin-left: 15px;
	margin-right: 20px;
	width: 250px;
}

#logo3 {
    float: left;
    margin-top: 18px;
	margin-left: 15px;
	margin-right: 20px;
	width: 250px;
}

#user {
     float: right;
       margin-right: 20px;
    margin-top: 19px;
    margin-bottom: 10px; 
}

#avatar2 {
   
    width: 29px;

}

#avatar4 {

    width: 30px;
    margin-bottom: 2px;
    margin-top: 3px;
}

#avatar5 {

    width: 44px;
    margin-bottom: 8px;
    margin-top: 5px;
}

#username {
    float: right;
    margin-right: 10px;
    margin-top: 17px;
}

#commentDate {
    margin-top: 17px;
    float: right;
}

.nav {

 color: DimGray;
 margin-bottom: 0px;
 font-family: arial, Serif;
 height:200px;
}


 .nav li {
    width: 100%;
/*	float: left;*/
	list-style-type: none;
	text-align: center;
  }
  
  #searchform {
    background-color: #fff;
  /*width: 250px;*/
  height: 36px;
  width: 100%;
  	text-align: center;
/*  display: flex;
  flex-direction: row;*/
  align-items: center;
      border: 2px solid lightgray;
  border-radius: 15px; 
  margin-top: 5px;
  margin-bottom: 15px;
}
  .footer {

	height: 100px;
	background: white;
	border-top: 1px solid gray;
	clear: both;
	font-family: Arial, Serif;
	font-size: 13px;
	color: #5f5f5f;
}

.footer li {
float: left;
list-style-type: none;
width: 33%;
line-height: 80px;
text-align: center;
 }
 
    .footer2 li {
float: left;
list-style-type: none;
width:100%;
text-align: center;
line-height:40px;
 }

  .footer2 {
	  height:80px;

  }

}

 @media (max-width: 479px) {
	 
.header {
	background: white;
	height: 60px;

}

#commentsCol {
    height: 480px;
}
#logo2 {
    float: left;
    margin-top: 17px;
	margin-left: 15px;
	margin-right: 20px;
	width: 235px;
}

#user {
    float: right; 
    margin-right: 20px;
    margin-top: 16px;
}

#avatar2 {

    width: 29px;

}

#avatar4 {

    width: 30px;
    margin-bottom: 2px;
    margin-top: 3px;
}

#avatar5 {

    width: 44px;
    margin-bottom: 8px;
    margin-top: 5px;
}

#username {
    float: right;
    margin-right: 10px;
    margin-top: 17px;
}

#commentDate {
    margin-top: 17px;
    float: right;
}

.nav {

 color: DimGray;
 margin-bottom: 0px;
 font-family: arial, Serif;
 height:200px;
}


 .nav li {
    width: 100%;
	float: left;
	list-style-type: none;
	text-align: center;
  }

  .footer {
	  height:200px;

  }


  .footer li {
float: left;
list-style-type: none;
width:100%;
text-align: center;
line-height:40px;
 }
 
 .footer2 li {
float: left;
list-style-type: none;
width:100%;
text-align: center;
line-height:40px;
 }

  .footer2 {
	  height:130px;

  }

}
@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}






