* {
  /*transition: all 0.15s ease-in-out;*/
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* =============================================================================
   Structure
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, main, section { display: block; }
audio[controls], canvas, video { display: inline-block; *display: inline; *zoom: 1; }

html {
  width: 100%;
  font-size: 100%;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: none; /* disable webkit text size adjust (for iPhone) */
  overflow-y: scroll;
  overflow-x: hidden; /* prevents right-padding on edge of device screen */
  scroll-behavior: smooth;
}

body {
  font: 400 17px 'Source Sans Pro',helvetica,sans-serif;
  color: #4a5765;
  margin: 0;
  padding: 0;
  background: #fff;
}

#skip a { 
  position:absolute; 
  left:-10000px; 
  top:auto; 
  width:1px; 
  height:1px;
  overflow:hidden;
  z-index: 900;
} 
 
#skip a:focus { 
  position: relative;
  width:100vw;
  left: 0px; 
  height:auto;
  display: block; 
  text-align: left;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  background: #282829;
} 

/*.mobile-nav {
  position: fixed;
  top: 0;
  right: -800px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  background: #285fac;
  background-image:
    linear-gradient(
      154deg, 
      #285fac, #488d70
  );
  transition: all 0.25s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
}

.open-menu {
  right: 0;
  visibility: visible;
  opacity: 1;
}*/

.search-panel {
  position: relative;
  height: 0px;
  text-align: center;
  background: #121314;
  background-image:
    linear-gradient(
      154deg, 
      #121314, #121314
  );
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  visibility: hidden;
  z-index: 905;
}

.open-search {
  height: 450px;
  visibility: visible;
}

.popular-searches {
  float: left;
  width: 50%;
  margin: 50px 0 0 0;
  clear: right;
}

.utility-menu {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 50px;
  background: #285fac;
  background-image: linear-gradient(to right,rgba(40,95,172,1) 0%,rgba(0,126,204,0.96) 59%,rgba(40,95,172,0.93) 100%);
  /*background-image:
    linear-gradient(
      154deg, 
      #285fac, #282829
  );*/
  transition: all 0.15s ease-in-out;
  z-index: 900;
}

.main-nav {
  position: relative;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
  -webkit-transform: translate3d(0,0,0);
  transition: all 0.15s ease-in-out;
  z-index: 900;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  /*background: rgba(255,255,255,0.9);*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 900;
}

.nav-ctas {
  float: right;
}

header {
  position: relative;
  width: 100%;
  height: 750px;
  background: #282829;
  background-repeat: no-repeat; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
  z-index: 5;
}

.page-header {
  height: 600px;
}

header .header-inside {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 63%;
  height: 100%;
  padding: 90px 0;
  /*background: rgba(0,0,0,0.7);*/
  z-index: 6;
}

header .header-inside div {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%); 
  width: 82%;
}

.wrapper {
  width: 1280px;  
  margin: 50px auto;
  z-index: 5;
}

.product-page {
  width: 100%;
  margin: 0 auto;
}

