/*
Theme Name: Study Breaks Magazine
Theme URI: http://underscores.me/
Author: Ian Friedel
Author URI: https://studybreaks.com/
Description: Study Breaks was born out of a desire to provide talented student writers with a medium to publish their work, but has since expanded its goal to empowering college students of all backgrounds. Whether it’s by publishing their writing and photography, or by providing them with exposure in interviews and features, Study Breaks is designed to highlight remarkable students across the country.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studybreaks
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13.0 Theme Specific Styles
--------------------------------------------------------------*/

.gradient-border {
  --borderWidth: 3px;
  background: #fff;
	padding: 15px;
	margin-bottom: 26px;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}


@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.wp-caption-text {
    font-size: 14px !important;
    padding-top: -15px;
}

img.img-responsive.loadmoreimg.wp-post-image {
    height: 330px;
}

.col-md-4.postyy {
    height: 700px;
}

.h6, h6 {
font-size: 14px !important;
    font-family: 'Karla', sans-serif;
    font-weight: 300 !important;
    /* text-transform: uppercase; */
    letter-spacing: -0.03px;
    line-height: 21px;
    margin-bottom: 31px;
}

.border-bottom2 {
    height: 7px;
    background-color: #000;
    margin-bottom: 31px;
    width: 52%;
    margin: auto;
}

span.relatedtitle {
    text-align: center;
    display: block;
    margin-top: 20px;
    font-family: 'Karla', sans-serif;
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 700;
}

.spacy{
	display:block;
	height:20px;
}

.section_category2 {
    font-size: 14px;
}
.section_category2 a {
    font-family: 'Inconsolata', sans-serif;
    margin-top: 19px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
}

.related-posts a {
    text-transform: none;
    letter-spacing: 0;
    font-size: 20px;
    margin-top: -17px;
    display: block;
}

