@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* OLD PAGES VARIABLES */
/* GLOBAL */
/* MENU */
/* MENU XXL */
/* HOMEPAGE */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/* BUTTON COLOR */
/* INDUSTRIES */
/* RESOURCES */
/* CLIENT */
/* NEW iAdvize MENU */
/* SEARCH */
/* GLOBAL */
/* MENU */
/* HOMEPAGE */
/* TOUR */
/* PARTNER LEAGUE */
/* IBBU */
/* RESOURCE */
/* PRODUCT PAGES */
/*----Engage----*/
/* CARDS */
/* COMPANY */
/* HAMBURGER MENU */
/* OLD PAGES VARIABLES */
/* GLOBAL */
/* MENU */
/* MENU XXL */
/* HOMEPAGE */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/* BUTTON COLOR */
/* INDUSTRIES */
/* RESOURCES */
/* CLIENT */
/* NEW iAdvize MENU */
/* SEARCH */
/* COMPANY */
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
@font-face {
  font-family: 'ss-standard';
  src: url("../fonts/ss-standard.eot");
  src: url("../fonts/ss-standard.eot?#iefix") format("embedded-opentype"), url("../fonts/ss-standard.svg#font-name") format("svg"), url("../fonts/ss-standard.woff") format("woff"), url("../fonts/ss-standard.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'socialico';
  src: url("../fonts/socialico.eot");
  src: url("../fonts/socialico.eot?#iefix") format("embedded-opentype"), url("../fonts/socialico.svg#font-name") format("svg"), url("../fonts/socialico.woff") format("woff"), url("../fonts/socialico.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'proxima';
  src: url("../fonts-2016/proximanova-light-webfont.woff2") format("woff2"), url("../fonts-2016/proximanova-light-webfont.woff") format("woff");
  font-weight: lighter;
  font-style: normal; }
@font-face {
  font-family: 'proxima';
  src: url("../fonts-2016/proximanova-regitalic-webfont.woff2") format("woff2"), url("../fonts-2016/proximanova-regitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic; }
@font-face {
  font-family: 'proxima';
  src: url("../fonts-2016/proximanova-regular-webfont.woff2") format("woff2"), url("../fonts-2016/proximanova-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'proxima';
  src: url("../fonts-2016/proximanova-semibold-webfont.woff2") format("woff2"), url("../fonts-2016/proximanova-semibold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: 'proxima';
  src: url("../fonts-2016/proximanova-bold.woff2") format("woff2"), url("../fonts-2016/proximanova-bold.woff") format("woff");
  font-weight: 900;
  font-style: normal; }
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* BORDER RADIUS */
/* BOX SHADOW */
/* TRANSFORM */
/* FILTER */
/* FLEXBOX */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/***********************

Démo - Product Page - Glossary

***********************/
.global-demo-wrapper .demo-section {
  padding: 50px 0; }
.global-demo-wrapper .cs-demo-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }
.global-demo-wrapper .demo-section-content {
  text-align: left;
  padding-left: 100px; }
  .global-demo-wrapper .demo-section-content p {
    margin-top: 0px; }

/*********************
FOOTER STYLES
*********************/
.footer #footer-right .footer-form .hs-form-field {
  width: 60%;
  display: inline-block;
  vertical-align: middle; }
.footer #footer-right .footer-form .hs_submit {
  width: 25%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 9px;
  margin-left: 10px; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 760px; }

/*********************
HEADER STYLES
*********************/
/*********************
POSTS & CONTENT STYLES
*********************/
.content {
  padding-top: 50px; }
  .content .content-wrap {
    padding-top: 75px;
    padding-bottom: 75px; }
  .content .pages-title {
    font-size: 2em; }
  .content .pages-subtitle {
    font-size: 1.6em;
    max-width: 400px; }
  .content .pages-section-title {
    font-size: 1.5em; }

.idz-card {
  display: inline-block; }
  .idz-card.resource-card {
    width: 240px;
    margin: 40px 10px; }
    .idz-card.resource-card .idz-resource-card-image {
      height: 150px; }
      .idz-card.resource-card .idz-resource-card-image img {
        max-width: 240px;
        height: 140px; }

/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.footer-links ul li {
  /*
  be careful with the depth of your menus.
  it's very rare to have multi-depth menus in
  the footer.
  */ }

/* end .footer-links */
#privacy {
  text-align: center; }
  #privacy .legal-nav {
    display: inline-block; }
    #privacy .legal-nav li {
      margin: 0px 15px 0 0;
      float: left; }

