/** @format */

:root {
  --gray: #a8a8a8;
  --orange: #f4901e;
  --purple: #272b5c;
  --red: #f2543f;
  --blue: #134384;
}

body {
  margin: 0;
  font-family: dm sans, Arial, Tahoma, sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

a,
p {
  font-family: dm sans, Arial, Tahoma, sans-serif;
  /* color: var(--blue); */
}

.hide {
  display: none;
}

form.amp-form-submit-success > .display-flex {
  display: none;
}

form.amp-form-submit-success > h2 {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: dm serif display, Arial, Tahoma, sans-serif;
  color: var(--purple);
}

a:hover {
  cursor: pointer;
  color: var(--orange);
}

/* h1 {
  font-size: 32px;
} */

h3 {
  font-size: 21px;
  font-family: dm serif display, Arial, Tahoma, sans-serif;
  color: var(--purple);
}

.btn {
  background-color: #272b5c;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 15px;
  letter-spacing: 2px;
  font-size: 13;
  font-weight: 700;
  text-transform: uppercase;
}

.btn a {
  color: #fff;
  text-decoration: none;
}

.btn a:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.white {
  background-color: #fff;
  color: #272b5c;
}

.light-blue {
  color: #272b5c;
  background-color: #e6eef8;
}

hr {
  width: 75%;
  border: 0;
  height: 0.5px;
  background-image: -webkit-linear-gradient(
    left,
    #f0f0f0,
    rgba(0, 0, 0, 0.08),
    #f0f0f0
  );
  background-image: -moz-linear-gradient(
    left,
    #f0f0f0,
    rgba(0, 0, 0, 0.08),
    #f0f0f0
  );
  background-image: -ms-linear-gradient(
    left,
    #f0f0f0,
    rgba(0, 0, 0, 0.08),
    #f0f0f0
  );
  background-image: -o-linear-gradient(
    left,
    #f0f0f0,
    rgba(0, 0, 0, 0.08),
    #f0f0f0
  );
  margin-bottom: 24px;
}

.support-nav {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* .center {
	display: flex;
	justify-content: center;
} */
/* 
.article-content {
  min-height: 450px;
} */

.my-auto {
  width: 100%;
  margin: auto;
  text-align: center;
}

.align-middle {
  vertical-align: middle;
}

.tiny-padding {
  padding-top: 5px;
}

@media screen and (min-width: 475px) {
  .display-flex {
    display: flex;
  }
}

.sidebar {
  background-color: #272b5c;
  color: #fff;
  width: 250px;
  right: 0 !important;
  --story-page-vh: 1vh;
  position: fixed !important;
  top: 0;
  max-height: 100vh !important;
  height: 100vh;
  max-width: 80vw;
  /* background-color: #efefef; */
  min-width: 45px !important;
  outline: none;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  z-index: 2147483647;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}

.navigation {
  background-color: white;
}

.navigation-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 12px;
}

.homepage-header {
  display: flex;
  justify-content: center;
}

.page-title {
  display: flex;
  justify-content: center;
}

.list-content {
  min-height: 600px;
}

@media screen and (min-width: 767px) {
  .navigation-container {
    padding: 20px 60px;
  }
}

/* .hamburger {
  padding: 5px;
  z-index: 10;
}

#hamburger {
  width: 24px;
  height: 29px;
  position: relative;
  cursor: pointer;
  outline: none;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--orange);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

#hamburger span:nth-child(2) {
  top: 9px;
  transform-origin: left center;
}

#hamburger span:nth-child(3) {
  top: 18px;
  transform-origin: left center;
}

#hamburger.close span:nth-child(1) {
  transform: rotate(45deg);
}

#hamburger.close span:nth-child(2) {
  width: 0%;
  opacity: 0;
  transition: 0.1s;
}

#hamburger.close span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger:hover {
  cursor: pointer;
} */

.nav-links {
  display: none;
}

.nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.nav-item {
  float: left;
  padding: 0 24px;
}

.nav-item a {
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px -1px 3px rgba(255, 255, 255, 0.7);
  line-height: 35px;
}

.nav-item a:hover {
  color: var(--orange);
  text-decoration: none;
}

.support {
  width: 80%;
  display: grid;
  margin: 0 auto;
}

.support-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 2rem;
  align-items: center;
}