.single-content a {
    color: #000 !Important;
    border-bottom: 2px solid #c0c;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
/* Small menu */
.menu-toggle {
	display: none;
}

@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

.widget-area{
	float: right;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/

.entry-title a {
    font-family: 'Karla', sans-serif;
    text-transform: none;
    font-size: 26px;
    display: block;
    line-height: 26px;
    letter-spacing: -0.025em;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-top: 14px;
    padding-bottom: 11px;
}

.hp-top-title {
    padding: 0px 15px;
    text-align: center;
    font-family: 'Karla', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    margin-top: 10px !important;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    margin-bottom: 25px;
}



p {
    font-family: 'Karla';
    font-size: 17px;
    line-height: 22px;
}



h1 a {
    font-family: 'Karla', sans-serif;
    font-size: 40px;
    text-transform: none;
    line-height: 39px !important;
    display: block;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
	margin-top: 21px;
}

.wpp-post-title {
    font-family: Karla, sans-serif;
    text-transform: none;
    letter-spacing: 0px;
    color: rgb(255, 255, 255);
    font-size: 17px;
    line-height: 26px;
    display: block;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

a.category {
    color: rgb(0, 0, 0);
    font-family: Inconsolata, sans-serif;
    font-size: 12px;
    font-weight: 100;
    letter-spacing: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 29px !important;
    padding: 4px;
}

.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

.mashable {
	display: inline-block;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

#email-notes{
	display: none;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}
/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	font-size: 10px;
	padding-top: -15px;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* ============================================================================= 13.0 THEME SPECIFIC STYLES ====================================================== */

/* ============================================== COLOR REFERENCES =============================================== */
/*
Green:		#79b044
Blue:		#004563
Gray:  #e6e7e8
*/

/* ============================================== GLOBAL =============================================== */
body {
	margin-top: 50px;
	font-family: 'Karla', sans-serif;
	font-size: 18px;
}

.navbar-fixed-top{
	background-color: black;
}

h1,h2,h3,h4,h5,h6 {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	font-weight: bold;
}

h1 {
	font-size: 2em;
}

h1,h2 {
	margin: 0px;
}

h2{
    color: #000;
    font-family: 'Inconsolata';
	
}
h3 {
	margin: 20px 0;
}

h3 a {
    font-family: 'Karla', sans-serif;
    font-size: 25px;
    text-transform: none;
    font-family: 'Karla', sans-serif;
    text-transform: none;
    font-size: 26px;
    display: block;
    line-height: 26px;
    letter-spacing: -0.025em;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-top: 14px;
    padding-bottom: 11px;
}

h4 {
	font-size: 18px;
}

p.lead {
	font-weight: normal;
}

p {
	margin: 0 0 15px;
	letter-spacing: .25px;
	line-height: 130%;
}

.single-content p:first-of-type:first-letter {
	font-family: 'Karla', sans-serif;
	color: #fff;
  float: left;
	font-weight: 700;
  font-size: 3em;
  line-height: 60px;
  padding-top: 0px;
  padding-right: 8px;
  padding-left: 3px;
   text-shadow: 
        /* first layer at 1px */
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000,
        /* second layer at 2px */
        -2px -2px 0px #000,
        -1px -2px 0px #000,
         0px -2px 0px #000,
         1px -2px 0px #000,
         2px -2px 0px #000,
         2px -1px 0px #000,
         2px  0px 0px #000,
         2px  1px 0px #000,
         2px  2px 0px #000,
         1px  2px 0px #000,
         0px  2px 0px #000,
        -1px  2px 0px #000,
        -2px  2px 0px #000,
        -2px  1px 0px #000,
        -2px  0px 0px #000,
        -2px -1px 0px #000;
}

a{
	color: black;
}

a:hover{
	color: #004563;
	text-decoration: none;
}

.no-padding-left{
	padding-left: 0;
}

.center{
	text-align: center;
}

.oswald {
	font-family: 'Archivo Narrow', sans-serif;
}

label{
	display: block;
}

.hp_section_top_image{
	height: 132px;
	padding: 6px;
}

.footer_most_recent_image{
	height: 220px;
}

.related_articles_image{
	height: auto;
}

.special_section_image{
	height: 190px;
	padding: 6px;
}

.hp_section_two_image{
	height: 323px;
}

.magazine_image{
	height: 220px;
}

.single_content_image{
	height: 140px;
}

h3.smform-title{
	display:none;
}

wpp-list{
	font-family: 'Archivo Narrow', sans-serif;
}

/* ==============================================
BORDERS
=============================================== */
.border-top{
	border-top: .25px solid #e6e7e8;
	padding-bottom: 10px;
}

.border-bottom{
	border-top: .25px solid #e6e7e8;
	padding-top: 10px;
}

.border-bottom_magazine{
	border-top: .25px solid #e6e7e8;
	margin-right: -225px;
}

.border-right{
	border-right: .25px solid #e6e7e8;
}

.border-left{
	border-left: .25px solid #e6e7e8;
}

.after-post{
	border-top: .25px solid #e6e7e8;
	padding-top: 15px;
	padding-bottom: 15px;
}

.after-post-recommendation{
	border-top: .25px solid #e6e7e8;
}

/* ==============================================
TOP NAVIGATION
=============================================== */
.nav{
	padding: 10px 0px;
}

.nav li a{
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-top: 0;
}

.button:hover{
	background-color: black;
}

.btn-default{
	border-color: white !important;
}

.main_content{
	margin-top: 115px;
	overflow: hidden;
}

.dropdown-menu{
	padding: 25px;
}

.dropdown-item h6{
font-family: 'Karla', sans-serif;
	margin-bottom: 25px;
}

.author{
	margin-bottom: -10px;
	padding-top: -15px;
}

.top-bar-menu li{
  margin-bottom: -10px;
	text-align: center;
}

.top-bar-menu li{
  display: inline-block;
}

.top-bar-menu li a{
  padding-right: 5px;
}

/* ==============================================
ENTRY HEADER
=============================================== */
.entry-header{
	margin-top: -40px;
}

.entry-title{
	text-transform: uppercase;
	font-weight: 700;
	    font-size: 21px;
    margin-bottom: 23px !important;
}

.mobile-magazine-title{
	margin-bottom: 10px;
}

/* ==============================================
GLOBAL ADVERTISEMENT
=============================================== */
.global-ad img{
	display: block;
	text-align: center;
	margin: 0 auto;
}

.global-ad-content img{
	display: block;
	text-align: center;
	margin: 25px auto;
}

.global-ad-author img{
	display:block;
	text-align: center;
	margin: -12px auto;
}

/* ==============================================
COAUTHOR PROFILE
=============================================== */
.coauthor-img{
	text-align: center;
	float: left;
	padding-right: 25px;
	padding-bottom: 15px;
}

.coauthor-img-widget{
	padding-bottom: 15px;
	margin-right: -15px;
}

.coauthor-profile{
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #004563;
}

.coauthor-header{
	font-size: 3em;
	padding: 0px;
	margin: 0;
	margin-top: -5px;
	margin-bottom: -15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 90%;
}

.coauthor-header-widget{
	font-size: 2em;
	padding: 0px;
	margin: 0;
	margin-top: -5px;
	margin-bottom: -10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 90%;
}

.coauthor-college{
	color: #004563;
}

.coauthor-social{
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.coauthor-social-home{
	margin-top: -11px;
}

.coauthor-social-home a{
	background-color: black;
	margin-top: 0px;
	padding-bottom: 3px;
}

/*
.fa{
	color: white;
	padding: 10px 10px;
	font-size: 1.25em;
	text-align: center;
}
*/

/*
.coauthor-facebook{
	background-color: #3b5998;
}
*/

/*
.coauthor-twitter{
	background-color: #00aced;
}
*/

/*
.coauthor-instagram{
	background-color: #e95950;
}
*/

/*
.coauthor-linkedin{
	background-color: #0077b5;
}
*/

.coauthor-image img{
	width: 100%;
	padding-bottom: 10px;
	padding-top: 10px;
}

.coauthor-section{
	padding-left: 25px;
	padding-right: -25px;
}

/* ==============================================
SEARCH BAR
=============================================== */
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child>.btn-group:not(:first-child)>.btn, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle{
	background-color: transparent;
	border: black;
	margin-top: -10px;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #e6e7e8;
	top: 32px;
	float: right;
	width: 195px;
}

.form-control{
	color: white;
}

.border-bottom-search{
	border-top: 0px solid black;
	padding-top: 10px;
	padding-left: 5px;
}

.search{
	margin-top:-10px;
}

.search-mobile{
	margin-top: -60px;
	margin-right: 10px;
	border: black;
}

/* ==============================================
MOBILE SECTION
=============================================== */
.mobile-section{
	background-color: #004563;
	color: #e6e7e8;
	text-transform: uppercase;
	padding: 2px;
	letter-spacing: 1px;
	position:fixed;
	top: 50px;
	width: 100%;
}

.global-ad-mobile-section img{
	display: block;
	text-align: center;
	margin: 39px auto -65px auto;
}

.global-ad-single-content img{
	display: block;
	text-align: center;
	margin: -50px auto 35px auto;
}

.table-wrapper { overflow-x:scroll;}

.global-ad-mobile-section-magazine img{
	display: block;
	text-align: center;
	margin: 39px auto -25px auto;
}

.mobile-section h4{
	margin-left: 7px;
}

.section-spacer{
	margin-top: 41px;
}

.arrow img{
	margin-bottom: 5px;
}

/* ==============================================
POSTS
=============================================== */
.post{
	margin: 50px 0px;
}

.spacer-post-home{
	padding-bottom: 25px;
}

.loop{
	margin-bottom: 25px;
}

.jumbo{
	width: 750px;
	height: 100%;
	max-height: 500px;
	overflow: hidden;
}

/* ==============================================
PUBLISHED BUTTONS
=============================================== */
.publish-button{
	padding: 10px;
	background-color: white;
	border: .25px solid #e6e7e8;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.publish-button:hover{
	padding: 10px;
	background-color: #e6e7e8;
	letter-spacing: 2px;
}

.publish_margin_right{
	margin-right: 5px;
}

.publish-title{
	text-transform: uppercase;
	margin-bottom: 10px;
}

.magazine_articles{
	border-left: 1px solid black;
	border-right: 1px solid black;
}

/* ==============================================
LOAD MORE
=============================================== */
.load-more{
	color: black;
	text-align: center;
	margin-bottom: 50px;
}

.load-more-button {
    padding: 6px;
    padding-left: 25px;
    padding-top: 0px;
    padding-right: 25px;
    background-color: #000;
    border: none;
    letter-spacing: 2px;
    color: #fff;
    height: auto;
    /* width: 50%; */
    font-family: 'Inconsolata', sans-serif;
}

.load-more-button:hover{
			background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 5s ease infinite;
	-moz-animation: Gradient 5s ease infinite;
	animation: Gradient 5s ease infinite;
	letter-spacing: 2px;
}

.load-more-mobile{
	color: black;
	text-align: center;
	margin-bottom: 50px;
}

.load-more-button-mobile{
	padding: 5px;
	background-color: white;
	border: .25px solid #e6e7e8;
	letter-spacing: 2px;
	width: 90%;
	text-transform: uppercase;
}

.load-more-button-mobile:hover{
	background-color: #e6e7e8;
	letter-spacing: 2px;
}

/* ==============================================
HOME PAGE TOP LOOP
=============================================== */
.category-top-loop{
	width: 25%;
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}

.category-top-loop h4{
	text-transform: uppercase;
}

.category-top-right{
	border-right: .25px solid #e6e7e8;
}

.hp-top-loop{
	width: 16.6666666667%;
	float: left;
}

.hp-top-title{
	padding: 0px 15px;
	text-align: center;
}

.hp-toploop{
	margin-top: -10px;
}

.mobileimage{
	margin-bottom:10px;
	display: inline-block;
}
/* ==============================================
MUST READ
=============================================== */
.must_read{
	font-family: 'Archivo Narrow', sans-serif;
	font-weight: 700;
	text-align:center;
	text-transform: uppercase;
	color: black;
	padding: 15px 0px;
	letter-spacing: 5px;
}

.must-read-loop{
	width: 24.9%;
	float: left;
}

.must-read-loop-mobile{
	width: 50%;
	float: left;
}

.must-read-seperator{
	 border-top: 1px solid #e6e7e8;
	border-bottom: .5px dotted #e6e7e8;
	margin-bottom: 50px;
	margin-top: 55px;
}

.must-read-seperator-mobile{
	border-top: 7px solid black;
	margin-bottom: 50px;
}

.trending-seperator{
	border-top: 7px solid black;
	margin-bottom: 25px;
}

.magazine_issue{
	text-transform: uppercase;
	font-family: 'Karla', sans-serif;
	text-align: center;
	color: black;
	letter-spacing: 2px;
}

.magazine-mobile{
	padding-top: 50px;
}

.magazine-page-title{
	padding-top: 25px;
}

/* ==============================================
SIDEBAR
=============================================== */
div#home-page-sidebar ul {
	line-height: 20px;
	list-style: none;
	height: 100%;
	float: right;
}

.sidebar img{
	float: right;
}

#newsletter_homepage ul{
	margin: 0 auto;
	display: inline-block;
	text-align: center;
	width: 100%;
}

#newsletter_homepage h4{
	margin: 0 auto;
	display: inline-block;
	text-align: center;
	width: 100%;
}

/* ==============================================
FORMS
=============================================== */
.form-group{
	margin-bottom: 15px;
font-family: 'Karla', sans-serif;
	font-size: 16px;
	letter-spacing: 2px;
}

.collapse{
	padding-top: 15px;
}

/* ==============================================
SIGN-UP
=============================================== */
.signup img{
	background-color: black;
	padding-top: 20px;
}

.signup a{
	color: white;
}

/* ==============================================
SOCIAL MEDIA
=============================================== */
.social-media ul{
	position: fixed;
	list-style: none;
	right: 0px;
}

.social-media ul li a i{
	list-style: none;
}

/* ==============================================
CAPTIONS
=============================================== */
.captions{
	font-size: 8px;
	padding: 0;
	margin: -45px 0 10px 0;
	letter-spacing: 1px;
}

/* ==============================================
NEWSLETTER
=============================================== */

.newsletter{
	font-family: 'Archivo Narrow', sans-serif;
	text-transform: uppercase;
	background-color: #e6e7e8;
	padding: 10px 0px;
	margin-top: 0px;
	text-align: center;
}

.button{
	background-color: #004563;
	color: white;
	padding: 15px 10px;
	letter-spacing: 2px;
	height: 75px;
	margin-left: -15px;
	margin-right: -15px;
}

.newsletter_text{
	letter-spacing: 2px;
}

.newsletter-top{
	background-color: #e6e7e8;
}

/* ==============================================
TOP-SECTION
=============================================== */
#top-section{
	text-transform: uppercase;
	background-color: #e6e7e8;
	padding: 10px 0px;
	margin-top: 0px;
	text-align: center;
}

