/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

@font-face {
	font-family: 'DIN Medium';
	src: url('fonts/din-medium-webfont.woff2') format('woff2'),
	url('fonts/din-medium-webfont.woff') format('woff');
	font-weight: 500;
}
@font-face {
	font-family: 'DIN Condensed Bold';
	src: url('fonts/DIN-Condensed-Bold.woff2') format('woff2'),
	url('fonts/DIN-Condensed-Bold.woff') format('woff');
	font-weight: 700;
}
@font-face {
	font-family: 'DIN Regular';
	src: url('fonts/din-regular-webfont.woff2') format('woff2'),
	url('fonts/din-regular-webfont.woff') format('woff');
	font-weight: 400;
}
@font-face {
	font-family: 'BrownStd Regular';
	src: url('fonts/BrownStd-RegularAlt.woff2') format('woff2'),
	url('fonts/BrownStd-RegularAlt.woff') format('woff');
	font-weight: 400;
}

/*************************GENERAL************************/

a.link, a.link:hover, a i, a i:hover, .menu li a, .menu li a:hover, .newsletter input, .newsletter input:hover, .fadehover a img, .fadehover a:hover img, .fadehover:hover img, .fadehover img, button, button:hover, .mc4wp-form input[type="submit"], .mc4wp-form input[type="submit"]:hover{
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;

	-webkit-appearance: none;
	border-radius: 0;
}
.fl-module ul{
	padding: 0 0 0 15px;
	margin-bottom: 20px;
}
.fl-module li {
    margin-top: 20px;
}
.boxshadow .fl-row-content-wrap,
.boxshadow .fl-col-content{
    box-shadow: 0px 0px 10px rgba(207,207,207,0.5);
}
.boxshadow .fl-col-group-nested .fl-col-content,
.boxshadow .fl-row-content-wrap .fl-col-content{
	box-shadow: none;
}
.flex{
	display: flex;
	align-items: center;
}
.fadehover a:hover img,
.fadehover:hover img{
	opacity: 0.6;
}