/* .support-container > div { 
	padding: 1rem;
	background-color: orange;
	line-height: 6rem;
} */

.support-tile {
  border: 1px solid #e8e8e8;
  background-color: var(--orange);
  height: 9rem;
  width: 16rem;
  line-height: 8rem;
  text-align: center;
}

.support-tile a {
  color: white;
  text-decoration: none;
  font-size: 21px;
  font-family: dm serif display, Arial, Tahoma, sans-serif;
  text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2),
    0px -5px 35px rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 890px) {
  .nav-links {
    display: block;
  }
  .nav-item {
    padding: 0 10px;
  }
  /* .hamburger {
    display: none;
  } */
}

@media screen and (min-width: 1080px) {
  .nav-item {
    padding: 0 20px;
  }
  .nav-links {
    display: block;
  }
}

.index-splash {
  background-image: url(/images/hollywood-sign.webp);
}

.about-splash {
  background-image: url(/images/los-angeles-skyline-mobile.webp);
}

.services-splash {
  background-image: url(/images/macbook-on-wooden-table.webp);
}

.contact-splash {
  background-image: url(/images/hangouts-dialer-app-on-laptop.webp);
}

.blog-splash {
  background-image: url(/images/two-scoop-ice-cream-cone.webp);
}

.splash {
  margin: 0;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 12%;
}

.single {
  margin: 0;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 4%;
}

.fixed-container {
  position: relative;
  width: 100%;
  height: 350px;
}

img.contain img {
  object-fit: contain;
}

@media screen and (min-width: 475px) {
  .index-splash,
  .about-splash,
  .services-splash {
    height: 45vh;
  }
}

@media screen and (min-width: 767px) {
  .index-splash {
    background-image: url(/images/hollywood-sign-wide.webp);
    height: 66vh;
  }
  .about-splash {
    background-image: url(/images/los-angeles-skyline.webp);
    height: 66vh;
  }
  .services-splash {
    background-image: url(/images/macbook-on-wooden-table.webp);
    height: 66vh;
  }
  .contact-splash {
    background-image: url(/images/hangouts-dialer-app-on-laptop.webp);
    height: 66vh;
  }
}

.title {
  padding: 3% 2%;
}

.blog-title {
  margin: 0 auto;
  text-align: center;
}

.index-main-text {
  text-align: left;
  padding-left: 4%;
}

.index-title {
  font-family: dm serif display;
  font-size: 32px;
  font-weight: 400;
  color: var(--purple);
}

.subtitle {
  color: var(--blue);
  font-family: dm sans;
  font-size: 14px;
}

.title-text {
  text-align: center;
  color: var(--purple);
  word-wrap: break-word;
  font-family: dm serif display, Arial, Tahoma, sans-serif;
  font-size: 46px;
}

.about-splash .subtitle,
.services-splash .subtitle {
  font-size: 14px;
}

@media screen and (min-width: 475px) {
  .subtitle {
    font-size: 20px;
  }
}

@media screen and (min-width: 767px) {
  .index-title {
    font-size: 40px;
  }
  .about-splash .subtitle,
  .services-splash .subtitle {
    font-size: 20px;
  }
  .index-main-text {
    padding-top: 7%;
    padding-left: 8%;
  }
  .blog-title h1 {
    font-size: 50px;
  }
}

@media screen and (min-width: 1080px) {
  .index-title {
    font-size: 50px;
  }
  .subtitle {
    font-size: 26px;
  }
  .index-main-text {
    padding-left: 8%;
  }
  .blog-title h1 {
    font-size: 60px;
  }
}

.date {
  text-align: center;
  padding-top: 5%;
}