/* Language selector dropdown styles */
#footer-lang {
  display: block;
  line-height: 30px; }
  #footer-lang ul {
    display: inline-block; }
  #footer-lang ul.lang-selector {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin-top: 0;
    margin-left: 20px; }
    #footer-lang ul.lang-selector li {
      width: 100px; }
    #footer-lang ul.lang-selector li.first {
      background-color: #f1f1f1;
      color: #9e9e9e;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px; }
      #footer-lang ul.lang-selector li.first a.lang-ddown {
        padding-left: 10px;
        padding-right: 5px; }
        #footer-lang ul.lang-selector li.first a.lang-ddown::after {
          content: "\25BC";
          display: inline;
          font-size: 10px;
          margin-left: 20px; }
      #footer-lang ul.lang-selector li.first span:first-child {
        height: 5px;
        line-height: 6px;
        padding-left: 0px;
        position: absolute;
        right: -6px;
        top: 4px; }
      #footer-lang ul.lang-selector li.first .lang-dd {
        background-color: #f1f1f1;
        overflow: hidden;
        position: absolute;
        text-align: center;
        top: 15px;
        z-index: 100000;
        visibility: hidden;
        border-top: 1px solid #ababab;
        display: block;
        -webkit-border-radius: 0 0 5px 5px;
        -moz-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px; }
        #footer-lang ul.lang-selector li.first .lang-dd .language {
          clear: both;
          display: block;
          text-align: left;
          text-transform: none; }
          #footer-lang ul.lang-selector li.first .lang-dd .language a {
            color: #9e9e9e; }
            #footer-lang ul.lang-selector li.first .lang-dd .language a:hover {
              color: #ababab; }
      #footer-lang ul.lang-selector li.first:hover > ul.lang-dd {
        top: auto;
        visibility: visible;
        display: block; }
        #footer-lang ul.lang-selector li.first:hover > ul.lang-dd ul {
          visibility: visible;
          display: block; }
    #footer-lang ul.lang-selector a {
      color: #9e9e9e;
      padding: 0 20px; }

.footer-links ul#menu-footer li a:hover {
  color: #5b5f6a; }
.footer-links ul#menu-footer li ul.sub-menu li a:hover {
  color: #5b5f6a; }

/* end .footer-links */
.popin-form-inner {
  width: 500px; }

.popin-form {
  padding: 40px 60px; }

/***********************

Démo - Product Page - Glossary

***********************/
.global-demo-wrapper .demo-section {
  padding: 50px 0; }
.global-demo-wrapper .cs-demo-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }
.global-demo-wrapper .demo-section-content {
  text-align: left;
  padding-left: 100px; }
  .global-demo-wrapper .demo-section-content p {
    margin-top: 0px; }

/* Here's the new CSS to add... */
.logged-in .header {
  margin-top: 32px; }

/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
body {
  line-height: 25px; }

.wrap {
  width: 1000px; }

.desktop-wrap {
  margin: 0 auto;
  width: 1000px; }

/*********************
DIDOMI
*********************/
#didomi-host {
  font-family: "proxima", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  color: #707689 !important; }

#didomi-host #text {
  color: #707689 !important;
  font-size: 20px;
  line-height: 25px; }

.standard-button,
.highlight-button {
  border-radius: 50px !important;
  border: none !important;
  margin: 10px !important;
  font-size: 15px !important;
  line-height: 40px !important; }

.highlight-button {
  text-decoration: none !important;
  color: #FFF !important; }
  .highlight-button:hover {
    background-color: #1dd453 !important; }

.standard-button {
  color: #707689 !important; }

#didomi-host #didomi-notice.shape-box.bottom.left {
  box-shadow: 0 0 30px 0 rgba(38, 40, 45, 0.2);
  border-radius: 7px;
  max-width: 450px; }

/*********************
Content Style
*********************/
#content {
  margin-top: 1.5em; }

.content {
  padding-top: 50px;
  text-align: left;
  font-size: 1em; }
  .content.no-sub-menu {
    padding-top: 120px; }
  .content .pages-section-title {
    font-size: 1.75em;
    text-align: left; }
  .content .pages-title {
    max-width: 800px; }
  .content .product-text {
    text-align: left;
    margin-right: 0;
    margin-left: 0; }
  .content .content-wrap {
    padding-top: 100px;
    padding-bottom: 100px; }
    .content .content-wrap.no-padding {
      padding-top: 0px; }
  .content .pages-oversized-image {
    max-height: none;
    max-width: none;
    margin: 0px auto; }
    .content .pages-oversized-image.none-oversized {
      max-width: 50vw; }
    .content .pages-oversized-image.left-oversized {
      float: right;
      margin-bottom: 0px; }
  .content .vertical-align-section {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
    .content .vertical-align-section.desktop-reversed {
      -webkit-flex-direction: row-reverse;
      flex-direction: row-reverse; }
  .content .content-desc-inner {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto; }
  .content .pages-image-no-max {
    max-height: none;
    max-width: none; }

.hide-mobile {
  display: block; }

.hide-desktop {
  display: none; }

/* iAdvize Cards */
.idz-card {
  display: inline-block; }
  .idz-card.resource-card {
    width: 300px;
    margin: 40px 20px; }
    .idz-card.resource-card .idz-resource-card-image {
      height: 200px; }
      .idz-card.resource-card .idz-resource-card-image img {
        max-width: 300px;
        height: 200px; }

/*********************
FOOTER STYLES
*********************/
.footer {
  text-align: left;
  padding: 50px; }
  .footer h2 {
    font-weight: bold;
    font-size: 1.3em; }
  .footer #footer-left #footer-lb {
    display: block; }
  .footer #footer-left .footer-about-image {
    width: 100px;
    float: left; }
  .footer #footer-left .footer-about-text {
    width: calc(100% - 110px);
    float: left; }
    .footer #footer-left .footer-about-text p {
      padding: 0 15px;
      margin: 0px; }
  .footer #footer-left .footer-title-about,
  .footer #footer-left .footer-about-text {
    display: block; }
  .footer #footer-right {
    border-top: 0px; }
    .footer #footer-right #footer-rt {
      display: block; }
    .footer #footer-right .footer-form {
      margin-right: 0;
      margin-left: 0;
      padding-right: 30px; }
      .footer #footer-right .footer-form .hs-form-field {
        width: 60%;
        float: left; }
      .footer #footer-right .footer-form .hs_submit {
        width: 25%;
        float: left;
        margin-top: 19px; }