h4.line {
    padding: 0px 0 20px 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
    font-family: DIN Medium;
    color: #d44b2f;
    line-height: normal;
}
h4.line::before {
    border-top: 1px solid #d44b2f;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
h4.line span {
    display: inline-block;
    font-size: 18px;
    background: #fff;
    padding: 0 15px;
    font-style: normal;
    font-weight: 500;
}

@media screen and (max-width: 992px) {
	.hideonmd{
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.hideonsm{
		display: none;
	}
	.centersm{
		text-align: center;
	}
	.rflexsm{
		display: block;
	}
	.mobile-left .fl-photo-align-right {
		text-align: left;
	}
	.mobile-center, .mobile-center h5, .mobile-center .fl-photo-align-left{
		text-align: center !important;
	}
	.mobile-right .fl-photo-align-left {
		text-align: right;
	}
}
@media screen and (max-width: 480px) {
	h1{
		font-size: 10vw;
		line-height: 1.2;
	}
	h2 {
    	font-size: 7.8vw;
	}
	h3 {
		font-size: 6vw;
	}
	h5{
		font-size: 11vw;
	}
	h6{
		font-size: 9vw;
	}
	.normalizetextsm span {
		font-size: 4.5vw !important;
		line-height: 1.6em !important;
	}
	.normalizebtnsm a.fl-button{
		font-size: 4vw !important;
		padding: 10px 20px !important;
		width: auto !important;
	}
}

/***********************BOOK MENU************************/

.menu, .menu ul {
  list-style: none;
  padding: 0;
}
.menu ul {
  margin: 0;
}
.menu > li {
  position: relative;
  display: inline-block;
  outline: 0;
  margin: 0 15px 0 0;
}
.header .menu > li {
	margin: 0 0 0 15px;
}
.menu li a {
    color: #fff !important;
    text-transform: uppercase;
    display: block;
    padding: 16px 15px 13px;
    box-sizing: border-box;
    width: 200px;
    background: #d44b2f;
    line-height: normal;
    font-size: 18px;
    font-family: 'DIN Medium';
    text-align: center;
    text-decoration: none;
}
.menu li a:hover{
	background: #8d2611;
}
.menu li.bonus a{
	background: #8d2611;
}
.menu li.bonus a:hover{
	background: #d44b2f;
}
.sub-menu li a{
	border-top: 1px solid #8d2611;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 0;
  overflow: hidden;
  max-height: 0;
  /* The transition-delay prevents the menu to disappear before the transition is run backward
   * It's ~= length of the animation (.6s) + highest item transition delay (466ms) */
  -webkit-transition: max-height 1ms linear 1s;
     -moz-transition: max-height 1ms linear 1s;
  /* A .submenu should be only revealed when hovering the .menu */
  pointer-events: none;
}

.menu > li:hover .sub-menu, .menu > li:focus .sub-menu {
  pointer-events: auto;
  z-index: 10;
  max-height: 2000px;
  -webkit-transition: none;
     -moz-transition: none;
}

/* Progressive Anim
 * ==================================================================
 * This is a lot of redundant code but the result is worth it
 * This should be edited for menus with more or much less than 8 items
 */

 /* forward */
.menu > li:hover .sub-menu li:nth-child(1) {
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
      -ms-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.menu > li:hover .sub-menu li:nth-child(2) {
  -webkit-transition-delay: 66ms;
     -moz-transition-delay: 66ms;
      -ms-transition-delay: 66ms;
       -o-transition-delay: 66ms;
          transition-delay: 66ms;
}

.menu > li:hover .sub-menu li:nth-child(3) {
  -webkit-transition-delay: 133ms;
     -moz-transition-delay: 133ms;
      -ms-transition-delay: 133ms;
       -o-transition-delay: 133ms;
          transition-delay: 133ms;
}

/* backward */
.sub-menu li:nth-child(1) {
  -webkit-transition-delay: 133ms;
     -moz-transition-delay: 133ms;
      -ms-transition-delay: 133ms;
       -o-transition-delay: 133ms;
          transition-delay: 133ms;
}

.sub-menu li:nth-child(2) {
  -webkit-transition-delay: 66ms;
     -moz-transition-delay: 66ms;
      -ms-transition-delay: 66ms;
       -o-transition-delay: 66ms;
          transition-delay: 66ms;
}

.submenu li:nth-child(3) {
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
      -ms-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

/* Default
 ================================================================= */
.sub-menu li {
  opacity: 0;

  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;
     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;
      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;
       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;
          transition: opacity .4s,         transform .6s, max-height .6s;
}

.menu > li:hover .sub-menu li, .menu > li:focus .sub-menu li {
  opacity: 1;

  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}

/* Blind
 ================================================================= */
.sub-menu li {
  max-height: 0;
}

.menu > li:hover .sub-menu li, .menu > li:focus .sub-menu li {
  /* This should be changed to the normal height of list-items */
  max-height: inherit;
}

.sub-menu li a, .sub-menu li a:hover{
	background-position: center center;
	background-repeat: no-repeat;
    text-indent: -9999px;
}
.sub-menu li.amazon a {
	background-image: url('/wp-content/uploads/2017/12/Amazon.svg');
	background-position: center 60%;
}
.sub-menu li.bn a {
	background-image: url('/wp-content/uploads/2017/12/BarnsandNoble.svg');
}
.sub-menu li.ib a {
	background-image: url('/wp-content/uploads/2017/12/IndieBound.svg');
	background-position: center 40%;
}

@media screen and (max-width: 1100px) {
	.menu li a {
		width: 185px;
	}
}
@media screen and (max-width: 991px) {
	.fl-page-nav-wrap .menu > li {
		margin: 0 5px !important;
	}
}
@media screen and (max-width: 480px) {
	.menu li a {
		padding: 13px 10px 10px;
		width: 125px;
		font-size: 15px;
	}
	.sub-menu li.amazon a {
		background-size: 65% auto;
	}
	.sub-menu li.bn a {
		background-size: 90% auto;
	}
	.sub-menu li.ib a {
		background-size: auto 80%;
	}
}

/*************************HEADER*************************/

.fl-page-header-primary .fl-logo-img{
    max-height: unset !important;
	width: unset !important;
    top: -8px;
	left: -44px;
    position: relative;
}
.fl-page-nav-right .fl-page-header-wrap,
.fl-page-nav-wrap{
    border: none;
}
.fl-page-nav-wrap .menu > li {
    margin: 0 0 0 20px;
}

.fl-page[style]{
	padding-top: 0 !important;
}
.hero-bg {
    padding-top: 150px;
    min-height: 1000px;
    background-attachment: fixed;
    background-position: center top;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.fl-shrink-header{
	background: rgba(255,255,255,0.8);
}
.fl-shrink-header .fl-page-header-container.container {
    padding-top: 17px !important;
}

@media screen and (max-width: 991px) {
	.fl-page-header {
		top: 0px;
		position: fixed;
		width: 100%;
		background: #fff;
		z-index: 99999;
		padding-bottom: 10px;
	}
	.fl-page-header-primary .fl-logo-img{
		max-height: 60px !important;
		top: unset;
		left: unset;
	}
	.fl-logo-text {
		font-size: 40px;
		margin: -5px 0 -10px 0;
	}
	.fl-page-nav-toggle-button.fl-page-nav-toggle-visible-mobile .fl-page-nav-wrap {
		margin: 0;
		padding-bottom: 0;
	}
	.fl-page-header-container {
		padding-top: 10px;
	}
	.fl-page-nav-right .fl-page-header-logo {
		padding-bottom: 10px !important;
	}
	.hero-bg{
		background-image: none !important;
		padding-top: 80px;
	}
}
@media screen and (max-width: 767px) {
	.fl-page-header{
		text-align: center;
	}
	.hero-book img {
		top: 12px !important;
	}
}
@media screen and (max-width: 480px) {
	.fl-page-header {
		padding-bottom: 30px;
	}
	.fl-page-header-primary .fl-logo-img{
		max-height: 30px !important;
	}
	.fl-logo-text {
		font-size: 34px;
		margin: -5px 0 -10px 0;
	}
	.hero-book img {
		top: 0 !important;
	}
}

/**************************HERO**************************/

.hero-content {
    max-width: 450px;
}
.hero-content.hc-1{
	padding-bottom: 100px;
	padding-top: 50px;
}
.hero-content.hc-2{
	padding-bottom: 0;
}
.pb{
	padding-bottom: 0px;
}
.hideme{
    opacity: 0;
}
.showonmobile{
	display: none;
}

h2 strong {
    display: block;
    font-size: 240px;
    line-height: 140px;
}
.ie h2 strong {
    line-height: 0.75em;
}
.hero-content .menu li{
	margin: 0 10px;
}
.hero-content .sub-menu li{
	margin: 0;
}
.row .hero-content:first-child{
	text-align: center;
}
.row .hero-content:first-child p {
    font-size: 18px;
    margin: -10px 0 35px 0;
}
.hero-book{}
.hero-book img {
    position: relative;
    top: -72px;
	left: -100px;
}

#preorderlinks {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
	margin: 20px 0 10px 0;
}
#preorderlinks li {
    display: inline-block;
    list-style: none;
    margin: 0 20px;
}
#preorderlinks li:first-child a img {
    /*margin-top: 18px;*/
}
#preorderlinks li a img.amazoncom{}
#preorderlinks li a img.amazonca{}
#preorderlinks li a img.barnes {
    top: -6px;
    position: relative;
}
#preorderlinks li a img.indiebound{}
#preorderlinks li a img.indigo{
	top: 7px;
    position: relative;
}