div.date > span {
  font-size: 0.9rem;
  color: rgba(33, 33, 33, 0.7);
}

article {
  margin: 0 auto;
  overflow: hidden;
  color: var(--blue);
}

article > p > img {
  display: block;
  margin: 16px auto;
  font-size: 14px;
  font-stretch: 100%;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  color: var(--blue);
  width: 95%;
}

article > h1 {
  color: #272b5c;
  font-size: 2.5rem;
}

article > h3 {
  font-size: 1.8rem;
  font-weight: 400;
  /* font-family: dm serif display, Arial, Tahoma, sans-serif; */
  margin: 0;
  padding: 0 10px;
}

article > h4 {
  font-size: 1.6rem;
}

article > h5 {
  font-size: 1.4rem;
}

#main > div > article > p {
  padding: 0;
}

#main > div > article > h1,
#main > div > article > h2,
#main > div > article > h3,
#main > div > article > h4,
#main > div > article > h5 {
  font-family: dm sans, Arial, Tahoma, sans-serif;
  font-weight: 600;
  color: #272b5c;
  margin: 0;
  padding: 0;
}

@media (max-width: 480px) {
  article > h1 {
    font-size: 1.8rem;
  }

  article > h2 {
    font-size: 1.6rem !important;
  }

  article > h3 {
    font-size: 1.4rem;
  }

  article > h4 {
    font-size: 1.2rem;
  }

  article > h5 {
    font-size: 1rem;
  }

  article > p {
    font-size: 0.8rem;
  }
}

article > div {
  /* padding: 0 10px; */
}

article > p,
.quote {
  padding: 0 10px;
  line-height: 1.9;
}

article > ul {
  padding: 0 8px;
  list-style: inside;
}

article ul li {
  line-height: 1.9;
}

article ul li p {
  display: contents;
}

img {
  max-width: 100%;
}
/* 
@media screen and (min-width: 767px) {
  article {
    width: 59%;
    font-size: 19px;
  }
  article > p {
    line-height: 1.9;
  }
}

@media screen and (min-width: 1280px) {
  article {
    width: 48%;
  }
}

@media screen and (min-width: 1366px) {
  article {
    width: 41%;
  }
} */

.share-section {
  display: flex;
  align-items: center;
}

.share-label {
  padding-right: 6%;
  padding-left: 6%;
  color: var(--blue);
}

social-share {
  border-radius: 50%;
  background-size: 60%;
  margin-right: 8px;
}

.author-box {
  display: flex;
  max-width: 80%;
  margin-bottom: 24px;
  margin-left: 6%;
}

@media screen and (min-width: 767px) {
  .author-box {
    max-width: 80%;
  }
}

.avatar-wrapper > amp-img {
  width: 64px;
  height: 64px;
  border: 5px solid #f8f8f8;
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

.desc-wrapper {
  flex-grow: 1;
  background-color: #fbfbfb;
  width: 60%;
  margin-left: 2%;
  padding: 19px;
  color: var(--blue);
  font-size: 13px;
}

.desc-wrapper > a {
  color: #272b5c;
  text-decoration: none;
}

.desc-wrapper + .desc-wrapper {
  margin-left: 2%;
}

.contact {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1),
    rgba(232, 237, 249, 1)
  );
  text-align: center;
  padding-top: 80px;
}

.contact h2 {
  color: var(--purple);
  font-size: 38px;
  font-family: dm serif display, Arial, Tahoma, sans-serif;
}

.contact > p {
  font-size: 14px;
  color: var(--blue);
}

.people-back {
  margin: 0;
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url(/images/backs-of-people-waving.png);
  height: 15vh;
}

@media screen and (min-width: 475px) {
  .people-black {
    height: 30vh;
  }
  .contact p {
    max-width: 60%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 26px;
    font-size: 18px;
  }
}