/* ============================================== RECOMMENDATION =============================================== */

.recommendation{
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
}

/* ============================================== MAIN NAVIGATION =============================================== */
.navbar-toggle{
	border: black;
}

.navbar,
.navbar-nav{
	letter-spacing: 1px;
	display: inline-block;
	float: none;
	font-weight: 700;
}

.navbar,
.navbar-collapse{
	text-align: center;
}

.main-navigation ul{
	background-color: white;
	font-family: 'Karla', sans-serif;
	text-align: center;
}

.main_navigation li{
	font-family: 'Karla', sans-serif;
	display: inline;
	text-transform: uppercase;
}

.main_navigation li a{
	font-family: 'Karla', sans-serif;
	margin-bottom: -25px;
}

.navigation-border{
	border-bottom: 1px solid #e6e7e8;
}

.brand-logo a{
	font-family: 'Karla', sans-serif;
	color: white;
	letter-spacing: 2px;
	text-align: center;
}

.logo a img{
	display: block;
	width: 300px;
	margin: 0px auto;
	margin-bottom: 25px;
}

.logo-top a img{
	max-width: 125px;
	padding-top: 0px;
	margin-top: 8px;
}

.logo-top-desktop a img{
	max-width: 125px;
	margin-top: -5px;
	margin-right: 25px;
}