#preorderlinks li a:hover img {
    opacity: 0.65;
}

@media screen and (max-width: 1300px) {
	.hero-book img {
		left: 0;
		/*top: -120px;*/
	}
}
@media screen and (max-width: 991px) {
	.hero-content {
		max-width: unset;
		margin: 80px 0 0;
		text-align: center;
	}
	.hero-content.hc-1 {
		padding-bottom: 0;
		padding-top: 0;
	}
	.hero-book img {
		top: 0;
	}
	.pb {
		padding-bottom: 0;
	}
	.tfb-push{
		left: auto;
	}
	.tfb-pull{
		right: auto;
	}
	#menu-book-menu-1{
		display: none;
	}
	.showonmobile{
		display: block;
	}
	.hero-book{
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.hero-content {
		margin: 100px 0 0;
	}
}
@media screen and (max-width: 480px) {
	.menu-book-menu-container {
		margin-bottom: -30px;
	}
	h2 strong {
		font-size: 45vw;
		line-height: 30vw;
	}
	.row .hero-content:first-child p {
		font-size: 16px;
	}
	.hero-content {
		margin: 60px 0 0;
	}
	.hero-content.hc-2 {
		margin: 20px 0 0;
	}
	#preorderlinks li {
		margin: 0 10px;
	}
}

/*************************VIDEO*************************/

.video-bg {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 150px 0;
	margin-top: 100px;
}
.video-bg iframe {
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 991px) {
	.video-bg {
		background-size: cover;
	}
	.video-bg iframe {
		max-width: 70%;
		max-height: 40vw;
	}
}
@media screen and (max-width: 767px) {
	.video-bg {
		background-size: 150% auto;
	}
	.video-bg iframe {
		max-width: 90%;
		max-height: 55vw;
	}
}
@media screen and (max-width: 480px) {
	.video-bg {
		padding: 90px 0;
	}
}

/*************************ABOUT*************************/

.about .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.htitle {
    font-size: 20px;
    color: #d44b2f;
    text-transform: uppercase;
    width: 300px;
    overflow: auto;
    text-align: center;
    position: absolute;
    left: -135px;
	top: -15px;

	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.hline {
    border-bottom: 1px solid #d44b2f;
    margin: 0 30px 0 55px;
}
.about #mark {
    padding-right: 20px;
}
.about p {
    font-size: 17px;
    line-height: 28px;
}

@media screen and (max-width: 991px) {
	.about{
		margin-top: -80px;
		text-align: center;
	}
	.about .row {
		display: inherit;
	}
	.about .col-md-2{
		display: none;
	}
	.about #mark {
		padding-right: 0;
	}
}
@media screen and (max-width: 480px) {
	.about {
		margin-top: -30px;
	}
}

/************************BENEFITS************************/

.benefits {
    padding: 75px 0 0;
}
.benefits h2 {
    position: relative;
    top: 50px;
}
.benefits .benefit {
    text-align: center;
}
.benefits .benefit .icon{
	display: inline-block;
	background: rgba(212, 75, 47, 0.1);
    width: 135px;
    height: 135px;
    border-radius: 50%;
	padding: 25px;
}
.benefits .benefit .icon img{
    /*text-align: center;
    line-height: 100px;
    vertical-align: middle;*/
    padding: 30px;
}

@media screen and (max-width: 991px) {
	.benefits {
		padding: 0;
		margin-top: -30px;
	}
	.benefits h2 {
		top: 0;
		text-align: center;
	}
	.benefits .benefit .icon {
		display: block;
		float: left;
		clear: both;
		margin-right: 5%;
	}
	.benefits .benefit {
		text-align: left;
		display: block;
		clear: both;
		min-height: 150px;
	}
}
@media screen and (max-width: 767px) {
	.benefits {
		margin-top: 20px;
	}
	.benefits .benefit .icon {
		width: 100px;
		height: 100px;
		margin-bottom: 75px;
	}
	.benefits .benefit .icon img {
		padding: 20px;
	}
}
@media screen and (max-width: 480px) {
	.benefits .benefit .icon {
		float: none;
		margin: 0 auto 10px auto;
	}
	.benefits .benefit {
		text-align: center;
	}
}

/**************************LOGOS*************************/

.logos {
    display: flex;
	align-items: center;
    padding: 60px 0 40px;
}
.logos .logo {
    width: 20%;
    text-align: center;
}
.logos .logo:nth-child(3) img{
	max-height: 90px;
	min-width: 50px;
}

@media screen and (max-width: 767px) {
	.logos {
		padding: 30px 0;
	}
	.logos .logo {
		width: 25%;
		padding: 0 5px;
	}
	.logos .logo:nth-child(4){
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.logos .logo {
		width: auto;
	}
}

/***********************TESTIMONIALS*********************/

.testimonials .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonials .wptww-testimonials-slidelist .slick-slide,
.testimonials .wptww-testimonials-slidelist.slick-slider{
    padding: 0;
}
.testimonials .htitle {
    left: -120px;
    top: -40px;
}
.testimonials .hline {
    margin: -25px 20px 0 70px;
}

.testimonials .fa-quote-left{
	display: none;
}
.slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}
.testimonials .testimonial-left img {
    max-width: 380px;
    padding-right: 55px;
}
.wptww-testimonial-content {
    clear: none;
    display: flex;
    flex-direction: column-reverse;
    padding-right: 15%;
}
.testimonials .fa-quote-left, .testimonials h4 {
    text-align: left;
    margin: 40px 0 0 !important;
}
.testimonials .wptww-testimonials-text p {
    font-size: 30px;
    line-height: 37px;
    letter-spacing: 0.2px;
    text-align: left;
}