@media screen and (min-width: 767px) {
  .people-back {
    height: 40vh;
  }
}
/* 
footer {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  background-color: #0b1649;
  color: #fff;
  padding: 51px 24px;
}

.footer-section h4,
.footer-section a,
.footer-section p {
  color: #fff;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--orange);
}

a.footer-orange-link {
  color: #f68744;
  text-decoration: none;
}

.footer-section > h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: dm serif display, Arial, Tahoma, sans-serif;
}

.footer-section > h5 {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
} 

@media screen and (min-width: 767px) {
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}
*/
.four-icons {
  display: flex;
  flex-direction: column;
  align-items: initial;
  color: #0b1649;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tile-img {
  max-width: 33%;
  margin: 0 auto;
}

.tile {
  width: 100%;
  align-self: flex-start;
}

.tile > h3,
.tile > p {
  text-align: center;
}

.tile > h3 {
  font-size: 21px;
  /* font-family: dm serif display, Arial, Tahoma, sans-serif; */
}

.tile > p {
  color: var(--blue);
  font-size: 14px;
  padding: 0 12px;
}

@media screen and (min-width: 767px) {
  .four-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
  }
  .tile {
    width: 25%;
    padding: 10px;
  }
  .tile-img {
    max-width: 70%;
  }
  .tile > p {
    font-size: 16px;
  }
}

.here-to-help,
.different,
.columns-contact {
  background-color: #e6eef8;
  padding: 70px 0;
}

.here-to-help ul,
.different ul {
  margin-left: 0;
  padding-left: 8px;
}

.here-to-help ul li,
.different ul li {
  list-style-type: none;
  background-image: url(/images/insurance3-list.png);
  background-repeat: no-repeat;
  line-height: 35px;
  padding-left: 40px;
  margin: 0;
}

.here-to-help ul li,
.different ul li {
  padding-bottom: 8px;
  color: #272b5c;
  font-size: 14px;
}

.different h3 {
  padding: 0 12px;
}

#about-us {
  color: var(--purple);
  background-color: #fff;
  border: none;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 15px;
  margin-left: 12px;
}

.here-to-help h3,
.different h3 {
  font-size: 21px;
  /* font-family: dm serif display, Arial, Tahoma, sans-serif; */
  color: var(--purple);
}

.here-to-help p,
.different p {
  color: var(--blue);
  font-size: 14px;
  padding: 0 12px;
}

.here-to-help h3 {
  padding: 0 12px;
}

.img-wrapper {
  padding: 12px 24px;
}

@media screen and (min-width: 767px) {
  .here-to-help {
    display: flex;
  }
  .column {
    width: 50%;
  }
  .left {
    padding: 0 28px;
  }
  .img-wrapper {
    padding: 0;
  }
  .here-to-help h3 {
    font-size: 25px;
  }
  .here-to-help p {
    font-size: 20px;
  }
  .different p {
    font-size: 16px;
  }
  .different button#about-us {
    margin-left: 38px;
  }
  .different h3 {
    padding: 0 38px;
    font-size: 25px;
  }
  .here-to-help ul li,
  .different ul li {
    font-size: 16px;
  }
}

.salesforce-news {
  padding: 70px 0;
  text-align: center;
}

.salesforce-news > h3 {
  font-size: 21px;
  /* font-family: dm serif display, Arial, Tahoma, sans-serif; */
  color: var(--purple);
}

.salesforce-news a {
  text-decoration: none;
}

.salesforce-news a:hover {
  cursor: pointer;
}