.full-width-block {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.centered {
  text-align: center;
}

.grey-bg {
  background: #e7e7e7;
}

.black-bg {
  background: #282829;
}

.purple-bg {
  background: #212335;
}

.blue-bg {
  background: #285fac;
}

.gradient-blue-green-bg {
  background: #285fac;
  /*background-image:
    linear-gradient(
      154deg, 
      #285fac, #488d70
  );*/
}

.cta-block {
  text-align: center;
  padding: 100px 0;
  background: #285fac;
}

.product-page-block.callout-wide {
  padding: 50px 0 40px 0;
  overflow: hidden;
}

.grid-container {
  margin: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-items: stretch;
  align-items: stretch;
}

.grid-container.grid-blocks-by-two {
  margin: 50px 0;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.grid-container.grid-blocks-by-three {
  margin: 50px 0;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.grid-container.grid-blocks-by-four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.product-page-block .grid-container.grid-blocks-by-five.titus-products {
  padding: 25px 20px 0 20px;
  background: #f4f4f4;
  border-radius: 6px;
}

.product-page-block .grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

 .grid-container.grid-blocks-by-five.management-team {
  grid-template-columns: 1fr 1fr 1fr 1fr;
 }

.product-page-block .grid-container.grid-blocks-by-five .grid-block {
  padding: 0 10px;
}

.more-posts .grid-container {
  margin: 0 0 60px 0;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

/*.grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}*/

.archive-page .grid-container article, .more-posts .grid-container article {
  position: relative;
  text-align: center;
  padding: 30px 30px 35px 30px;
  /*background: #f7f7f7;*/
  border: 1px solid #ddd;
  border-radius: 4px;
  /*box-shadow: 0 2px 15px 0 #d5d5d5;*/
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  z-index: 5;
}

.find-partner-archive .grid-container article {
  text-align: left;
  background: none;
  border: 1px solid #e0e0e0
}

.archive-page.tech-partners-archive .grid-container article {
  padding: 60px;
  background: none;
  border: 1px solid #e0e0e0;
}

.more-posts .grid-container article {
  padding: 30px;
}

.archive-page .grid-container article:hover, .more-posts .grid-container article:hover {
  background: #fff;
  box-shadow: 0 10px 15px 0 #d5d5d5;
}

.blue-bg .grid-container .grid-block, .grey-bg .grid-container .grid-block {
  padding: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.grey-bg .grid-container .grid-block {
  background: rgba(255,255,255,0.6);
}

main {
  float: left;
  width: 850px;
}

.full-width {
  float: none;
  width: 100%;
  margin: 0 auto;
}

.no-sidebar {
  float: none;
  width: 100%;
}

.extras {
  margin: 50px 0;
}

.post-cats, .sharing-tools {
  overflow: hidden;
}

.sharing-tools-tools {
  margin: 60px 0 40px 0;
  overflow: hidden;
}

.pagination {
  text-align: center;
  margin: 80px auto;
}

.two-thirds-left {
  float: left;
  width: 60%;
}

.one-third-right {
  float: right;
  width: 35%;
  text-align: right;
}

.two-thirds-right {
  float: right;
  width: 60%;
}

.one-third-left {
  float: left;
  width: 35%;
  text-align: left;
}

.half {
  float: left;
  width: 47%;
}

:nth-of-type(2n).half {
  float: right;
}

.sidebar {
  float: right;
  width: 375px;
}

.sidebar-widget {
  position: relative;
  margin: 0 0 50px 0;
  padding: 35px;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
}

:last-of-type.sidebar-widget {
  margin: 0 0 75px 0;
}

.side-ad {
  padding: 0;
  background: none;
  border: none;
}

.signup-side {
  color: #fff;
  padding: 40px;
  background: #285fac;
  overflow: visible;
}

.sidebar .trending-side article {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.sidebar .trending-side article:first-of-type {
  padding: 5px 0 18px 0;
}

.sidebar .trending-side article:last-of-type {
  padding: 18px 0 0 0;
  border-bottom: none;
}

.sidebar .trending-side .title-left {
  float: left;
  width: 210px; 
}

footer {
  color: #fff;
  padding: 75px 0;
  background: #121314;
  background-image:
    linear-gradient(
      154deg, 
      #121314, #121314
  );
  overflow: hidden;
  clear: both;
  z-index: 5; 
}

footer .grid-container {
  margin: 0 0 20px 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-block {
  padding: 0 0 20px 0;
}

.copyright-block {
  text-align: center;
  color: #fff;
  padding: 60px 0 0 0;
  border-top: 1px solid #444;
  clear: both;
}

div.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
}

.inside {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

.opt-in-alert {
  position: fixed;
  width: 330px;
  height: 300px;
  bottom: -350px;
  right: 200px;
  font-size: 0.93em;
  text-align: center;
  color: #fff;
  padding: 35px;
  background: #285fac;
  border-radius: 4px 4px 0 0;
  transition: all 0.2s ease-in-out;
  z-index: 70;
}

.active-opt-in-alert {
  bottom: 0px;
}

.bottom-alert {
  position: fixed;
  width: 100%;
  bottom: -200px;
  left: 0;
  font-size: 0.93em;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  background: #222;
  transition: all 0.2s ease-in-out;
  z-index: 80;
}

.active-bottom-alert {
  bottom: 0px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 800;
}



/* =============================================================================
   Navigation + alerts
   ========================================================================== */

.utility-menu ul, .main-nav ul  {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-menu ul {
  float: right;
}

.utility-menu li {
  display: inline;
}

.utility-menu li a {
  float: left;
  display: block;
  font-size: 0.95em;
  font-weight: 400;
  line-height: 50px;
  color: #fff;
  text-decoration: none;
  margin: 0 0 0 30px; 
  transition: all 0.15s ease-in-out;
}

.utility-menu li a .fa-search, .utility-menu li a .fa-lock {
  margin: 0 4px 0 0;
}

.utility-menu li a .fa-external-link-alt {
  margin: 0 0 0 8px;
}

.utility-menu li.header-social-link a {
  margin: 0 0 0 20px; 
}

.utility-menu li.header-social-link.twitter a {
  margin: 0 0 0 40px; 
}

.utility-menu li a:hover {
  opacity: 0.8;
}

.main-nav li {
  position: relative;
  display: inline-block;
  font-size: 1.05em;
  font-weight: 400;
  line-height: 80px;
  margin: 0 30px 0 0;
}

.sticky-nav li {
  font-size: 0.95em;
  line-height: 60px;
}

.main-nav li a {
  color: #282829;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

.main-nav li a .fa-chevron-down {
  font-size: 0.85em;
  margin: 2px 0 0 8px
}

.main-nav li a:hover, .main-nav li:hover > a {
  color: #285fac;
}

.mega-menu, .main-nav li:not(:focus) > .mega-menu {
  position: fixed;
  top: 69px;
  left: 0;
  width: 100%;
  padding: 30px 100px 40px 100px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  /*box-shadow: 0 5px 5px #e0e0e0;*/
  transition: all 0.15s ease-in-out;
  transition-delay: 0.25s;
  visibility: hidden;
  opacity: 0;
  z-index: 900;
}

.main-nav li:hover > .mega-menu, .main-nav li:focus > .mega-menu /*, .main-nav li:focus-within > .mega-menu*/ {
  position: fixed;
  top: 79px;
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  -moz-transform: translate3d(0, 0px, 0);
  display: block;
  z-index: 900;
}

.sticky-nav .mega-menu {
  top: 50px;
  left: 0px;
  padding: 30px;
}

.sticky-nav li:hover > .mega-menu {
  top: 59px;
}

.mega-menu .menu-segment {
  float: left;
  width: 23%;
  margin: 0 2% 0 0;
}

.mega-menu .menu-segment.five-segments {
  width: 18%;
}

.mega-menu :last-of-type.menu-segment {
  float: right;
  margin: 0;
}

.mega-menu .overview-segment {
  padding: 30px 0 0 0;
  border-top: 1px solid #e0e0e0;
  clear: both;
}

.main-nav ul li .mega-menu ul, .main-nav li ul.single-dropdown {
  float: none;
}

.main-nav ul li .mega-menu li, .main-nav li ul.single-dropdown li {
  display: inline;
  font-size: 1.1em;
  line-height: 1.3;
  margin: 0;
}

.main-nav li ul.single-dropdown li {
  font-size: 1em;
}

.main-nav ul li .mega-menu li a, .main-nav li ul.single-dropdown li a {
  float: none;
  display: block;
  width: 100%;
  color: #285fac;
  margin: 15px 0;
}

.main-nav ul li .mega-menu li:first-of-type a, .main-nav li ul.single-dropdown li:first-of-type a {
  margin: 0 0 15px 0;
}

.main-nav ul li .mega-menu li:last-of-type a, .main-nav li ul.single-dropdown li:last-of-type a {
  margin: 15px 0 0 0;
}

.main-nav ul li .mega-menu .menu-segment.five-segments li:last-of-type a {
  margin: 0 0 -5px 0;
}

.main-nav ul li .mega-menu .compliance-links li {
  float: left;
  display: block;
  width: 50%;
  line-height: 1;
}

.main-nav ul li .mega-menu .compliance-links li:last-of-type {
  float: none;
  width: 100%;
  line-height: 1.7;
  clear: both;
}

.main-nav ul li .mega-menu .compliance-links li a {
  margin: 10px 0;
}

.main-nav ul li .mega-menu li a:hover, .main-nav li ul.single-dropdown li a:hover, .main-nav h2 a:hover {
  text-decoration: underline;
}

.mega-menu .submenu-title {
  display: block;
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1;
  color: #202234;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #ddd;
}

.main-nav li ul.single-dropdown {
  position: absolute;
  top: 69px;
  left: 0;
  width: 230px;
  padding: 10px 20px 20px 20px;
  background: #fff;
  border: none;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  /*box-shadow: 0 5px 5px #e0e0e0;*/
  transition: all 0.15s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

.main-nav li:hover > ul.single-dropdown, .main-nav li:focus > ul.single-dropdown /*, .main-nav li:focus-within > ul.single-dropdown*/ {
  top: 79px;
  visibility: visible;
  opacity: 1;
}

.sticky-nav li:hover > ul.single-dropdown, .sticky-nav li:focus > ul.single-dropdown /*, .sticky-nav li:focus-within > ul.single-dropdown*/ {
  top: 59px;
}

.menu-ad {
  position: relative;
  width: 100%;
  text-align: center;
}

.menu-ad.tall {
  /*height: 335px;*/
}

.menu-ad div {

}
/*
#closeMobileMenu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.8em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 7px 11px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
}

:focus#closeMobileMenu {
  outline: none;
}

.mobile-menu-toggle {
  float: right;
  display: none;
  font: 400 0.9em 'Source Sans Pro',helvetica,sans-serif;
  color: #fff;
  text-transform: uppercase;
  margin: 12px 0 0 0;
  padding: 9px 13px;
  border: none;
  background: rgba(36, 76, 143, 1);
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  z-index: 90;
}

:hover.mobile-menu-toggle {
  background: rgba(36, 76, 143, 0.8);
}

:focus.mobile-menu-toggle {
  outline: none;
}

.mobile-nav ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: all 0.25s ease-in-out;
}

.mobile-nav li a {
  position: relative;
  display: block;
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
}

.mobile-nav li a .fa-chevron-down {
  display: inline-block;
  font-size: 0.8em;
  margin: 0 0 0 8px;
}

.mobile-nav li a:after {
  display: block;
  width: 100%;
  content: '';
  margin: 18px 0 0 0;
  border-bottom: 1px dotted #222;
}

.mobile-nav li a:hover, .mobile-nav li a:active {
  outline: none;
}

.mobile-nav ul li ul {
  display: none;
  margin: 0 0 0 30px;
  padding: 0;
  list-style: none;
}

.mobile-nav ul li ul.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul li ul li a {
  font-size: 1em;
  padding: 7px 0;
}

.mobile-nav ul li a:focus, .mobile-nav ul li ul a:active {
  outline: none;
}*/

.nav-mobile {
  display: none;
  background: #285fac;
  color: #fff;
  padding: 0;
  margin: 0;
  cursor: auto;
  font-size: 1em;
  list-style-type: none;
  z-index: 99999;
}
.nav-mobile:after {
  content: "";
  display: table;
  clear: both;
}
.nav-mobile svg {
  height: 45px;
  width: 65px;
  padding: 0;
}
.nav-mobile svg path {
  fill: #222;
}
.nav-mobile svg.icon-close {
  display: none;
  margin: 14px 0 0 0;
  padding: 6px;
}
.nav-mobile li {
  width: 100%;
  height: 85px;
  line-height: 46px;
  text-align: center;
  float: left;
}
.nav-mobile li a {
  display: block;
  color: #282829;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.nav-mobile .menu-button {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  display: block;
}
.nav-mobile .menu-button:after {
  opacity: 0;
  top: 45px;
  content: "";
  width: 100vw;
  display: block;
  position: fixed;
  height: 100vh;
  /*background: rgba(0, 0, 0, 0.5);*/
  content: "";
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
  transition-delay: 0.1s;
}
.nav-mobile .menu-button .label-text {
  display: block;
  margin: -30px 0 0 0;
}
.nav-mobile #menu-toggle {
  display: none;
}
.active-mobile-menu {
  color: #93c9ed;
}
.nav-mobile svg path {
    fill: #fff;
}

.nav-mobile svg.active-mobile-menu-icon path  {
  fill: #93c9ed;
}
/*.nav-mobile #menu-toggle.active ~ .menu-button .icon-close, .nav-mobile #menu-toggle:checked ~ .menu-button .icon-close {
  display: block;
}
.nav-mobile #menu-toggle.active ~ .menu-button .icon-open, .nav-mobile #menu-toggle:checked ~ .menu-button .icon-open, 
.nav-mobile #menu-toggle.active ~ .menu-button .icon-open, .nav-mobile #menu-toggle:checked ~ .menu-button .label-text {
  display: none;
}*/
.nav-mobile #menu-toggle.active ~ .menu-button:after, .nav-mobile #menu-toggle:checked ~ .menu-button:after {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
}
.nav-mobile #menu-toggle.active ~ .menu-sidebar, .nav-mobile #menu-toggle:checked ~ .menu-sidebar {
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
}

.nav-mobile .menu-container {
  width: 65px;
  float: left;
  cursor: pointer;
  position: absolute;
  z-index: 99999;
}
.nav-mobile .menu-container .menu-sidebar {
  display: block;
  width: 100vw;
  bottom: 0;
  background: #ddd;
  color: #282829;
  position: fixed;
  transform: translateX(-999px);
  transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  top: 85px;
  z-index: 2;
  list-style-type: none;
  padding: 0;
  border-top: 1px solid #ddd;
  max-width: 100vw;
}
.nav-mobile .menu-container .menu-sidebar .arrow {
  position: absolute;
  line-height: 50px;
  font-size: 38px;
  color: #222;
  top: 0;
  z-index: 0;
}
.nav-mobile .menu-container .menu-sidebar .arrow.left {
  /*left: 25px;*/
}
.nav-mobile .menu-container .menu-sidebar .arrow.right {
  right: 25px;
}
.nav-mobile .menu-container .menu-sidebar li {
  height: 55px;
  line-height: 55px;
  font-size: 18px;
  text-align: left;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 20px;
}
.nav-mobile .menu-container .menu-sidebar li:hover {
  background: #dfecf0;
}
.nav-mobile .menu-container .menu-sidebar li .menu-sub {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  background: #ddd;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
  border-left: 1px solid #ccc;
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  max-width: 100vw;
}
.nav-mobile .menu-container .menu-sidebar li .menu-sub li {
  overflow: hidden;
}
.nav-mobile .menu-container .menu-sidebar li .menu-sub .menu-sub-title {
  /*padding-left: 50px;*/
}
.nav-mobile .menu-container .menu-sidebar li .submenu-label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
}
.nav-mobile .menu-container .menu-sidebar li .submenu-toggle {
  display: none;
}
.nav-mobile .menu-container .menu-sidebar li .submenu-toggle.active ~ .menu-sub, .nav-mobile .menu-container .menu-sidebar li .submenu-toggle:checked ~ .menu-sub {
  width: 100vw;
  visibility: visible;
  z-index: 1;
  transition: width 0.35s cubic-bezier(0, 0, 0.3, 1);
}

.toggleMobileSearch {
  display: none;
  position: absolute;
  top: 20px;
  right: 10px;
  width: 75px;
  max-width: 75px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 80;
}
.toggleMobileSearch .fa-search {
  font-size: 1.75em;
}
.toggleMobileSearch span {
  display: block;
  font-size: 1.05em;
  margin: -1px 0 0 0;
}

.toggleMobileSearch.active {
  color: #93c9ed;
}

.mobile-search-container {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  height: 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 80;
}

.open-mobile-search {
  height: auto;
  visibility: visible;
  opacity: 1;
}

footer a, footer p a {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

footer p a, footer p a:hover {
  padding: 0;
  border: none;
}

footer a:hover, footer p a:hover {
  color: #888;
}

.opt-in-alert a.hide-alert {
  position: absolute;
  top: -28px;
  right: 20px;
  display: inline-block;
  font-size: 0.8em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 12px;
  background: #285fac;
  border-radius: 2px 2px 0 0;
  cursor: pointer;
}

.bottom-alert a {
  color: #fff;
  text-decoration: underline;
  transition: all 0.15s ease-in-out;
}

.hide-forever {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 0 20px;
  padding: 7px 20px;
  background: rgba(36, 76, 143, 1);
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

:hover.hide-forever {
  background: rgba(36, 76, 143, .8);
}

.popular-searches .popular-title {
  display: block;
  font-size: 1.45em;
  color: #fff;
  margin: 0 0 15px 0;
}

.popular-searches ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular-searches li {
  display: inline-block;
   font-size: 1em;
  line-height: 1;
  color: #aaa;
  margin: 5px;
}

.popular-searches li:after {
  display: inline-block;
  content: '\00B7';
  color: #888;
  margin: 0 0 0 12.5px;
}

.popular-searches li:last-of-type:after {
  display: none;
}

.popular-searches li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

.popular-searches li a:hover {
  color: #888;
}

.top-phone {
  float: right;
  display: block;
  font-size: 0.93em;
  letter-spacing: 0.25px;
  color: #fff;
  text-transform: uppercase;
  margin: 14px 30px 0 0;
  /*padding: 7px 21px;
  background: rgba(0,0,0,0.15);
  border-radius: 100px;*/
}


/* =============================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.1;
  color: #202234;
  margin: 0 0 30px 0;
}

header h1 {
  font-size: 3.2em;
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 0 10px #000;
  margin: 0;
  /*animation: 1s ease-out 0s 1 slideInFromLeft;*/
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

h1 .query {
  color: #285fac;
}

h2, h3, h4, h5, h6 {
  font-size: 1.9em;
  font-weight: 700;
  line-height: 1.3;
  margin: 45px 0 12px 0;
}

.basic-page h2 {
  font-weight: 300;
  margin: 0 0 20px 0;
}

.opt-in-alert h2 {
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px 0;
}

.product-page-block.callout-wide h2 {
  font-size: 2em;
  margin: 0 0 10px 0;
}

.extras h2 {
  font-size: 1.85em;
  font-weight: 400;
  margin: 0 0 25px 0;
  /*padding: 40px 0 0 0;
  border-top: 1px solid #ddd;*/
}

.sidebar h2 {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #ddd;
}

.signup-side h2, .times-signup h2 {
  font-size: 1.45em;
  font-weight: 400;
  color: #fff;
  text-transform: none;
  text-align: center;
  margin: 0 0 15px 0;
  padding: 0;
  border: none;
}

.signup-side h2 {
  font-size: 1.5em;
  margin: 0 0 10px 0;
}

.signup-side h2 span {
  display: block;
  font-size: 1.4em;
  font-weight: 900;
}

.menu-ad h2 {
  font-size: 1.25em;
  font-weight: 400;
  color: #202234;
  margin: 0;
}

.menu-ad h2 span {
  display: block;
  font-size: 0.65em;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 4px 0;
}

.menu-ad h2 a {
  color: #285fac;
}

.full-width-block h2 {
  font-weight: 300;
  margin: 0 0 20px 0;
}

.full-width-block.cta-block h2 {
  max-width: auto;
  font-size: 2.85em;
  color: #fff;
  margin: 0 0 20px 0;
}

.main-form h2 {
  margin: 0 0 25px 0;
}

footer h2 {
  font-size: 1.45em;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #444;
}

h2 a, h3 a {
  color: #285fac;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

h2 a:hover, h3 a:hover {
  text-decoration: underline;
}

h3 {
  font-size: 1.4em;
  font-weight: 400;
}

.full-post h3 {
  font-weight: 600;
}

.grey-bg .grid-container .grid-block h3, .contact-blocks h3 {
  font-size: 2em;
  font-weight: 300;
}

.contact-blocks h3 {
  color: #fff;
}

.sidebar h3 {
  font-size: 1em;
  margin: 0;
}

.sidebar .trending-side article h3 {
  line-height: 1.4;
  margin: -2px 0 0 0;
}

footer h3 {
  font-size: 1.2em;
  font-weight: 400;
  color: #fff;
  margin: 0 0 3px 0;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  line-height: 1.8;
  margin: 0 0 30px 0;
}

header p {
  font-size: 1.9em;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 0 10px #000;
  margin: 25px 0 0 0;
  /*animation: 1s ease-out 0s 1 slideInFromLeft;*/
}

.frontpage p, .wrapper p, main p, .wrapper li, main li, .product-page li, .product-page p {
  font-size: 1.1em;
}

.product-page-block .grid-container.titus-products p {
  font-size: 1em;
  line-height: 1.6;
}

.menu-segment p {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 12px 0 0 0;
}

.cta-block p {
  max-width: 800px;
  font-size: 1.45em;
  line-height: 1.5;
  color: #fff;
  margin: 0 auto 10px auto;
  padding: 0;
}

.product-page-block.grey-bg p, .product-page-block.grey-bg li {
  color: #444;
}

.sidebar p {
  font-size: 0.9em;
  line-height: 1.55;
  margin: 10px 0 0 0;
}

.sidebar article p {
  font-size: 0.85em;
  line-height: 1.5;
  margin: 2px 0 0 0;
}

.signup-side p {
  font-size: 0.95em;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 20px 0;
  clear: both;
}

.signup-side form p, .times-signup p {
  font-size: 0.85em;
  line-height: 1.4;
  margin: 15px 0 0 0;
}

.copyright-block p {
  font-size: 0.9em;
  font-style: normal;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.opt-in-alert p {
  font-size: 1em;
  line-height: 1.4;
  margin: 0;
}

.opt-in-alert p.neverOptIn {
  font-size: 0.85em;
  line-height: 1;
  margin: 0;
}

p.callout-link {
  font-size: 1.2em;
  line-height: 1.7;
  margin: 30px 0 0 0;
}

p a, main li a, .wrapper li a, .product-page li a {
  color: #285fac;
  text-decoration: none;
  padding: 0;
  border-bottom: 1.5px solid #285fac;
  transition: all 0.15s ease-in-out;
}

p a:hover, main li a:hover, .wrapper li a:hover, .product-page li a:hover {
  padding: 0 0 1px 0;
}

.menu-segment p a {
  color: #285fac;
  padding: 0;
  border: 0;
}

.menu-segment p a:hover {
  text-decoration: underline;
  padding: 0;
  border: 0;
}

.blue-bg p a, .blue-bg li a {
  color: #38d7ff;
  border-bottom: 1.5px solid #38d7ff;
}

.opt-in-alert p a {
  font-size: 0.87em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0;
  border: none;
}

.opt-in-alert p a:hover {
  color: rgba(255,255,255,1);
}

.sidebar p a, .sidebar p a:hover, .times-signup p a, .times-signup p a:hover {
  padding: 0;
  border-bottom: 0;
}

.signup-side p a, .times-signup p a {
  color: #fff;
  text-decoration: underline;
}

p#breadcrumbs {
  font-size: 0.93em;
  line-height: 1.4;
  color: #707070;
  margin: 0 0 40px 0;
}

p#breadcrumbs a, p#breadcrumbs a:hover {
  padding: 0;
  border: none;
}

p#breadcrumbs a:hover {
  text-decoration: underline;
}

.wrapper ul, .product-page ul {
  margin: 0 0 30px 32px;
  padding: 0;
  list-style: square;
}

.wrapper ol {
  margin: 0 0 30px 28px;
  padding: 0;
}

.wrapper li, .product-page li {
  line-height: 1.8;
  padding: 4px 0;
}

footer address {
  line-height: 1.6;
  font-style: normal;
  color: #fff;
  margin: 0 0 10px 0;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer li a {
  display: block;
  text-decoration: none;
  padding: 12px 0;
}

footer li:first-of-type a {
  padding: 0 0 12px 0;
}

footer li:last-of-type a {
  padding: 12px 0 0 0;
  border-bottom: none;
}

/* Overrides for Firefox */
@supports (-moz-appearance:none) {
    header h1, .full-width-block h2, .basic-page h2, .main-form h2, header p { 
      font-weight: 400;
    } 
}


/* =============================================================================
   Buttons + iconography
   ========================================================================== */

a.cta-button {
  position: relative;
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.25px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 0 0;
  padding: 11px 28px;
  background: #363e49;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

a.cta-button.green-button {
  font-weight: 600;
  color: #222;
  background: #ffc709;
}

a.cta-button.dark {
  background: #202234;
}

.main-nav a.cta-button {
  font-size: 0.93em; 
  line-height: 1;
  color: #fff;
  margin: 21px 0 0 20px;
  padding: 12px 26px;
  background: #285fac;
}

.main-nav a.cta-button.demo-button {
  color: #111;
  background: #ffc709; 
}

.sticky-nav a.cta-button {
  font-size: 0.85em;
  margin: 13px 0 0 10px;
  padding: 10px 22px;
}

header a.cta-button {
  font-size: 1.05em;
  font-weight: 600;
  margin: 35px 0 0 0;
  padding: 11px 24px;
  /*animation: 1s ease-out 0s 1 slideInFromLeft;*/
}

.opt-in-alert a.cta-button {
  font-size: 1em;
  font-weight: 600;
  color: #111;
  margin: 25px 0 12px 0;
  padding: 9px 24px;
  background: rgba(99, 188, 70, 1);
}

a.cta-button.big {
  font-size: 1.1em;
  margin: 0;
  padding: 13px 30px;
}

.grid-container div a.cta-button {
  margin: 0;
}

blockquote.gartner-quote a.cta-button {
  font-size: 0.8em;
  color: #111;
  margin: 0;
  padding: 10px 24px;
  background: #fff;
}

.cta-block a.cta-button {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
  padding: 15px 34px;
  background: #ffc709;
}

a.cta-button .fa-file-pdf, a.cta-button .fa-youtube, a.cta-button .fa-video {
  margin: 0 7px 0 0;
}

.menu-ad div a.cta-button {
  font-size: 0.8em;
  font-weight: 600;
  line-height: 1;
  color: #222;
  margin: 20px auto 0 auto;
  padding: 11px 24px;
  background: #ffc709;
}

a.cta-button.archive-button {
  font-size: 0.85em;
  margin: 30px 0 0 0;
  padding: 9px 20px;
}

a:hover.cta-button, .main-form input[type=submit]:hover {
  color: #fff !important;
  box-shadow: 700px 0 0 0 rgba(255,255,255,0.3) inset;
}

.main-nav a:hover.cta-button {
  box-shadow: 700px 0 0 0 rgba(255,255,255,0.2) inset;
}

.main-nav a:hover.cta-button.demo-button {
  color: #111 !important;
  box-shadow: 700px 0 0 0 rgba(0,0,0,0.1) inset;
}

a:hover.cta-button.green-button, .cta-block a:hover.cta-button {
  color: #111 !important;
  background: #e6B000;
  box-shadow: none;
}

blockquote.gartner-quote a:hover.cta-button {
  color: #111 !important;
  background: #ffc709;
  box-shadow: none;
}

.main-form input[type=submit]:hover {
  box-shadow: 600px 0 0 0 rgba(0,0,0,0.2) inset;
}

.query-result a.cta-button {
  font-size: 0.85em;
  margin: 20px 0 0 0;
  padding: 10px 22px;
}

.product-page-block .grid-container.titus-products a.cta-button {
  margin: 15px 0 0 0;
}

.find-partner-archive .grid-container a.cta-button {
  margin: 25px 0 0 0;
}

a.youtube-button {
  display: block;
  max-width: 155px;
  height: 36px;
  font-size: 0.87em;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  margin: 30px 0;
  background: #ff0000;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
}

.full-post a.cta-button {
  font-size: 1.1em;
  margin: 0;
}

.sidebar a.youtube-button {
  max-width: 135px;
  margin: 20px auto 0 auto;
}

a.youtube-button .fa-youtube {
  margin: 0 6px 0 0;
}

a:hover.youtube-button {
  background: #cc0000;
}

a.footer-social-link {
  display: inline-block;
  font-size: 1.2em;
  color: #fff;
  margin: 0 17px 0 0;
}

a:hover.footer-social-link {
  color: #b2b2d8;
}

.page-numbers, .facetwp-page { 
  display: inline-block;
  font-size: 1.1em;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  margin: 0 5px; 
  padding: 8px 16px !important; 
  border: 1px solid #fff;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
}

.page-numbers.current, .facetwp-page.active { 
  font-weight: 400 !important;
  color: #fff;
  background: #285fac;
  border: 1px solid #285fac;
}

a.page-numbers, a.facetwp-page { 
  color: rgba(36, 76, 143, 1);
}

a:hover.page-numbers, a:hover.facetwp-page { 
  color: #202234;
  background: #e7e7e7;
  border: 1px solid #e7e7e7;
}

.click-to-tweet {
  display: block;
  width: 75%;
  font-size: 1.15em;
  line-height: 1.5;
  color: #282829;
  margin: 50px auto;
  padding: 30px 30px 28px 30px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

.grid-container .click-to-tweet {
  width: 100%;
}

.click-to-tweet .post-tweet {
  float: right;
  display: block;
  text-align: right;
  font-size: 0.85em;
  margin: 20px 0 0 0;
  clear: both;
}

.click-to-tweet .post-tweet a {
  color: #285fac;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

.click-to-tweet .post-tweet a:hover {
  text-decoration: underline;
}

.click-to-tweet .post-tweet a .fa-twitter {
  display: inline-block;
  font-size: 1.55em;
  color: #1da1f2;
  margin: -3px 0 0 10px;
  vertical-align: middle;
  transition: all 0.15s ease-in-out;
}

.click-to-tweet .post-tweet a:hover .fa-twitter {
  transform: scale(1.2);
}

.email-icon-block {
  display: block;
  width: 90px;
  height: 90px;
  font-size: 1.9em;
  line-height: 78px;
  color: #111;
  text-align: center;
  margin: -60px auto 0 auto;
  background: #93c9ed;
  border: 8px solid #285fac;
  border-radius: 50%;
}

.error-msg {
  font-size: 1em;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin: 0 0 40px 0;
  padding: 15px;
  background: #ce1126;
  border-radius: 3px;
  overflow: hidden;
}

.error-msg a {
  color: #fff;
  text-decoration: underline;
}

.error-msg a:hover {
  text-decoration: none;
}


/* =============================================================================
   Accessible tabs
   ========================================================================== */

.js-tabs {
  margin: 60px 0 0 0;
}

.js-tabs .tabs__tab-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs__tab-list.tcs-products-list {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.tabs__tab-list li {
  display: inline;
  font-size: 1em;
  line-height: 1;
  padding: 0;
}

.tabs__tab-list li a.tabs__trigger {
  color: #285fac;
  display: block;
  font-weight: 400;
  margin: 0 20px 0 0;
  text-decoration: none;
  padding: 12px 24px;
  background: #e7e7e7;
  border: none;
  border-radius: 4px;
}

.tabs__tab-list.tcs-products-list li a.tabs__trigger {
  display: inline-block;
  margin: 0 20px;
  padding: 0 0 20px 0;
  background: none;
  border-bottom: 6px solid #fff;
  border-radius: 0;
}

.tabs__trigger.is-selected {
  
}

.tabs__tab-list li a.tabs__trigger svg {
  margin: 0 7px 0 0;
}

.tabs__tab-list li a.tabs__trigger.is-selected, .tabs__tab-list li a:hover.tabs__trigger, .tabs__tab-list li a:focus.tabs__trigger {
  color: #fff;
  background: #285fac;
}

.tabs__tab-list.tcs-products-list li a.tabs__trigger.is-selected, .tabs__tab-list.tcs-products-list li a:hover.tabs__trigger, .tabs__tab-list.tcs-products-list li a:focus.tabs__trigger {
  background: none;
  border-bottom: 6px solid #285fac;
}

.tabs__panel {
  display: none;
}

.is-initialized .tabs__panel {
  display: inherit;
  padding: 40px 0 0 0;
}

.tcs-product {
  position: relative;
  margin: 0 auto;
}

.tabs__panel.is-hidden {
  display: none;
}

.tabs__panel:focus {
    /*box-shadow: 0 0 4px dodgerblue;*/
    outline: none;
}


/* =============================================================================
   Modal video
   ========================================================================== */

.close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  background: #ffc709;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  z-index: 11;
}

.close span {
  position: absolute;
  top: 2px;
  right: 13px;
  display: block;
  font-size: 4em;
  font-weight: 300;
  color: #fff;
  text-align: center;
  transform: rotate(45deg);
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 73, 94, 0.8);
  z-index: 50;
  visibility: hidden;
  opacity: 0;  
  transition: 0.7s;
  z-index: 909;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1280px;
  height: 720px;
  margin-left: -640px;
  margin-top: -360px;
  background: #bdc3c7;
  z-index: 100;
  visibility: hidden;
  opacity: 0; 
  transition: 0.5s ease-out;
  transform: translateY(45px);
  z-index: 910;
}

.active{
  visibility: visible;
  opacity: 1;
}

.active + .modal {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================================
   Tables + quotes + extras
   ========================================================================== */

table {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin: 40px 0; 
  padding: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
  overflow-x: auto;
}

table caption {
  display: block;
  font-size: 1.5em; 
  font-weight: 700;
  text-align: left;
  margin: 0 0 15px 0; 
}

tbody {
   -webkit-overflow-scrolling: touch; 
}

tr:nth-of-type(even) {
  background: #fcfcfc;  
}

.grey tr:nth-of-type(odd) {
  background: #fff; 
}

.grey tr:nth-of-type(even) {
  background: #f8f8f8;  
}

td {
  font-size: 0.9em;
  padding: 13px;
  border: 1px solid #ddd;  
}

th {
  color: #fff;
  padding: 13px;
  border: 1px solid #ddd;
  background: #000;  
}

hr {
  display: block;
  height: 1px;
  margin: 40px 0;
  padding: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid #ddd;
  clear: both;
}

blockquote {
  position: relative;
  width: 70%;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.6em;
  color: #222;
  text-align: center;
  margin: 0 auto;
}

/*.full-width-block blockquote {
  position: relative;
  float: left;
  width: 30%;
  min-height: 40px;
  font-size: 1.15em;
  font-weight: 400;
  line-height: 1.6em;
  color: #222;
  text-align: center;
  word-wrap: break-word;
  margin: 0 4.66% 30px 0;
  padding: 80px 30px 30px 30px;
  background: #e7e7e7;
  background-image:
    linear-gradient(
      154deg, 
      #f8f8f8, #e7e7e7
  );
  border-bottom: 5px solid #bdc2c6;
}

.full-width-block blockquote:last-of-type {
  float: right;
  margin: 0 0 30px 0;
}

.full-width-block blockquote:after { 
content: '';
display: block;
position: absolute;
top: 100%; 
left: 160px;
width: 0;
height: 0;
border-color: #bdc2c6 transparent transparent transparent; 
border-style: solid;
border-width: 30px;
}*/

/*blockquote:before {
  position: absolute;
  top: 15px;
  left: 165px;
  display: block;
  font: 800 6em georgia,serif;
  line-height: 1em;
  content: '\201C';
  color: #488d70;
}

blockquote span {
  display: block;
  font-size: 0.85em;
  font-weight: 600;
  line-height: 1.4;
  font-style: normal;
  color: #285fac; 
  margin: 10px 0 0 0;
}*/

.twitter-tweet {
  display: block;
  margin: 50px auto !important;
}

.full-post blockquote {
  position: relative;
  width: 80%;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.4em;
  color: #fff;
  text-align: left;
  margin: 40px auto;
  padding: 60px 55px;
  background: #121314;
  /*border-left: 10px solid #ffc709;*/
  border-radius: 4px;
}

.full-post blockquote:before {
  display: block;
  font: 800 5.4em georgia,serif;
  line-height: 1em;
  content: '\201C';
  color: #ffc709;
  margin: -30px 0 -45px 0;
}

.full-post blockquote span {
  display: block;
  font-size: 0.8em;
  margin: 10px 0 0 0;
}

blockquote.single-quote {
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

blockquote.single-quote span {
  display: block;
  font-size: 0.8em;
  line-height: 1.3;
  margin: 15px 0 0 0;
}

.full-post blockquote.simple {
  width: 88%;
  font-size: 1.05em;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5em;
  color: #282829;
  text-align: left;
  margin: 40px auto;
  padding: 0 0 0 25px;
  background: none;
  border-left: 5px solid #e7e7e7;
  border-radius: 0;
}

.full-post blockquote.simple:before {
  display: none;
}

blockquote.gartner-quote {
  float: left;
  display: block;
  width: 32%;
  height: 380px;
  font-size: 1.2em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin: 30px 2% 30px 0;
  padding: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

blockquote:last-of-type.gartner-quote {
  float: right;
  margin: 30px 0;
}

.quote-rating {
  display: block;
  text-align: center;
  margin: 20px 0 30px 0;
}

.quote-rating .fa-star {
  display: inline-block;
  font-size: 1.2em;
  color: #ffb900;
}

blockquote p {
  line-height: 1.6;
  margin: 0;
}

abbr[title] { border-bottom: 1px dotted; }

dfn { font-style: italic; }

mark { background: #ff0; color: #303030; font-style: italic; font-weight: bold; }

pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

pre {
  width: 100%;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 40px auto;
  padding: 8px 30px;
  background: #eee;
  border-left: 12px solid #000;
  border-radius: 4px;
}

code {
  font: 400 1.05em 'courier new', monospace;
  line-height: 1.7em;
  color: #000;
  margin: 0;
  padding: 0;
}

pre {
  margin: 40px auto;
}

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

br.clearfix {
  clear: both;
}

.full-width-block p strong, .wrapper p strong, main p strong, .wrapper li strong, main li strong {
  color: #202234;
}

.wrapper article.full-post li a strong  {
  color: #285fac;
}

.full-width-block.gradient-blue-green p strong {
  color: #fff;
}


/* =============================================================================
   Images
   ========================================================================== */

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9; /* ie8 */
  margin: 50px auto;
  border: 0;
}

img a, article figure a img {
  border: 0;
  transition: all 0.15s ease-in-out;
}

.mobile-logo {
  width: 100px;
  margin: 12px auto 0 auto;
}

figure {
  position: relative;
  width: 100%;
  margin: 50px auto;
  overflow: hidden;
}

figure img {
  margin: 0 auto;
}

figcaption {
  display: block;
  max-width: 80%;
  font-size: 0.9em;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.wp-caption {
  display: block;
  max-width: 100%;
  color: #666;
  text-align: center;
  margin: 0 auto 50px auto;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #ddd;
}

main .wp-caption p {
  font-size: 1em;
  line-height: 1.7;
  margin: -10px 0 0 0;
}

header .video-trigger img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  transition: all 0.15s ease-in-out;
  opacity: 0.2;
  filter: grayscale(1);
}

header :hover.video-trigger img {
  opacity: 1;
  filter: grayscale(0);
}

header .banner-chevron {
  position: absolute;
  top: -20px;
  right: -350px;
  margin: 0;
  height: 650px;
  opacity: 0.7;
  /*animation: 1s ease-out 0s 1 slideInFromLeft;*/
}

.main-nav .site-logo {
  float: left;
  width: 100px;
  margin: 11px 60px 0 0;
}

.sticky-nav .site-logo {
  width: 70px;
  margin: 10px 60px 0 0;
}

.mobile-nav .mobile-logo {
  display: inline-block;
  width: 130px;
  margin: 0 0 20px 0;
}

footer .footer-logo {
  display: block;
  width: 100px;
  margin: 0 auto 40px auto;
}

.mega-menu .menu-segment img {
  width: 80px;
  margin: 20px 0 0 0;
}

.mega-menu .overview-segment img {
  float: left;
  max-width: 350px;
  margin: 0 25px 0 0;
}

.mega-menu .menu-segment .menu-ad img {
  width: 230px;
  margin: 0 auto 12px auto;
  border-radius: 3px;
}

.opt-in-alert .fa-envelope-open-text, .opt-in-alert .fa-file-pdf {
  display: block;
  font-size: 2.15em;
  color: #fff;
  margin: 0 auto 14px auto;
}

.cta-block img {
  position: absolute;
  top: -163px;
  right: 100px;
  margin: 0;
  height: 570px;
}

.callout-wide img {
  float: left;
  width: 130px;
  margin: 0 40px 0 0;
}

.gartner-cta img {
  width: 420px;
  margin: 10px auto 0 auto;
}

.gartner-cta a:hover img {
  opacity: 0.8;
}

.tech-partner-logos-row img {
  display: inline-block;
  vertical-align: middle;
  margin: 20px;
}

.imac-centered {
  width: 900px;
  margin:30px auto;
}

.happy-clients img {
  display: inline;
  max-width: 250px;
  vertical-align: middle;
  margin: 10px;
}

.bottom-main-ad {
  margin: 50px auto 0 auto;
}

.side-ad img {
  margin: 0 auto;
}

.side-ad-top, .bottom-ad-single, .side-ad-bottom {
  display: none;
}

.signup-side img {
  float: right;
  width: 80px;
  margin: 0 0 20px 0;
}

.sidebar article figure {
  margin: 0 0 15px 0;
}

.sidebar .trending-side article figure {
  float: right;
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 3px;
}

.sidebar .trending-side article figure img {
  width: 151px;
  max-width: 151px;
  height: 80px;
  margin: 0 0 0 -34px;
}

.customers-quicklist img {
  display: inline;
  vertical-align: middle;
  max-height: 115px;
  margin: 25px;
  opacity: 0.45;
}

.alignright {
  float: right;
  max-width: 450px;
  margin: 0 0 50px 50px;
}

.alignleft {
  float: left;
  max-width: 450px;
  margin: 0 50px 50px 0;
}


/* =============================================================================
   Video + iframes
   ========================================================================== */

div.vid {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 50px 0; /* this is optional */
  clear: both;
}

.modal div.vid {
  margin: 0;
  z-index: 10;
}

div.vid.full-embed {
  margin: 0;
}

.one-third-right div.vid, .half div.vid {
  margin: 20px 0;
}

.sidebar div.vid {
  margin: 0 0 15px 0;
}

div.vid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vidyard-player-container {
  max-width: 100% !important;
  min-height: 281px;
  max-height: 100% !important;
  margin: 40px auto !important;
}


/* =============================================================================
   Forms
   ========================================================================== */

form, fieldset {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
}

.mobile-search-container form {
  margin: 0;
  padding: 0;
  border: none;
}

.mobile-search-container input[type=text] {
  display: block;
  width: 100vw;
  font: 400 0.9em 'Source Sans Pro',helvetica,sans-serif;
  color: #282829;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 20px solid #93c9ed;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.mobile-search-container input[type=text]:focus {
  outline: none;
}

.search-panel form {
  width: 500px;
  margin: 30px auto 0 auto;
}

.search-panel label {
  display: inline-block;
  font-size: 2.15em;
  color: #fff;
  margin: 0 0 15px 0;
  z-index: 9;
}

.hide-search {
  position: absolute;
  top: 20px;
  right: 20px;
  font: 400 0.8em 'Source Sans Pro',helvetica,sans-serif;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  padding: 8px 18px;
  background: #282828;
  border: 0;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  z-index: 10;
}

.search-panel .fa-search {
  position: absolute;
  top: 83px;
  left: 20px;
  font-size: 1.25em;
  color: #fff;
  z-index: 10;
}

.search-panel input[type=text] {
  position: relative;
  display: block;
  width: 500px;
  font: 400 1em 'Source Sans Pro',helvetica,sans-serif;
  color: #fff;
  margin: 0 auto;
  padding: 12px 24px 12px 45px;
  background: #282828;
  border: 2px solid #282828;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  z-index: 9;
}

.search-panel input[type=text]:focus {
  border: 2px solid #ffc709;
  outline: none;
}

.search-panel ::-webkit-input-placeholder {
   color: #ddd;
}

.search-panel :-moz-placeholder { /* Firefox 18- */
   color: #ddd; 
   opacity: 1; 
}

.search-panel ::-moz-placeholder {  /* Firefox 19+ */
   color: #ddd;
   opacity: 1;  
}

.search-panel :-ms-input-placeholder {  
   color: #ddd;  
}

.search-panel .easy-autocomplete, .main-search .easy-autocomplete {
  position: relative;
}

.easy-autocomplete-container {
  position: absolute;
  top: 50px;
  left: 0;
  width: 400px;
  z-index: 906;
}

.search-panel .easy-autocomplete input:hover, .search-panel .easy-autocomplete input:focus, .main-search .easy-autocomplete input:hover, .main-search .easy-autocomplete input:focus {
  box-shadow: none;
  outline: none;
}

.search-panel .easy-autocomplete a, .main-search .easy-autocomplete a {
  display: block;
}

.search-panel .easy-autocomplete ul, .main-search .easy-autocomplete ul {
  margin: -2px 0 0 0;
  padding: 0;
  list-style: none;
}

.search-panel .easy-autocomplete ul li, .main-search .easy-autocomplete ul li {
  display: block;
  font: 400 0.97em 'Source Sans Pro',helvetica,sans-serif;
  line-height: 1em;
  color: #111;
  text-decoration: none;
  text-align: left;
  margin: 0;
  padding: 15px;
  background: #ffc709;
  border-bottom: 1px solid #333;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.search-panel .easy-autocomplete ul li:last-of-type, .main-search .easy-autocomplete ul li:last-of-type {
  padding: 15px 15px 15px 15px;
  border-radius: 0 0 3px 3px;
}

.search-panel .easy-autocomplete ul li strong, .search-panel .easy-autocomplete ul li b, 
.main-search .easy-autocomplete ul li strong, .main-search .easy-autocomplete ul li b {
  font-weight: 400;
}

.search-panel .easy-autocomplete ul li:hover, .main-search .easy-autocomplete ul li:hover {
  padding: 15px 15px 15px 30px;
}

.search-panel .easy-autocomplete ul li:last-of-type:hover, .main-search .easy-autocomplete ul li:last-of-type:hover {
  padding: 15px 15px 15px 30px;
}

.search-panel input[type=submit] {
    position: relative;
    float: right;
    display: block;
    height: auto;
    font: 600 1em 'Source Sans Pro',helvetica,sans-serif;
    line-height: 1.3;
    color: #111;
    text-transform: uppercase;
    margin: 12px 0 0 0;
    padding: 8px 24px;
    background: #ffc709;
    border: none;
    border-radius: 100px;
    transition: all 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.search-panel input[type=submit]:hover {
  box-shadow: 300px 0 0 0 rgba(0,0,0,0.2) inset;
}

.main-form {
  text-align: left;
  margin: 0 auto 40px auto;
  padding: 50px 65px;
  background: #e7e7e7;
  border-radius: 4px;
}

.times-signup {
  color: #fff;
  text-align: left;
  margin: 40px auto;
  background: #121314;
}

.main-form div {
  float: left;
  width: 48%;
}

.main-form div:nth-of-type(2n) {
  float: right;
}

.main-form label {
  display: block;
  font-size: 1.1em;
  font-weight: 600;
  color: #282829;
  margin: 0 0 12px 0;
  clear: both;
}

.times-signup label {
  float: left;
  width: 60%;
}

.main-form input[type=text], .main-form input[type=email], .main-signup input[type=text], .main-signup input[type=email], .main-form textarea, .main-form select {
  position: relative;
  display: block;
  width: 100%;
  font: 400 1em 'Source Sans Pro',helvetica,sans-serif;
  color: #282829;
  margin: 0 0 25px 0;
  padding: 9px 11px;
  background: #fff;
  border: 2px solid #ddd;
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.main-form.times-signup input[type=text] {
  float: left;
  width: 60%;
}

.main-form textarea {
  min-height: 200px;
  line-height: 1.6;
}

.main-form input[type=text]:focus, .main-form input[type=email]:focus, .main-form textarea:focus, .main-form select:focus {
  width: 100%;
  background: #fff;
  border: 2px solid #ffc709;
  outline: none;
}

.main-form select, .main-form select:focus {
  background: #fff url(images/icons/select-arrow-bg.png) right no-repeat;
} 

.main-form input[type=submit], .main-signup input[type=submit] {
  position: relative;
  display: block;
  width: 100%;
  font: 600 1.1em 'Source Sans Pro',helvetica,sans-serif;
  color: #222;
  text-transform: uppercase;
  margin: 15px 0 0 0;
  padding: 15px 25px;
  background: #ffc709;
  border: none;
  border-radius: 3px;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  clear: both;
}

.times-signup input[type=submit] {
  max-width: 200px;
  margin: 15px auto 0 auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.main-form p {
  font-size: 0.9em;
  line-height: 1.5;
  margin: 25px 0 0 0;
}

.advanced-filters div {
  float: left;
  display: block;
  width: 50%;
  text-align: left;
  overflow: hidden;
}

.advanced-filters div:nth-of-type(2n) {
  padding: 0 0 0 15px;
}

.advanced-filters div p {
  font-size: 1.3em;
  font-weight: 600;
  color: #282829;
  margin: 0 0 5px 0;
}

.advanced-filters label {
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  color: #282829;
  margin: 5px;
}

.facetwp-counter {
  font-weight: 700;
}

.advanced-filters label input[type=checkbox] {
  display: inline-block;
  margin: 0 5px 0 0;
}

.advanced-filters select {
  display: inline-block;
  min-width: 200px;
  font: 400 0.95em 'Source Sans Pro',helvetica,sans-serif;
  color: #282829;
  margin: 0 0 0 10px;
  padding: 6px 9px;
  background: #fff url(images/icons/select-arrow-bg-2.png) right no-repeat;
  border: 2px solid #ddd;
  border-radius: 0;
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.advanced-filters select:focus {
  background: #fff url(images/icons/select-arrow-bg-2.png) right no-repeat;
  border: 2px solid #aaa;
  outline: none;
}

.advanced-filters button, .advanced-filters input[type=reset] {
  display: inline-block;
  font: 600 1em 'Source Sans Pro',sans-serif;
  color: #111;
  text-transform: uppercase;
  margin: 0 10px;
  padding: 9px 26px;
  background: #ffc709;
  border: none;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  clear: both;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.advanced-filters input[type=reset] {
  background: #555;
}

.advanced-filters button:hover, .advanced-filters input[type=reset]:hover {
  opacity: 0.8;
}

.main-search {
  margin: 50px 0 60px 0;
  padding: 40px;
  background: #285fac; 
  border-radius: 3px;
}

.signup-side label, .times-signup label, .main-search label {
  position: relative;
  display: block;
  font-size: 1em;
  color: #fff;
  text-align: center;
  margin: 0 0 15px 0;
}

.main-search label {
  font-size: 1.2em;
  text-align: left;
  margin: 0;
}

.main-search .fa-search {
  position: absolute;
  top: 53px;
  left: 58px;
  font-size: 1.2em;
  color: #666;
  z-index: 6;
}

.times-signup label {
  font-size: 1.1em;
  font-weight: 400;
  margin: 0 0 25px 0;
}

.signup-side input[type=email], .times-signup input[type=email], .main-search input[type=text] {
  position: relative;
  display: block;
  width: 100%;
  font: 400 1em 'Source Sans Pro',sans-serif;
  color: #282829;
  margin: 0 0 20px 0;
  padding: 8px 10px;
  background: #232135;
  border: 2px solid #232135;
  border-radius: 2px;
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.main-search input[type=text] {
  margin: 0;
  padding: 8px 18px 8px 44px;
  background: #fff;
  border: 2px solid #285fac;
  border-radius: 100px;
}

.signup-side input[type=email]:focus, .times-signup input[type=email]:focus {
  background: #232135;
  border: 2px solid #ffc709;
  outline: none;
}

.main-search input[type=text]:focus {
  background: #fff;
  border: 2px solid #ffc709;
  outline: none;
}

.main-search ::-webkit-input-placeholder {
   color: #666;
}

.main-search :-moz-placeholder { /* Firefox 18- */
   color: #666; 
   opacity: 1; 
}

.main-search ::-moz-placeholder {  /* Firefox 19+ */
   color: #666;
   opacity: 1;  
}

.main-search :-ms-input-placeholder {  
   color: #666;  
}

.signup-side input[type=submit] {
  position: relative;
  display: block;
  width: 150px;
  font: 600 1em 'Source Sans Pro',sans-serif;
  color: #111;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 9px 16px;
  background: #ffc709;
  border: none;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.signup-side input[type=submit]:hover {
  color: #fff;
  box-shadow: 300px 0 0 0 rgba(0,0,0,0.2) inset;
}

/*.wpcf7-form {
  margin: 40px 0 50px 0;
  overflow: hidden;
}

.wpcf7-form p {
  display: block;
  width: 100%;
  clear: both;
}

.wpcf7-form label {
  display: block;
  font: 700 1em helvetica,sans-serif;
  color: #000;
  margin: 0 0 13px 0;
}

.wpcf7-form input, .wpcf7-form textarea {
  display: block;
  width: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wpcf7-form textarea {
  width: 100%;
}

.wpcf7-form input:focus, .wpcf7-form textarea:focus {
  width: 100%;
  outline: none;
}

.wpcf7-form input[type=submit] {
  width: auto;
  font: 400 1em helvetica,sans-serif;
  color: #fff;
  text-align: center; 
  margin: 0 0 10px 0;
  padding: 12px 28px;
  background: #000;
  border: 1px solid #000;
  transition: all 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.wpcf7-form input[type=submit]:hover {

}

span.wpcf7-not-valid-tip {
  color: #d00 !important;
  font-size: 0.85em !important;
  display: block !important;
  margin: -5px 0 19px 0 !important;
}

div.wpcf7-validation-errors {
  font-size: 0.85em !important;
  font-weight: 400 !important;
  color: #52a541 !important;
  text-align: center !important;
  padding: 12px !important;
  background: none !important;
  border: 1px solid #52a541 !important;
  border-radius: 4px;
}

div.wpcf7-mail-sent-ok {
  width: 85%;
  font-size: 0.85em !important;
  font-weight: 400 !important;
  color: #a71930 !important;
  background: none !important;
  text-align: center !important;
  margin: 40px auto !important;
  display: block !important;
  border: 1px solid #a71930 !important;
  padding: 12px !important;
  border-radius: 4px;
  clear: both;
}

.screen-reader-response {
  font-size: 0.9em !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.screen-reader-response ul li {
  padding: 0 !important;
}
*/

/* =============================================================================
   < 1300
   ========================================================================== */
@media only screen
and (max-width : 1340px) {

.utility-menu, .main-nav {
  padding: 0 20px;
}

}/* end media query */


/* =============================================================================
   < 1280
   ========================================================================== */
@media only screen
and (max-width : 1280px) {

header, .page-header {
  height: auto;
}

header .header-inside { 
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 450px;
  padding: 90px;
  transform: none;
}

header .header-inside div {
  left: 38%;
  width: 600px;
  height: auto;
  padding: 0;
}

.wrapper, .inside {
  width: 1050px;
}

.product-page {
  width: 100%;
  margin: 0 auto;
}

.mega-menu .inside {
  width: 100%;
}

.grid-container.grid-blocks-by-four {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

main {
  width: 700px;
}

.sidebar {
  width: 300px;
}

.sidebar .trending-side .title-left {
  width: 160px;
}

footer .inside {
  width: 90%;
}

.bottom-alert {
  line-height: 1.4;
  padding: 25px;
}

.opt-in-alert {
  right: 130px;
}

.main-nav li {
  margin: 0 20px 0 0;
}

.main-nav a.cta-button.contact-button {
  display: none;
}

.hide-forever {
  display: block;
  max-width: 100px;
  line-height: 1;
  margin: 25px auto 0 auto;
  clear: both;
}

.main-nav .site-logo {
  margin: 14px 30px 0 0;
}

.cta-block .inside {
  width: 90%;
}

.cta-block {
  padding: 75px 0;
}

.modal {
  width: 1050px;
  height: 591px;
  margin-left: -525px;
  margin-top: -270.5px;
}

header p {
  padding: 0;
}

blockquote.gartner-quote {
  height: 450px;
}

header .banner-chevron {
  position: absolute;
  top: -20px;
  right: 95px;
  margin: 0;
  height: 490px;
}

.cta-block img {
  right: 0;
  top: -96px;
  height: 400px;
}

.full-width-block.cta-block h2 {
  padding: 0 300px 0 0;
}

.sidebar .trending-side article figure {
    width: 70px;
    height: 70px;
}

}/* end media query */


/* =============================================================================
   < 1024
   ========================================================================== */
@media only screen
and (max-width : 1050px) {

.open-search {
  height: 0px;
  visibility: hidden;
  display: none;
}

.nav-mobile, .toggleMobileSearch {
  display: block;
}

.utility-menu, .main-nav {
  padding: 0 20px;
}

.main-nav {
  display: none;
}

.main-nav, .sticky-nav {
  position: relative;
  top: auto;
  left: auto;
  height: 60px;
}

header {
  -webkit-background-size: auto;
  -moz-background-size: auto;
  -o-background-size: auto;
  background-size: auto;
}

header.page-header {
  height: auto;
}

header .header-inside { 
  position: relative;
  width: 100%;
  height: auto;
  text-align: left;
  padding: 80px;
  transform: none;
}

header .header-inside div {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  transform: none;
}

.grid-container {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.more-posts .grid-container {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.grid-container.grid-blocks-by-two {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.grid-container.grid-blocks-by-three, .product-page-block .grid-container.explainer-blocks, .product-page-block .grid-container.grid-blocks-by-three.titus-products {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.grid-container.grid-blocks-by-four {
  grid-template-columns: 1fr 1fr;
}

.grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.product-page-block .grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-container.grid-blocks-by-five.management-team {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-container.grid-blocks-by-two.lefted {
  margin: 40px 0;
  grid-template-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 40px;
}

.wrapper, .inside {
  width: 720px;
}

.product-page {
  width: 100%;
  margin: 0 auto;
}

.half, :nth-of-type(2n).half {
  float: none;
  width: 100%;
  margin: 0;
}

:first-of-type.half {
  margin: 0 0 40px 0;
}

main, .sidebar {
  float: none;
  width: 100%;
}

main {
  margin: 0 0 50px 0;
  border-bottom: 5px solid #e7e7e7;
}

.archive-page {
  margin: 0;
  border: none;
}

.full-width-block {
  padding: 90px 0;
}

.active-opt-in-alert {
  bottom: -350px;
}

.advanced-filters div {
  float: none;
  width: 100%;
}

.advanced-filters div:nth-of-type(2n) {
  padding: 0;
}

.sidebar .trending-side article figure {
  float: none;
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}

.sidebar .trending-side .title-left {
  float: none;
  width: 100%;
}

footer {
  font-size: 0.95em;
}

footer .grid-container {
  grid-template-columns: 1fr 1fr;
}

.utility-menu, .main-nav ul, .main-nav a.cta-button {
  display: none;
}

.mobile-menu-toggle {
  display: block;
}

.main-nav .site-logo, .sticky-nav .site-logo {
  width: 125px;
  margin: 11px 0 0 0;
}

header h1 {
  font-size: 2.7em;
}

.full-width-block.cta-block h2 {
  font-size: 2em;
  padding: 0;
}

.sidebar h3 {
  font-size: 1.15em;
}

header p {
  font-size: 1.35em;
}

.full-width-block.cta-block p {
  font-size: 1.2em;
}

.cta-block a.cta-button {
  font-size: 1em;
  padding: 12px 20px;
}

.modal {
  width: 600px;
  height: 338px;
  margin-left: -300px;
  margin-top: -184px;
}

.pagination {
  margin: 50px auto;
}

.page-numbers, .facetwp-page {
  font-size: 1em;
  margin: 0 3px;
  padding: 7px 12px !important;
}

header .banner-chevron {
  display: none;
}

blockquote.gartner-quote, blockquote:last-of-type.gartner-quote {
  float: none;
  width: 100%;
  max-width: 400px;
  height: auto;
  font-size: 1.2em;
  margin: 30px auto;
  padding: 40px;
}

.gartner-cta img {
  width: 375px;
}

.sidebar .trending-side article figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

}/* end media query */


/* =============================================================================
   < 768
   ========================================================================== */
@media only screen
and (max-width : 768px) {

header .header-inside { 
  padding: 70px;
}

.grid-container, .grid-container.grid-blocks-by-two, .grid-container.grid-blocks-by-three, .grid-container.grid-blocks-by-four, .grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr 1fr;
}

.more-posts .grid-container, .product-page-block .grid-container.explainer-blocks, .product-page-block .grid-container.grid-blocks-by-three.titus-products {
  grid-template-columns: 1fr;
  margin: 0;
}

.product-page-block .grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr 1fr;
}

.archive-page .grid-container article, .more-posts .grid-container article {
  padding: 20px;
}

.archive-page .grid-container article:hover, .more-posts .grid-container article:hover {
  box-shadow: none;
}

.wrapper, .inside {
  width: 90%;
}

.product-page {
  width: 100%;
  margin: 0 auto;
}

.sidebar-widget {
  padding: 20px;
}

.copyright-block {
  padding: 40px 0 0 0;
}

.copyright-block .no-mobile {
  display: none;
}

footer .grid-container {
  grid-template-columns: 1fr;
  margin: 0;
}

.copyright-block {
  margin: 0;
  border: none;
}

h1 {
  font-size: 2.35em;
}

header h1 {
  font-size: 2.3em;
}

h2 {
  font-size: 1.7em;
}

h2, h3, h4, h5, h6 {
  margin: 30px 0 10px 0;
}

.extras h2 {
  font-size: 1.3em;
}

.product-page-block.callout-wide h2 {
  font-size: 1.5em;
}

.more-posts h3 {
  font-size: 1.3em;
}

.wrapper p, main p, .wrapper li, main li {
  font-size: 1em;
}

header p {
  font-size: 1.3em;
  font-weight: 400;
  margin: 12px 0 0 0;
}

.copyright-block p {
  text-align: left;
  line-height: 2;
}

.copyright-block p a {
  display: block;
}

.click-to-tweet {
  width: 100%;
  font-size: 1em;
  margin: 40px auto;
  padding: 25px 25px 23px 25px;
}

header a.cta-button {
  font-size: 1em;
  margin: 20px 0 0 0;
  padding: 10px 20px;
}

.close {
  width: 40px;
  height: 40px;
}

.close span {
  top: -1px;
  right: 7px;
  font-size: 3em;
}

.full-post blockquote {
  width: 100%;
  font-size: 1.2em;
  margin: 35px 0;
  padding: 50px 40px;
  border-left: 8px solid #ffc709;
}

.full-post blockquote span {
  font-size: 0.95em;
}

blockquote.gartner-quote, blockquote:last-of-type.gartner-quote {
  font-size: 1.1em;
}

img {
  margin: 40px auto;
}

.product-page-block .titus-products img {
  width: 80px;
}

.cta-block img {
  right: -23px;
  top: -96px;
  height: 430px;
}

.gartner-cta img {
  width: 300px;
}

.callout-wide img {
  float: none;
  margin: 0 0 25px 0;
}

footer .footer-logo {
  display: block;
  width: 110px;
  margin: 0 0 25px 0;
}

div.vid {
  margin: 40px 0;
}

.main-form {
  padding: 30px 40px;
}

.main-form div {
  float: none;
  width: 100%;
}

}/* end media query */


/* =============================================================================
   < 640
   ========================================================================== */
@media only screen
and (max-width : 640px) {

body {
  font-size: 16.5px;
}

.main-nav, .sticky-nav {
  height: 50px;
}

.main-nav .site-logo, .sticky-nav .site-logo {
  width: 100px;
  margin: 9px 0 0 0;
}

.mobile-menu-toggle {
  font-size: 0.85em;
  margin: 7px 0 0 0;
}

.grid-container, .grid-container.grid-blocks-by-two, .grid-container.grid-blocks-by-three, .grid-container.grid-blocks-by-four, .grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr;
}

.product-page-block .grid-container.grid-blocks-by-five {
  grid-template-columns: 1fr;
}

.grid-container.grid-blocks-by-five.management-team {
  grid-template-columns: 1fr 1fr;
}

.archive-page .grid-container article:hover, .more-posts .grid-container article:hover {
  box-shadow: none;
}

.archive-page .grid-container article, .more-posts .grid-container article {
  padding: 20px;
}

h1 {
  font-size: 2em;
}

header h1 {
  font-size: 2em;
  font-weight: 400;
}

h2 {
  font-size: 1.5em;
}

.product-page-block.callout-wide h2 {
  font-size: 1.3em;
}

h3 {
  font-size: 1.2em;
}

header p {
  font-size: 1.1em;
  font-weight: 400;
  margin: 10px 0 0 0;
}

.frontpage p, .wrapper p, .wrapper li {
  line-height: 1.6;
}

p#breadcrumbs {
  margin: 0 0 20px 0;
}

.full-width-block.cta-block p {
  font-size: 1.1em;
  padding: 0;
}

a.cta-button {
  font-size: 0.85em;
  padding: 11px 18px;
}

a.cta-button.big {
  font-size: 1.1em;
  padding: 14px 18px;
}

a.cta-button.small, .frontpage .grid-container a.cta-button.small {
  font-size: 0.83em;
}

.modal {
  width: 480px;
  height: 270px;
  margin-left: -240px;
  margin-top: -135px;
}

.pagination {
  margin: 0 auto 35px auto;
}

.page-numbers {
  font-size: 0.97em;
  margin: 3px;
  padding: 5px 10px;
}

.full-post blockquote {
  font-size: 1.1em;
  padding: 50px 30px 30px 30px;
  border-left: 5px solid #ffc709;
}

blockquote.gartner-quote, blockquote:last-of-type.gartner-quote {
  max-width: 300px;
  font-size: 1em;
  padding: 35px;
}

.cta-block img {
  display: none;
}

.archive-page .grid-container article figure {
  border-radius: 3px;
}

.main-search .fa-search {
  top: 44px;
  left: 45px;
}

.main-search {
  padding: 30px;
}

.main-form {
  padding: 30px;
}

}/* end media query */


/* =============================================================================
   < 520
   ========================================================================== */
@media only screen
and (max-width : 520px) {

header .header-inside {
  padding: 40px;
}

.archive-page .grid-container article, .more-posts .grid-container article {
  padding: 17px;
}

.grid-container.grid-blocks-by-five.management-team {
  grid-template-columns: 1fr;
}

.toggleMobileSearch span {
  margin: 4px 0 0 0;
}

h1 {
  font-size: 1.8em;
}

h2 {
  font-size: 1.4em;
}

h3 {
  font-size: 1.15em;
}

.more-posts h3 {
  font-size: 1.1em;
}

h4 {
  font-size: 1.1em;
}

h5, h6 {
  font-size: 1em;
}

.frontpage p, .wrapper p, main p, .wrapper li, main li {
  font-size: 1em;
}

.click-to-tweet {
  font-size: 0.9em;
  padding: 20px 20px 18px 20px;
}

.click-to-tweet .post-tweet {
  font-size: 1em;
}

.nav-mobile .menu-button .label-text, .toggleMobileSearch span {
  display: none;
}

.nav-mobile svg {
  height: 40px;
  width: 55px;
}

.toggleMobileSearch .fa-search {
    font-size: 1.5em;
    margin: 0;
}

.nav-mobile li {
  height: 60px;
}

.nav-mobile .menu-button .label-text, .toggleMobileSearch span {
  display: none;
}

.mobile-logo {
  width: 70px;
  margin: 10px auto 0 auto;
}

.nav-mobile .menu-container .menu-sidebar, .mobile-search-container {
  top: 60px;
}

.modal {
  width: 320px;
  height: 180px;
  margin-left: -160px;
  margin-top: -90px;
}

.main-search .fa-search {
  top: 38px;
  left: 38px;
}

.main-search, .main-form {
  padding: 25px;
}

}/* end media query */