.testimonials .wptww-testimonials-slidelist .slick-dots li {
    margin: 0 4px !important;
    width: 40px !important;
    height: 4px !important;
}
.testimonials .wptww-testimonials-slidelist .slick-dots li.slick-active button {
    background: #d44b2f !important;
}
.testimonials .wptww-testimonials-slidelist .slick-dots li button {
    background: #e8e8e8 !important;
    border: none;
    border-radius: 5px !important;
    width: 40px !important;
    height: 4px !important;
}
.testimonials .wptww-testimonials-slidelist.design-1 .slick-dots{
    bottom: -40px !important;
	transform: translateX(-10%);
}

@media screen and (max-width: 992px) {
	.testimonials .row {
		display: block;
	}
	.testimonials .htitle {
		left: unset;
		top: unset;
		transform: rotate(0deg);
		position: relative;
		width: 100%;
		font-family: 'DIN Condensed Bold';
		font-size: 42px;
	}
	.testimonials .hline {
		display: none;
	}
	.slick-initialized .slick-slide {
		display: block;
	}
	.wptww-testimonial-content {
		flex-flow: column;
		padding: 20px 0 0 0;
	}
	.wptww-avtar-image {
		max-height: 400px;
		overflow: hidden;
	}
	.testimonials .testimonial-left img {
		max-width: 50%;
		padding-right: 0;
	}
	.testimonials h4 {
		text-align: center;
		margin: 24px 0 0 !important;
		order: 2;
	}
	.wptww-testimonials-text {
		order: 1;
	}
	.testimonials .wptww-testimonials-text p {
		font-size: 24px;
		line-height: 32px;
		text-align: center;
	}
	.testimonials .wptww-testimonials-slidelist.design-1 .slick-dots {
		bottom: -20px !important;
		transform: translateX(0);
	}
}
@media screen and (max-width: 767px) {
	.wptww-avtar-image {
		max-height: 40vw;
	}
}
@media screen and (max-width: 480px) {
	.wptww-avtar-image {
		max-height: 62vw;
	}
	.testimonials .testimonial-left img {
		max-width: 100%;
		transform: translateY(-10%);
	}
	.testimonials .htitle{
		font-size: 7.8vw;
	}
	.testimonials .wptww-testimonials-text p {
		font-size: 20px;
		line-height: 26px;
	}
}

/**********************IMAGE QUOTE***********************/

.images-quote {
    display: grid;
	display: -ms-grid;

    grid-gap: 13px;
	grid-row-gap: 13px;

	grid-template-columns: 33.3% 33.3% 33.3%;
	-ms-grid-columns: 33.3% 13px 33.3% 13px 33.3%;
	/*-ms-grid-rows: auto 13px auto;*/

	max-width: 1085px;
	margin: 0 auto;
	left: -13px;
	position: relative;
}
.images-quote .box {
	background-color: #d44b2f;
	color: #fff;
}
.a {
	grid-column: 1;
	-ms-grid-column: 1;

	grid-row: 1;
	-ms-grid-row: 1;
}
.b {
	grid-column: 2;
	-ms-grid-column: 3;

	grid-row: 1;
	-ms-grid-row: 1;
}
.c {
	grid-column: 1 / 3;
	-ms-grid-column: 1;
    -ms-grid-column-span: 3;

	grid-row: 2;
	-ms-grid-row: 2;
}
.ie .c {
    margin-top: 13px;
}
.d {
	grid-column: 3 ;
	-ms-grid-column: 5;

	grid-row: 1 / 3 ;
	-ms-grid-row: 1;
	-ms-grid-row-span: 3;
}

.box.d {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.box.d .quote {
    margin: 0 50px;
    box-sizing: border-box;
    font-family: 'DIN Condensed Bold';
    text-transform: uppercase;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0.3px;
}
.box.d .quote strong {
    font-size: 20px;
    position: relative;
    top: 30px;
}


@media screen and (max-width: 992px) {
	.box.d .quote {
		font-size: 24px;
	}
}
@media screen and (max-width: 768px) {
	.images-quote {
		grid-template-columns: 50% 50%;
		-ms-grid-columns: 50% 6px 50%;

		grid-gap: 6px;
		left: -3px;
		padding: 6px;
	}
	.a {
		grid-column: 1;
		-ms-grid-column: 1;

		grid-row: 1;
		-ms-grid-row: 1;
	}
	.b {
		grid-column: 2;
		-ms-grid-column: 2;

		grid-row: 1;
		-ms-grid-row: 1;
	}
	.c {
		grid-column: 1 / 3;
		-ms-grid-column: 1;
		-ms-grid-column-span: 3;

		grid-row: 2;
		-ms-grid-row: 2;
	}
	.d {
		grid-column: 1 / 3;
		-ms-grid-column: 1;
		-ms-grid-column-span: 3;

		grid-row: 3 ;
		-ms-grid-row: 3;
	}
	.box.d .quote {
		margin: 0;
		padding: 20px;
	}
	.box.d .quote strong {
		top: 10px;
	}
}

/**********************SOCIAL ICONS**********************/

.social {
    font-family: 'DIN Condensed Bold';
    font-size: 30px;
    text-align: center;
    color: #d44b2f;
    text-transform: uppercase;
	margin-bottom: 10px;
}
.fa-stack {
    width: 6em;
    height: 3em;
}
.fl-social-icons .fa-stack {
    margin: 0 4px 10px 4px;
}
.fa-circle{
	display: none;
}
.fa-stack i.fa-inverse.mono {
    color: #d44b2f;
	font-size: 30px;
}
.fa-stack i.fa-inverse.mono:hover {
    color: #8d2611;
}

/************************FOOTER*************************/

.fl-page-footer {
    border-top: none;
	padding-bottom: 30px;
}

/**********************CLAIM PAGE**********************/

.preorderplain .menu {
    float: right;
    margin: 0;
	padding: 0;
    position: relative;
    top: -6px;
}
.preorderplain .menu li#menu-item-322{
	display: none;
}
.preorderplain .menu li{
	margin: 0;
}
.preorderplain .menu li a {
    background-color: #8d2611;
}
.preorderplain .menu .sub-menu li a {
    border-top: 1px solid #651707;
}
.preorderplain .menu li a:hover,
.preorderplain .menu .submenu li a:hover{
	background-color: #651707;
}

