/** Open Sans Font **/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Oswald&display=swap');

#content {
  padding-top: 100px;
}
#post-content {
  padding-top: 70px;
  padding-bottom: 100px;
  font-family: 'Open Sans', sans-serif;
  /*color: #6E8296;*/
}

.title-container {
  background: #00A0DF;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  padding: 25px;
}

.post-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
}

.details-row {
  position: relative;
  padding-top: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}
.details-row col {
  position: relative;
}
.details-row .border-left {
  border: 1px solid black;
}
.details-row .border-right {
  border: 1px solid black;
}
.details-row .share-icons {
  margin-top: 15px;
}
.t100 {
  top: 100%;
  transform: translateY(-50%);
}
.m10 {
  margin-top: 10px;
}
.posa {
  position: absolute;
}
.w1 {
  width: 1px;
}
.r0 {
  right: 0;
}
.l0 {
  left: 0;
}
.h30 {
  height: 30px;
}
.details-row .section-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 10px;
}
.details-row .section-info {
  font-family: 'Open Sans', sans-serif;
  display: block;
  font-size: 20px;
  color: #00A0DF;
  margin-top: -5px;
}
/* unvisited link */
.details-row a:link {
  color: black;
}

/* visited link */
.details-row a:visited {
  color: black;
}

/* mouse over link */
.details-row a:hover {
  color: black;
}

/* selected link */
.details-row a:active {
  color: black;
}

#post-content h2 {
  color: #1C1C1C;
  font-size: 25;
  font-family: Oswald,sans-serif;
}

#content .row {
  margin-left: 0;
  margin-right: 0;
}
.show-on-mobile {
  display: none;
}
@media(max-width: 500px) {
  .show-on-mobile {
    display: block;
  }
  .details-row .section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 8px;
  }
  .details-row .section-info {
    font-family: 'Open Sans', sans-serif;
    display: block;
    font-size: 13px;
    color: #00A0DF;
    margin-top: -5px;
  }
  .h30 {
    height: 15px;
  }
}

/** Floating Action Button **/
.mobile-social-icons,
.mobile-social-icons .button,
.mobile-social-icons .mobile-social-nav{
  position: absolute;
}

.mobile-social-icons {
  margin: auto;
  right: 15px;
  top: 100%;
  transform: translateY(-30%);
}

.mobile-social-icons #toggle {
  display: none;
}

.mobile-social-icons .button {
  z-index: 999;
  width: 17px;
  height: 17px;
  background: #00A0DF;
  transition: all 0.5s ease-in-out;
  box-shadow: 1px 3px 10px 0 rgba(#000000, 0.3);
  cursor: pointer;
}
.mobile-social-icons .button:before {
  position: absolute;
  top: 8px;
  left: 4px;
  content: '';
  width: 10px;
  height: 1px;
  background: #FFF;
  transform: rotate(90deg);
}
.mobile-social-icons .button:after {
  position: absolute;
  top: 8px;
  left: 4px;
  content: '';
  width: 10px;
  height: 1px;
  background: #FFF;
}

.mobile-social-icons .mobile-social-nav{
  transform: translateY(-10%);
  opacity: 0;
  top: 13px;
  left: -30px;
  transition: all 0.5s ease-in-out;
  background: white;
  box-shadow: 1px 3px 10px 0 rgba(#000000, 1);
  width: 60px;
  transform: translateY(0%);
}

.mobile-social-icons .mobile-social-nav a {
  text-align: center;
  display: inline-block;
  width:17px
  margin: 5px 0;
  margin-left: 0;
  margin-right: 0;
  text-decoration: none;
  letter-spacing: 2px;
}

#buttons-toggle:checked ~ .mobile-social-nav {
  opacity: 1;
  transform: translateY(10%);
}

#buttons-toggle:checked ~ .button:before {
  transform: rotate(135deg);
  transition: .5s;
}
#buttons-toggle:checked ~ .button:after {
  transform: rotate(-135deg);
  transition: .5s;
}
.mobile-social-nav .social-icon {
  width: 17px;
  height: 17px;
}

blockquote {
  font-family: Oswald;
  font-weight: bold;
  color: #1C1C1C;
  font-size: 20px;
}

@media(min-width: 1200px) {
  blockquote,
  figure.wp-block-pullquote{
    padding-top: 20px;
    padding-bottom: 20px;
    width: 40%;
    margin-left: 5%;
    margin-right: 5%;
    float: left;
    font-family: Oswald;
    font-weight: bold;
    color: #1C1C1C;
    font-size: 30px;
  }
  figure.wp-block-pullquote blockquote{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-family: Oswald;
    font-weight: bold;
    color: #1C1C1C;
    font-size: 30px;
  }
  blockquote + p,
  figure.wp-block-pullquote{
    float: left;
    width: 50%;
  }
}