/*
** SECTIONS
*/

body {
  background-color: #f3f5f8;
}
.wrapper {
  position: relative;
}
.wrapper-toggle {
  content: "";
  background-color: #263238;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.wrapper.open .wrapper-toggle {
  opacity: 0.9;
  visibility: visible;
}

.noscroll {
  overflow: hidden;
}

#latest {
  background-color: #fff;
}

#footer {
  clear: both;
  padding: 50px 0;
  background-color: #263238;
}



/*
** TYPOGRAPHY
*/

body {
  font-family: 'Open Sans', sans-serif;
  color: #607d8b;
  font-weight: 400;
  font-size: 14px;  
  line-height: 1.8;
}

em {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

p {
  margin: 0 0 20px;
}

.menu,
h1, h2, h3, h4, h5, h6 {
  font-family: 'NotesESABold', sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  font-size: 35px;
  margin: 40px 0 20px; 
}

h2 {
  font-size: 30px;
  margin: 40px 0 20px; 
}

h3 {
  font-size: 25px;
  margin: 40px 0 20px; 
}

h4 {
  font-size: 20px;
  margin: 30px 0 20px; 
}

h5 {
  font-size: 17px;
  margin: 30px 0 20px; 
}

h6 {
  font-size: 14px;
  margin: 30px 0 20px; 
}

a {
  text-decoration: none;
  color: rgba(0,152,219,1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: rgba(0,84,159,1);
}



/*
** BUTTONS
*/

.btn,
.submit {
  display: inline-block;
  background-color: rgba(0,152,219,1);
  border: none;
  padding: 15px;
  border-radius: 0px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'NotesESABold', sans-serif;
  line-height: normal;
  transform: scale(1.0);
  -webkit-transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
  -moz-transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
  -o-transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
  transition: all 400ms cubic-bezier(0.2, 2, 0.5, 1.5);
}
.btn:hover,
.submit:hover {
  transform: scale(1.1);
  color: #fff;
}

.more {
  text-align: center;
  padding: 100px 0;
}



/*
** ICONS
*/

.material-icons {
  line-height: 1.5 !important;
}

.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}
.material-icons.md-dark.md-inactive { 
  color: rgba(0, 0, 0, 0.26);
}
.material-icons.md-light { 
  color: rgba(255, 255, 255, 1);
}
.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

.material-icons.inline {
  margin-right: 5px;
  vertical-align: middle;
}

.play-icon {
  background-color: #fff;
  border-radius: 100%;
}
.play-icon,
.link-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  margin-left: -24px;
  margin-top: -24px;
  line-height: 1 !important;
}

.play-icon {
  color: rgba(0,152,219,1);
}

.link-icon {
  color: #fff;
}



/*
** TABLES
*/

table {
  background-color: #f1f4fa;
  display: block;
  overflow-x: auto;
}
.widget table {
  display: table;
}

td, th {
  font-size: 80%;
  padding: 5px;
  border: 1px solid #fff;
}

#overlay-sidebar table {
  background-color: transparent;
}

#overlay-sidebar td {
  border: 1px solid rgba(255,255,255,0.2);
  color: #b0bec5;
}



/*
** EMBEDS
*/

iframe {
  width: 100%;
  height: 200px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 5px 5px 0 0 #b0bec5;
}
@media screen and (min-width: 768px) {
  iframe {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  iframe {
    width: 130%;
    height: 330px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -25px;
  }
}
@media screen and (min-width: 1252px) {
  iframe {
    width: 130%;
    height: 435px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -25px;
  }
}

.iframe-class {
  height: 102px;
}

@media (min-width: 417px) {
  .iframe-class {
    height: 122px;
  }
}

.widget iframe {
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: none;
  position: relative;
}

.embed {
  position: relative;
  height: 0;
  overflow: hidden;
  box-shadow: 5px 5px 0 0 #b0bec5;
  margin-top: 30px;
  margin-bottom: 30px;
}
 
.embed-16x9 {
  padding-bottom: 56.25%;
}
 
.embed-4x3 {
  padding-bottom: 75%;
}
 
.embed iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.fb_iframe_widget iframe {
  position: relative;
}

.g-recaptcha iframe {
  width: auto;
  height: auto;
  margin: 0;
  box-shadow: none;
}

.g-recaptcha iframe {
  width: auto;
  height: auto;
  margin: 0;
  box-shadow: none;
}

#recaptcha-submit-btn-area {
  margin: 30px 0;
}