@media screen and (max-width: 767px) {
	.preorderplain .menu {
		float: none;
		text-align: center;
	}
	.fl-node-5a4e8b9c365c7 > .fl-col-content {
		box-shadow: none !important;
		background-color: transparent;
	}
	.fl-node-5a4e8b9c33f0d > .fl-row-content-wrap {
		background-image: url(/wp-content/uploads/2018/01/Video-Background-Claim.jpg) !important;
		background-position: center 50px !important;
		background-size: 100% auto;
	}
}
@media screen and (max-width: 480px) {
	.preorderplain .menu{
		margin: 0 0 38px 0;
	}
}


/**********************BONUS PAGE**********************/

h5 strong{
	color: #d44b2f !important;
}

.threebonus {
    padding: 0;
	text-align: center;
}
.threebonus .bonus {
    text-align: center;
}
.threebonus .bonus .icon {
	display: inline-block;
	background: rgba(212, 75, 47, 0.1);
    width: 135px;
    height: 135px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.threebonus .bonus .icon{
    padding: 20px;
}
.threebonus .bonus.b1 .icon,
.threebonus .bonus.b3 .icon{
	padding: 20px 35px 20px 35px;
}

.page-id-171 .testimonials .hline {
    margin: -25px 45px 0 80px;
}
.page-id-171 .testimonials .testimonial-left img {
    max-width: 380px;
    padding-right: 55px;
}

.floatbookcontainer .fl-row-fixed-width {
    position: relative;
}
.floatbook {
    position: absolute;
    top: 40%;
    right: 6%;
    max-width: 400px;
    transform: translateY(-50%);
}

.gifts .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gifts .col-md-9 {
    padding: 0 0 0 6% !important;
}
.gifts .gtitle1{
	font-size: 22px;
}
.gifts .gtitle2 {
    font-family: 'DIN Regular';
    font-size: 22px;
    display: block;
    margin: -2px 0 0 0;
}
.gifts .gtext{
	font-family: 'DIN Regular';
	margin: 15px 0 0 0;
}



ul.spreadtheword {
    padding: 0;
}
ul.spreadtheword li {
    list-style: none;
    display: inline-block;
    margin: 0 5px 10px;
}
ul.spreadtheword li img{
	margin: 0;
}

ul.spreadtheword a.fl-button {
    padding: 8px 15px !important;
}
ul.spreadtheword #facebook a {
    background: #306199;
}
ul.spreadtheword #twitter a{
	background: #26c5ef;;
}
ul.spreadtheword #linkedin a{
	background: #027bb0;
}
ul.spreadtheword #instagram a{
	background: #843ab5;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
ul.spreadtheword li a.hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
}
ul.spreadtheword li a.hvr-push:hover, ul.spreadtheword li a.hvr-push:focus, ul.spreadtheword li a.hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.ontop{
	z-index: 9999;
}
.ontop ul {
    padding: 0;
	float: right;
}
.ontop ul li {
    list-style: none;
    display: inline-block;
    margin: 0 0 0 35px;
    font-size: 17px;
}

