/*
Theme Name: survivalcenter
Author: MOC
Version: 1.0
Text Domain: survivalcenter

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
body {
	font-family: 'Open Sans', sans-serif !important;
	font-size: 14px;
	line-height: 1.4;
}
*:not(.fa) {
	font-family: 'Open Sans', sans-serif !important;
	text-shadow: none;
}
.post-thumb {
	float: left;
	width: 260px;
	margin-right: 24px;
}
.content > .centered {
	padding: 35px 0px 65px 53px;
}
.content > .block-separator-line {
	display: block;
	margin-top: 7px;
}
#searchsubmit {
	margin-top: 0px;
	background: url('//blog.survivalfrog.com/wp-content/themes/survivalcenter/images/search_btn_icon.png') center center no-repeat,
	-webkit-linear-gradient(top, rgb(33, 119, 164), rgb(27, 94, 145));
	background: url('//blog.survivalfrog.com/wp-content/themes/survivalcenter/images/search_btn_icon.png') center center no-repeat,
	-moz-linear-gradient(top, rgb(33, 119, 164), rgb(27, 94, 145));
	background: url('//blog.survivalfrog.com/wp-content/themes/survivalcenter/images/search_btn_icon.png') center center no-repeat,
	-ms-linear-gradient(top, rgb(33, 119, 164), rgb(27, 94, 145));
	background: url('//blog.survivalfrog.com/wp-content/themes/survivalcenter/images/search_btn_icon.png') center center no-repeat,
	-o-linear-gradient(top, rgb(33, 119, 164), rgb(27, 94, 145));
	background: url('//blog.survivalfrog.com/wp-content/themes/survivalcenter/images/search_btn_icon.png') center center no-repeat,
	linear-gradient(top, rgb(33, 119, 164), rgb(27, 94, 145));
}
.screen-reader-text{
	display: none;
}
.site-content {
	width: 800px;
	padding-right: 15px;
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-ms-box-sizing: content-box;
	box-sizing: content-box;
	margin-right: -1px;
}
.widget-area {
	overflow: hidden;
	padding: 20px 0 0 10px;
}
.post-list > li {
	padding: 0 0 33px;
	margin: 0 0 38px;
}
.post-list a {
	text-decoration: none;
}
.post-desc {
	font-size: 14px;
	line-height: 1.5;
}
.entry-content ul li {
	list-style: disc outside none;
	font-size: 18px;
	line-height: 36px;
}
.entry-content ol li {
	list-style: decimal outside none;
}
.entry-content ul,
.entry-content ol {
	margin: 1em 0;
	padding: 0 0 0 40px;
}
.entry-content b,
.entry-content strong,
.entry-content b *,
.entry-content strong * {
	font-weight: bold;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content p {
	line-height: 1.5;
	margin: 0 0 12px;
}

.entry-content p {
	font-size: 14px;
}


/* Images */
.entry-content .alignleft {
	float: left;
}
.entry-content .alignright {
	float: right;
}
.entry-content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
.entry-content img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.entry-content .wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
.entry-content img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.comments-area code {
	white-space: normal;
}
.comments-area {
	clear: both;
	font-size: 15px;
	margin-top: 40px;
	overflow: hidden;
}
textarea {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	border: 1px solid #E2E2E2;
	padding: 10px;
	resize: none;
	width: 100%;
	margin: 10px 0;
}
.comment-respond {
	margin-top: 20px;
}
.comment-content.comment > p:first-child {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	background: #E2E2E2;
	padding: 10px;
	margin: 10px 0;
}
.comment-author .avatar, .comment-author cite {
	margin-right: 5px;
}
#content img, #content p img {
	height: auto;
	max-width: 100%;
	margin:15px;
}
.comment-form label {
	width: 100px;
}
.comment-form > p {
	margin-top: 10px;
}

.commentlist .children {
	padding-left: 20px;
}

.commentlist li {
	margin-top: 10px;
}
.header {
	padding: 0;
}
.header .top-search input[type="text"] {
	height: 46px;
}

.header .top-nav {
	background: none;
}

.header .top-nav > li.menu-item-has-children > a {
	margin-right: 25px;
}

li.menu-item-has-children a {
	position: relative;
}

li.menu-item-has-children a:after {
	content: "^";
	position: absolute;
	top: 18px;
	right: 2px;
	transform: rotate(180deg) scaleX(2);
	font-size: 10px;
	font-weight: 400;
	color: #757575;
}

li.menu-item-has-children a:hover:after {
	color: #3d668d;
}