/* ==============================================
HOME PAGE
=============================================== */
.section-head{
	font-family: 'Archivo Narrow', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.section-head a{
	color: #004563;
}

.section-header{
	letter-spacing: 1px;
}

.img-column-3{
	margin-bottom: 10px;
}

.column-8-halfandhalf{
	margin-bottom: 25px;
}

.section_col6{
	padding: 0;
}

.section_col6 h5{
	padding-left: 10px;
	padding-right: 10px;
}

/* ==============================================
SIDEBAR RIGHT
=============================================== */
.sidebar_right{
	border-left: .25px solid #e6e7e8;
}

/* ==============================================
GUEST AUTHOR SIDEBAR
=============================================== */
.guest-widget{
	float: right;
	border: 1px solid black;
	letter-spacing: 1.25px;
}

.guest-details{
	text-align: center;
}

.guest-uppercase{
	text-transform: uppercase;
	color: #004563;
}

.guest-title{
	border-bottom: 1px solid black;
	text-transform: uppercase;
}

.guest-image{
	max-width: 300px;
	padding-bottom: 12px;
	margin: 0px;
	padding-left: 20px;
}

.icon-list{
	display: inline-block;
}

/* ==============================================
RELATED POSTS
=============================================== */
.related-posts-category{
	margin-bottom: -20px;
}

.related-posts{
	text-transform: uppercase;
	letter-spacing: 1px;
}

.related-posts-mobile{
	margin-left: -35px;
}

.second-related-posts{
	color: white;
}

/* ==============================================
CONTRIBUTORS
=============================================== */
.contributors-mobile{
	margin-bottom: -15px;
}

.contributors-title{
	margin-top: 10px;
	text-align: center;
	text-transform: uppercase;
	margin: 0 auto;
}

/* ==============================================
TRENDING SIDEBAR
=============================================== */
.trending-icon img{
	display: inline-block;
	max-width: 10px;
	margin-bottom: -15px;
}

.trending{
	border: 1px solid black;
}


.single-trending h2{
    color: #fff;
    font-family: 'Karla', sans-serif;
    letter-spacing: -1.03px;
    text-align: center;
    margin-top: 16px;
    font-size: 29px !important;
}

.single-trending{
	border: 0px solid black;
	padding: 40px;
		background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 5s ease infinite;
	-moz-animation: Gradient 5s ease infinite;
	animation: Gradient 5s ease infinite;
}

.must_read2 a{
    display: inline-block;
		background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 5s ease infinite;
	-moz-animation: Gradient 5s ease infinite;
	animation: Gradient 5s ease infinite;
    padding: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
    color: #fff;
    font-family: 'Inconsolata', sans-serif;
}

.must_read3{
    display: inline-block;
		background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 5s ease infinite;
	-moz-animation: Gradient 5s ease infinite;
	animation: Gradient 5s ease infinite;
    padding: 15px;
	margin-bottom: 40px !IMportant;
	margin-top: 35px;
	text-transform: uppercase;
    color: #fff;
    font-family: 'Inconsolata', sans-serif;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.trending_stories{
	margin-bottom: 25px;
}

.trending_stories h5{
	padding-top: 10px;
}

.title_left{
	margin-left: -15px;
}

.trending_title{
    font-family: 'Karla', sans-serif;
    font-size: 30px;
    text-transform: none;
    line-height: 39px !important;
    display: block;
	color: #fff;
	text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.trending_number{
	color: #004563;
}

/* ==============================================
INDIVIDUAL SECTIONS
=============================================== */

.sub_section_small_top{
	padding-top: 25px;
	padding-bottom: 25px;
}

.sub_section-small{
	text-align: center;
}

.sub_section{
	padding: 50px 0px;
}

.spotlight{
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #004563;
	margin-top: 5px;
	text-align: center;
}

.spotlight-img{
	margin-bottom: 15px;
}

.sub_section-head{
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #004563;
}

.sub_section-header{
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 10px 0;
}

.sub_section_line{
	border-bottom: .25px solid #e6e7e8;
	margin: 25px 0;
}

.story{
	padding-bottom: 25px;
}

.sub_section_spacer{
	padding: 25px 0 12.5px 0;
	padding-left: 15px;
}

.column_spacing{
	padding: 50px 0;
}

/* ==============================================
SPECIAL SECTION
=============================================== */
.special{
	font-family: 'Archivo Narrow', sans-serif;
}

.newsletter-form{
	padding-bottom: 50px;
}

/* ==============================================
ADVERTISEMENT
=============================================== */
.advertisement{
	display: block;
	width: 728px;
	margin: 0px auto;
	margin-bottom: 50px;
}

.advertisement a img{
	text-align: center;
}

.ad{
	text-align: center;
}

#leaderboard{
	text-align: center;
	margin-top: 25px;
}

.leaderboard a{
	text-align: center;
}

/* ==============================================
HOME PAGE SECTIONS
=============================================== */
.section_image{
	padding-right: 50px;
	padding-left: 50px;
}

.section_image_top_stories{
	padding-bottom: 25px;
}

.section_image_archive{
	width: 75%;
	padding-bottom: 25px;
}

.section_category{
    font-family: 'Inconsolata', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
}

.section_category a {
    color: #44a6c2;
    padding: 5px;
    border: 1px solid #44a6c2;
}

.section_border_bottom{
	border-top: .25px solid #e6e7e8;
	padding-top: 10px;
	margin-bottom: 15px;
}

.section_title{
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: -15px;
	margin-bottom: -15px;
}

.large_section_title{
	padding-top: 10px;
	padding-bottom: 10px;
}

.section_author,
.section_author a{
font-family: 'Inconsolata', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
}

.section_author-mobile{
	margin-bottom: -10px;
}

.section_author-mobile,
.section_author-mobile a{
	font-family: 'Archivo Narrow', sans-serif;
	font-weight: 400;
	letter-spacing: .25px;
}

.section_excerpt p{
    font-weight: 400;
    font-size: 21px;
    letter-spacing: 0.7px;
    color: #3e3e3e;
    font-family: 'Inconsolata',sans-serif;
}

.excerpt-mobile-magazine{
	padding-bottom: 25px;
}

/* ==============================================
404 ERROR
=============================================== */
.error-report{
	border: 10px solid black;
	text-align: center;
	margin-bottom: 50px;
	margin-left: 50px;
	margin-right: 50px;
}

.error-report h2{
	padding: 25px;
}

/* ==============================================
ARTICLES
=============================================== */
.article_header{
	font-size: 4em;
	padding: 0 0 15px 0;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.article_excerpt{
	margin: 0 0 15px 0;
}

.article_top{
	margin-top: 25px;
}

.excerpt p{
	padding-bottom: 10px;
}

.excerpt{
	padding-top: 15px;
}

/* ==============================================
SINGLE ARTICLE
=============================================== */
.single-header{
    font-family: 'Karla', sans-serif;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    margin-bottom: -10px;
    margin-top: 2px;
}

.single-author{
	margin: 0px;
	margin-top: 15px;
}

.single-content p{
font-family: 'Karla', sans-serif;
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 25px;
    letter-spacing: -0.08px;
}

.post-details p{
	font-size: 1.25em;
}

.sb-icon{
	width: 45px;
	height: auto;
	margin-right: 5px;
}

.entry-date{
	font-family: 'Archivo Narrow', sans-serif;
	color: #004563;
}

.x-seperator{
	color: #e6e7e8;
}

div.entry-content p:first-child:first-letter {
float:left;
font-size:4em;
color: #000099;
margin-right:0.10em;
line-height:90%;
text-shadow: 0.05em 0.05em #C0C0C0;
}

/* ==============================================
TOP NEWS
=============================================== */
.top-news{
	margin-top: -41px;
}

.top-news-loop{
width: 20%;
    float: left;
    padding: 12px;
    margin-bottom: 25px;
}

.top-news-loop-mobile{
	margin-top: 0px;
	width: 25%;
	float: left;
}

.top-news-title-mobile{
		font-family: 'Archivo Narrow', sans-serif;
		padding: 0px 5px;
		text-align: center;
}

.top-news-title{
		padding: 0px 15px;
		text-align: center;
    font-family: 'Karla', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    margin-top: 10px !important;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.related-title-posty a{
    font-family: 'Karla', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-align: left;
    letter-spacing: -0.02em;
	border-bottom: none !Important;
    text-transform: capitalize;
}

.mobile-category-head{
	text-transform: uppercase;
}

.center{
	text-align: center;
}

/* ==============================================
PARAGRAPHS
=============================================== */
.break{
	margin-bottom: 15px;
}

.post_paragraph{
	font-family: 'Karla', sans-serif;
	font-size: 1.5em;
	padding-bottom: 15px;
	line-height: 150%;
}

.article_image{
	padding: 0 0 50px 0;
}

/* ==============================================
RELATED ARTICLES =============================================== */
.related_articles{
	padding: 50px 0;
	border-top: .25px solid #e6e7e8;
	border-bottom: .25px solid #e6e7e8;
	margin: 30px 0;
}

.related_articles_after_post{
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
}

.related-posts{
	margin: 25px 0px;
}

/* ==============================================
MAGAZINE PAGE =============================================== */
.magazine_page{
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: .25px solid #e6e7e8;
}

.magazine_page h4{
	font-size: 14px;
	text-transform: uppercase;
}

.magazine-header{
	text-align: center;
}

.magazine-spacer{
	margin-top: -50px;
}

.magazine_issue_loops{
	border-bottom: .25px solid #e6e7e8;
}

/* ==============================================
ABOUT PAGE
=============================================== */
.about{
	margin-top: 65px;
}

.about_article{
	line-height: 150%;
}

/* ==============================================
WRITERS PAGE
=============================================== */
.writers_alphabet{
	padding: 0 0 15px 0;
	margin: 0;
}

.writers_alphabet p{
	margin-bottom: 3px;
}

.writers_alphabet h1{
	margin-bottom: 0px;
}

/* ==============================================
SPACER
=============================================== */
.spacer{
	height: 50px;
	width: 100%;
	position: relative;
}

.spacer_author{
	background-color: white;
	height: 50px;
	width: 100%;
	position: relative;
}

.spacer-in-post{
	margin-bottom: 50px;
}

.spacer-in-section{
	height: 50px;
	width: 100%;
	position: relative;
	border-bottom: .25px solid #e6e7e8;
	margin-bottom: 50px;
}

/* ==============================================
POP-UP MODAL
=============================================== */
.pop-up{
	display: none;
	width:100%;
	height:100%;
	position:fixed;
	z-index:999998;
	background: rgba(0, 0, 0, 0.8);
}

.pop-up-modal{
  background: white;
  margin:30px auto 0;
  padding:6px;
  position:absolute;
  width:50%;
  left: 50%;
  margin-top: -10%;
}

.pop-up-logo a img{
	display: block;
	width: 167px;
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 75px;
}

.pop-up-box{
	left: 50%;
}

.smform-submitbtn-cont input {
	margin-top: 0px;
}

.smform-field-sizemedium {
    width: 75% !important;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background-color: white;
	border: .25px solid black;
	padding: 10px;
  letter-spacing: 1px;
  border-radius: 0px;
	max-width: 100%;
}

.smform input[type="text"], .smform input[type="email"], .smform input[type="url"], .smform input[type="password"], .smform input[type="search"], .smform textarea, .smform input[type="number"] {
  border-radius: 0px;
	border: .25px solid black;
	margin-left: -5px;
}

input.smform-submit{
	padding: 5px 10px;
	text-transform: uppercase;
}

.comment-form-url{
	display: none;
}

footer.comment-meta{
	background-color: white;
	height: auto;
}

#pop-up-close{
	position: absolute;
	color: white;
	right: 5px;
	text-transform: uppercase;
}

.popup_trending{
	padding: 0px 40px;
}

#exitpopup {
	text-align:center;
}

#exitpopup h1 {
	margin-top:0px;
	padding-top:0px;
}

#exitpopup p {
	text-align: center;
}