@media screen and (max-width: 1100px) {
	.spread .floatbook {
		max-width: 320px;
	}
}
@media screen and (max-width: 992px) {
	.floatbook {
		top: 50%;
		right: 0;
		max-width: 350px;
	}
	.ontop ul {
		float: unset;
		text-align: center;
	}
	.ontop ul li {
		list-style: none;
		margin: 0 5px;
		font-size: 17px;
	}
	.ontop span{
		display: block;
		text-align: center !important;
	}
	.ontop .mobilegrey span, .ontop .mobilegrey span a{
		color: #606060 !important;
	}
}
@media screen and (max-width: 767px) {
	.threebonus .bonus {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.threebonus .bonus h3 {
		display: inline-block;
		min-width: 250px;
		text-align: left;
		padding-left: 5%;
	}

	.floatbook {
		position: relative;
		top: unset;
		right: unset;
		transform: unset;
		margin: 0 auto;
	}
	.fl-node-5a4edfb6e8f8c{
		max-width: 450px;
		margin: 0 auto;
	}
	.fl-node-5a4ec8dcd0c12 > .fl-col-content {
		box-shadow: none !important;
	}
	.fl-node-5a4ecc1e89f05{
		border-top: 2px solid #d9d9d9;
		border-bottom: 2px solid #d9d9d9;
		-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 5%, #d9d9d9 5%, #d9d9d9 95%, rgba(0,0,0,0) 95%);
	    -o-border-image: -o-linear-gradient(left, rgba(0,0,0,0) 5%, #d9d9d9 5%, #d9d9d9 95%, rgba(0,0,0,0) 95%);
	    border-image: linear-gradient(to right, rgba(0,0,0,0) 5%, #d9d9d9 5%, #d9d9d9 95%, rgba(0,0,0,0) 95%);
		border-image-slice: 1;
	}
	.fl-node-5a4eda2372b28 img{
		display: none;
	}
	.page-id-171 .testimonials .testimonial-left img {
		padding-right: 0;
	}
	ul.spreadtheword  {
		text-align: center;
	}
	ul.spreadtheword a.fl-button {
		min-width: 145px;
	}
}
@media screen and (max-width: 480px) {
	.threebonus .bonus .icon {
		width: 100px;
		height: 100px;
		margin-bottom: 0;
	}
	.threebonus .bonus.b1 .icon,
	.threebonus .bonus.b3 .icon{
		width: 100px;
	}
	.threebonus .bonus.b2 .icon{
		width: 110px;
	}
	.threebonus .bonus .icon{
		padding: 20px 24px;
	}
	.threebonus .bonus.b1 .icon,
	.threebonus .bonus.b3 .icon{
		padding: 22px 30px 8px 30px;
	}
	.threebonus .bonus h3{
		font-size: 6vw;
		min-width: 170px;
	}
	.threebonus .bonus {
		text-align: left;
	}

	.floatbook, .spread .floatbook {
		max-width: 60%;
	}

	.page-id-171 .testimonials .testimonial-left img {
		max-width: 100%;
	}

	ul.spreadtheword li {
		/*display: block;*/
		margin: 0 0 10px;
	}

	.gifts .row{
		display: block;
	}
	.gifts img {
		max-width: 100px !important;
	}
	.gifts .gtitle1{
		font-size: 16px;
	}
	.gifts .gtitle2{
		font-size: 15px;
		margin: 5px 0 15px 0;
	}
	.gifts .gtext{
		clear: both;
		margin: 0;
	}
	.gifts .col-md-9 {
		padding: 0 0 20px 0 !important;
	}
}

/***********************AFFILIATE CENTER************************/

.page-id-228 .fl-col.callout > .fl-col-content {
  position: relative;
}
.fl-col.callout .fl-icon > a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: '';
}

.callout .fl-module-callout{
	border: 2px solid transparent;
}
.callout .fl-module-callout:hover{
	border: 2px solid #d44b2f;
}
.linkhover {
    display: block;
    padding-top: 10px;
}
a.linkhover, a.linkhover:hover, .dashicons-chart-area::before {
	text-decoration: none !important;
}

.fl-accordion-item {
    border-top: 1px solid #e1e1e1 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}
.fl-accordion-item:last-child{
	border-bottom: 1px solid #e1e1e1 !important;
}
.fl-accordion-item:hover,
.fl-accordion-item-active{
    background-color: #f2cdc5;
}
.fl-accordion-small .fl-accordion-content {
    background: #fff;
	padding-top: 24px;
}
.fl-accordion-button-label{
	font-size: 25px;
	color: #d44b2f;
}
.fl-accordion-button-icon{
	color: #d44b2f;
	opacity: 1;
	top: -3px;
	position: relative;
}

@media screen and (max-width: 480px) {
	.fl-accordion-button-label{
		font-size: 18px;
	}
}

/***********************BONUS VIDEOS************************/

#stickybar ul {
    padding: 0;
    list-style: none;
    margin: 0;
    text-align: center;
}
#stickybar ul li {
    display: inline-block;
    margin: 0;
	padding: 0 10px;
}
#stickybar ul li a {
    color: #2e2e2e;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 17px;
    font-family: 'DIN Condensed Bold';
    border-bottom: 2px solid #2e2e2e;
    padding-bottom: 2px;
}
#stickybar ul li a:hover{
	color: #8d2611;
	border-bottom: 2px solid #d44b2f;
}

#stickybar.navbar-fixed-top{
	box-shadow: 0px 0px 10px rgba(207,207,207,0.5);
}
#stickybar select {
    display: none;
}

@media screen and (max-width: 991px) {
	#stickybar nav ul{
		display: none;
	}
	#stickybar select {
		display: inline-block;
	}
	#stickybar label.wrap {
		overflow: hidden;
		height: 50px;
		position: relative;
		display: block;
		border: 2px solid #8d2611;
	}
	#stickybar select.dropdown{
		height: 50px;
		padding: 10px;
		border: 0;
		width: 100%;
		text-transform: uppercase;
		font-family: 'DIN Condensed Bold';
		font-size: 17px;
	   -webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	#stickybar label.wrap:after {
		content: "\f078";
		font-family: 'FontAwesome';
		color: #8d2611;
		position: absolute;
		right: 0;
		top: 13px;
		z-index: 1;
		height: 100%;
		pointer-events: none;
		right: 10px;
	}
}

/********************POPUP / LIGHTBOX********************/

.mfp-bg {
    background: #d44b2f;
    opacity: 0.75;
    filter: alpha(opacity=75);
}
.fl-button-lightbox-content {
	max-width: none !important;
    max-width: unset !important;
    width: 90% !important;
    padding: 50px 20px !important;
}

#discounts h6 {
    text-align: center;
    margin-bottom: 50px;
}
#discounts .box-row {
    display: flex;
}
#discounts .box {
    width: 30%;
    margin: 0 2%;
    margin-bottom: 50px;
    border-bottom: 1px solid #969696;
    padding-bottom: 50px;
}
#discounts .image {
    margin: 0 auto 40px !important;
    display: block;
    height: 100px;
}
#discounts .image img {
    max-height: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
#discounts .maintext {
    font-family: 'DIN Regular';
    line-height: 1.6em;
    margin-bottom: 20px;
}
#discounts .offer {
    line-height: 1.8em;
	margin-bottom: 20px;
}
#discounts .fineprint {
    font-family: 'DIN Regular';
    font-size: 13px;
    line-height: 1.5em;
	margin-bottom: 20px;
}
#discounts .box-row:last-child .box {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mfp-close-btn-in .mfp-close {
    color: #2e2e2e;
    padding-top: 12px;
    padding-right: 15px;
    font-size: 40px;
    opacity: 1;
}
.mfp-close-btn-in .mfp-close:hover {
    color: #d44b2f;
}


@media screen and (max-width: 992px) {
	.fl-button-lightbox-content {
		padding: 50px !important;
	}
	#discounts .box-row {
		display: block;
	}
	#discounts .box {
		width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 480px) {
	.fl-button-lightbox-content {
		padding: 20px !important;
	}
	#discounts h6 {
		margin-bottom: 30px;
	}
	#discounts .image {
		height: unset;
		margin: 30px 0 30px !important;
	}
	#discounts .image img {
		max-width: 65%;
		top: unset;
		transform: unset;
	}
	#discounts .box {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
}