.header .top-nav li .dropdown-section .dropdown-right-section ul li {
	border: none;
}

.header .top-nav li .dropdown-section .dropdown-right-section ul li:hover .dropdown-section {
	margin: 0;
	left: 281px;
	top: auto;
	margin-top: -55px;
}

.header .top-nav li .dropdown-section .dropdown-right-section ul li a,
.header .top-nav li .dropdown-section .dropdown-right-section ul li:hover .dropdown-section .dropdown-right-section ul li a {
	background: none;
	color: #777;
	padding: 10px;
}

.header .top-nav li .dropdown-section .dropdown-right-section ul li:hover a,
.header .top-nav li .dropdown-section .dropdown-right-section ul li:hover .dropdown-section .dropdown-right-section ul li:hover a{
	background-color: #f4f4f4;
	color: #3d668d;
}

.header .top-nav li .dropdown-section .dropdown-right-section ul li a .dropdown-section .dropdown-right-section {
	margin: 0;
	left: 296px;
}

li.menu-item-has-children li.menu-item-has-children a:after {
	content: ">";
	position: absolute;
	top: 8px;
	right: 10px;
	transform: scaleY(2);
}

li.menu-item-has-children li:not(.menu-item-has-children) a:after {
	display: none;
}

.header .top-nav > li {
	position: relative;
}

.header .top-nav > li:before {
	display: none;
}

.header .top-nav > li > a {
	color: black;
	margin: 0 10px 0 0;
	padding: 18.5px 15px 20.5px 0;
	text-transform: uppercase;
}

.header .top-nav > li > a:hover,
.header .top-nav > li > a.hovered {
	background: none;
	color: #3d668d;
}

.header .top-nav li:hover .dropdown-section {
	display: none;
}

.header .top-nav > li:hover > .dropdown-section {
	display: block;
}

.header .top-nav > li:hover > .dropdown-section li:hover > .dropdown-section {
	display: block;
}

.header .top-nav h1 {
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
}

.single-post .post-pagination {
	margin-top: 38px;
}

.post-nav-separator {
	padding: 0 15px;
}