.smform-control {
	display: inline;
	height: 50px;
}

.form-control{
	color: black;
}

/* ==============================================
FOOTER
=============================================== */
.footer-bottom{
	background-color: #e6e7e8;
	min-height: 250px;
	margin-top: 75px;
}

.footer-socialmedia{
	margin-top: 10px;
	text-align: left;
}

.footer-socialmedia i{
	color: black;
}

.footer-socialmedia-left{
	margin-left: -15px;
}

.footerleft{
	margin-top:50px;
	padding:0 36px;
}

.footer-title{
	margin-bottom: -25px;
}

.social-footer{
	background-color: black;
	color: white;
	margin-top: -40px;
}

.logofooter{
	margin-bottom:25px;
	font-size:25px;
	color:#fff;
	font-weight:700;
}

.footerleft p{
	color: #fff;
	font-size: 12px !important;
	margin-bottom: 15px;
}

.footerleft p i{
	width: 20px;
	color: #999;
}

.paddingtop-bottom{
	margin-top: 50px;
}

.footer-ul{
	list-style-type: none;
	padding-left: 0px;
	margin-left: 2px;
}
.footer-ul li{
	line-height:29px;
	font-size:12px;
}

.footer-ul li a{
	color:#a0a3a4;
	transition: color 0.2s linear 0s, background 0.2s linear 0s;
}

