/************************* Reset / Other ***********************/

ul {
  list-style: none;
}
div,
section,
footer,
blockquote,
h1,
h2,
h3,
p,
ul,
figure,
figcaption {
  margin: 00;
  padding: 0;
}
a img {
  border: 0;
}
@media (min-height: 850px) {
  #scrollhint {
    display: none !important;
  }
}

/************************* Base Text *************************/

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Roboto, Arial, "sans-serif";
  line-height: 1.4;
  font-size: 18pt;
  color: #222;
  min-width: 960px;
}

/************************** Text / Color Patterns *********************/

h1 {
  font-size: 225%;
  font-weight: 300;
  line-height: 1.1;
}

h2 {
  font-size: 200%;
  text-align: center;
  color: #333;
  font-weight: 300;
  max-width: 960px;
  margin: 0 auto 30px auto;
  line-height: 1.1;
}
body > section:first-of-type > h2:first-child {
  padding-top: 120px;
}

.h2-number {
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: white;
  font-weight: 700;
  font-size: 50px;
  border-radius: 100px;
  background: black;
  display: inline-block;
  margin-right: 20px;
  margin-left: -100px;
}
.h2-number.completed {
  background: #22a30d;
}

h3 {
  font-size: 115%;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
h3:first-child {
  margin-top: 0;
}

p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
section > p {
  text-align: center;
}

p + * {
  margin-top: 30px;
}
section > * + p {
  margin-top: 30px;
}

.credits {
  text-align: center;
  font-size: 60%;
  color: #666;
}
.abovefold .credits {
  color: #ddd;
}

.credits a {
  color: #333;
  text-decoration: none;
}

em {
  font-style: normal;
  font-weight: 700;
}

a {
  color: #e03426;
  font-weight: 400;
}
h2 a {
  text-decoration: none;
}
h2 a:hover,
a:hover {
  text-decoration: underline;
}

.style-dark,
.style-dark h2,
.style-dark h3,
.style-dark a {
  color: white;
}
.style-dark {
  font-weight: 300;
}

.style-dark em {
  font-weight: 900;
}

video {
  border: 10px solid #222;
  border-radius: 5px;
  cursor: pointer;
  background: #222;
}

/************************* Forms *************************/

input.error {
  border-color: red !important;
  border-width: 2px !important;
}

div.error {
  font-size: 65%;
  color: red;
  text-align: center;
  font-weight: 700;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.button {
  -moz-box-shadow: inset 0px 1px 1px 0px #f5baa6;
  -webkit-box-shadow: inset 0px 1px 1px 0px #f5baa6;
  box-shadow: inset 0px 1px 1px 0px #f5baa6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #e33326),
    color-stop(1, #a8411b)
  );
  background: -moz-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: -webkit-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: -o-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: -ms-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: linear-gradient(to bottom, #e33326 5%, #a8411b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e33326', endColorstr='#a8411b',GradientType=0);
  background-color: #e33326;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 5px;
  border: 1px solid #942911;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Roboto, "Open Sans", Arial, "sans-serif";
  padding: 8px 30px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #9e2c26;
}
.button:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #a8411b),
    color-stop(1, #e33326)
  );
  background: -moz-linear-gradient(top, #a8411b 5%, #e33326 100%);
  background: -webkit-linear-gradient(top, #a8411b 5%, #e33326 100%);
  background: -o-linear-gradient(top, #a8411b 5%, #e33326 100%);
  background: -ms-linear-gradient(top, #a8411b 5%, #e33326 100%);
  background: linear-gradient(to bottom, #a8411b 5%, #e33326 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a8411b', endColorstr='#e33326',GradientType=0);
  background-color: #a8411b;
  text-decoration: none;
}
.button:active {
  position: relative;
  top: 1px;
  outline: none !important;
}
.button[type="submit"] {
  font-size: 18pt;
  margin-bottom: 5px;
}

.button-secondary {
  display: inline-block;
  padding: 10px 15px;
  background: #eee;
  border-radius: 10px;
  text-align: center;
  font-size: 80%;
  cursor: pointer;
  font-weight: 700;
}

.newsletter_agree {
  font-size: 60%;
}

/********************************* LAYOUT PATTERNS **********************************************/

body > section,
blockquote {
  padding: 50px 0 60px 0;
}
blockquote {
  padding-left: 50px;
}
body > section:first-of-type {
  padding: 0;
}
.layout-joined {
  padding-bottom: 0;
}
.layout-joined + .layout-joined {
  padding-top: 0;
}

.layout-joined > p:last-child {
  margin-bottom: 0;
}

div + h3,
p + h3 {
  margin-top: 40px;
}

section > ul {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section > ul + figure,
section > ul + p {
  margin-top: 30px;
}

.new-btn {
  display: table;
  margin-left: auto;
  margin-top: 20px;
  margin-right: 40px;
}
header {
  background: #476724;
  background: rgba(59, 53, 41, 0.5);
  padding: 0 40px 0 0;
  box-sizing: border-box;
  color: white;
  text-align: right;
  border-bottom: 1px solid #333;
  position: fixed;
  width: 100%;
  font-size: 14pt;
  line-height: 1;
  transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  box-sizing: border-box;
  z-index: 2;
  min-width: 960px;
}

header ul {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}

header a {
  color: white;
  font-weight: 400;
  text-decoration: none;
}

header li {
  padding: 8px 15px;
  display: inline-block;
  border: 1px solid transparent;
  transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
}

header .selected {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  text-decoration: none;
  cursor: default;
}

header .selected.button,
header .selected.button:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: transparent;
  box-shadow: none;
  cursor: default;
}

.abovefold {
  border-bottom: 3px solid #4d3c32;
  color: white;
}

h1 {
  margin-top: 120px;
  box-sizing: border-box;
  text-shadow: 0 0 10px black;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.abovefold .container {
  padding-top: 1px;
  max-width: 1920px;
  margin: 0 auto;
  /* see each section for background URL*/
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  position: relative;
}

.abovefold em {
  display: inline-block;
  color: #ffc936;
  border-radius: 5px;
}

.abovefold-intro {
  max-width: 800px;
  border-top: 6px solid #ffc936;
  padding-top: 30px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 0 20px black;
}

.abovefold p em {
  font-weight: 900;
}

blockquote {
  font-weight: 300;
  background: #4d3e39;
  border-top: 3px solid #3e322d;
  border-bottom: 3px solid #3e322d;
  color: white;
  position: relative;
}

blockquote.person:before {
  background: url("../assets/person_silhouette.gif");
  width: 186px;
  height: 194px;
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  margin-left: -550px;
}

blockquote.person p {
  max-width: 760px;
  left: 100px;
}
blockquote p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-size: 150%;
}

blockquote p em {
  font-weight: 900;
}

body > blockquote p:before {
  font-family: serif;
  font-size: 100px;
  line-height: 100px;
  display: inline-block;
  position: absolute;
  top: -5px;
  left: -60px;
  content: "\201C";
}
body > blockquote p:after {
  font-family: serif;
  font-size: 100px;
  line-height: 100px;
  display: inline-block;
  position: absolute;
  margin-left: 15px;
  content: "\201D";
}

blockquote.person footer {
  max-width: 760px;
  left: 100px;
}

blockquote a {
  color: white;
  font-weight: 400;
}

blockquote footer {
  max-width: 900px;
  font-size: 80%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.layout-cols-2 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
p + .layout-cols-2 {
  margin-top: 30px;
}

h3.long {
  text-align: left;
  font-weight: 300;
  margin: 0 auto 20px auto;
}
.layout-cols-2 > h3.long {
  text-align: center;
}

.layout-cols-2 img {
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.layout-cols-2:after {
  content: "";
  display: block;
  clear: both;
}
.layout-cols-2 > div {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: left;
}
.layout-cols-2.separated > div:first-child {
  border-right: 1px solid #ddd;
}
.layout-cols-2 > div:first-child {
  padding: 0 30px 0 0;
}
.layout-cols-2 > div:last-child {
  padding: 0 0 0 30px;
}

.layout-cols-2 p {
  text-align: left;
  font-size: 80%;
}

.layout-cols-2 .button-secondary {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.layout-cols-2 + p,
.layout-cols-2 + .layout-cols-2 {
  margin-top: 40px;
}

.layout-cols-2 + .layout-cols-3 {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 35px;
}

.layout-cols-3 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: 70%;
  display: table;
  border-spacing: 10px;
}

.layout-cols-3 h3 {
  font-size: 125%;
}

.layout-cols-3:after {
  content: "";
  display: block;
  clear: both;
}

.layout-cols-3 > div {
  display: table-cell;
  box-sizing: border-box;
  padding: 15px 20px 35px 20px;
  text-align: center;
  background: #eee;
  border-top: 20px solid #ddd;
}

.layout-cols-3 img {
  border-radius: 5px;
}

.layout-cols-3 a img {
  border: 5px solid red;
}

.layout-cols-2 a img {
  border: 5px solid red;
  border-radius: 4px;
}

.layout-cols-3.plain > div {
  background: none;
  border: 0;
}

figure {
  text-align: center;
  font-size: 80%;
}

img + figcaption,
video + figcaption {
  margin-top: 10px;
}

figure + p,
figure + div {
  margin-top: 30px;
}

.callout {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 50px;
}

.section-lifespan .callout:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  border-top: 1px solid #bdce91;
  background: red;
  z-index: -1;
}

.callout div {
  border: 1px solid #ddd;
  max-width: 600px;
  padding: 20px;
  margin: -25px auto 0 auto;
  position: relative;
  font-size: 80%;
}

.callout div:before {
  content: "";
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-right: 0;
  border-top: 0;
  border-bottom-color: #ddd;
  position: absolute;
  top: -1px;
  left: -26px;
}
.callout div:after {
  content: "";
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-left: 0;
  border-top: 0;
  border-bottom-color: #ddd;
  position: absolute;
  top: -1px;
  right: -26px;
}

.callout h3 {
  color: #333;
  margin: 0 0 3px 0;
  text-align: center;
}

.section-lifespan section.callout p {
  margin: 0;
}

.section-infographic {
  text-align: center;
  padding-bottom: 0;
}

.section-infographic > a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  width: 283px;
  height: 247px;
  margin-right: 20px;
  box-sizing: border-box;
}

.section-infographic img {
  vertical-align: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
}

.section-infographic p {
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 50px;
  margin-top: 20px;
}

.text-block {
  padding: 50px 20%;
  color: white;
  font-weight: 300;
  margin: 40px 0;
  max-width: 100%;
  font-size: 120%;
  background: #333;
}
.page-speakup .text-block {
  background: #5f820e;
}
.page-transport .text-block {
  background: #55635d;
}
section > .text-block:last-child {
  margin-bottom: 0;
}

.text-block a {
  color: white;
}
@media (max-width: 1024px) {
  .text-block {
    padding: 50px 10%;
  }
}

.aside {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 10px;
  display: block;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 80%;
}

.aside h3 {
  font-size: 200%;
  margin: 0 0 10px 0;
}

.featured-image {
  background: #ddd;
  text-align: center;
}

.featured-video {
  background: #333;
  text-align: center;
  color: white;
}

.featured-video h2 {
  color: white;
}

p + img {
  display: inline-block;
  margin-top: 20px;
}

.section-related {
  background: #eee;
  border-top: 1px solid #ddd;
  line-height: 1;
}

.section-related img {
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid red;
}
.section-related + .text-block {
  margin-top: 0;
}

body > footer {
  padding: 40px 0;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 65%;
}

.logo-ccfa {
  margin-bottom: 20px;
}

body > footer a {
  text-decoration: none;
}

.social-icons {
  vertical-align: middle;
  display: inline-block;
}

.social-icons a {
  margin-left: 15px;
}

/********************************* HOME PAGE **********************************************/

.page-home header:hover {
  background-color: rgba(73, 81, 32, 0.9);
}

.page-home .abovefold {
  background: #333;
  border-bottom: #222 solid 2px;
}

.page-home .abovefold-container {
  /*background-image: url('../assets/background_home_1920.jpg');*/
  background-image: url("../assets/background_meatchickens.jpg");
  background-position: right bottom;
  /*border-right: 1px solid #546014;
			border-left: 1px solid #546014;*/
}

.page-home h1 {
  text-align: right;
  margin-right: 40px;
}

.page-home .abovefold-intro {
  max-width: 500px;
  float: right;
  margin-right: 30px;
  text-align: left;
  text-shadow: 0 0 15px black;
  margin-top: 20px;
}
.bold-red {
  color: red;
  font-weight: bold;
}
.italics {
  font-style: italic;
}
ul.demand-ul {
  text-align: left;
  list-style: disc;
}
ul.demand-ul li {
  margin-bottom: 20px;
  font-size: 20px;
}
form.petition_form {
  background: linear-gradient(230deg, #dfbf9f 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: #33333375 0px 0px 50px;
  max-width: 70%;
  margin: 0px auto 0 0;
  padding: 30px;
}
img.side-imgs:last-child {
  margin-bottom: 0;
}
form.petition_form select {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 0;
  padding: 10px 10px;
}

.row {
  display: flex;
  /* align-items: center; */
  flex-wrap: wrap;
  margin: 20px 10px;
}

.row .col-6 {
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}

.row input:not(input[type="checkbox"]) {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 0;
  padding: 5px;
  box-sizing: border-box;
}
.row .col-12 {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.row .col-4 {
  width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}
textarea {
  width: 100%;
  border-radius: 5px;
  border: 0;
  padding: 10px;
  box-sizing: border-box;
  resize: none;
}
.col-2 {
  width: 20%;
  padding: 0 10px;
  box-sizing: border-box;
}

.col-5 {
  width: 40%;
  padding: 0 10px;
  box-sizing: border-box;
}
.section-two-kinds .topic-egglaying img {
  padding-top: 40px !important; /* Shorter image */
}
.inner-wrap {
  display: flex;
  align-items: center;
}

.inner-wrap label {
  font-size: 18px;
  margin-left: 10px;
}
button.submit-petition {
  -moz-box-shadow: inset 0px 1px 1px 0px #f5baa6;
  -webkit-box-shadow: inset 0px 1px 1px 0px #f5baa6;
  box-shadow: inset 0px 1px 1px 0px #f5baa6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #e33326),
    color-stop(1, #a8411b)
  );
  background: -moz-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: -webkit-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: -o-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: -ms-linear-gradient(top, #e33326 5%, #a8411b 100%);
  background: linear-gradient(to bottom, #e33326 5%, #a8411b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e33326', endColorstr='#a8411b',GradientType=0);
  background-color: #e33326;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 5px;
  border: 1px solid #942911;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Roboto, "Open Sans", Arial, "sans-serif";
  padding: 8px 30px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #9e2c26;
  display: table;
  margin: 0px auto;
  min-width: 200px;
  font-size: 18px;
}
.text-center {
  text-align: center;
}
a.tos-pp {
  font-size: 18px;
}
img.badge-awc {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 20px;
}
section.banner-ta {
  max-width: 100%;
  width: 100%;
}

img.ta-banner {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 0px -260px;
}

section.newTA {
  padding: 0;
  border: 0;
}

section.newTA h2.bold-red {
  padding: 20px 0 0;
}
.contain-grey {
  background-color: #dfbf9f;
  padding: 20px 0;
}
img.side-imgs {
  display: block;
  width: 240px;
  height: 260px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: 20px;
}
.col-9 {
  max-width: 75%;
  flex: 0 0 75%;
}
.col-3 {
  max-width: 25%;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.section-news {
}

.section-news p {
  text-align: left;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 80%;
}

.section-news .date {
  font-size: 85%;
  display: inline-block;
  margin-left: 20px;
}

.topic-brochures img {
  vertical-align: bottom;
  display: inline-block;
}

.aside.topic-brochures {
  margin-top: 0;
}

/********************************* MEAT CHICKENS PAGE **********************************************/

.page-meatchickens header {
  background-color: rgba(69, 50, 47, 0.5);
}
.page-meatchickens header:hover {
  background-color: rgba(69, 44, 44, 0.9);
}

.page-meatchickens header .selected {
  background: #5c3635;
}
.page-meatchickens header:hover .selected {
  background: #854d4b;
}

.page-meatchickens .theme-color {
  color: #5a1507;
}

.page-meatchickens .abovefold {
  background: black;
  border-color: #5a1507;
}

.page-meatchickens .abovefold-container {
  background-image: url("../assets/background_meatchickens.jpg");
  background-position: right bottom;
  border-right: 1px solid #191113;
  border-left: 1px solid #191113;
}

.section-rapidgrowth {
  background: #230200;
  position: relative;
}

.section-rapidgrowth h2 {
  font-size: 215%;
}

#graphic-rapidgrowth {
  display: block;
  margin: 50px auto 50px auto;
  max-width: 450px;
  padding: 0 20px 0 100px;
}

#graphic-rapidgrowth section {
  margin-bottom: 40px;
}

#graphic-rapidgrowth h3 {
  color: white;
  position: relative;
  margin: 0;
  text-align: left;
}

#graphic-rapidgrowth .topic-1920 h3:before {
  background: url("../assets/chicken_white.png") no-repeat;
  background-size: auto 68px;
  background-position: right top;
  width: 130px;
  height: 137px;
  content: "";
  position: absolute;
  top: 0;
  left: -157px;
}

#graphic-rapidgrowth .topic-1988 h3:before {
  background: url("../assets/chicken_white.png") no-repeat;
  background-size: auto 93px;
  background-position: right top;
  width: 130px;
  height: 137px;
  content: "";
  position: absolute;
  top: 0;
  left: -157px;
}

#graphic-rapidgrowth .topic-present h3:before {
  background: url("../assets/chicken_white.png") no-repeat;
  background-position: right top;
  width: 130px;
  height: 137px;
  content: "";
  position: absolute;
  top: 0;
  left: -157px;
}

#graphic-rapidgrowth .graphic {
  float: left;
  height: 40px;
  background: white;
  margin-right: 10px;
}
#graphic-rapidgrowth section:after {
  clear: both;
  content: "";
  display: block;
}
#graphic-rapidgrowth .topic-1920 .graphic {
  width: 34px;
}
#graphic-rapidgrowth .topic-1988 .graphic {
  width: 63px;
}
#graphic-rapidgrowth .topic-present .graphic {
  width: 235px;
}

#graphic-rapidgrowth .label {
  line-height: 40px;
}

