@import url('variables.css');
@import url('utilities.css');
/**
 * Arbo Insights Blog Styles
 * Consolidated styles for ArView insights blog pages
 * Uses Arbo design tokens from variables.css
 */

@font-face {
    font-family: 'Open Sans';
    src: url(https://cdn2.hubspot.net/hubfs/1962658/Fonts/Open%20Sans/OpenSans-Regular.ttf);
  }
  
  @font-face {
    font-family: 'Open Sans Light';
    src: url(https://cdn2.hubspot.net/hubfs/1962658/Fonts/Open%20Sans/OpenSans-Light.ttf);
  }
  
  
  @font-face {
    font-family: 'Open Sans Bold';
    src: url(https://cdn2.hubspot.net/hubfs/1962658/Fonts/Open%20Sans/OpenSans-Bold.ttf);
  }

/* @font-face {
    font-family: 'Open Sans';
    src: url(https://cdn2.hubspot.net/hubfs/1962658/Fonts/Open%20Sans/OpenSans-Regular.ttf);
  }
  
  @font-face {
    font-family: 'Open Sans Light';
    src: url(https://cdn2.hubspot.net/hubfs/1962658/Fonts/Open%20Sans/OpenSans-Light.ttf);
  }
  
  
  @font-face {
    font-family: 'Open Sans Bold';
    src: url(https://cdn2.hubspot.net/hubfs/1962658/Fonts/Open%20Sans/OpenSans-Bold.ttf);
  } */
  
  html {
      height:100%;
      background:#fbfbfb;
  }
  
  body{
    font-family: 'Open Sans', sans-serif;
    background: #fff;
  }
  
  
  h1{
    font-size:45px;
    font-family: 'Open Sans Light';
    color:#1c1d4d;
  }
  
  h2{
    font-family: 'Open Sans Light';
    font-size:40px;
  }
  
  a {
      color: #00b2e1;
  }
  
  b,
  strong {
      color:#1c1d4c;
      font-weight: bold;
  }
  
  i,
  em {
      font-style: italic;
  }
  
  .text-center {
      text-align: center!important;
  }
  
  .p-3 {
      padding: 30px!important;
  }
  
  .mt-3, .my-3 {
      margin-top: 30px!important;
  }
  
  .mb-3, .my-3 {
      margin-bottom: 30px!important;
  }
  
  .pb-2, .py-2 {
      padding-bottom: 20px!important;
  }
  
  .pl-3, .px-3 {
      padding-left: 30px!important;
  }
  
  .pr-3, .px-3 {
      padding-right: 30px!important;
  }
  .pb-1, .py-1 {
      padding-bottom: 10px!important;
  }
  .pt-1, .py-1 {
      padding-top: 10px!important;
  }
  
  .logo {
      width: 155px;
  }
  
  .logo-mobile {
      width: 125px;
  }
  
  .hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
      background: #06c0e7;
  }
  
  .hamburger.search-btn {
      z-index: 19;
  }
  
  .main-menu>ul>li>a {
      color:#52708f;
      font-family: 'Work Sans', sans-serif;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
  }
  
  .wrapper.wrapper-fixed {
      padding-top: 75px;
  }
  
  @media(max-width: 767px){
      .wrapper.wrapper-fixed {
          padding-top: 85px;
      }
  
  
      .lock-scroll .wrapper.wrapper-fixed {
          padding-top: 0px;
      }
  }
  
  .header .container {
      position: relative;
  }
  
  .header.header-fixed {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 15;
  }
  
  .lock-scroll .header.header-fixed {
      position: inherit;
  }
  
  
  #logo-navigation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width:100%;
  }
  
  @media (min-width: 768px) {
  
      #search-top {
          right: 0;
          left: 0;
          width: auto;
      }
  }
  
  @media (min-width: 992px) {
      #search-top {
          /** width: 930px; */
      }
  }
  
  .mobile-menu-container {
      display:flex;
  }
  
  @media(min-width: 768px) {
      .mobile-menu-container {
          display:none;
      }
  }
  
  .mobile-menu-container .fa-search {
      width: 36px;
      height: 23px;
      text-align: center;
      display: inline-block;
      position: relative;
      line-height: 23px;
      font-size: 23px;
      color:#06c0e7;
  }
  
  
      .header #search-top {
  
              position:absolute;
              z-index:2020;
  
          }
  
          .header #search-top ::-webkit-input-placeholder {
          color:#414c54;
          }
  
          .header #search-top :-moz-placeholder { /* Firefox 18- */
          color:#414c54;
          }
  
          .header #search-top ::-moz-placeholder {  /* Firefox 19+ */
          color:#414c54;
          }
  
          .header #search-top :-ms-input-placeholder {
           color:$title-color;
          }
  
          .header #search-top input {
              float: left;
              margin: 10px 0 0px;
              width: 90%;
              height: 40px;
              line-height: 40px;
              padding: 0px;
              border: 0;
              background: transparent;
              font-size: 32px;
              font-family: 'Hind', sans-serif;
              font-weight: 300;
              border-radius: 0;
              box-shadow: none;
              -webkit-font-smoothing: antialiased;
          }
  
          .header #search-top input:focus {
                  border:0;
                  box-shadow:0;
                  outline: 0 none;
  
          }
  
          .header #search-top #close-search-btn {
              float: right;
              line-height: 60px;
              margin: 0;
              padding: 0;
              font-size: 16px;
              color: $title-color;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s;
          }
  
          @media(min-width: 768px) {
           .header #search-top #close-search-btn {
              padding-right: 30px;
           }
          }
  
  
  .main-menu>ul>li.active>a {
      background: #52708f;
  }
  
  .main-menu .divider {
      border-left: dashed 1px #cccccc;
  }
  
  .main-menu-mobile {
      background: #06c0e7;
  }
  
  img.right {float:right; margin:0 0 1em 1em}
  img.left {float:left; margin:0 1em 1em 0}
  img.center {display: block; margin-left: auto; margin-right: auto}
  a img.right {float:right; margin:0 0 1em 1em}
  a img.left {float:left; margin:0 1em 1em 0}
  a img.center {display: block; margin-left: auto; margin-right: auto}
  
  
  .page-title {
      background-color:#06c0e7;
      padding: 25px 0;
  }
  
  .template-insights .page-title {
      background-image: url('../img/jumbotron.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  
  }
  
  .template-internal-deliverables .page-title {
      background-color: #6dbe4b;
  }
  
  @media(min-width: 768px) {
      .page-title {
          padding: 45px 0;
      }
  }
  
  .page-title h1 {
      color: #fff;
      margin: 0;
      line-height: 1.5;
      font-size: 42px;
      text-shadow: 0 1px 2px rgba(0,0,0,.3);
      font-family: 'Open Sans Bold', sans-serif;
  }
  
  .page-title p {
      margin: 0;
      font-size: 24px;
      color: #fff;
      text-shadow: 0 1px 2px rgba(0,0,0,.3);
      font-family: 'Open Sans', sans-serif;
  }
  
  /*
  @media(max-width: 767px) {
      .page-title h1,
       #content h1.title {
          font-size: 36px;
          line-height: 1;
          margin-bottom: 1rem;
      }
  }
   */
  
  h2.sub-title {
      font-size: 30px;
      font-family: 'Work Sans', sans-serif;
  }
  
  .template-insights h2.sub-title {
      color:#FE8065;
  }
  
  .template-internal-deliverables h2.sub-title {
      color:#FE8065;;
  }
  
  h2.sub-title strong {
      font-style: italic;
      font-family: 'Work Sans', sans-serif;
  }
  
  h1.title {
      font-family: 'Work Sans', sans-serif;
      font-weight: 500;
      line-height: 1.1;
      font-size: 37pt;
      color: #336BC4;
  }
  
  p.meta {
      font-size: 11px;
      color: #8c9096;
      text-transform: uppercase;
      font-weight: bold;
      font-family: "Work Sans", sans-serif;
  }
  
  /*
  @media (min-width: 992px) {
      h1.title {
          font-size: 42px;
      }
  }
   */
  
  .content h1,
  .content h2,
  .content h3,
  .content h4,
  .content h5 {
      line-height: 1.1;
      font-family: 'Work Sans', sans-serif;
      font-weight: 500;
      letter-spacing: inherit;
      color: #535455;
      font-size: 19pt;
      margin-bottom: 20px;
  }
  
  .content p {
      font-family: 'Work Sans', sans-serif;
      font-size: 13pt;
      color: #1D1F1F;
  }
  
  .content ol {
      list-style: decimal;
  }
  .content a {
      font-family: "Work Sans", sans-serif;
      font-weight: 400;
      color: #2579ff;
      font-style: italic;
  }
  
  .content b,
  .content strong {
      font-family: "Work Sans", sans-serif;
      font-weight: 600;
  }
  
  .content ul, .content ol {
      font-family: 'Work Sans', sans-serif;
      font-size: 13pt;
      color: #1D1F1F;
  }
  
  .content ul li, .content ol li {
      font-family: 'Work Sans', sans-serif;
      font-size: 13pt;
      color: #1D1F1F;
      line-height: 26px;
      margin-bottom: 10px;
  }
  
  .return-home a {
      text-decoration:none;
      text-transform:uppercase;
      font-size: 14px;
      color: #2579ff;
      font-family: "Work Sans", sans-serif;
      font-weight: 600;
  }
  
  .return-home a:hover {
      color: #2579FF;
  }
  
  .article {
      background-color: white;
      box-shadow: 0 2px 20px 0 rgba(0,0,0,0.05);
      transition: box-shadow .3s ease-out, transform .3s ease-out, opacity .2s ease-out;
      transition-delay: .1s;
      border-radius: 4px;
      transform: translateZ(0);
      background-color: #fff;
      overflow: hidden;
      height: 100%;
      border: 1px solid #f1f1f1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  
  
  .article:hover {
      opacity: 1 !important;
      box-shadow: rgba(45,45,45,0.03) 0px 2px 2px, rgba(49,49,49,0.03) 0px 4px 4px, rgba(42,42,42,0.03) 0px 8px 8px, rgba(32,32,32,0.03) 0px 16px 16px, rgba(49,49,49,0.03) 0px 32px 32px, rgba(35,35,35,0.03) 0px 64px 64px;
      transform: translate(0, -4px);
      z-index: 999;
  }
  
  .article h2 {
      font-size: 20px;
      font-family: 'Work Sans', sans-serif;
      line-height: 1.1;
      display: flex;
      flex-grow: 1;
      flex-direction: column;
      justify-content: center;
      font-weight: 400;
  }
  
  .article h2 a {
      display:block;
      text-decoration:none;
      color: #1D1F1F;
  }
  
  .article h2 a:hover {
      text-decoration:none;
      color: #2579FF;
  }
  
  .article .rich-text p {
      line-height: 1.5;
      font-size: 16px;
      color: #B3C0C8;
      margin:0;
      padding: 0 20px 20px;
  }
  
  .article p.publish-date {
      line-height: 1.5;
      font-size: 11px;
      color: #8C9096;
      width: 100%;
      border-top: 1px solid #EAF1F6;
      box-sizing: border-box;
      margin: 0;
      font-family: 'Work Sans', sans-serif;
      text-transform: uppercase;
      font-weight: 600;
  }
  
  .article:last-child {
  
  }
  
  .well-empty {
      background-color: white;
      box-shadow: 0 2px 20px 0 rgba(0,0,0,0.05);
      transition: box-shadow .3s ease-out, transform .3s ease-out, opacity .2s ease-out;
      transition-delay: .1s;
      border-radius: 4px;
      transform: translateZ(0);
      background-color: #fff;
      /* overflow: hidden; */
      height: 100%;
      border: 1px solid #f1f1f1;
      /* display: flex; */
      /* flex-direction: column; */
      justify-content: space-between;
  }
  
  
  .pagination {
      text-transform: uppercase;
      font-size: 12px;
      display: flex;
      font-family: 'Work Sans', sans-serif;
      color: #8C9096;
  }
  
  .pagination strong {
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
  }
  
  .pagination a {
      font-family: 'Work Sans', sans-serif;
      text-decoration:none;
      color: #8C9096;
  }
  
  .pagination a:hover {
      font-family: 'Work Sans', sans-serif;
      text-decoration:none;
      color:#2579FF;
  }
  
  .footer {
      background-color: #fbfbfb;
      border-top: solid 1px #eaf1f6;
  }
  
  .footer .logo {
      width: inherit;
  }
  
  @media (min-width: 576px) {
      .footer .footer-menu ul {
          justify-content: start;
          margin-left: -15px;
      }
  
      .footer .footer-menu ul li a {
          padding: 9px 15px;
          color: #52708f;
          font-family: 'Work Sans', sans-serif;
          text-transform: uppercase;
          font-weight: 600;
          font-size: 14px;
          height: inherit;
          white-space: nowrap;
      }
  }
  
  .footer p.muted {
      color:#1c1d4c;
      font-size: 12px;
      line-height: 20px;
  }
  
  .footer h4 a {
      text-transform: uppercase;
      font-weight: bold;
      text-decoration: none;
      font-size: 15px;
  }
  
  
  .footer .social-menu ul li a {
      height: inherit;
      padding: 0 0;
  }
  
  .footer .social-menu ul li a:hover {
      text-decoration:none;
  }
  
  .footer .social-menu ul li a:hover i {
      background-color:#2579FF;
      color:#fff;
  }
  
  .footer .social-menu ul li a i {
      align-items: center;
      width: 34px;
      height: 34px;
      border: 2px solid #2579FF;
      border-radius: 50%;
      transition: all 0.3s;
      font-size: 20px;
      text-align: center;
      line-height: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #2579FF;
  }
  @media (min-width: 992px) {
      .footer .social-menu {
      }
  
      .footer .social-menu ul {
          justify-content: flex-end;
      }
  }
  
  @media (max-width: 991px) {
      .footer .social-menu {
          margin-top: 10px;
      }
  
      .footer .social-menu ul {
          display: flex;
          list-style: none;
          margin: 0;
          padding: 0;
          align-items: center;
          margin-left: -5px;
          justify-content: flex-start;
      }
  }
  
  .footer .social-menu.footer .social-menu ul li a {
      color:#52708f;
      font-size: 16px;
      height: auto;
  }
  
  .footer address {
      text-transform: uppercase;
      color: #8C9096;
      font-family: "Work Sans", sans-serif;
      font-weight: 400;
  }
  
  .footer address a {
      color: #8C9096;
      text-decoration:none;
  }
  
  .footer address a:hover {
      color: #2579FF;
  }
  
  @media (min-width: 992px ){
      .footer address {
          font-size: 12px;
          line-height: 15px;
      }
  }
  
  @media (min-width: 992px) {
      .footer address {
          text-align: right;
      }
  }
  
  @media (min-width: 768px) {
      .footer address {
          margin-top: 20px;
      }
  }
  
  .search-form-container {
      box-shadow: 0 2px 20px 0 rgba(0,0,0,0.05);
      transition: box-shadow .3s ease-out, transform .3s ease-out, opacity .2s ease-out;
      transition-delay: .1s;
      border-radius: 4px;
      transform: translateZ(0);
      background-color: #fff;
      overflow: hidden;
      height: 100%;
      border: 1px solid #f1f1f1;
      padding: 30px !important;
  }
  
  .search-form-container .row {
      margin-left: -3px;
      margin-right: -3px;
  }
  
  .search-form-container .row div[class^=col-] {
      padding: 0 3px;
  }
  
  .search-form-container .form-control {
      height: calc(1.9em + .75rem + 2px);
      font-size: .8rem;
  }
  
  
  .search-form-container .form-group label {
      display: block;
      margin-bottom: 5px;
      color: #52708f;
      font-family: 'Open Sans Bold', sans-serif;
      font-weight: 400;
      font-size: 11px;
      text-transform: uppercase;
  }
  