.article-tile {
  width: 80%;
  height: 180px;
  background-size: cover;
  margin: 0 auto;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.article-tile > h4,
.article-tile > p {
  text-shadow: 0 -1px 1px rgba(255, 255, 255, 0.3);
}

.article-tile > h4 {
  font-size: 18px;
  font-family: dm serif display, Arial, Tahoma, sans-serif;
  color: #fff;
}

.article-tile > p {
  color: #fff;
  font-size: 14px;
}

@media screen and (min-width: 475px) {
  .articles {
    display: flex;
  }
  .article-tile > h4 {
    font-size: 25px;
  }
  .article-tile > p {
    font-size: 19px;
  }
}

.footer-copy {
  padding-top: 25px;
  background-color: var(--purple);
  line-height: 60px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 475px) {
  .customer-logos {
    padding: 0 24px;
  }
  .customer-logo-img {
    padding: 0 16px;
  }
  .services-logos {
    padding: 0 20%;
  }
}

.customer-logos {
  padding-bottom: 60px;
}

.graphs {
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 767px) {
  .graphs {
    display: flex;
    justify-content: center;
  }
}

.chart {
  position: relative;
  display: inline-block;
  color: #999;
  font-size: 20px;
  text-align: center;
}

.chart figcaption {
  padding: 50px 25px;
  width: 100px;
  height: 50px;
  border: 20px solid #efefef;
  border-radius: 100px;
  line-height: 50px;
}

.chart img {
  position: absolute;
  max-width: 100px;
  max-height: 100px;
  background: #fff;
}

.ai + svg .outer {
  stroke: var(--purple);
}

.chart svg {
  position: absolute;
  top: 0;
  left: 0;
}

.outer {
  fill: transparent;
  stroke: #333;
  stroke-width: 20;
  stroke-dasharray: 534;
  transition: stroke-dashoffset 1s;
  -webkit-animation-play-state: running;
  -moz-transform: rotate(-89deg) translateX(-190px);
}

.chart[data-percent="100"] .outer {
  stroke-dashoffset: 0;
  -webkit-animation: show100 2s;
  animation: show100 2s;
}

.chart[data-percent="90"] .outer {
  stroke-dashoffset: 70;
  -webkit-animation: show25 2s;
  animation: show25 2s;
}

.chart[data-percent="82"] .outer {
  stroke-dashoffset: 100;
  -webkit-animation: show82 2s;
  animation: show82 2s;
}

.rating p {
  color: var(--purple);
  font-size: 19px;
}

.find-partner {
  background: url(/images/insurance3-sectionbg2.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  min-height: 50vh;
  padding: 6% 3%;
}

.right-partner-img {
  display: none;
}

.finding {
  padding: 30px 12px;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.9);
  margin-top: 2%;
  padding: 8px;
}

.class-img {
  min-width: 100%;
}

@media screen and (min-width: 767px) {
  .find-partner {
    background: #fff;
  }
  .overlay {
    padding: 36px 24px;
  }
  .right-partner-img {
    display: block;
    width: 50%;
  }
}

.methodology {
  background-color: #e6eef8;
  height: 100%;
  padding: 0 12px 40px;
}

.methodology-button {
  margin-top: 26px;
  margin-left: 6%;
}

.give-space p {
  font-size: 14px;
}

@media screen and (min-width: 767px) {
  .steps {
    padding-top: 10px;
    margin: 0 auto;
    max-width: 90%;
  }
  .steps .display-flex .column {
    justify-content: space-between;
    padding: 0 20px;
  }
  .give-space {
    max-width: 70%;
  }
  .give-space h1 {
    font-size: 50px;
    margin: 0;
    margin-bottom: 30px;
  }
  .give-space p {
    font-size: 18px;
  }
  .step {
    font-size: 16px;
  }
}

.services .box {
  margin: 0 auto;
}

.columns-contact {
  text-align: center;
}

.address > h3 {
  margin: 0 auto;
}

h3 > a {
  color: var(--purple);
  /* font-family: dm serif display, Arial, Tahoma, sans-serif; */
  text-decoration: none;
}

h3 > a:hover {
  color: var(--orange);
}

.send {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 70px 0;
}

.send > h2 {
  font-size: 36px;
  color: var(--purple);
}

/* input {
  max-width: 100%;
  padding: 10px;
  border: none;
  margin: 0;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 0;
  color: var(--purple);
  background-color: #e6eef8;
} */

/* textarea {
  padding: 10px;
  outline: none;
  max-width: 100%;
  border: none;
  margin: 0;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 0;
  color: var(--purple);
  background-color: #e6eef8;
} */

/* .contact-us-inquiry {
  padding: 10px;
  outline: none;
  width: 100%;
  max-width: 100%;
  border: none;
  margin: 0 0 10px 0;
  font-size: 14px;
  border-radius: 0;
  color: var(--purple);
  background-color: #e6eef8;
} */

/* @media screen and (min-width: 767px) {
  .column > input {
    width: 90%;
  }
  .display-flex > input {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  textarea {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  input.btn {
    width: 95%;
    margin: 0 auto;
  }
} */

.featured-post {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1),
    rgba(232, 237, 249, 1)
  );
  padding: 51px 0;
}