#footer-lang-container {
  display: block; }

#footer-legal {
  border-top: 1px solid #f1f1f1;
  padding: 10px; }
  #footer-legal #footer-logo-gartner {
    float: right; }

#privacy {
  text-align: center;
  float: left; }
  #privacy .legal-nav {
    display: inline-block; }
    #privacy .legal-nav li {
      margin: 0px 15px 0 0;
      float: left; }

/* Language selector dropdown styles */
#footer-lang {
  display: block;
  line-height: 30px; }
  #footer-lang ul {
    display: inline-block; }
  #footer-lang ul.lang-selector {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin-top: 0;
    margin-left: 20px; }
    #footer-lang ul.lang-selector li {
      width: 100px; }
    #footer-lang ul.lang-selector li.first {
      background-color: #f1f1f1;
      color: #9e9e9e;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px; }
      #footer-lang ul.lang-selector li.first a.lang-ddown {
        padding-left: 10px;
        padding-right: 5px; }
        #footer-lang ul.lang-selector li.first a.lang-ddown::after {
          content: "\25BC";
          display: inline;
          font-size: 10px;
          margin-left: 20px; }
      #footer-lang ul.lang-selector li.first span:first-child {
        height: 5px;
        line-height: 6px;
        padding-left: 0px;
        position: absolute;
        right: -6px;
        top: 4px; }
      #footer-lang ul.lang-selector li.first .lang-dd {
        background-color: #f1f1f1;
        overflow: hidden;
        position: absolute;
        text-align: center;
        top: 15px;
        z-index: 100000;
        visibility: hidden;
        border-top: 1px solid #ababab;
        display: block;
        -webkit-border-radius: 0 0 5px 5px;
        -moz-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px; }
        #footer-lang ul.lang-selector li.first .lang-dd .language {
          clear: both;
          display: block;
          text-align: left;
          text-transform: none; }
          #footer-lang ul.lang-selector li.first .lang-dd .language a {
            color: #9e9e9e; }
            #footer-lang ul.lang-selector li.first .lang-dd .language a:hover {
              color: #ababab; }
      #footer-lang ul.lang-selector li.first:hover > ul.lang-dd {
        top: auto;
        visibility: visible;
        display: block; }
        #footer-lang ul.lang-selector li.first:hover > ul.lang-dd ul {
          visibility: visible;
          display: block; }
    #footer-lang ul.lang-selector a {
      color: #9e9e9e;
      padding: 0 20px; }

.footer-links ul#menu-footer li {
  float: left;
  margin-right: 30px; }
  .footer-links ul#menu-footer li a {
    font-weight: bold;
    font-size: 1.3em;
    color: #555b64; }
    .footer-links ul#menu-footer li a:hover {
      color: #5b5f6a; }
  .footer-links ul#menu-footer li ul.sub-menu {
    display: block; }
    .footer-links ul#menu-footer li ul.sub-menu li {
      float: none; }
      .footer-links ul#menu-footer li ul.sub-menu li a:hover {
        color: #5b5f6a; }

/* end .footer-links */
/***********************

Démo - Product Page - Glossary

***********************/
.global-demo-wrapper .demo-section {
  padding: 75px 0;
  margin-bottom: 0px !important; }

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
.lte-ie9 .animation-first {
  display: block; }
  .lte-ie9 .animation-first .speech-bubble {
    opacity: 1; }

.lte-ie9 .tour-content-wrapper img {
  opacity: 1; }

/*# sourceMappingURL=ie.css.map */