.footer-ul i{
	margin-right:10px;
}

.footer-ul li a:hover{
	transition: color 0.2s linear 0s, background 0.2s linear 0s; color:#ff670f;
}

.social:hover {
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
     -o-transform: scale(1.1);
 }

.icon-ul{
	list-style-type:none !important;
	margin:0px;
	padding:0px;
}

.icon-ul li{
	line-height:75px;
	width:100%;
	float:left;
}

.icon{
	float:left;
	margin-right:5px;
}

.copyright{
	min-height:40px;
	background-color: black;
}

.copyright p{
	text-align:left;
	color:#FFF;
	padding:10px 0;
	margin-bottom:0px;
}

.heading7{
	font-size:21px;
	font-weight:700;
	color:#d9d6d6;
	margin-bottom:22px;
}

.bottom_ul{
	list-style-type:none;
	float:right;
	margin-bottom:0px;
}

.bottom_ul li{
	float:left;
	line-height:40px;
}

.bottom_ul li:after{
	content:"/";
	color:#FFF;
	margin-right:8px;
	margin-left:8px;
}

.bottom_ul li a{
	color:#FFF;
	font-size:12px;
}

/* ==============================================
FOOTER
=============================================== */

p.comment-awaiting-moderation{
	display: none;
}

span.says{
	display: none;
}