/***********************NEWSLETTER GENERAL**********************/

.mc4wp-form-fields input,
.yikes-easy-mc-form input,
.moOptinForm input{
	height: auto;
	width: 360px;
	padding: 12px !important;
	border-radius: 0;
	border-color: #8d2611 !important;
	color: #d44b2f !important;
	font-size: 18px !important;
	line-height: normal;
	background-color: #fff !important;
	border-width: 1px !important;
	font-weight: 400;
	font-family: 'BrownStd Regular';
}
.mc4wp-form input[type="submit"],
.yikes-easy-mc-submit-button,
.moOptinForm input[type="submit"] {
    background-color: #8d2611 !important;
    color: #fff !important;
    text-transform: uppercase;
    margin: 0 !important;
    position: relative;
    border: none;
    border-radius: 0;
    font-size: 18px;
    min-height: unset !important;
    top: -1px;
}
.mc4wp-form input[type="submit"]:hover,
.yikes-easy-mc-submit-button:hover,
.moOptinForm input[type="submit"]:hover{
    background-color: #d44b2f !important;
	border: none;
}
.yikes-mailchimp-container .edit-link{
	display: none;
}
.yikes-easy-mc-form input[type=email]:focus,.yikes-easy-mc-form input[type=number]:focus,.yikes-easy-mc-form input[type=text]:focus,.yikes-easy-mc-form input[type=url]:focus,.yikes-easy-mc-form select:focus {
	 outline: none !important;
}
.yikes-easy-mc-error-message, .yikes-easy-mc-error-message a,
.yikes-easy-mc-success-message{
    color: #8d2611 !important;
    background: transparent !important;
}
.yikes-easy-mc-submit-button-2:active, .yikes-easy-mc-submit-button-2:focus, .yikes-easy-mc-submit-button-2[disabled] {
    background-color: #8d2611 !important;
}
.home .yikes-easy-mc-success-message{
	position: relative;
    margin-top: -57px;
    top: 110px;
}

.moOptinForm p {
  text-align: center;
  font-weight: 300;
  font-family: 'DIN Medium';
  color: #fff;
	margin: 10px 0;
}

.moOptinForm{
	margin-bottom: -10px;
	max-width: 550px;
	width: 100%;
}
.moOptinForm .mo-optin-form-wrapper{
	background: none !important;
  border: none !important;
	margin: 0 !important;
}
.moOptinForm .mo-optin-fields-wrapper{
	display: flex;
}
.moOptinForm .gridgum_body-inner {
	padding: 0 !important;
}
.moOptinForm .mo-optin-form-container .mo-optin-spinner{
	opacity: 1 !important;
  background-color: #fff !important;
}
body #NeDxjiCvxE .mo-optin-form-container .mo-optin-form-wrapper .mo-optin-success-msg {
	font-family: 'DIN Condensed Bold';
  font-size: 30px !important;
  text-align: center;
  color: #d44b2f !important;
  text-transform: uppercase;
}
body #NeDxjiCvxE .mo-optin-form-container .mo-optin-spinner {
  background-image: url(https://foodthebook.com/wp-content/uploads/2021/03/loading7.gif);
  background-size: 50px !important;
}
.mo-optin-form-wrapper{
  padding: 2px 0 !important;
}
.moOptinForm .mo-optin-error {
  margin-top: 10px !important;
}

.moOptinForm input[type="email"] {
    width: 69% !important;
		margin-right: 1% !important;
		border: 1px solid #8d2611 !important;
}
.moOptinForm input[type="submit"] {
    width: 29% !important;
		margin-left: 1% !important;
		padding: 0 !important;
    border-radius: 0 !important;
    height: 48px !important;
    top: 0;
}

@media only screen and (max-width: 991px) {
	.moOptinForm {
		max-width: unset !important;
	}
}
@media only screen and (max-width: 480px) {
  .moOptinForm .mo-optin-fields-wrapper{
  	display: block;
  }
	.moOptinForm {
    margin: 0 auto -10px;
		padding: 0 10px;
	}
  .moOptinForm .mo-optin-error {
    margin-top: 0 !important;
  }
	.moOptinForm input[type="email"],
	.moOptinForm input[type="submit"] {
    width: 100% !important;
    margin-right: 0 !important;
		margin-left: 0 !important;
		margin-bottom: 7px !important;
    text-align: center;
	}
	body #NeDxjiCvxE .mo-optin-form-container .mo-optin-form-wrapper .mo-optin-success-msg{
    font-size: 22px !important;
  }
}

/*********************NEWSLETTER LANDING PAGE*******************/