/*
** HEADER AND NAVIGATION
*/

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  line-height: 1;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0,152,219,0.3);
  box-shadow: 0 0px 20px rgba(0,0,0,0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header.sticky {
  background-color: rgba(0,152,219,1);
  border-bottom-color: transparent;
  box-shadow: 0 0px 20px rgba(0,0,0,0.3);
}

.branding {
  margin-left: auto;
}

.branding img {
  height: 30px;
}

.toggle-buttons {
}

.toggle-buttons li {
  display: inline-block;
  margin-right: 5px;
}

.toggle-button {
  background: none;
  border: none;
  color: #fff;
  padding: 0;
  line-height: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
  -moz-transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
  -o-transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
  transition: all 0.5s cubic-bezier(0.2, 2, 0.5, 1.5);
}
.toggle-button:hover {
  transform: scale(1.2);
}
.nav-toggle-off:hover,
.widget-toggle-off:hover,
.search-toggle-off:hover {
  transform: rotate(-180deg);
}

.nav-toggle-off,
.widget-toggle-off,
.search-toggle-off {
  left: 20px;
  position: absolute;
  top: 16px;
  line-height: 0;
}

.toggle-button i {
  line-height: 1 !important;
}

.nav-overlay,
.widget-overlay {
  background-color: rgba(0,152,219,1);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 99999;
  box-shadow: 0 0px 20px rgba(0,0,0,0);
  overflow-y: auto;
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.widget-overlay {
  background-color: #37474F;
}
@media screen and (min-width: 768px) {
  .nav-overlay,
  .widget-overlay {
    width: 50vw;
  }
}
@media screen and (min-width: 1025px) {
  .nav-overlay,
  .widget-overlay {
    width: 25vw;
  }
}
.nav-overlay.open,
.widget-overlay.open {
  transform: translateX(0%);
  box-shadow: 0 0px 20px rgba(0,0,0,0.5);
}

.admin-bar .nav-overlay,
.admin-bar .widget-overlay,
body.logged-in .header {
  margin-top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar .nav-overlay,
  .admin-bar .widget-overlay,
  body.logged-in .header {
    margin-top: 32px;
  }
}

.widget-overlay .container-full {
  padding-top: 100px;
}

.overlay-title {
  color: #fff;
  margin-top: 60px;
  font-size: 40px;
}

.widget-overlay li {
  border: none !important;
}

.nav-overlay li a,
.widget-overlay li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  display: block;
  color: #fff;
}
.nav-overlay li:first-child a,
.widget-overlay li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-overlay li a:hover {
  font-size: 150%;
}

.esa-home {
  font-family: 'NotesESABold', sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-top: 23px;
  display: inline-block;
  margin-left: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.esa-home:hover {
  color: #fff;
  font-size: 105%;
}



/*
** SEARCH OVERLAY
*/

.search-overlay {
  position: fixed;
  width: 90vw;
  height: 200px;
  top: 50%;
  left: 50%;
  z-index: 999999;
  background-color: rgba(0,152,219,1);
  margin-left: -45%;
  margin-top: -100px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0px 20px rgba(0,0,0,0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .search-overlay {
    width: 500px;
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -100px;
  }
}
.search-overlay.open {
  visibility: visible;
  opacity: 1;
  box-shadow: 0 0px 20px rgba(0,0,0,0.5);
}

.search-form {
  width: 80%;
  margin: 0 auto;
  height: 50px;
  position: relative;
}

.search-form label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
}

.search-field {
  border: none;
  background-color: transparent;
  height: 100%;
  width: calc(100% - 46px);
  color: #fff;
  font-size: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding: 0 48px 10px 0;
}
.search-field:focus {
  border-bottom: 2px solid rgba(255,255,255,1);
}
.search-field::-webkit-input-placeholder {
  color: rgba(255,255,255,0.3);
}
.search-field::-moz-placeholder {
  color: rgba(255,255,255,0.8);
}
.search-field:-ms-input-placeholder {
  color: rgba(255,255,255,0.3);
}
.search-field:-moz-placeholder {
  color: rgba(255,255,255,0.3);
}

.search-submit-wrapper {
  position: absolute;
  line-height: 0;
  top: 0;
  right: 0;
}

.search-submit {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.search-form i {
  line-height: 1 !important;
  color: rgba(255,255,255,0.3);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.search-submit-wrapper:hover i {
  color: rgba(255,255,255,1);
}



/*
** COVER
*/

#cover {
  height: 100vh;
  color: #fff;
  text-align: center;
}

.site-title {
  margin: 0 0 40px;
  font-size: 50px;
  animation: fadeIn 5s 1s 1 backwards;
}
.site-title::after {
  border-bottom: 5px solid rgba(0,152,219,1);
  content: "";
  display: block;
  left: 50%;
  margin-left: -25px;
  margin-top: 20px;
  position: absolute;
  width: 50px;
  animation: fadeIn 5s 1.5s 1 backwards;
}
@media screen and (min-width: 768px) {
  .site-title {
    font-size: 75px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .site-title {
    font-size: 100px;
  }
}

.error404 .site-title,
.error404 .site-title::after {
  animation: none;
}

#cover p {
  margin: 0 auto;
  max-width: 600px;
  font-size: 16px;
  animation: fadeIn 5s 2s 1 backwards;
}



/*
** SOCIALS
*/

#socials {
  background-color: rgba(0,152,219,1);
  display: flex;
  height: 90px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.social-entry {
  padding: 0 10px;
}

.social-entry a {
  color: rgba(255,255,255,0.5);
}
.social-entry a:hover {
  color: rgba(255,255,255,1);
}

.social-label {
  background-color: rgba(255,255,255,1);
  display: block;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -60px;
  line-height: 1;
  width: 120px;
  padding: 10px;
  text-align: center;
  opacity: 0;
  z-index: 12;
  visibility: hidden;
  box-shadow: 0px 3px 5px rgba(0,0,0,0.15);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.social-label::before {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  top: 25px;
  left: 50%;
  margin-left: -8px;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.social-entry:hover .social-label,
.social-entry:hover .social-label::before {
  opacity: 1;
  visibility: visible;
}



/*
** POST GRID
*/

.post-grid {
  width: 100%;
  background-color: #263238;  
}

.post-grid .entry {
  height: 100px;
  overflow: hidden;
  padding: 0 0 100% 0;
  margin: 0;
  width: 100%;
  background-color: #455A64;
}
@media screen and (min-width: 768px) {
  .post-grid .entry {
    width: 50%;
    padding-bottom: 50%;
  }
  .post-grid .entry:nth-child(3n+1) {
    width: 100%;
    padding-bottom: 100%;
  }
  .post-grid .entry:nth-child(3n+1) .entry-title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .post-grid .entry:nth-child(3n+1) {
    width: 50%;
    padding-bottom: 50%;
  }
  .post-grid .entry:nth-child(3n+1) .entry-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .post-grid .entry {
    width: 25%;
    padding-bottom: 25%;
  }
  .post-grid .entry:nth-child(3n+1) .entry-title {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .post-grid .entry.format-link,
  .post-grid .entry.format-quote,
  .post-grid .entry.format-satus {
    width: 25%;
    padding-bottom: 25%;
  }
  .post-grid .entry.format-link .entry-title,
  .post-grid .entry.format-quote .entry-title,
  .post-grid .entry.format-status .entry-title {
    font-size: 22px;
  }
}

.navigator .navigator-grid {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
}

.navigator .navigator-grid .entry {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.navigator-archive .navigator-grid .entry {
  width: 50%;
  padding-bottom: 50%;
}

.navigator .navigator-grid .entry-description {
  display: none;
  margin: 0;
}

.navigator-archive .navigator-grid .entry .entry-title {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .navigator-active .navigator-grid .entry {
    width: 33.3%;
    padding-bottom: 33.3%;
  }

  .navigator-active .navigator-grid .entry .entry-title {
    font-size: 30px;
  }

  .navigator-archive .navigator-grid .entry {
    width: 25%;
    padding-bottom: 25%;
  }

  .navigator-archive .navigator-grid .entry .entry-title {
    font-size: 22px;
  }
}

.navigator .section-title {
  margin-top: 100px;
}

.post-grid .format-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 20px 20px 0;
  line-height: 1 !important;
  color: inherit;
}

.entry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 20px;
  z-index: 2;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.entry-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
  background-color: #455A64;
}
.post.format-standard:hover .entry-image,
.post.format-video:hover .entry-image,
.post.format-audio:hover .entry-image,
.post.format-gallery:hover .entry-image,
.post.format-quote:hover .entry-image,
.post.format-status:hover .entry-image,
.post.format-link:hover .entry-image,
.post.format-aside:hover .entry-image,
.post.format-image:hover .entry-image {
  transform: scale(1.1);
}

.entry-dimmer {
  background: rgba(0,0,0,0.5);
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.75) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#bf000000',GradientType=0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.entry-dimmer.no-image {
  background: -moz-linear-gradient(45deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(45deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(45deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
}

.entry-author {
  margin-bottom: 15px;
}

.entry-author .avatar {
  border-radius: 100%;
  width: 20px;
  float: left;
}

.author-name {
  line-height: 20px;
  float: left;
  margin-left: 10px;
  font-style: italic;
}

.entry-title {
  margin: 0 0 10px 0;
  text-transform: none;
  font-size: 22px;
}

.entry-content a {
  color: #fff;
  font-style: italic;
}
.entry-content a:hover {
  border-bottom: 1px solid;
}

.post-grid p {
  margin-bottom: 10px;
}

.post-grid .format-aside {
  background-color: #263238;
}

.post-grid .format-aside p {
  color: #cfd8dc;
}

.post-grid .format-status {
  background-color: #fff;
}

.post-grid .format-status .entry-content {
  color: #757575;
}

.post-grid .format-status p {
  font-size: 15px;
}
@media screen and (min-width: 1025px) {
  .post-grid .format-status p {
    width: 80%;
  }
}

.post-grid .format-quote {
  background-color: rgba(0,152,219,1);
}

.post-grid .format-quote p {
  font-style: italic;
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  .post-grid .format-quote p {
    width: 80%;
    font-size: 18px;
  }
}

.quote-author {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.post-grid .format-link,
.post-grid .format-standard {
  background-color: rgba(0,84,159,1);
}

.post-grid .format-gallery .flexslider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: ;
  border: none;
  margin: 0;
  padding: 0;
}

.format-gallery .flex-viewport,
.format-gallery .slides,
.format-gallery .slides li {
  height: 100%;
}

.gallery-slide {
}

.format-gallery .flex-control-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  margin: 20px 20px 0 0;
  z-index: 5;
}

.flex-control-paging li a {
  background-color: rgba(0,152,219,1);
  width: 15px;
  height: 15px;
  border-radius: 0;
  box-shadow: none;
}
.flex-control-paging li a:hover {
  background-color: #fff;
  box-shadow: none;
}

.flex-control-paging li a.flex-active {
  background-color: rgba(0,84,159,1);
  width: 40px;
}



/*
** BLOG AND ARCHIVES
*/

.banner {
  height: auto;
  padding-top: 150px;
  padding-bottom: 100px;
  background-color: #263238;
}

.banner-title {
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 50px;
}

.pagination {
  margin: 50px 0;
}

.page-numbers {
  display: block;
  line-height: 50px;
  width: 50px;
  text-align: center;
  height: 50px;
  background-color: #607d8b;
  color: #fff;
  float: left;
  margin: 0 1px 1px 0;
}
.page-numbers:hover {
  background-color: #455a64;
  color: #fff;
}

.page-numbers.current {
  background-color: #90a4ae;
}

.alert {
  text-align: center;
  padding: 100px 0;
}

.alert h2 {
  margin: 0;
}

.page-template-space19plus section.navigator {
  padding: 100px 0;
}



/*
** SINGLE POST
*/

.single .wrapper {
  background-color: #f1f4fa;
}

.post-cover {
  height: 80vh;
  background-color: #455A64;
}

.post-cover.no-image {
  height: 50vh;
}

.post-title {
  font-size: 40px;
  padding: 70px 0;
  color: #fff;
  text-align: center;
  margin: 0
}
@media screen and (min-width: 768px) {
  .post-title {
    font-size: 75px;
  }
}
@media screen and (min-width: 1025px) {
  .post-title {
    font-size: 100px;
  }
}

.post-wrapper {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto;
  max-width: 1300px;
}

.post-main {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.post-content {
  margin-bottom: 100px;
}

.page .post-content {
  float: none;
  margin: 0 auto;
  padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
  .post-content {
    width: 60%;
    float: right;
    padding: 0 50px;
    margin-bottom: 0;
    margin-right: 10%;
  }

  .post-sidebar {
    width: 30%;
    float: left;
    padding: 0 50px;
  }
}

.post-excerpt {
  font-size: 20px;
  margin-bottom: 50px;
  color: rgba(0,152,219,1);
}

.post-meta-mini {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .post-meta-mini {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .post-meta.meta-date,
  .post-meta.meta-time,
  .post-meta.meta-comments {
    display: none;
  }
}

.post-meta-mini .post-meta {
  display: inline-block;
  padding: 0 15px;
}

.post-meta {
  text-align: center;
  padding: 30px 0;
}

.post-meta i {
  display: block;
}

.single-format-aside .post-cover,
.single-format-status .post-cover,
.single-format-quote .post-cover {
  height: auto;
}

.single-format-aside .post-cover .dimmed,
.single-format-status .post-cover .dimmed,
.single-format-quote .post-cover .dimmed {
  padding-top: 150px;
  padding-bottom: 100px;
  background-color: rgba(0,152,219,0.8);
}

.post-content .gallery {
  display: none;
}



/*
** AUTHOR
*/

.author-bio {
  padding-top: 0;
  position: relative;
  margin-bottom: 50px;
}
.author-bio::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 0;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  bottom: 0;
  left: 50%;
  margin-left: -25px;
}

.author-bio .avatar {
  border-radius: 100%;
  width: 60px;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px rgba(0,152,219,1);
}

.author-title {
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 10px;
}

.author-title span {
  text-transform: uppercase;
  font-weight: 700;
}

.author-description {
  font-size: 90%;
  font-style: italic;
  margin-bottom: 10px;
}

.author-icons {
  font-size: 18px;
}

.author-icons li {
  margin: 0 5px;
}



/*
** IMAGES
*/

.post-content img,
.wp-caption {
  margin-top: 30px;
  margin-bottom: 50px;
}

.post-content .wp-caption img {
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .alignleft {
    float: left;
    margin-right: 40px;
  }
  .alignright {
    float: right;
    margin-left: 40px;
  }
}

.post-content img {
  box-shadow: 5px 5px 0 0 #b0bec5;
}

.wp-caption-text {
  font-size: 90%;
  font-style: italic;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f4fa;
  margin: 10px 0 0;
}
@media screen and (min-width: 1024px) {
  .wp-caption-text {
    margin: 10px 25px 0;
  }
}



/*
** SHARE
*/

div.sharedaddy {
  margin: 100px 0;
  border: 2px solid rgba(0,152,219,0.3);
  padding: 25px;
}

div.sharedaddy h3.sd-title {
  font-family: inherit;
  font-weight: 700;
  color: #757575;
  font-size: 15px;
}

div.sharedaddy h3.sd-title::before {
  display: none !important;
}

.sd-content ul {
  margin: 0 !important;
}



/*
** COMMENTS
*/

.post-comments {
  clear: both;
  max-width: 840px;
  margin: 0 auto;
  padding-top: 100px;
}

.commentlist {
  border-bottom: 2px solid rgba(0,152,219,0.3);
}

ul.commentlist {
    list-style: none;
}

.comment.depth-1 {
}

.comment-body {
  margin-bottom: 30px;
  display: table;
  width: 100%;
  border-top: 2px solid rgba(0,152,219,0.3);
  padding-top: 30px;
  position: relative;
}

.comment-avatar,
.comment-content {
  display: table-cell;
  vertical-align: top;
}

.comment-avatar {
  width: 50px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .comment-avatar {
    width: 75px;
    padding-right: 15px;
  }
}

.comment .avatar {
  width: 100%;
  border-radius: 100%;
}
.comment.bypostauthor .avatar {
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px rgba(0,152,219,1);
}

.comment-author {
  display: block;
  font-size: 18px;
}

.comment-date {
  font-size: 90%;
  opacity: 0.7;
  font-style: italic;
}

.comment-body p {
  margin: 10px 0;
}

.comment-awaiting-moderation {
  background-color: rgba(0,0,0,0.05);
  padding: 5px 10px;
  display: block;
  color: rgba(0,0,0,0.4);
}

.comment .children {
  margin-left: 50px;
}
@media screen and (min-width: 768px) {
  .comment .children {
    margin-left: 60px;
  }
}

.comment .children .comment-body {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.reply-icon {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0 !important;
  margin-top: 50px;
  margin-left: -35px;
  color: rgba(0,152,219,0.3);
}
.comment.depth-1 > .comment-body .reply-icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .reply-icon {
    margin-top: 60px;
  }
}

.comment-respond {
  padding-top: 50px;
}

.comment-respond input[type="text"],
.comment-respond textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  border: none;
  background-color: #f1f4fa;
  padding: 15px;
  width: 100%;
  resize: none;
}

.wpcf7-form-control-wrap {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}



/*
** WIDGETS
*/

.widget-area {
  clear: both;
  padding: 100px 0 0;
  position: relative;
  border-top: 1px solid #f1f4fa;
  background-color: #fff;
}
.home .widget-area{
  padding: 100px 0;
}
.blog .widget-area {
  padding: 100px 0;
  border: none;
}
.single .widget-area {
  margin-top: 100px;
}

.widget-grid {
  width: 100%;
}

.widget-grid .widget {
  overflow: hidden;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .widget-grid .widget {
    width: calc( 50% - 40px );
  }
}
@media screen and (min-width: 1024px) {
  .widget-grid .widget {
    width: calc( 33% - 40px );
  }
}
@media screen and (min-width: 1400px) {
  .widget-grid .widget {
    width: calc( 25% - 40px );
  }
}

.widget {
  margin-bottom: 50px;
}

.widget-title {
  margin: 0 0 20px;
}

.widget-overlay .widget-title {
  color: #fff;
}

.widget-overlay a {
  color: #fff;
}
.widget-overlay a:hover {
  color: #607D8B;
}

.widget ul li {
  border-top: 1px solid #f1f4fa;
  line-height: 1.5;
  padding: 15px 0;
}

.widget ul li.recentcomments {
  
}

.widget ul li a {
  display: inline-block;
}

.widget img {
  width: 95%;
  box-shadow: 5px 5px 0 0 rgba(0,0,0,0.3);
}

.tagcloud {
  line-height: 1;
}

select {
  border: 1px solid #f1f4fa;
  background-color: transparent;
  padding: 5px;
  width: 100%;
  margin: 0;      
}

/*
.twitter-timeline {
  border: 1px solid #f1f4fa !important;
}
*/



/*
** FOOTER
*/

.connect-with-us ul {
  margin-top: 5px;
}

.connect-with-us li {
  display: inline-block;
  margin: 0 10px 10px 0;
  line-height: 1;
}

.footer_text {
  display: flex;
  flex-direction: row;
}

.copyright {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  margin-right: auto;
}

.privacy {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  padding: 2em;
}

#footer a:hover {
  color: #fff;
}

ul.post-categories {
    list-style: none;
    padding-left: 0;
}

article ul {
    list-style: disc;
    padding-left: 15px;
}

article ol {
    list-style: disc;
    padding-left: 15px;
}

.wp-block-image img {
    margin: 0  !important;
}

.wp-block-image {
    margin: 30px 0 50px !important;
}

.wp-block-image figcaption {
    font-size: 90%;
    font-style: italic;
    border-bottom: 1px solid #f1f4fa;
    margin: 15px 25px 0  !important;
    padding-bottom: 10px;
}





