.blog-image {
  margin: 0 auto;
  max-width: 100%;
  margin-top: 32px;
}

.featured-wrapper {
  max-width: 90%;
  margin: 0 auto;
}

.featured-wrapper h1 {
  color: var(--purple);
  font-size: 32px;
}

.featured-wrapper p {
  color: var(--blue);
}

@media screen and (min-width: 767px) {
  .featured-wrapper p {
    font-size: 20px;
  }
}

.list {
  padding: 0 3%;
}

.post-description {
  color: var(--blue);
  padding-top: 8px;
}

.muted {
  color: var(--gray);
}

.align-right {
  text-align: right;
}

.post-details > h4 > a {
  font-size: 20px;
  text-decoration: none;
  /* font-family: dm serif display, Arial, Tahoma, sans-serif; */
  color: var(--purple);
}

.post-details > h4 > a:hover {
  cursor: pointer;
}

.post-details > h4,
.post-details > p {
  margin: 0;
}

.read-more {
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.02);
  text-align: right;
  margin-bottom: 25px;
}

.read-more a {
  color: var(--red);
  text-decoration: none;
}

.read-more a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.taxonomies {
  display: none;
}

@media screen and (min-width: 767px) {
  .blogs-container {
    display: flex;
  }
  .blogs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .taxonomies {
    display: block;
    min-width: 15%;
  }
  .taxonomies li {
    list-style-type: none;
    padding: 3px 0;
  }
  .blog-preview {
    flex: 0 30%;
    padding: 12px 6px;
  }
}

.icon-link {
  text-decoration: none;
  padding-right: 10px;
}

i {
  font-size: 2.1em;
}

i:hover {
  color: var(--orange);
}

.orange {
  color: var(--orange);
}

pre {
  background-color: #fbfbfb;
}

code {
  padding: 8px;
  line-height: 1.9;
  white-space: pre-wrap;
}

.quote {
  border-left: 3px solid red;
  font-style: italic;
}

/* twitter-widget {
  margin: 0 auto;
} */

/* .footer-social {
  background-color: var(--orange);
}

.footer-social:hover {
  background-color: var(--red);
} */

.related-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10%;
}

.see-also {
  margin: 0 10%;
}

section.resume-section {
  min-height: 60vh;
}

/* form#search {
  text-align: center;
} */

/* input#search-query {
  width: 50%;
} */

/* div#search-results {
  max-width: 70%;
  margin: 0 auto;
}

div#search-results > div {
  border: 1px solid #e1e1e1;
  margin-bottom: 12px;
  border-radius: 5px;
  padding: 0 12px;
} */

.pagination-section {
  margin: 0 auto;
}

.pagination {
  display: flex;
  justify-content: space-around;
  color: #b6d8cf;
  font-size: 30px;
  text-transform: uppercase;
  list-style: none;
  padding-left: 0;
}

/* .social-link {
  text-decoration: none;
  padding: 5px;
} */

@media screen and (min-width: 475px) {
  .pagination-section {
    width: 30%;
    margin: 0 auto;
  }
  .pagination {
    display: flex;
    justify-content: space-around;
    color: #b6d8cf;
    font-size: 30px;
    text-transform: uppercase;
    list-style: none;
  }
}

.page-link {
  font-size: 16px;
}