.newsletter {
  padding: 70px 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.newsletter h2{
    margin: 0 30px 0 0;
}

.page-id-11 .yikes-easy-mc-form{
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-id-11 .yikes-easy-mc-form label{
	margin-bottom: 0;
	width: 360px;
}
.page-id-11 .yikes-easy-mc-submit-button{
	display: inline-block !important;
	width: 180px !important;
	margin: 0 0 0 10px !important;
	top: -4px;
}


@media screen and (max-width: 992px) {
	.newsletter {
		display: block;
	}
	.newsletter h2 {
		margin: 0 0 20px 0;
	}
}
@media screen and (max-width: 767px) {
	.page-id-11 .yikes-easy-mc-form label {
		width: 70%;
	}
	.page-id-11 .yikes-easy-mc-submit-button {
		width: 25% !important;
	}
}
@media screen and (max-width: 480px) {
	.page-id-11 .yikes-easy-mc-form{
		display: block;
	}
	.page-id-11 .yikes-easy-mc-form label {
		width: 100%;
	}
	.page-id-11 .yikes-easy-mc-form label input{
		text-align: center;
	}
	.page-id-11 .yikes-easy-mc-submit-button {
		width: 100% !important;
		margin: 0 !important;
	}
	.newsletter {
		padding: 25px 0;
	}
}

/*.newsletter .mc4wp-form-fields,
.newsletter .yikes-easy-mc-form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter h2 {
    padding: 0 20px;
	display: inline-block;
	position: relative;
	top: 10px;
}
.yikes-mailchimp-container .edit-link{
	display: none;
}

.page-id-11 #mc4wp-form-1,
.page-id-11 .yikes-mailchimp-container{
    display: inline-block;
}
.page-id-11 .form .row1,
.page-id-11 .form .step,
.page-id-11 .form .bonustext,
.page-id-11 .form input[type="text"],
.page-id-11 .form input[type="number"]{
	display: none;
}
.page-id-11 .form .formrow.row2,
.page-id-11 .form .formrow.row3,
.page-id-11 .form input[type="email"]{
    display: inline-block;
}
.page-id-11 .form h2 {
    position: relative;
    top: 10px;
}

@media screen and (max-width: 1100px) {
	.newsletter input {
		width: 325px;
	}
}
@media screen and (max-width: 992px) {
	.newsletter .mc4wp-form-fields {
		display: block;
		text-align: center;
	}
	.newsletter input {
		display: inline-block;
	}
	.newsletter input[type="submit"] {
		position: relative;
		top: 2px;
	}
	.newsletter h2 {
		top: 0;
	}
}
@media screen and (max-width: 767px) {
	.newsletter input {
		width: 240px;
	}
}
@media screen and (max-width: 480px) {
	.newsletter input {
		width: 100%;
		text-align: center;
	}
	.newsletter input[type="submit"] {
		width: 100%;
		top: 5px;
		margin: 0;
	}
	.newsletter {
		padding: 20px 0 50px;
	}
	.page-id-11 .form .formrow.row2,
	.page-id-11 .form .formrow.row3,
	.page-id-11 .form input[type="email"]{
		display: block;
	}
	.page-id-11 #mc4wp-form-1 {
		width: 90%;
	}
}*/

/***********************NEWSLETTER CLAIM PAGE**********************/


/***********************NEWSLETTER BONUS PAGE**********************/

.grecaptcha-badge {
    display: none !important;
}
.mc4wp-form .formrow {
    clear: both;
    padding: 30px 0;
}
.mc4wp-form .formrow.row1{}
.mc4wp-form .formrow.row2, .mc4wp-form .formrow.row3{
	border-top: 1px solid #8d2611;
}
.mc4wp-form .formrow.row3{}
.mc4wp-form .step {
    font-size: 30px;
    font-family: 'DIN Condensed Bold';
    color: #d44b2f;
    float: left;
    width: 20%;
}
.mc4wp-form .boxright {
    float: left;
    width: 80%;
}
.mc4wp-form .formfields{
	padding: 15px 0;
}
.mc4wp-form .bonustext {
    font-size: 17px;
    line-height: 1.7em;
}
.mc4wp-form .row3 .bonustext{
	line-height: 44px;
}
.mc4wp-form ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
.mc4wp-form ul li {
    display: inline-block;
    margin: 20px 2%;
    width: 28%;
}
.mc4wp-form a#amazon img {
    height: 30px;
    display: block;
    float: left;
}
.mc4wp-form a#bn img {
    height: 22px;
    position: relative;
    top: -13px;
    margin: 0 auto;
    display: block;
}
.mc4wp-form a#ib img {
    height: 50px;
    position: relative;
    float: right;
    display: block;
}
.mc4wp-form input{
    width: 90%;
    margin-bottom: 10px;
}
.mc4wp-form input[type="submit"] {
    background-color: #8d2611 !important;
    top: 0;
    width: 60%;
    float: left;
	margin-right: 20px !important;
}
.mc4wp-response {
    clear: both;
    margin-top: 50px;
    text-align: center;
    color: #d44b2f;
}

@media screen and (max-width: 600px) {
	.mc4wp-form .formrow.row1 {
		margin-top: -20px;
	}
	.mc4wp-form .step {
		float: unset;
		width: 100%;
		text-align: center;
	}
	.mc4wp-form .boxright,
	.mc4wp-form input,
	.mc4wp-form input[type="submit"]{
		width: 100%;
	}
	.mc4wp-form .bonustext {
		text-align: center;
	}
}

/***********************RESOURCES PAGE**********************/

.r-img{
    background-color: #fff;
    border: 1px solid #efefef;
}
.r-text{
    font-size: 20px;
    line-height: 1.8em !important;
}
.r-text b {
    display: block;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 10px;
}
.r-text a{
    color: #8d2611;
}
.r-text a b{
    color: #d44b2f;
}
.r-text a:hover{
    text-decoration: none;
}
@media screen and (max-width: 992px) {
	.r-text{
    	font-size: 16px;
	}
	.r-text b{
    	font-size: 22px;
	}
}
@media screen and (max-width: 480px) {
	.r-text{
    	font-size: 14px;
	}
	.r-text b{
    	font-size: 18px;
	}
}

#resources{
    width: 100%;
    font-size: 24px;
    color: #8d2611;
}
#resources tr{
    border-bottom: 1px solid #efefef;
}
#resources tr td{
    padding: 10px 10px;
}
#resources tr td:first-child{
    width: 15%;
}
#resources tr td:last-child{
    word-wrap: break-word;
    word-break: break-all;
}

@media screen and (max-width: 992px) {
    #resources{
        font-size: 18px;
    }
}
@media screen and (max-width: 480px) {
    #resources{
        font-size: 14px;
    }
    #resources tr td:first-child{
        width: 25%;
    }
}