.mobile-content-top{
	margin-top: -40px;
}

.mobile-title a, .mobile-title a:visited, .mobile-title a:hover{
font-family: 'Karla', sans-serif;
    text-transform: none;
    font-size: 24px;
    display: block;
    text-align: center;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: -0.025em;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mobile-spacer{
	border-top: .25px solid #e6e7e8;
	margin-top: 15px;
}

.mobile-spacer img{
	margin-top: 25px;
	margin-bottom: 10px;
}

.mobile-top-spacer{
	margin-top: -26px;
}

.excerpt-mobile-title{
	font-size: 2em;
	margin-bottom: -15px;
}

.excerpt-mobile{
	font-size: 1.15em;
}

.author-mobile,
.author-mobile a{
	color: #004563;
}

.mobile_logo a{
	padding: 50px;
	text-align: center;
}

.mobile_home_spacer{
	margin-top: 15px;
	padding-bottom: -10px;
}


/* ==============================================
MEDIA QUERY
=============================================== */
@media (max-width: 3000px){
	.navbar-header {
			float: none;
			text-align: left;
	}
	.navbar-toggle {
			display: block;
			margin-top: 10px;
	}
	.navbar-collapse {
			border-top: 1px solid transparent;
			box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	}
	.navbar-collapse.collapse {
			display: none!important;
	}
	.navbar-nav {
			float: none!important;
			margin: 7.5px -15px;
	}
	.navbar-nav>li {
			float: none;
	}
	.navbar-nav>li>a {
			padding-bottom: 10px;
			text-align: center;
	}
	.navbar-text {
			float: none;
			margin: 15px 0;
	}
	/* since 3.1.0 */
	.navbar-collapse.collapse.in {
			display: block!important;
			margin-bottom: 25px;
	}

	.collapsing {
			overflow: hidden!important;
	}
	.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse,
	.container>.navbar-header {
		margin-left: 0px;
}
	.brand a{
		margin-left: -25px;
	}
	.homepage-social{
		margin-top: 5px;
		float: right;
	}
	.homepage-social a i{
		color: #ccc;
	}
	.navbar-inverse .navbar-brand{
		color: #ccc;
	}
	.collapse-social{
		margin-top: -10px;
		margin-left: -8px;
display:none;
		margin-bottom: 25px;
	}
}

@media (max-width: 1000px) {
	.global-ad img{
		width: 100%;
		display: block;
		text-align: center;
		margin: 0 auto;
	}

	.global-ad-content img{
		width: 100%;
		display: block;
		text-align: center;
		margin: 25px auto;
	}

	.global-ad-author img{
		width: 100%;
		display:block;
		text-align: center;
		margin: -12px auto;
	}

	.global-ad-mobile-section img{
		width: 100%;
		display: block;
		text-align: center;
		margin: 39px auto -65px auto;
	}

	.global-ad-single-content img{
		width: 100%;
		display: block;
		text-align: center;
		margin: -60px auto 60px auto;
	}

	.global-ad-mobile-section-magazine img{
		width: 100%;
		display: block;
		text-align: center;
		margin: 39px auto -25px auto;
	}

	.coauthor-social{
		padding-top: 50px;
	}

	.top-news{
		display: none;
	}

	.spacer_author{
		display: none;
	}

	.coauthor-img{
		margin-top: 35px;
		max-width: 100%;
		margin-left: 18px;
		margin-right: 25px;
	}

	.main_navigation{
		padding: 0;
		margin: 0;
	}

  .main_navigation li{
		display: none;
  }

	.top-bar ul li a{
		color: black;
		padding-top: 10px;
	}

	.top-navigation{
		background-color: white;
		padding: 0;
		margin: 0;
	}

	.mobile{
		margin-bottom: 75px;
	}

	.mobile_side_padding{
		padding: 0 35px;
	}

	.unique_section_mobile{
		display: none;
	}

	.mobile_button{
		margin-top: 20px;
	}

	.mobile_line{
		display: none;
	}

	.icon-bar{
		background-color: black;
	}

	.advertisement_image{
		padding: 50px 0 0 25%;
	}

	.full_width_ad{
		margin-bottom: 25px;
	}

	.main_content{
		margin-top: 225px;
		overflow: hidden;
	}

	div#home-page-sidebar ul {
		line-height: 20px;
		list-style: none;
		height: 100%;
		float: right;
	}

	.brand{
		display: block;
		margin: 0px auto;
		margin-bottom: 25px;
	}

	.hide-in-mobile{
		display: none;
	}

	.navbar,
	.navbar-nav{
		text-align: left;
	}

	.battery{
		color: black;
	}
}

@media (min-width: 1000px) {
	.desktop{
		display: none;
	}

	.hide-in-desktop{
		display: none;
	}
}

@media all
and (max-width:990px)
and (min-width:0px) {

	
	.wpp-post-title{
		color: #000 !Important;
	}
}