.section-lifespan {
}

#chickphoto {
  display: inline-block;
  vertical-align: top;
  margin-right: 60px;
  margin-bottom: 40px;
}

#graphic-lifespan {
  width: 550px;
  display: inline-block;
  text-align: left;
}

#graphic-lifespan h3 {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
}

#graphic-lifespan img {
  margin: 0 2px 2px 0;
  width: 24px;
  height: 18pt;
  float: left;
}

#graphic-lifespan .graphic {
  margin-bottom: 20px;
}
#graphic-lifespan .graphic:after {
  content: "";
  display: block;
  clear: both;
}

.section-lifespan section.callout div {
  background: #d1f38b;
  border: 1px solid #bdce91;
}
.section-lifespan section.callout div:before {
  border-bottom-color: #bdce91;
}
.section-lifespan section.callout div:after {
  border-bottom-color: #bdce91;
}

/********************************* EGG CHICKENS PAGE **********************************************/

.page-eggchickens header {
  background-color: rgba(53, 49, 43, 0.5);
}
.page-eggchickens header:hover {
  background-color: rgba(53, 49, 43, 0.9);
}

.page-eggchickens header .selected {
  background: #3e3b34;
}
.page-eggchickens header:hover .selected {
  background: #4e4b44;
}

.page-eggchickens h2 {
  color: #5a1507;
}

