/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/***
FanThreeSixty Website Nav - 2021 Edish
***/

.nav_bar {
    background: #556FFC;
    position: fixed;
        top: 0; left: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(3px);
}

.nav_bar-active {
    background: rgba(255, 255, 255, 1);
}

.nav{
    display: flex;
    font-size: 18px;
    flex-direction: column;
    line-height: 24px;
    align-items: flex-start;
    padding: 20px ;
    background: #556ffc;
    position:relative;
}
.container.nav_container {
 max-width:1500px; 
}
@keyframes logoBoop {
  0%{
    transform: scale(1);
  }
  25%{
    transform: scale(1.05);
  }
  100%{
    transform: scale(1);
  }
}

.nav-logo{
  height: 24px;
  width: 168px;
}

.nav-logo:hover {
 animation: logoBoop 0.5s; 
}

@media only screen and (min-width: 1024px) {
  .nav-logo{
    height: 30px;
    width: 210px;
  }
}

@media only screen and (min-width: 900px) {
  .nav {
    padding: 20px 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
    .nav_container {
        padding: 0 50px;
    }
}

.nav-list {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  display: block;
  margin-top: 15px;
}

@media only screen and (min-width: 1024px) {
  .nav-list {
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
  }
}

@media only screen and (max-width: 1023px) {
  .nav-list {
    display: none;
  }
}

.nav-list-active {
  display: block;
  margin-top: 60px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 0px 30px;
  background: white;
  overflow-y: scroll;
  position: fixed;
  background: #556ffc;
}

.nav-list-item {
  list-style-type: none;
  cursor: pointer;
  position: relative;
}

.nav-list-main {
  font-weight: 600;
  padding: 20px 0;
}

@media only screen and (min-width: 1024px) {
  .nav-list-main {
    padding: 0 30px 0 0;
    border-bottom: none;
  }
}

.nav-list-main a, .nav-list-main span, .nav-list-main a:active, .nav-list-main a:visited, .nav-list-main a:hover {
  font-weight: 600;
  text-decoration: none;
  color: #FFF;
}

.nav-list-main-selected a, .nav-list-main-selected a:active, .nav-list-main-selected a:visited, .nav-list-main-selected a:hover {
  color: #FFF;
}


.nav-list-dropdown{
  position: relative;
  padding-right: 0;
}

@media only screen and (min-width: 1024px) {
  .nav-list-dropdown{
    padding-right: 50px;  /* 30px + 12px + 8px (caret width and margin) */
  }
}

.nav-list-dropdown:before{
  position: absolute;
  content: '';
  height: 9px;
  width: 12px;
  background: url('data:image/svg+xml;utf8,<svg width="12" height="9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.41.84L6 5.42 10.59.84 12 2.25l-6 6-6-6L1.41.84z" fill="%23CCCCCC"/></svg>');;
  top: 20px;
  right: 20px; 
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease-in;
  margin-left: 8px;
}

@media only screen and (min-width: 1024px) {
  .nav-list-dropdown:before{
    top: calc(50%);
    right: 30px;
  } 
}

@media only screen and (max-width: 1023px) {
  .nav-list-main-active.nav-list-dropdown:before{
    transform: translateY(-50%) rotate(180deg);
  }
}

.nav-list-contact{
  background: transparent;
  color: white;
  padding: 8px 15px;
  border:#ffffff solid 1px;
  border-radius: 100px;
  transform: translateY(0);
  transition: transform 0.2s ease-in;
  position: absolute;
  right: 58px;
  top: 10px;
}

.nav-list-contact a, .nav-list-contact a:visited, .nav-list-contact a:active, .nav-list-contact a:hover{
  color: white;    
}

@media only screen and (min-width: 1024px) {
  .nav-list-contact{
    position: relative;
    right: 0;
    top: 0;
  }
}

.nav-submenu {
  opacity: 0;
  visibility: hidden;
  position: relative;
  display: grid;
  top: 20px;
  right: 0;
  margin: 0 auto;
  border-radius: 30px;
  transition: all 0.25s ease;
  mix-blend-mode: normal;
  padding: 0;
  color:#FFF;  
}
.nav-submenu-item svg {
  transition:all .5s;
  filter:grayscale(100%);
}
.nav-submenu-item:hover svg {
  filter:grayscale(0);
}
.nav-list-main .nav-submenu a {
  color:#FFF;
}
@media only screen and (max-width: 1024px) {
  .nav-submenu-item svg {
    filter:grayscale(50%);
  }
  .nav-list-active {
    min-height: 100vh; 
  }
  .industries .nav-submenu-item svg path {
    fill:#fff !important;
  }
  .nav-submenu {
   opacity:1;
   visibility:visible;
   display:none;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-submenu {
    position: absolute;
    height: auto;
    
  }
  .nav-submenu > div {
     box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(#FFFFFF, #f7f8ff);
    padding: 15px 30px;
    border-radius: 15px;
  }
  .nav-list-main .nav-submenu a, .nav-submenu  {
    color:#9B9C9C;
    transition:color .5s;
  }
  .nav-list-main .nav-submenu a:hover {
   color: #556FFC; 
  }
}

.nav-submenu-active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  .nav-submenu {
    height: auto;
  }
}

.nav-submenu-item {
  list-style-type: none;
    font-size: 16px;
}

.nav-submenu-item-solutions {
  margin-left: 0px;
}

@media only screen and (min-width: 1024px) {
  .nav-submenu-item-solutions {
    margin-left: -20px;
  }
}

.nav-submenu-item-solutions-link {
  padding: 13px 20px;
  border-radius: 13px;
  background: transparent;
  font-size: 16px;
  transition: background 0.2s ease-in;
  display: flex;
}

.nav-submenu-item-solutions-link, .nav-submenu-item-solutions-link:active, .nav-submenu-item-solutions-link:hover,.nav-submenu-item-solutions-link:visited{
  color: #555;
  text-decoration: none;
  cursor: pointer;
}

.nav-submenu-industry {
  padding: 20px;
}

/* reverse mobile first since we are checking padding in the JS */
@media only screen and (max-width: 1023px) {
  .nav-submenu-industry {
    padding: 0;
    padding: 0;
    margin-top: -30px;
    margin-bottom: 30px;
    margin-left: -20px;
    box-shadow: none;
    background: transparent;
  }
}

.nav-submenu-item-detail{
  display: grid;
  grid-template-columns: 55px auto;
  padding: 20px;
  border-radius: 13px;
  background: transparent;
  transition: background 0.2s ease-in;
}

.nav-submenu-item-detail:active, .nav-submenu-item-detail:visited, .nav-submenu-item-detail:hover{
  text-decoration: none;
  color: #555;
}

.nav-submenu-item-detail-image{
  height: 40px;
  width: 40px;
}

.nav-submenu-item-detail-title{
  font-weight: 700;
  font-size: 16px;
  white-space:nowrap;
  display: inline-block;
  align-content: center;
  padding-left: 15px;
}

.nav-submenu-item-detail-description{
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}


.nav-submenu-solutions {
  column-gap: 20px;
  grid-gap: 40px;
  padding: 20px;
  grid-template-columns: 1fr;
  cursor: text;
}

.nav-submenu-active.nav-submenu-solutions{
  
}

@media only screen and (min-width: 1024px) {
  .nav-submenu-solutions {
    grid-template-columns: repeat(3, minmax(max-content, 1fr));
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    grid-gap: 30px;
  }
}

/* reverse mobile first since we are checking padding in the JS */
@media only screen and (max-width: 1023px) {
  .nav-submenu-solutions {
    padding: 0;
  }
}

.nav-submenu-solutions-heading {
  color: #333;
  font-weight: 700;
  font-size: 14px;
  border-bottom: none;
  display: block;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

@media only screen and (min-width: 1024px) {
  .nav-submenu-solutions-heading {
    border-bottom: solid 1px #EEEEEE;
    padding-bottom: 15px;
  }
}

.nav-submenu-solutions-heading:before{
  height: 10px;
  width: 10px;
  border-radius: 10px;
  left: 0px;
  top: 6px;
  content: '';
  position: absolute;
}

.nav-submenu-solutions-heading-products:before{
  background: linear-gradient(218.36deg, #D67DDE 9.92%, #556FFE 91.54%);
}

.nav-submenu-solutions-heading-capabilities:before{
  background: #448AFF;
}

.nav-submenu-solutions-heading-services:before{
  background: #24D4A3;
}

.nav-submenu-solutions-list {
  padding: 0;
  margin-top: -10px;
}

/* Hamburger */
.gh__hamburger{
  position: absolute;
    right: 0; top: 7px;  
  width: 20px;
  height: 11px;
  padding: 1.25rem;
  cursor: pointer;
  display: block;
  right: 20px;
  top: 8px;
}

@media only screen and (min-width: 1024px) {
  .gh__hamburger{
    display: none;
  }
}

.gh__hamburger__top, .gh__hamburger__bottom{
  position: absolute;
  background: #FFF;
  height: 2px;
  width: 20px;
  transform: rotate(0);
  transition: all ease .5s;
  transform-origin: center center;
}

.gh__hamburger__bottom{
  transform: translateY(8px);
}

.gh__hamburger-active .gh__hamburger__top{
  transform: rotate(-45deg);
}

.gh__hamburger-active .gh__hamburger__bottom{
  transform: rotate(45deg);
}
/***
Main page styles for FanThreeSixty dot com ***/

html {
	scroll-padding-top: 100px;
}

body {
    color: #555;
    /*** hubspot one ***/
    font: 18px/30px proxima-nova, sans-serif;
    
    /*** local one 
    font: 18px/30px "Proxima Nova"; ***/
    margin: 0;
    overflow-x: hidden;
    padding-top: 60px;
}
a, a:focus, a:hover, a.button:hover {
 text-decoration:none !important;
  font-weight:inherit;
}

/* Fix for weird extra space in hubspot */
.header-container-wrapper {
 float: left;
}
.hero-section .dnd-column.span4, .hero-section .dnd-column.span6 {
  position:relative;
}
.container{
  margin: 0 auto;
  max-width: 1280px;
}
.blue-headline {
      font-size:48px;   
}
.crowd-hero {
 overflow:hidden; 
}
.btn {
    background: #556FFE;
    box-shadow: 0px 0px 30px rgba(85, 111, 254, 0.15), 0px 1px 15px rgba(85, 111, 254, 0.15);
    border-radius: 38px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    height: 76px;
    line-height: 76px;
    padding: 0 30px;
    text-decoration: none;
    transition: box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.btn:hover {
    box-shadow: 0px 0px 30px rgba(85, 111, 254, 0.2), 0px 1px 15px rgba(85, 111, 254, 0.3);
    transform:translatey(-2px);
}

.hero {
    background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-urple.svg') bottom right no-repeat, linear-gradient(26.34deg, #EEEEEE -20.67%, #FFFFFF 74.63%);
    background-size: 370px 370px, cover;
    background-position: 100% 110%;
    border-radius: 0px 0px 75px 75px;
    overflow: hidden;
    padding: 50px 30px 0;    
    position: relative;
}

.hero.light-blue {
    background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-light-blue.svg') bottom right no-repeat, linear-gradient(26.34deg, #EEEEEE -20.67%, #FFFFFF 74.63%);
    background-size: 370px 370px, cover;
    background-position: 100% 110%;
}

.hero.dark-blue {
    background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-dark-blue.svg') bottom right no-repeat, linear-gradient(26.34deg, #EEEEEE -20.67%, #FFFFFF 74.63%);
    background-size: 370px 370px, cover;
    background-position: 100% 110%;
}

.industry_page .hero {
    padding: 30px 30px 0;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    margin: 0 0 30px;
}
h2 {
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    font-weight: 900;
}

h3 {
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.2em;
    font-weight: 900;
}
h4 {
    color:#556FFE;
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 1.1em;
    font-weight: 700;
}

.strikethrough {
    text-decoration-line: line-through;
}

.page_category {
    color: #999;
    font-size: 16px;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.hero .subhead {
    letter-spacing: -0.01em;
    margin: 0 0 30px;
}

.hero_image {
    height: 320px;
    position: relative;
}

.hero_image img {
    position: absolute;
        bottom: -10%; right: 0;
    height: 110%;
    width: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 440px) {
.hero_image img {
   bottom: -20%
  }
}

.hero_secondary {
    padding: 50px 20px;
    text-align: center;
}

.small_image {
    height: 100px;
    margin: 0 auto 15px;
    width: 100px;
}

.small_image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.hero_secondary h1 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 15px;
}

.hero_secondary p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

hr {
    background: linear-gradient(269.99deg, rgba(85, 111, 254, 0.5) 33.85%, rgba(85, 111, 254, 0.2) 100.28%);
    border: none;
    height: 2px;
    margin: 0 60px;
    opacity: 0.15;
}

.page_content {
    clear: both;
    margin: 0 auto;
    max-width: 1024px;
}

.page_intro {
    margin: 100px 30px;
}

.highlight {
    margin: 100px 30px;
}

.highlight img {
    max-height: 350px;
    width: 100%;
    object-fit: contain;
}

.featured_clients p {
    font-weight: 700;
    margin: 0 30px 30px;
}

.whoosh {
    background: #E2E7FF;
    border-radius: 20px;
    margin: 0 10px;
    padding: 50px 50px 20px;
}

.client_logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 500px;
}

.client_logos img {
    flex-basis: 33%;
    height: 60px;
    object-fit: contain;
    margin: 0 0 30px;
}

.product_callouts h3, .job_openings h3, .career_cards h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    margin: 0 20px 50px;
}
 .career_cards p {
   line-height:1.5em;
}
 .career_cards h3 {
    font-size: 32px;
    font-weight: 600;
    margin: 0 20px 50px;
    text-align: center;
}
.career_cards a, .career_cards a:hover {
  text-align:center;
  font-weight:700;
  color:#556FFC;
  border-top:1px solid #eee;
  padding-top:10px;
  text-decoration:none;
}
.card_links {
    margin: 0 10px;
    padding: 20px;
}
.card_header img {
  max-width:48px;  
}
.card_links .title {
  font-size:24px;
  font-weight:700;
  color:#556FFC;
  margin:0;
}
.career_cards .title {
  color:#555555;
  font-size:24px;
  font-weight:700;
  margin:0;
}
.job_openings .card_links {
    background: #E2E7FF;
}
.card_links a, .career_cards .card {
    background: #fff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    box-sizing: border-box;
    color: #555;
    display: block;
    margin: 0;
    padding: 30px 30px 20px;
    text-decoration: none;
    width: 100%;    
}
.card_links a:hover {
  text-decoration:none;
}
.card_header {
    display: flex;
    align-items: center;
   margin-bottom: 15px; 
}

.product_icon, .card_links span.emoji {
    height: 50px;
    width: 50px;
}

.card_links span.emoji {
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 15px;
    text-align: center;
}

.card_links h4 {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 0 10px;
}

.job_openings .card_links h4 {
   margin: 0;
}

.card_links p {
    color: #999;
    font-size: 16px;
    line-height: 24px;
}

.card_links hr {
    background: #eee;
    height: 1px;
    margin: 30px 0 0;
    opacity: 1;
    width: 100%;
}

.card_links span {
    color: #556FFE;
    display: inline-block;
    font-weight: 700;
    margin: 20px auto 0;
    text-align: center;
    width: 100%;
}

.page_cta {
    display: flex;
    justify-content: center;
}

.logo_board {
    margin: 100px 30px;
    text-align: center;
}

.logo_board h2 {
    margin-bottom: 50px;
}

.logo_board p {
    color: #999;
    margin: 30px 0;
}

.logo_board .logos,
.logo_board .logos_wide {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}

.logo_board img {
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

.client_testimonials {
 
    margin: 50px 20px;
}

.testimonial_card {
    background: linear-gradient(192.88deg, rgba(255, 255, 255, 0.15) 57.89%, rgba(85, 111, 254, 0.15) 133.38%), #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    margin: 0 auto;
    padding: 50px;
    max-width: 400px;
}

.testimonial_quote {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}

.testimonial_name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.testimonial_title {
    color: #999;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.testimonial_card .client_info {
    display: flex;
    align-items: center;
    margin: 30px 0 0;
}

.testimonial_card .pro_pic {
    position: relative;
    height: 70px;
    width: 70px;
}

.testimonial_card .client_info .text {
    margin: 0 0 0 15px;
}

.client_photo {
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    width: auto;
}

.client_logo_thumbnail {
    height: 24px;
    position: absolute;
        right: -2px; bottom: -2px;
    width: 24px;
}

.photo_collage {
    margin: 0 20px 50px;
}

.photo_collage img {
    border-radius: 30px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked_photo {
    display:grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
}
.stacked_photo img {
  aspect-ratio: 1 / 1;
}
.blue-bg-headline {
 
}
.blue-bg-headline h1 {
  color:#FFF;
  font-size:64px;
  font-weight:900;
  line-height:1em;
  text-align:center;
  margin:0;
}

@media only screen and (max-width: 768px) {
  .blue-bg-headline h1 {
    font-size:48px;
  }
}
.crowd-headline {
  display:inline-block; 
  position:relative;
  z-index:1;
}
.crowd-headline h1 {
  background:#fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(0,0,0,.1);
  margin: 0;
  padding: 20px 30px;
  display: inline-block;
  color:#556FFC;
  position:relative;
  z-index:9;
  font-size:80px;
  line-height:1.1em;
}
.crowd-headline::before, .crowd-headline::after {
  content: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/crowd-headline-left.svg');
  position: absolute;
  top: -45px;
  left:-45px; 
}
.crowd-headline::after {
   content: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/crowd-headline-right.svg');
  left:inherit;
  right:-45px; 
}
@media only screen and (max-width: 700px) {
  .crowd-headline h1 {
    font-size:45px;
  }
}
.green-accent-headline {
  position:relative;
}
.green-accent-headline h1, .green-accent-headline p {
  position:relative;
  z-index:9;
}
.green-accent-headline::before, .green-accent-headline::after {
  content: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/green-headline-icon-left.svg');
  position: absolute;
  top: -45px;
  left:-45px;
} 
.green-accent-headline::after {
  content: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/green-headline-icon-right.svg');
  left:inherit;
  right:-10px;
}
footer {
    background:#556FFC;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 30px;
}

footer a, footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer_links {
  list-style:none;
  padding:0;
  margin:0;
  clear: both;
  margin-bottom: 20px;
  text-align:left;
}
.footer-links-header {
  font-size: 24px;
  font-weight: 700;
  margin: 0; 
}
footer .social_icons a {
    display: block;
    float: left;
    height: 30px;
    margin: 0 20px 30px 0;
    width: 30px;
}
footer .tagline {
  color: #fff;
  margin:0;
}
footer .social_icons img {
    height: auto;
    width: 100%;
}

.footer_content {
    margin: 50px 0 0;
    text-align: left;
}

.copyright {
  font-size: 8px;
  line-height: 1.5em;
  margin: 15px 0;
  opacity:.5;
}

/*** CONTACT FORM ***/
.fts_contact_form {
  margin: 20px;
  margin-left: 20px;
  width: 100%;
}

.row-fluid [class*="span"].fts_contact_form:first-child {
  margin-left: 20px;
}

.fts_contact_form form {
  background: #eee;
  border-radius: 30px;
  padding: 50px 30px;
  margin: 0 auto;
  max-width: 700px;
}

.fts_contact_form form fieldset {
  max-width: none; 
}

.fts_contact_form label {
  display: none; 
}

.fts_contact_form form fieldset.form-columns-2 .hs-form-field,
.fts_contact_form form fieldset.form-columns-1 .hs-form-field {
    width: 100%;
    float: none;
    padding: 0 0 20px;
}

.fts_contact_form form fieldset.form-columns-2 .input,
.fts_contact_form form fieldset.form-columns-1 .input{
    margin-right: 0;
}

.fts_contact_form .form-columns-2 {
 display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.fts_contact_form .form-columns-2 input {
  margin: 0;
}

.fts_contact_form form fieldset.form-columns-1 .hs-input {
 width: 100%; 
}

.fts_contact_form input::placeholder,
.fts_contact_form select:invalid,
.fts_contact_form textarea::placeholder{
  color: #999;
}

.fts_contact_form input,
.fts_contact_form select,
.fts_contact_form textarea {
  background: #FFFFFF;
  opacity: 0.85;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 15px 20px;
  width: 100%;
}

.fts_contact_form input:focus,
.fts_contact_form select:focus,
.fts_contact_form textarea:focus {
  outline: none;
  border: 1px solid #556FFE;
  box-shadow: inset 0px 0px 8px rgba(85, 111, 254, 0.3);
}

.fts_contact_form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox=\"0 0 40 40\" height=\"100%\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\"><path d=\"M5.58 8.178L.842 12.917l18.905 18.904 19.411-19.41-4.043-4.044-14.911 14.912L5.58 8.178z\" fill=\"DarkGray\"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px top 50%, 0px 0px;
    background-size: 15px, 100%; 
}

.fts_contact_form textarea {
    min-height: 150px;
    padding: 20px;
}

.fts_contact_form input[type="submit"] {
 background: #556FFE;
  box-shadow: 0px 0px 30px rgba(85, 111, 254, 0.15), 0px 1px 15px rgba(85, 111, 254, 0.15);
  border-radius: 38px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 0 auto;
  padding: 20px 50px;
  text-align: center;
  width: auto;
  transition: box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
  -webkit-appearance: none;
}

.fts_contact_form input[type="submit"]:hover {
    box-shadow: 0px 0px 30px rgba(85, 111, 254, 0.2), 0px 1px 15px rgba(85, 111, 254, 0.3);
    transform:translatey(-2px);
}

.fts_contact_form ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.fts_contact_form .hs-error-msg {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  margin: 0 10px;
}

.fts_contact_form .submitted-message {
    background: #eee;
    border-radius: 30px;
    margin: 20px auto;
    padding: 100px;
    min-height: 400px;
    text-align: center;
    max-width: 700px; 
}

.fts_contact_form .submitted-message p {
    margin: 0 auto;
    max-width: 400px;
}

/*** PRODUCT PAGES **/

.product_hero {
    background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/products/Product-Bean.svg') bottom right no-repeat, linear-gradient(1.75deg, #556FFE -239.2%, #FFFFFF 74.93%);
    background-size: 370px 260px, cover;
    border-radius: 0px 0px 75px 75px;
    padding: 50px 30px;
}

.product_hero.light_blue {
    background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/products/Product-Bean-light-blue.svg') bottom right no-repeat, linear-gradient(0deg, #448AFF -327.51%, #FFFFFF 72.87%);
    background-size: 370px 260px, cover;
}

.product_hero.green {
    background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/products/Product-Bean-green.svg') bottom right no-repeat, linear-gradient(22.75deg, #CCCCCC -179.4%, #FFFFFF 46.85%);
    background-size: 370px 260px, cover;
}

.product_title {
    display: flex;
    align-items: center;
}

.product_title img {
    height: 30px;
    width: 30px;
    margin: 0 10px 0 0;
}

.product_title h1 {
    margin: 0;
}

.product_content {
    margin: 50px 30px 100px;
}

.product_content img {
    max-width: 100%;
}

.key_features {
    margin: 100px 30px;
}

.key_features h3 {
    font-size: 18px;
    margin: 0 0 30px;
}

.feature_item {
    background: linear-gradient(63.21deg, #EEEEEE 3.51%, #FFFFFF 114.49%);
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-gap: 30px;
    margin: 0 0 20px;
    padding: 40px;
}

.feature_item .emoji {
    font-size: 36px;
    line-height: 36px;
}

.feature_item h4  {
    margin: 0 0 10px;
}

.feature_item p {
    color: #999;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}

.product_links {
    margin: 100px 30px;
}

.product_links h3 {
    font-size: 18px;
    margin: 0 0 20px;
}

.product_links a {
    background: #E3EDFF;
    border-radius: 25px;
    color: #556FFE;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 42px;
    margin: 0 10px 10px 0;
    padding: 4px 20px;
    text-decoration: none;
    transition: background 0.2s ease-in, box-shadow 0.2s ease-in;
}

.product_links a:hover {
    background: #E2E7FF;
    box-shadow: 0px 2px 15px rgba(85, 111, 254, 0.1);
  font-weight: 700;
  color: #556FFE;
}
footer .container {
      list-style: none;
}
/* MEDIUM SCREENS */
@media only screen and (min-width: 700px) {
        
    .hero {
        background-position: 100% 120%;
        padding: 50px 30px 0;
        height: 500px;
        position: relative;
    } 
    
    .hero.light-blue, .hero.dark-blue {
        background-position: 100% 120%; 
    }
  
    .industry_page .hero {
        padding: 30px 30px 0;
    }
    
    .headline {
        max-width: 80%;
    }
        
    .subhead {
        width: 55%;
    }
    
    .hero_image {
        height: 400px;
        width: 60%;
        position: absolute;
            right: 0; bottom: 0;
    }

    .hero_image img {
            bottom: -10%; right: -20%;
        height: 110%;
        width: 120%;
    }
    
    .hero_secondary {
        display: flex;
        text-align: left;
        margin: 0 auto;
        max-width: 600px;
    }

    .small_image {
        flex: 1 0 auto;
        margin: 0;
    }
    
    hr {
        margin: 0 auto;
        max-width: 600px;
    }
    
    .highlight {
        display: grid;
        grid-gap: 30px;
        grid-template-columns: 1fr 2fr;
        align-items: center;
    }
    
    .highlight .copy {
        order: 2;
    }
    
    .highlight .illustration {
        order: 1;
    }
    
    .page_intro {
        margin: 100px auto;
        max-width: 500px;
        text-align: center;
    }
    
    .featured_clients p {
        margin: 0 auto 30px;
        max-width: 500px;
        text-align: center;
    }
    
    .whoosh {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/featured-clients/fanthreesixty-featured-clients-bg-100.svg');
        background-size: 100% 100%;
        padding: 60px 50px 50px;
    }
    
    .client_logos {
        justify-content: center;
        max-width: 1000px;
    }

    .client_logos img {
        flex-basis: auto;
        height: 60px;
			  margin: 10px;
        width: 150px;
    }
    
    .testimonial_card {
        padding: 100px;
        max-width: 580px;
    }

    .testimonial_quote {
        font-size: 24px;
        line-height: 36px;
    }
    
    .testimonial_card .client_info {
        margin: 50px 0 0;
    }
    
    .testimonial_card .client_info .text {
        margin: 0 0 0 20px;
    }
    
    .testimonial_card .pro_pic {
        height: 100px;
        width: 100px;
    }
  
    .client_logo_thumbnail {
    height: 36px;
    width: 36px;
      right: -4px; bottom: -4px;
  }
  
    .testimonial_name {
        font-size: 21px;
    }
    
    .testimonial_title {
        font-size: 16px;
    }
    
    .product_callouts h3,
    .job_openings h3 {
        font-size: 36px;
        line-height: 48px;
        margin: 0 auto 100px;
        max-width: 700px;
        text-align: center;
    }
  
    .job_openings h3 {
      font-size: 24px;
      margin: 0 auto 30px; 
  }
    
    .card_links .card_container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin: 0 auto;
    }
    .career_cards .card_container {
      display:flex;
      justify-content: center;
      flex-wrap:wrap;
    }
    .card_links a, .career_cards .card {
        display: grid;
    }
    .card_links .card_cta {
        align-self: end;
    }
    
    .logo_board {
        margin: 100px 50px;
    }
    
    .logo_board .logos,
    .logo_board .logos_wide {
        grid-gap: 50px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin: 0 auto;
        max-width: 600px;
    }
    
    .photo_collage {
        display: grid;
        grid-template-columns: 3fr 1fr;
        grid-gap: 30px;
        margin: 0 auto 100px;
        max-width: 1000px;
    }

    .photo_collage img {
        border-radius: 30px;
        width: 100%;
    }

    .stacked_photo {
        grid-template-columns: 1fr;
    }
    
    .product_hero .container {
        max-width: 700px;
    }
    
    .product_title img {
        height: 50px;
        width: 50px; 
        margin: 0 10px 0 0;
    }
    
    .product_content {
        margin: 0 auto 100px;
        max-width: 700px;
    }
    
    .key_features h3 {
        text-align: center;
    }
    
    .feature_boxes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin: 0 auto;
        max-width: 1000px;
    }
    
    .feature_item {
        margin: 0;
    }
    
    .product_links {
        margin: 100px auto;
        max-width: 1000px;
        text-align: center;
    }
  
    .row-fluid [class*="span"].fts_contact_form:first-child {
        margin-left: 0;
    }
  
    .fts_contact_form {
      background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/fanthreesixty-products-background.svg') no-repeat;
        background-size: 100% 70%;
      background-position: center;
      margin: 0 20px;
  }
  
    .fts_contact_form form {
        padding: 50px;
      }
  
    .fts_contact_form form fieldset.form-columns-2 .hs-form-field,
    .fts_contact_form form fieldset.form-columns-1 .hs-form-field {
        padding: 0 0 30px;
    }
  
    .fts_contact_form .form-columns-2 {
        grid-gap: 30px;
    }
  
    .fts_contact_form input,
    .fts_contact_form select,
    .fts_contact_form textarea {
      font-size: 21px;
      padding: 15px 30px;
    }
        
}

/* LARGE SCREENS */
@media only screen and (min-width: 900px) {
    
    body {
        /*** hubspot one ***/
      font: normal 21px/36px proxima-nova, sans-serif;

      /*** local one 
      font: normal 21px/36px "Proxima Nova"; ***/
        padding-top: 90px;
    }
    .blue-headline {
      font-size:56px;   
    }
    .hero {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-urple.svg') bottom right no-repeat, linear-gradient(16.84deg, #EEEEEE -33.03%, #FFFFFF 68.94%);
        background-size: 600px 550px, cover;
        background-position: 100% 130%;
        padding: 70px 50px 0;
        height: 550px;
    }
  
    .hero.light-blue {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-light-blue.svg') bottom right no-repeat, linear-gradient(16.84deg, #EEEEEE -33.03%, #FFFFFF 68.94%);
        background-size: 600px 550px, cover;
        background-position: 100% 130%;
    }

    .hero.dark-blue {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-dark-blue.svg') bottom right no-repeat, linear-gradient(16.84deg, #EEEEEE -33.03%, #FFFFFF 68.94%);
        background-size: 600px 550px, cover;
        background-position: 100% 130%;
    }
    
    h1 {
        font-size: 50px;
        line-height: 58px;
       
    }
    
    h2 {
        font-size: 42px;
        line-height: 50px;
    }
	
	h3 {
        font-size: 36px;
        line-height: 42px;
    }
    
    .page_category {
        font-size: 18px;
        margin: 0;
    }
    
    .hero .subhead {
        margin: 0 0 50px;
    }
    
    .hero_image {
        height: 500px;
        width: 60%;
    }
    
    .hero_secondary {
        padding: 100px 20px;  
        max-width: 700px;
    }

    .small_image {
        height: 150px;
        margin: 0 15px 0 0;
        width: 150px;
    }
  
    .hero_secondary h1 {
        font-size: 36px;
        line-height: 36px;
       
    }

    .hero_secondary p {
        font-size: 21px;
        line-height: 36px;
    }
    
    .highlight {
        grid-gap: 100px;
        grid-template-columns: 1fr 1fr;
        margin: 100px 30px;
    }
    
    .highlight img {
        max-height: 500px;
    }
    
    .page_intro {
        font-size: 24px;
        line-height: 42px;
        margin: 100px auto;
        max-width: 700px;
    }
    
    .featured_clients p {
        font-size: 24px;
        line-height: 42px;
        max-width: 700px;
    }
    
    .whoosh {
        margin: 0 20px;
        padding: 70px 0;
    }
    
    .client_logos img {
        margin: 0;
        height: 90px;
    }
    
    .testimonial_card {
        padding: 100px 150px;
        max-width: 600px;
    }
    .job_openings {
      margin: 0;
  }
    
    .card_links {
        margin: 0 20px;
    }
    
    .job_openings .card_links {
        background-position: center;
        background-size: 100% 70%;
    }
    
    .card_links .card_container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 30px;
    }
  
    .career_cards .card_container {
      display:flex;
      justify-content: center;
      flex-wrap:wrap;
    }
  .career_cards .card {
       width: 30%;
       margin:1%;
    }
    
    .card_links h4, 
    .job_openings .card_links h4 {
        margin: 0;
        font-size: 21px;
    }
  
    .card_links p {
         align-self: start;
    }
  
    .logo_board {
        margin: 100px 50px;
    }
    
    .logo_board p {
        margin: 50px auto 30px;
        max-width: 700px;
    }
    
    .logo_board .logos {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: 700px;
    }
    
    .logo_board .logos_wide {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        max-width: 700px;
    }
    
    .page_cta {
          padding: 100px 0;
    }
  
    .careers .page_cta {
      padding: 0;   
    }
        
    footer {
        margin:0;
        padding: 100px 50px;
    }
    
    footer .container {
      display: flex;
      display: grid;
      grid-template-columns: 24% 16% 16% 22% 22%;
      grid-row-gap: 20px;
      list-style: none;
      padding: 0;
    }
    .footer_links {
      text-align: left;
         
    }
    .footer_links a {
        padding:0;
        border-radius: 13px;
        background: transparent;
        transition: background 0.2s ease-in;
        display: inline-block;
    }
    
    .footer_links a:hover {
        background: #556FFE;
    }
    
    .footer_links .social_icons {
        padding: 0 0 0 15px;
    }
    
    .footer_links .social_icons a {
        padding: 0;
        border-radius: 15px;
    }
    
    .footer_content {
        margin: 0 0 0 0;
        text-align: left;
    }
   
    /*** Product Page ***/
    
    .product_hero {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/products/Product-Bean.svg') bottom right no-repeat, linear-gradient(1.75deg, #556FFE -239.2%, #FFFFFF 74.93%);
        background-size: 570px 320px, cover;
        padding: 70px 50px 100px;
    }
    
    .product_hero.light_blue {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/products/Product-Bean-light-blue.svg') bottom right no-repeat, linear-gradient(0deg, #448AFF -327.51%, #FFFFFF 72.87%);
        background-size: 570px 320px, cover;
    }
    
    .product_hero.green {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/content/products/Product-Bean-green.svg') bottom right no-repeat, linear-gradient(22.75deg, #CCCCCC -179.4%, #FFFFFF 46.85%);
        background-size: 570px 320px, cover;
    }
    
    .product_title {
        margin: 0 0 30px;
    }
    
    .product_title img {
        margin: 0 20px 0 0;
    }
    
    .product_hero h1 {
        font-size: 42px;
        line-height: 50px;
    }
    
    .product_hero p {
        margin: 0;
    }
    
    .product_content {
        margin: 100px auto;
    }
        
    .product_hero p, .product_content p {
        font-size: 24px;
        line-height: 42px;
    }
    
    .product_content .main_screenshot {
        margin: -180px 0 50px;
    }
    
    .key_features {
        margin: 100px 0;
    }
    
    .feature_boxes {
        grid-gap: 30px;
    }
    
    .feature_item h4 {
        font-size: 21px;
        line-height: 30px;
    }
    
    .product_links {
        margin: 100px auto;
    }
        
}

/* X LARGE SCREENS */
@media only screen and (min-width: 1200px) {
    
    .hero {
        background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-urple.svg') bottom right no-repeat, linear-gradient(16.84deg, #EEEEEE -33.03%, #FFFFFF 68.94%);
        background-size: contain, cover;
        padding: 70px 0 0;
        height: 660px;
    }
  
    .hero.light-blue {
          background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-light-blue.svg') bottom right no-repeat, linear-gradient(16.84deg, #EEEEEE -33.03%, #FFFFFF 68.94%);
          background-size: contain, cover;
    }

    .hero.dark-blue {
          background: url('https://4825668.fs1.hubspotusercontent-na1.net/hubfs/4825668/Website%20Images/bean-dark-blue.svg') bottom right no-repeat, linear-gradient(16.84deg, #EEEEEE -33.03%, #FFFFFF 68.94%);
          background-size: contain, cover;
    }
    
    .headline {
        max-width: 70%;
    }
  
    h1 {
        font-size: 60px;
        line-height: 72px;
    }
    
    .hero_image {
        height: 600px;
    }
    
    .whoosh {
        padding: 100px 0;
    }
    
    .logo_board {
        margin: 100px auto;
    }
    
    .logo_board .logos {
        max-width: 900px;
    }
    
    .logo_board .logos_wide {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        max-width: 1000px;
    }
    
    .footer_links {
        flex: 0 1 auto;
    } 
    
    .footer_content {
        flex: 2 1 auto;
    }
        
}

/* XX LARGE SCREENS */
@media only screen and (min-width: 1500px) {
    
    .hero_image {
        height: 700px;
    }
    
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}