.video-container {     position: relative;     padding-bottom: 56.25%;     padding-top: 30px; height: 0; overflow: hidden; }   .video-container iframe, .video-container object, .video-container embed {     position: absolute;     top: 0;     left: 0;     width: 100%;     height: 100%; }
.header .contact-info-box span{
	color: #1b5e91;
}
.header .contact-info-box .phone-numb {
	color: #1b5e91 !important;
}
.header .contact-info-box .stars{
	background: url('https://cdn.shopify.com/s/files/1/0397/9069/t/2/assets/slice.png?17479400876020397934') no-repeat scroll 0 -38px transparent;
}
.free-shipping{
	background-color: #e8e8e8;
}
.free-shipping > figure{
	display: flex;
	display: -webkit-flex;
	padding-left: 5px;
}
.free-shipping > figure > figcaption{
	color: #1b5e91;
	padding-top: 15px;
	padding-left: 5px;
	padding-right: 5px;
}
.free-shipping  > figure > figcaption > p{
	text-decoration: underline;
	font-size: 0.8em;
	padding: 0px 0px 5px 0px;
	line-height: 0.8em;
	font-weight: 800;
}
.header .contact-info-box span.h-phone {
	color: gray;
	display: block;
	font: 300 12px/15px 'Open Sans';
	letter-spacing: 4px;
	padding-right: 7px;
}
.free-shipping > figure{padding-left: 0px;}
.free-shipping > figure > figcaption{ padding-top: 10px;}
.first-sale-block{width:auto;}
.sale .btn.btn-yellow:before {
	content: "";
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: middle;
	*vertical-align: auto;
	zoom: 1;
	*display: inline;
	width: 32px;
	height: 26px;
	margin-right: 0px;
	background: url("https://cdn.shopify.com/s/files/1/0397/9069/t/2/assets/blog-icon-white25.png?223329377973584055") no-repeat scroll 0 0px transparent;
}
.sale .btn.btn-yellow {
	background: #1b5e91;
	background-image: -webkit-linear-gradient(top, #1b5e91, #2980b9);
	background-image: -moz-linear-gradient(top, #1b5e91, #2980b9);
	background-image: -ms-linear-gradient(top, #1b5e91, #2980b9);
	background-image: -o-linear-gradient(top, #1b5e91, #2980b9);
	background-image: linear-gradient(to bottom, #1b5e91, #2980b9);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #ffffff;
	font:900 14px/48px 'Open Sans';
	padding: 0;
	text-decoration: none;
	height: 48px;
	width: 120px;
	border: 0px;
}
.sale .btn.btn-yellow:hover {
	background: #588AB0;
	background-image: -webkit-linear-gradient(top, #588AB0, #1b5e91);
	background-image: -moz-linear-gradient(top, #588AB0, #1b5e91);
	background-image: -ms-linear-gradient(top, #588AB0, #1b5e91);
	background-image: -o-linear-gradient(top, #588AB0, #1b5e91);
	background-image: linear-gradient(to bottom, #588AB0, #1b5e91);
	text-decoration: none;
}
.mailmunch-popover-content{max-width: 700px !important;}
.header h1 img{
	padding: 25px 0;
}
.header .top-search input[type="text"] { width: 320px;}
.header .top-search{ margin: 10px 15px 0 0 !important; position: relative; }
.slogan-search { float: left; width: 395px; }
.header .contact-info-box {padding: 25px 0 0;width: 200px;}

/* Footer wider  */
.footer-wrapper {
	margin-top: 30px;
	background: #fafafa;
}
.footer-middle {
	position: relative;
	padding: 30px 0;
	font-size: 14px;
	color: #000;
	border-top: 1px solid #f4f4f4;
}
.footer-middle a {
	color: #000;
	text-decoration: none;
}
.footer-middle a:hover {
	color: #7b858a;
	text-decoration: underline;
}
.footer-middle .info-footer .footer-block-title h3 {
	margin: 5px 0 20px;
	color: #313131;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
}
.footer-wrapper .footer-middle .info-footer .footer-block-title h3 span {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #000;
	padding: 0;
}
.footer-middle .info-footer .custom-footer-content {
	display: block;
	padding: 0;
	background-color: transparent;
}
.footer-middle .info-footer .custom-footer-content ul.footer-list {
	width: 100%;
	margin: -5px 0 0;
	padding: 0;
}
.footer-middle .info-footer .custom-footer-content ul.footer-list li {
	display: block;
	position: relative;
	padding: 10px 0;
	line-height: 1;
	margin: 0;
	list-style: none;
}
.footer-contact-section {
	line-height: 1.8;
}
.footer-contact-section a {
	display: block;
}
.footer-contact-section .social-icons-footer a {
	display: inline;
	font-size: 18px;
}
.footer-contact-section .social-icons-footer a + a {
	padding-left: 16px;
}
.footer-usa-section img {
	display: block;
	width: 150px;
	margin: 0 20px 40px 0;
}
footer .legal {
	color: #000;
	background: #f4f4f4;
	border-top: 1px solid #e7e7e7;
	padding: 5px 0;
	line-height: 26px;
}
footer .legal-links {
	font-size: 13px;
	list-style: none;
	margin: 0;
}
footer .legal-links li {
	display: inline-block;
	margin-right: 20px;
}
footer .copyright {
	font-size: 13px;
	text-align: right;
}
@media (max-width: 767px) {
	.info-footer {
		text-align: center;
	}
	.info-footer:nth-child(2) .widget-wrapper {
		margin: -14px 0 40px;
	}
	.info-footer:nth-child(2) .footer-block-title {
		display: none;
	}
	.footer-usa-section img {
		margin: 0 auto 30px;
	}
	footer .legal-links li {
		text-align: center;
		display: block;
	}
	footer .copyright {
		text-align: center;
	}
}
@media (min-width: 768px) {
	.footer-contact-section .customer-service-link {
		padding-bottom: 10px;
	}
	.footer-contact-section address {
		padding-top: 10px;
	}
	.footer-contact-section .social-icons-footer {
		padding-top: 10px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.info-footer {
		float: left;
		width: 33%;
	}
	.info-footer:last-child {
		width: 100%;
		text-align: center;
	}
	.info-footer:last-child img {
		display: inline-block;
		margin: 0 50px;
	}
}

/* social icons */
.fa-facebook:before {
	content: "\f09a";
	color: #44619d;
}
.fa-pinterest-p:before {
	content: "\f231";
	color: #e60023;
}
.fa-twitter:before {
	content: "\f099";
	color: #25a1f3;
}
.fa-instagram:before {
	content: "\f16d";
	color: #000;
}
.fa-youtube-play:before {
	content: "\f16a";
	color: #ff0000;
}
.fa-email:before {
	content: "\f003";
	color: #000;
}
.fa-vimeo:before {
	content: "\f27d";
	color: #1ab7ea;
}







/* Content Wider */
.content > .centered{padding-left:0;}
.site-content{width: 840px;padding-right: 25px;}
.widget-area {padding-left: 25px; padding-top: 0;}

.header ul.sync-nav > li > a {
	display: block;
	padding: 12px 20px;
	font: 700 13px 'Open Sans';
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	position: relative;
	z-index: 11;
	margin: 0px;
}
.header ul.sync-nav > li > a:hover,
.header ul.sync-nav .dropdown .dropdown-menu a:hover,
.header ul.sync-nav .dropdown .dropdown-menu a:focus{
	background: rgb(102, 102, 102);
	margin-bottom: 0;
	color: #FFFFFF;
}
.header ul.sync-nav .dropdown .dropdown-menu {
	border-color: #ddd;
	background-color: #FFF;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
	display: none;
	margin-left: -106px;
	padding: 20px 25px 33px;
	width: 306px;
	margin-top: 0px;
	border-top: 0px;
}
.header ul.sync-nav .dropdown .dropdown-menu>li{
	border-bottom: 2px solid #EFF1F1;
	position: relative;
	display: block;
	width: 100%;
}
.header ul.sync-nav .dropdown .dropdown-menu a {
	color: #7E8C92;
	background-image: none;
	text-decoration: none;
}
.dropdown-menu>li>a {
	display: block;
	padding: 6px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
	position: relative;
}
#responsive{
	top: 0px;
}
.caret{
	border-top: 4px solid #fff;
}
.header .header-action {
	float: left;
	/*width: 348px;*/
	margin: 1px 0px 8px 0;
	color: #1b5e91;
	font: 300 13px 'Open Sans';
	font-size: 24px;
	text-align: center;
	line-height: 1.1;
}
.header .header-action span {
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	text-transform: uppercase;
	font: 900 13px 'Open Sans';
	font-size: 24px;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
}
.header .header-action span>img {
	width: auto;
	height: 100%;
	margin-right: 5px;
	float: left;
}
.guarantee-content h2 {
	text-align: left;
	font-size: 24px;
	text-transform: capitalize;
	letter-spacing: 0px;
	line-height: 20px;
	margin-bottom: 5px;
	color: #40678b;
	margin-top: 5px;
}
.guarantee-content h3 {
	text-align: left;
	font-size: 18px;
	text-transform: capitalize;
	letter-spacing: 0px;
	color: #464646;
}
input[type="text"]{
	font-size: 16px;
	width: 205px;
}
.modal-backdrop.in{
	opacity: 0.5;
}
.customer-nav {
	margin-right: -15px;
}
.customer-nav li {
	padding: 10px 0;
}
.customer-nav li a {
	padding: 0 15px;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
}
.customer-nav li + li a {
	border-left: 1px solid #e7e7e7;
}
.logo {
	float: left;
}
.searchheader {
	float: left;
	margin-top: 21px;
	width: 369px;
	margin-left: 16px;

}
.header .contact-info-box {
	padding: 25px 0 0;
	width: 180px;
	float: right;
}
.header .searchheader input[type="text"] {
	float: left;
	width: 320px;
	padding: 12px 10px;
	border: 1px solid #1b5e91;
	font-size: 14px;
	color: #000000;
}
.searchbtn {
	background-color: #40678b;
	color: #fff;
	padding: 3px;

	border-radius: 5px;
}

#videoLeft .middle {
	color: #0d5d90;
	font-size: 24px;
	line-height: 1em;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	text-align: left;
	margin-top: 10px;
	font-weight: 600;
	letter-spacing: -0.05em;
}
#videoLeft .bottom > table.right {
	width: 100%;
	text-align: left;
	float: none;
	margin-top: 10px;
	font-size: 16px;
	color: #000000;
	letter-spacing: -0.05em;
}
.moreinfolink a {
	font-size: 21px !important;
	text-align: center;
	float: ;
	margin-left: 90px;
}

/*  31 OCT  */
.logo img.logo {
	max-width: 570px;
	padding: 3px 10px 10px;
}
.left {
	margin: 12px;
}
.bottom h6 {
	font-size: 22px;
}

.block-with-videos ul li.videos-all-items1 {
	width: 45%;
}
.block-with-videos ul li.videos-all-items2 {
	width: 52%;
}
.block-with-videos .video-wrapper > .video-frame {
	background-color: #ffffff;
	cursor: pointer;
	min-height: 311px;
	margin: 0 auto;
	max-width: 415px;
}
.video-container2 {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.12%;
	padding-top: 0;
	position: relative;
}
.block-with-videos .video-container2 iframe{
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.block-with-videos .video-wrapper > .video-frame > .top {
	color: #000000;
	display: flex;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding-left: 15px;
}
.block-with-videos .video-wrapper > .video-frame > aside {
	color: #000000;
	display: flex;

	font-size: 18px;
	font-weight: 800;
	margin-top: -10px;
	padding-left: 15px;
}
.block-with-videos .video-wrapper > .video-frame > .bottom {
	display: flex;
	margin-left: 15px;
	margin-top: 10px;
}
.block-with-videos .video-wrapper > .video-frame > .bottom > .left {
	margin-left: -35px;
	width: 100%;
}
.block-with-videos .video-wrapper #videoLeft.video-frame > .bottom > .right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}
.block-with-videos .video-wrapper #videoLeft.video-frame > .bottom > table.right {
	color: #000000;
	float: none;
	font-size: 20px;
	letter-spacing: -0.05em;
	margin-top: 10px;
	text-align: left;
	width: 100%;
	margin-left: -35px;
}
.block-with-videos .video-wrapper > .video-frame > .bottom > table.right tr td:last-child {
	line-height: 1em;
	padding-bottom: 5px;
}
.block-with-videos .video-wrapper > .video-frame > .bottom > table.right tr td:first-child {
	position: relative;
}
.block-with-videos .video-wrapper > .video-frame > .bottom > table.right tr td:first-child span {
	font-size: 8px;
	position: absolute;
	right: 10px;
	top: 5px;
}

#home-testimonials-block .strong-view.modern .testimonial-content {
	margin: 0;
	width: 100%;
	text-align: left;
}
.testimonial-heading {
	display: none;
}
#home-testimonials-block .testimonial-content p {
	color: #7a7a7a;
	font-size: 30px;
	font-weight: 400;
	line-height: normal;
}
#home-testimonials-block .testimonial-image {
	display: none;
}
#home-testimonials-block .testimonial-name {
	color: #000;
	font-size: 30px;
	text-align: left;
}
#home-testimonials-block .testimonial-client {
	margin-top: 10px;
}
.testimonial-image {
	text-align: center;
	margin-bottom: 30px;
}
#home-testimonials-block .strong-view.pager-style-buttons .wpmslider-wrapper .wpmslider-pager-link::before {
	color: #588ab0;
	font-size: 14px;
	width: 20px;
}
.testimonials-block.block-separator-line .centered {
	padding: 0;
}
#secondary .widget select {
	padding: 6px;
	width: 100%;
}
img {
	max-width: 100%;
}
.toolbar-panel {
	background: #3d668d;
	height: 32px;
}
@media screen and (max-width: 767px){
	.logo img.logo {
		max-width: 100%;
	}
	.toolbar-panel {
		height: auto;
		overflow: hidden;
	}
	.toolbar-panel .action-box {
		float: left;
		text-align: center;
		width: 100%;
		font-size: 18px;
		padding-bottom: 3px;
	}
	#content .post-thumb img {
		margin-left: 0;
		margin-right: 0;
	}
	#content .post-thumb, #content .post-thumb img {
		margin: 0;
	}
	.block-with-videos .with-stripes {
		margin-bottom: 15px;
	}
	.block-with-videos .video-wrapper > .video-frame > .top {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 0px;
		text-align: left;
	}
	.block-with-videos .video-wrapper > .video-frame > aside {
		margin-top: 0;
	}
	.block-with-videos .video-wrapper > .video-frame > .bottom {
		display: block;
		margin: 15px;
	}
	.block-with-videos .video-wrapper > .video-frame > .bottom > .left {
		margin: 0;
	}
	.block-with-videos .video-wrapper #videoLeft.video-frame > .bottom > table.right {
		margin: 20px 5px 0;
	}
	.videos-all-items2 .moreinfolink a {
		width: 100%;
		margin: 0;
		text-align: center;
		display: block;
		padding-top: 10px;
	}
	#home-testimonials-block .testimonial-content p {
		font-size: 20px;
	}
	#home-testimonials-block .testimonial-name {
		font-size: 20px;
	}
	.header .centered h1 img {
		margin-bottom: 0;
		max-width: 230px;
	}
	.navbar-header #mobileMainMenu {
		bottom: 0;
		margin: 0;
		top: 0;
	}
	.header .top-nav.in {
		display: block;margin-top: 10px;
	}
	.header .centered h1 {
		padding-right: 100px;
	}
}