.page-eggchickens .abovefold {
  background: #7e9849;
}

.page-eggchickens .abovefold-container {
  background-image: url("../assets/background_eggchickens.jpg");
  /*background-image: url('../assets/background_home_1920.jpg');*/
  background-position: right top;
  border-right: 1px solid #191113;
  border-left: 1px solid #191113;
}

.page-eggchickens h1 {
  text-align: right;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-eggchickens .abovefold .summary {
  border-top: 6px solid #ffc936;
  padding-top: 30px;
  text-shadow: 0 0 5px #333;
}

.section-comparison-eggs {
}

.section-comparison-eggs .layout-cols-2 p {
  text-align: center;
}

.section-behaviors {
  background: #eee;
}

.section-behaviors img {
  border: 10px solid #ddd;
}

.section-five-freedoms ul {
  font-size: smaller;
  text-align: left;
  max-width: 800px;
}

.section-five-freedoms ul li {
  padding: 20px;
  background: #eee;
  border-radius: 8px;
}

.section-five-freedoms ul li + li {
  margin-top: 20px;
}

.section-enriched {
  background: white;
  position: relative;
  margin-bottom: 0;
}

.section-enriched img {
  margin-top: 20px;
  border-radius: 25px;
}

.callout.topic-peckingorder {
  padding: 0;
}

.section-beaktrimming {
  border-top: 1px solid #ddd;
}

.section-beaktrimming img {
  border: 10px solid #ddd;
  border-radius: 200px;
}

.section-beaktrimming .callout {
  margin-top: 80px;
}

.section-beaktrimming .callout:after {
  background: red none repeat scroll 0 0;
  border-top: 1px solid #bdce91;
  content: "";
  left: 0;
  position: absolute;
  top: 25px;
  width: 100%;
  z-index: -1;
}

.section-beaktrimming section.callout div {
  background: #d1f38b;
  border: 1px solid #bdce91;
}
.section-beaktrimming section.callout div:before {
  border-bottom-color: #bdce91;
}
.section-beaktrimming section.callout div:after {
  border-bottom-color: #bdce91;
}

.section-macerator img {
  border-radius: 25px;
}

/********************************* TRANSPORT CHICKENS PAGE **********************************************/

.page-transport header {
  background-color: rgba(109, 45, 9, 0.5);
}
.page-transport header:hover {
  background-color: rgba(109, 45, 9, 0.9);
}

.page-transport header .selected {
  background: #723818;
}
.page-transport header:hover .selected {
  background: #995501;
}

.page-transport .theme-color {
  color: #751d00;
}

.page-transport .abovefold {
  background: #985400;
}

.page-transport .abovefold-container {
  background-image: url("../assets/background_transport.jpg");
  background-position: right top;
  border-right: 1px solid #7c4001;
  border-left: 1px solid #7c4001;
}

/********************************* SLAUGHTER CHICKENS PAGE **********************************************/

.page-slaughter header {
  background-color: rgba(110, 101, 92, 0.5);
}
.page-slaughter header:hover {
  background-color: rgba(110, 101, 92, 0.9);
}

.page-slaughter header .selected {
  background: #474039;
}
.page-slaughter header:hover .selected {
  background: #373029;
}

.page-slaughter h2 {
  color: #514a47;
}

.page-slaughter .abovefold {
  background: #69615e;
  border-bottom: 0;
}

.page-slaughter .abovefold-container {
  background-image: url("../assets/background-slaughter.jpg");
  background-position: right center;
  border-right: 1px solid #555;
  border-left: 1px solid #555;
}

.section-doa {
  border-bottom: 1px solid #ddd;
}

/********************************* TRIAL PAGE **********************************************/

.section-report h2,
.section-report h3 {
  color: #00acec;
}

.section-report h2 small {
  display: block;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 50%;
  font-weight: 400;
}

.topic-reportrecommendations {
}

.topic-reportrecommendations h3 {
  text-align: left;
}

.topic-reportrecommendations ul {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 75%;
}

.topic-reportrecommendations li {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

/********************************* SPEAK UP PAGE **********************************************/

.page-speakup header {
  background-color: rgba(0, 0, 0, 0.4);
}
.page-speakup header:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.page-speakup h2:first-child {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.page-speakup div.emailbody-container {
  padding: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.emailbody {
  background: #eee;
  font-size: 14px;
  padding: 40px 40px 0 40px;
  font-family: monospace;
  min-height: 600px;
}

.emailbody p {
  max-width: auto;
  margin-left: 0;
  margin-right: 0;
}

.emailbody ul {
  list-style: disc;
  padding-left: 15px;
  margin: 20px 0;
}

.topic-autosendemails {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 250px;
}
.topic-autosendemails.sent {
  margin-bottom: 50px;
}
.mssg-emailsent {
  color: #22a30d;
  text-align: center;
  font-weight: 700;
}

.topic-autosendemails .emailbody-container h3 {
  padding: 0 20px 0 20px;
}

.topic-autosendemails .col:first-child {
  border-right: 15px solid #aa401b;
}
.topic-autosendemails .col:last-child {
  border-left: 15px solid #aa401b;
}
.topic-autosendemails.sent .col:first-child {
  border-color: white;
}
.topic-autosendemails.sent .col:last-child {
  border-color: white;
}

.topic-autosendemails form {
  background: white;
  border-radius: 20px;
  padding: 50px 50px 0 50px;
  position: absolute;
  /* bottom:-185px; */
  left: 50%;
  margin-left: -215px;
  width: 400px;
  height: 270px;
  box-sizing: border-box;
}

.topic-autosendemails form:before {
  content: "";
  border: 40px solid transparent;
  border-bottom: 0;
  border-top-width: 35px;
  border-top-color: #aa401b;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -40px;
}

.topic-autosendemails fieldset {
  position: relative;
  display: block;
}

.topic-autosendemails.sent form {
  height: auto;
  padding: 30px;
  bottom: -30px;
}

.topic-autosendemails.sent form:before {
  display: none;
}

.topic-autosendemails [type="text"],
.topic-autosendemails [type="submit"] {
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 18pt;
  height: 50px;
  border-radius: 4px;
}
.topic-autosendemails [type="text"],
.topic-autosendemails [type="checkbox"] {
  margin-bottom: 15px;
  display: inline-block;
  text-align: center;
  border: 1px solid #ffa382;
}
[type="checkbox"] {
  vertical-align: text-top;
}
.topic-autosendemails label {
  position: absolute;
  top: -10px;
  left: 5px;
  color: #aa401b;
  font-size: 14px;
  font-weight: 700;
  background: white;
  padding: 0 5px;
}

.topic-eggfarmers {
}

.topic-eggfarmers .emailbody-container {
  margin: 0 auto;
}

.topic-eggfarmers .iframe-container {
  background: #eee;
  padding-right: 30px;
  min-height: 640px;
}

.topic-eggfarmers iframe {
  border: 2px solid #ccc;
  height: 450px;
  width: 100%;
  box-sizing: border-box;
}

.topic-eggfarmers .iframe-label {
  background: #eee;
  padding: 10px;
  text-align: center;
  font-size: 80%;
  box-sizing: border-box;
}

.topic-eggfarmers .iframe-label a {
  font-size: 23px;
}

.section-reduce {
}

.section-reduce .button {
  display: block;
  margin: 20px auto 0 auto;
}

#form-donatemonthly [type="text"]:focus {
  color: black !important;
}

.container.abovefold-container.text-center {
  text-align: center;
}

.container.abovefold-container.text-center h1 {
  text-align: center;
  margin: 120px auto 50px;
}

.new-btn {
  margin: 0px auto;
  font-size: 40px;
}

.container.abovefold-container.text-center p.abovefold-intro {
  margin: 50px auto 0 !important;
  text-align: center;
  float: none;
}

/*******************************************************************************/

#header-mobile,
[href="#header-mobile"] {
  display: none;
}

@media (max-width: 1350px) {
  .page-home .abovefold-container {
    background-size: auto 900px;
  }
  form.petition_form {
    max-width: 80%;
  }
}

@media (min-width: 1440px) {
  .abovefold-container {
    height: 850px !important;
  }
}

@media (min-width: 1650px) {
  .abovefold-container {
    height: 900px !important;
    background-position: right -120px;
  }
}

@media (max-width: 1024px) {
  #header-mobile,
  [href="#header-mobile"] {
    display: block;
  }

  [href="#header-mobile"] {
    position: absolute;
    top: 25px;
    right: 25px;
    background: black;
    border-radius: 5px;
    padding: 15px 25px;
    color: white;
    border: 2px solid #888;
    text-decoration: none;
  }

  header {
    display: none;
    position: static;
    font-size: 25pt;
    text-align: center;
    background: #222 !important;
    padding: 30px 0 !important;
  }

  header li {
    margin: 15px 20px;
    border: 2px solid #888;
    padding: 20px;
    border-radius: 5px;
  }
  header li:last-child {
    border: 0;
  }

  header li:last-child a {
    padding: 20px;
  }
}
