﻿/* IE 10+ */
/* this makes the site too wide - horizontal scroll issue #7
.flush {
    margin-left: -15px;
    margin-right: -15px;
}
*/
.max-width {
    margin: 0 auto;
    max-width: 1200px;
}

@media (min-width: 992px) {
    .transparent {
        opacity: 0;
    }
}


/* From Bootstrao v4.0 */

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
  }
  button {
    border-radius: 0;
  }
  .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
  }
  .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  
  .blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
  }
  /*
  .blockquote-footer::before {
    content: "\2014 \00A0";
  }
  */
  
 
  .form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    /*font-size: 1.1em;*/
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .btn:hover, .btn:focus {
    text-decoration: none;
  }
  
  .btn:focus, .btn.focus {
    outline: 0;
    /*box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
  }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
  }  

  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
  }
  
  .carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
  }
  
  .carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
  }
  
  .carousel-indicators .active {
    background-color: #fff;
  }

  .d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  
  .d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  
.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  
  .flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  
  .flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  
  .flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  
  .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  
  .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  
  .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  
  .justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  
  .justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  
  .justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  
  .justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  
  .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  
  .align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  
  .align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  
  .align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  
  .align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  
  .align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  
  .align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  
  .align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  
  .align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  
  .align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  
  .align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  
  .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  
  .align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  
  .align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  
  .align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  
  .align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  
  .align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  
  .align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.pull-right {
    justify-self:flex-end;
}
/* end bootstrap 4.0 */
.align-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.font--light {
    font-family: 'Lato Light';
}

.font--bold {
    font-family: 'Lato Bold';
}

.font--highlight {
    color: #67418C;
}

.font--highlight-2 {
    color: #0e6ba5;
}

.font--upper {
    text-transform: uppercase;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 30px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-120 {
    padding-top: 120px;
}

.no-pad {
    padding-left: 0px;
    padding-right: 0px;
}

.contact-form {
    background: rgba(17, 24, 38, 0.95);
    color: #fff;
    font-family: 'Lato Bold';
    font-size: 16px;
    opacity: 0;
    padding: 80px;
    position: fixed;
    height: 100%;
    width: 80%;
    right: -100%;
    top: 80px;
    transition: all 500ms ease-in-out;
    z-index: 4;
}

.contact-form.active {
    opacity: 1;
    right: 0;
}

.contact-form__close {
    background: none;
    border: none;
    outline: none;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 30px;
}

.contact-form__close:hover {
    cursor: pointer;
}

.fixed-bg {
    -ms-flex-align: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*display: -ms-flexbox;
    display: flex;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 80%;
    overflow: hidden;
    position: relative;
    padding: 4rem 0;
    justify-content: center;
}

.fixed-bg-np {
    -ms-flex-align: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*min-height: 80%; move this somewhere else*/
    overflow: hidden;
    position: relative;
}

.fixed-bg-np-nf {
    -ms-flex-align: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*min-height: 80%; move this somewhere else*/
    overflow: hidden;
    position: relative;
}

@media all and (min-width:601px) {
    .fixed-bg-np-nf>.container-fluid {
        margin-left: 4%;
        margin-right: 4%;
    }
}

.h-80 {
    /*add this to everywhere .fixed-bg-np needs to be taller*/
    min-height: 80%;
}


.fixed-bg--page {
    -ms-flex-align: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*display: -ms-flexbox;
    display: flex;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 80%;
    overflow: hidden;
    position: relative;
}

.fixed-bg--inner {
    min-height: 50%;
}

.fixed-bg--inner.bg-1 {
    min-height: 30%;
}

.fixed-bg--inner.bg-operate {
    min-height: 50%;
}

.fixed-bg--inner.bg-1 .section-content--inner {
    padding: 0;
}

@media (min-width: 992px) {
    .fixed-bg--inner.bg-1 .section-content--inner {
        padding-top: 50px;
    }
}

.white {
    color: #fff;
}

.core-1 {
    color: #0077C8;
}

.core-2 {
    color: #00A9CE;
}

.core-3 {
    color: #78BE20;
}

.accent-1 {
    color: #C4D600;
}

.accent-2 {
    color: #D86018;
}

.accent-3 {
    color: #9D2235;
}

.accent-4 {
    color: #693C5E;
}

.bright-1 {
    color: #EEDC00;
}

.bright-2 {
    color: #EA7600;
}

.bright-3 {
    color: #DA291C;
}

.medium-1 {
    color: #00629B;
}

.medium-2 {
    color: #5B7F95;
}

.medium-3 {
    color: #003057;
}

.medium-4 {
    color: #007FA3;
}

.medium-5 {
    color: #4C8C2B;
}

.medium-6 {
    color: #00A499;
}

.dark-1 {
    color: #333333;
}

.dark-1 {
    color: #004851;
}

.dark-1 {
    color: #046A38;
}

.dark-1 {
    color: #00594F;
}

.bg-1 {
    background-image: url("../_Images/1920x1080_AO_Banner.jpg");
}

.bg-2 {
    background-image: url("../_Images/mid-bg.jpg");
}

.bg-3 {
    background-image: url("../_Images/purp-bg.jpg");
}

.bg-4 {
    background-image: url("../_Images/generic_header_01.jpg");
}

.bg-5 {
    background-image: url("../_Images/mid-bg.jpg");
}

.bg-6 {
    background-color: #5F3C6C;
    /*#67418C*/
    color: #FFF;
}

.bg-6 .vertical-list li,
.bg-6 .vertical-list a,
.bg-6 .vertical-list div.p {
    color: #FFF;
}

.bg-6 .vertical-list div.p:active,
.bg-6 .vertical-list div.p:hover,
.bg-6 a:hover,
.bg-6 a:active {
    color: #EA7600;
}

.bg-6 .vertical-list div.p:active,
.bg-6 .vertical-list div.p:focus,
.bg-6 .vertical-list div.p:hover {
    border-bottom: thin solid #EA7600;
    margin-right: -65%;
    transition: all 400ms ease-in;
}

.bg-6 .vertical-list div.p:hover,
.bg-6 .vertical-list div.p:active,
.bg-6 .vertical-list div.p:focus {
    cursor: pointer;
}

.bg-6 .popover {
    border: thin solid #EA7600;
}

.bg-7 {
    background-color: #00A9CE;
    color: #FFF;
}

.bg-7 .cyp .disabled,
.bg-7 .cyp .disabled li,
.bg-7 .cyp .disabled a,
.bg-7 .vl-column-title .disabled {
    /*Choose Your Path navigation elements*/
    color: #80d4e7;
}

.bg-7 .cyp a.selected {
    color: #003057;
}

.bg-7 .vertical-list li,
.bg-7 .vertical-list a,
.bg-7 .vertical-list div.p,
.bg-7 .vertical-list div.adv {
    color: #FFF;
}

.bg-7 .vertical-list a:active,
.bg-7 .vertical-list a:hover,
.bg-7 .vertical-list div.p:active,
.bg-7 .vertical-list div.p:hover,
.bg-7 .vertical-list div.adv:active,
.bg-7 .vertical-list div.adv:hover {
    color: #003057;
}

.bg-7 .vertical-list div.p:active,
.bg-7 .vertical-list div.p:focus,
.bg-7 .vertical-list div.p:hover {
    border-bottom: thin solid #003057;
    margin-right: -65%;
    transition: all 400ms ease-in;
}

.bg-7 .vertical-list div.adv:active,
.bg-7 .vertical-list div.adv:focus,
.bg-7 .vertical-list div.adv:hover {
    /* border-bottom: thin solid #67418C;*/
    transition: all 400ms ease-in;
}

.bg-7 .vertical-list div.adv:hover,
.bg-7 .vertical-list div.adv:active,
.bg-7 .vertical-list div.adv:focus,
.bg-7 .vertical-list div.p:hover,
.bg-7 .vertical-list div.p:active,
.bg-7 .vertical-list div.p:focus {
    cursor: pointer;
}

.bg-7 .popover {
    border: thin solid #003057;
}

.bg-8 {
    background-color: #174942;
    color: #fff;
}

.bg-8 .vertical-list li,
.bg-8 .vertical-list a,
.bg-8 .vertical-list div.p,
.bg-8 .vertical-list div.adv {
    color: #FFF;
}

.bg-8 .vertical-list a:active,
.bg-8 .vertical-list a:hover,
.bg-8 .vertical-list div.p:active,
.bg-8 .vertical-list div.p:hover,
.bg-8 .vertical-list div.adv:active,
.bg-8 .vertical-list div.adv:hover {
    color: #EA7600;
}

.bg-8 .vertical-list div.p:active,
.bg-8 .vertical-list div.p:focus,
.bg-8 .vertical-list div.p:hover {
    border-bottom: thin solid #EA7600;
    margin-right: -65%;
    transition: all 400ms ease-in;
}

.bg-8 .vertical-list div.adv:active,
.bg-8 .vertical-list div.adv:focus,
.bg-8 .vertical-list div.adv:hover {
    /* border-bottom: thin solid #67418C;*/
    transition: all 400ms ease-in;
}

.bg-8 .vertical-list div.adv:hover,
.bg-8 .vertical-list div.adv:active,
.bg-8 .vertical-list div.adv:focus,
.bg-8 .vertical-list div.p:hover,
.bg-8 .vertical-list div.p:active,
.bg-8 .vertical-list div.p:focus {
    cursor: pointer;
}

.bg-8 .popover {
    border: thin solid #EA7600;
}

.bg-9 {
    background-color: #CAE3E0;
    color: #000;
}

.bg-10 {
    background-color: #e1e1e1;
    color: #000;
}

.bg-11 {
    background-color: #78be20;
    color: #fff;
}

.bg-12 {
    background-color: #587f95;
    /*88, 127, 149 */
    color: #FFF;
}

.text-12 {
    color: #587f95;
    /*88, 127, 149 */
}

.bg-12 .vertical-list li,
.bg-12 .vertical-list a,
.bg-12 .vertical-list div.p {
    color: #FFF;
}

.bg-12 .vertical-list div.p:active,
.bg-12 .vertical-list div.p:hover,
.bg-12 a:hover,
.bg-12 a:active {
    color: #EA7600;
}

.bg-12 .vertical-list div.p:active,
.bg-12 .vertical-list div.p:focus,
.bg-12 .vertical-list div.p:hover {
    border-bottom: thin solid #EA7600;
    margin-right: -65%;
    transition: all 400ms ease-in;
}

.bg-12 .vertical-list div.p:hover,
.bg-12 .vertical-list div.p:active,
.bg-12 .vertical-list div.p:focus {
    cursor: pointer;
}

.bg-12 .popover {
    border: thin solid #EA7600;
}

.bg-12.app-tabs {
    background-color: #e1e1e1;
}

@media all and (max-width:991px) {
    .bg-12.app-tabs .app-tabs__tab {
        background-color: #111826;
    }
}

@media all and (min-width: 992px) {
    .bg-12.app-tabs .app-tabs__tab {
        background-color: transparent;
        border: 2px solid #587f95;
        border-top: 5px solid #587f95;
        border-bottom: 5px solid #587f95;
    }

    .bg-12.app-tabs .app-tabs__tab:first-child {
        border-left: 5px solid #587f95;
    }

    .bg-12.app-tabs .app-tabs__tab:last-child {
        border-right: 5px solid #587f95;
    }
}

.bg-12.app-tabs .app-tabs__tab:hover {
    background-color: rgba(88, 127, 149, 1);
}

.bg-12.app-tabs .app-tabs__tab.active {
    background-color: rgba(88, 127, 149, 1);
}

@media all and (min-width: 992px) {

    .bg-12.app-tabs .app-tabs__tab svg,
    .bg-12.app-tabs .app-tabs__tab img.svg,
    .bg-12.app-tabs .app-tabs__tab svg path,
    .bg-12.app-tabs .app-tabs__tab svg polygon,
    .bg-12.app-tabs .app-tabs__tab svg rect,
    .bg-12.app-tabs .app-tabs__tab svg line,
    .bg-12.app-tabs .app-tabs__tab svg circle {
        fill: rgba(88, 127, 149, 1);
        stroke: rgba(88, 127, 149, 1);
        transition: all 300ms ease-in-out;
    }

    .bg-12.app-tabs .app-tabs__tab.active svg path,
    .bg-12.app-tabs .app-tabs__tab:hover svg path,
    .bg-12.app-tabs .app-tabs__tab.active svg polygon,
    .bg-12.app-tabs .app-tabs__tab:hover svg polygon,
    .bg-12.app-tabs .app-tabs__tab.active svg rect,
    .bg-12.app-tabs .app-tabs__tab:hover svg rect,
    .bg-12.app-tabs .app-tabs__tab.active svg line,
    .bg-12.app-tabs .app-tabs__tab:hover svg line,
    .bg-12.app-tabs .app-tabs__tab.active svg circle,
    .bg-12.app-tabs .app-tabs__tab:hover svg circle {
        fill: #fff;
        stroke: #fff;
        transition: all 300ms ease-in-out;
    }
}

@media all and (max-width: 992px) {

    .bg-12.app-tabs svg,
    .bg-12.app-tabs img.svg,
    .bg-12.app-tabs svg path,
    .bg-12.app-tabs svg polygon,
    .bg-12.app-tabs svg rect,
    .bg-12.app-tabs svg line {
        fill: #fff;
        stroke: #fff;
        color: currentColor;
    }
}

.bg-12.app-tabs .app-tabs__tab.active svg path,
.bg-12.app-tabs .app-tabs__tab:hover svg path,
.bg-12.app-tabs .app-tabs__tab.active svg polygon,
.bg-12.app-tabs .app-tabs__tab:hover svg polygon,
.bg-12.app-tabs .app-tabs__tab.active svg rect,
.bg-12.app-tabs .app-tabs__tab:hover svg rect,
.bg-12.app-tabs .app-tabs__tab.active svg line,
.bg-12.app-tabs .app-tabs__tab:hover svg line,
.bg-12.app-tabs .app-tabs__tab.active svg circle,
.bg-12.app-tabs .app-tabs__tab:hover svg circle {
    fill: #fff;
    stroke: #fff;
}


.bg-12.app-tabs .app-tabs__tab h3 {
    color: rgba(88, 127, 149, 1);
}

.bg-12.app-tabs .app-tabs__tab h2 {
    color: rgba(88, 127, 149, 1);
}

.bg-12.app-tabs .app-tabs__tab:hover h3,
.bg-12.app-tabs .app-tabs__tab.active h3 {
    color: #fff;
    transition: all 300ms ease-in;
}

.bg-12.app-tabs .app-tabs__tab:hover h2,
.bg-12.app-tabs .app-tabs__tab.active h2 {
    color: #fff;
    transition: all 300ms ease-in;
}

@media all and (max-width:992px) {
    .bg-12.app-tabs .app-tabs__tab h2 {
        color: #fff;
    }
}

.bg-12.content_tiles .card {
    color: #000;
}

.bg-12.content_tiles .card a:hover,
.bg-12.content_tiles .card a:active {
    color: #fff;
}

.bg-13 {
    background-color: #bfddf1;
    color: #000;
}

.bg-14 {
    background-color: #ddeec7;
    color: #000;
}

.bg-15 {
    background-color: #bfe8e5;
    color: #000;
}

.bg-16 {
    background-color: #d5dfe4;
    color: #000;
}

.bg-17 {
    background-color: #d7ceda;
    color: #000;
}

.bg-18 {
    background-color: #dcdddd;
    color: #000;
}

.bg-trans {
    background-color: transparent;
}

.bg-operate {
    background-image: url("../_Images/BG_image_operate_L2.png");
    /*must be .png to work with background color*/
}

.bg-design {
    background-image: url("../_Images/BGimage_design.png");
    /*must be .png to work with background color*/
}

.bg-maintain {
    background-image: url("https://www.aspentech.cn/newstyle/_Images/BG_image_maintain_l-1.png");
    /*must be .png to work with background color*/
}

.bg-tank {
    background-image: url("../_Images/tank_wireframe.png");
    /*must be .png to work with background color*/
}

.bg-ltBlue {
    background-color: #CCE6F8;
    /*light blue*/
}

.content_tiles .card .card-img-top.pbg-1,
/*HYSYS*/
.pbg-1 {
    background-color: #20A586;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-2,
/*Aspen Plus*/
.pbg-2 {
    background-color: #3f80b2;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-3,
/*Aspen Fidelis Reliability*/
.pbg-3 {
    background-color: #472c51;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-4,
/*Aspen ProMV*/
.pbg-4 {
    background-color: #FF5800;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-5,
/*Aspen Mtell*/
.pbg-5 {
    background-color: #93a000;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-6,
/*ABE*/
.pbg-6 {
    background-color: #80d4e7;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-7,
/*Aspen OnLine*/
.pbg-7 {
    background-color: #005a96;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-8,
/*Economic Evaluation*/
.pbg-8 {
    background-color: #78be20;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-9,
/*EDR*/
.pbg-9 {
    background-color: #ffbb00;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-10,
/*Energy Analyzer/Utilities*/
.pbg-10 {
    background-color: #007a73;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-11,
/*Aspen Flare System Analyzer*/
.pbg-11 {
    background-color: #ff0e00;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-12,
/*Licensing*/
.pbg-12 {
    background-color: #86888b;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-13,
/*Asset Analytics*/
.pbg-13 {
    background-color: #002f57;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-14,
/*AFO*/
.pbg-14 {
    background-color: #bf4100;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-15,
/*APC*/
.pbg-15 {
    background-color: #3c5e0f;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-16,
/*PSC*/
.pbg-16 {
    background-color: #a31f15;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-17,
/*MES*/
.pbg-17 {
    background-color: #694c99;
    color: #fff;
}

.content_tiles .card .card-img-top.pbg-18,
/*SCM*/
.pbg-18 {
    background-color: #00514c;
    color: #fff;
}

@media all and (min-width:768px) {
    .wide .container-fluid {
        margin: 0 4%;
    }
}

.wide .heading__divider {
    margin-top: 4em;
}

.section-content {
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    padding: 30px;
    position: relative;
    top: 50%;
}

@media (min-width: 1200px) {
    .section-content {
        width: 55%;
        max-width: 800px;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -ms-flex-positive: 0;
        -ms-flex-negative: 1;
        padding: 4%;
    }
}


.section-content>img {
    max-width: 250px;
}

@media (min-width: 768px) {
    .section-content>img {
        max-width: 600px;
    }
}

.section-content h2,
.section-content h3 {
    color: #fff;
    margin-top: 0;
}

.section-content h2 {
    font-size: 4.375rem;
    width: 90%;
}


.section-content p {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    width: 100%;
    font-size: 2.5rem;
}

/*@media (min-width: 992px) {
    .section-content p {
        font-size: 2.5rem;
    }
}*/

.section-content .content__icon {
    margin-bottom: 20px;
}

/*
@media (min-width: 992px) {
    .section-content--alt {
        width: 800px;
    }
}*/

@media (min-width: 992px) {
    .section-content--inner {
        width: 992px;
    }
}

.section-content--inner h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 50px 15px 40px;
    text-shadow: 2px 2px 8px #0b4a75;
}

@media (min-width: 992px) {
    .section-content--inner h1 {
        font-size: 4vw;
        padding: 0;
    }
}

.section-content--offset {
    width: 100%;
}

@media (min-width: 992px) {
    .section-content--offset {
        -ms-flex-item-align: end;
        align-self: flex-end;
        width: 90%;
    }
}

.section-content--offset h2 {
    text-transform: none;
}

.section-content--banner {
    /*background: #fff;*/
    /*border-top: 5px solid #0e6ba5;*/
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.section-content--banner h2 {
    margin: 50px 0;
    font-size: 4.375rem;
    text-align: center;
    text-transform: uppercase;
}

.animate {
    opacity: 0;
    transition: all 1000ms ease;
}

.animate-left {
    transform: translateX(100vw);
}

.animate-right {
    transform: translateX(-100vw);
}

.animate-up {
    transform: translateY(50px);
}

.animate-down {
    transform: translateY(-50px);
}

.in-view .animate-left,
.in-view .animate-right {
    transform: translateX(0);
}

.in-view .animate-down {
    transform: translateY(0);
}

.in-view .animate-up {
    transform: translateY(0);
}

.in-view .animate {
    opacity: 1;
}

.content__icon {
    width: 110px;
    min-height: 30px;
}

.modal iframe {
    max-width: 100%;
}

.modal .modal-body {
    padding-top: 30px;
}

.modal .close {
    font-size: 28px;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
}

.btn {
    border: thin solid #fff;
    border-radius: 0;
    font-family: 'Lato Bold';
    transition: all 300ms ease-in-out;
}

.btn:hover {
    background-color: #fff;
    border-color: transparent;
    color: #003057;
}

.btn-default {
    border: thin solid #ccc;
}

.btn-CTA {
    border: thin solid #fff;
    padding: 1em 2em;
    color: #fff;
    background-color: transparent;
}

.btn-CTA:hover {
    background-color: #587f95;
    color: #fff;
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
    border-radius: 0;
}

/*
.info-tabs {
   background-color: #0e6ba5;
    border-top: 5px solid #5faad8;
}
*/
.icon-title {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 0 40px 0;
}

.icon-title img {
    width: 50px;
}

@media (min-width: 768px) {
    .icon-title img {
        width: 70px;
    }
}

.icon-title h1 {
    color: #fff;
    font-family: 'Lato Bold';
    font-size: 26px;
    margin: 0 0 0 15px;
}

@media (min-width: 768px) {
    .icon-title h1 {
        font-size: 40px;
    }
}

.info-tabs__tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

@media all and (min-width: 992px) {
    .info-tabs__tabs {
        position: static;
    }
}

.info-tabs__tabs>a {
    width: 33.33%;
}

@media (min-width: 992px) {
    .info-tabs__tabs>a {
        width: auto;
    }
}

.info-tabs__tabs--inner {
    position: static;
}

.info-tabs__tab {
    background-color: #111826;
    /*border: thin solid rgba(255, 255, 255, 0.8);*/
    height: 100%;
    /*padding: 7.5px 15px;*/
    transition: all 300ms ease-in-out;
    text-align: center;
    max-width: 250px;
}

@media (min-width: 992px) {
    .info-tabs__tab {
        background-color: transparent;
        border-bottom: none;
        height: auto;
        margin: 0 7.5px;
        padding: 0 15px 120px;
        min-width: 225px;
    }
}

@media (max-width: 992px) {
    .info-tabs__tab {
        width: 25%;
    }

}

.info-tabs__tab:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.info-tabs__tab.active {
    background-color: rgba(0, 0, 0, 0.5);
}

.info-tabs__tab h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.homeFeature .info-tabs__tab h2,
.info-tabs__tab h2 {
    color: #fff;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-bottom: thin solid #fff;
}

@media all and (max-width:992px) {

    .homeFeature .info-tabs__tab h2,
    .info-tabs__tab h2 {
        color: #fff;
        margin-bottom: 10px;
        font-size: 1.8rem;
        border-bottom: thin solid #fff;
    }
}

.info-tabs__tab .content__icon {
    width: 30px;
}

@media (min-width: 992px) {
    .info-tabs__tab .content__icon {
        margin-bottom: 7.5px;
        width: 40px;
        display: inline-block;
    }
}

.info-tabs__tab .content__icon--inner {
    max-width: 60px;
}

@media (min-width: 992px) {
    .info-tabs__tab .content__icon--inner {
        margin-bottom: 40px;
    }
}

.info-tabs__tab--inner {
    padding: 15px 15px 0px;
}

@media (min-width: 992px) {
    .info-tabs__tab--inner {
        padding: 15px 100px 15px;
    }
}

@media (min-width: 1200px) {
    .info-tabs__tab--inner {
        margin: 0 20px;
        padding: 15px 115px 15px;
    }
}

/*application tabs */

.app-tabs:not(.initiative) .app-tabs__tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.app-tabs:not(.initiative) .app-tabs svg {
    width: 30px;
    height: 30px;
}

@media (min-width: 992px) {
    .app-tabs:not(.initiative) .app-tabs__tabs {
        position: static;
    }
}

.app-tabs:not(.initiative) .app-tabs__tabs>a {
    width: 25%;
}

@media (min-width: 992px) {
    .app-tabs:not(.initiative) .app-tabs__tabs>a {
        width: auto;
        padding: 0 15px;
    }
}

.appFeature.fixed-bg-np {
    margin-top: -5px;
}

.app-tabs__tabs--inner {
    position: static;
}

.app-tabs:not(.initiative) .app-tabs__tab {
    max-height: 250px;
    padding: 10px;
    transition: all 300ms ease-in-out;
    text-align: center;
    max-width: 250px;
    width: 25%;
}

@media (min-width: 992px) {
    .app-tabs:not(.initiative) .app-tabs__tab {
        height: auto;
        margin: 0;
        padding: 0;
    }
}

.app-tabs__tab h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.app-tabs__tab h2 {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 2.2rem;
}

@media all and (max-width:992px) {
    .app-tabs:not(.initiative) .app-tabs__tab h2 {
        margin-bottom: 10px;
        font-size: 1.3rem;
        padding: 5px;
    }
}

.app-tabs__tab .content__icon {
    width: 60px;
}

@media (min-width: 992px) {
    .app-tabs__tab .content__icon {
        margin-top: 15px;
        width: 100px;
        height: 100px;
        display: inline-block;
    }
}

.app-tabs__tab .content__icon--inner {
    max-width: 60px;
}

@media (min-width: 992px) {
    .app-tabs__tab .content__icon--inner {
        margin-top: 40px;
    }
}

.app-tabs__tab--inner {
    padding: 15px 15px 0px;
}

@media (min-width: 992px) {
    .app-tabs__tab--inner {
        padding: 15px 100px 15px;
    }
}

@media (min-width: 1200px) {
    .app-tabs__tab--inner {
        margin: 0 20px;
        padding: 15px 115px 15px;
    }
}

a.app-feature.btn-block {
    height: 100%;
    text-decoration: none;
}

/*end application tabs */
.info-content__wrapper .info-content__wrapper1 .info-content {
    margin: 0 auto;
    overflow: initial;
}

.info-content__wrapper,
.download_content__wrapper,
.product-content__wrapper,
.gallery_wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
    margin: 0;
    /*margin: 0 -15px;*/
    padding: 70px 1% 1% 1%;

}

.info-content__wrapper1 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
    margin: 0;
    /*margin: 0 -15px;*/
    padding: 20px 1% 1% 1%;

}

.gallery_wrapper {
    padding-top: 60px;
}

.info-content__wrapper .info-content__wrapper1 {
    display: none;
    /* makes info tabs hide on homepage 20180529*/
}

.info-content__wrapper.open
.info-content__wrapper1.open  {
    display: block;
}

@media all and (max-width:768px) {

    .info-content__wrapper,
	.info-content__wrapper1,
    .download_content__wrapper,
    .product-content__wrapper {
        padding: 30px 10px;
    }

    .gallery_wrapper {
        padding: 30px 0;
    }
}

.info-content__wrapper.homeFeature,
.info-content__wrapper1.homeFeature {
    padding: 60px 15px 0 15px;
}

@media all and (min-width:1200px) {
    .homeFeature .info-content {
        max-width: 80%;
    }
}

.homeFeature .info-content {

    padding-bottom: 60px;
}

.info-content__wrapper--inner,
.download_content__wrapper--inner {
    display: block;
}


/*.info-content__wrapper--inner h2 {
        text-align: center;
    }*/


/*.info-content__wrapper {
    border-bottom: 20px #D86018 solid;
}*/

.info-content {
    /*margin: 0 -15px;*/
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 992px) {
    .info-content {
        margin: 0;
        overflow: initial;
    }
}

.info-content__side-links {
    background: #67418C;
    margin: 0 0;
}

@media (min-width: 768px) {

    /*JC 992px*/
    .info-content__side-links {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 70px;
        position: absolute;
        right: -30px;
    }
}

@media (min-width: 1024px) {
    .info-content__side-links {
        right: -50px;
    }
}

@media (min-width: 1200px) {
    .info-content__side-links {
        right: -100px;
    }
}

.info-content__side-links a {
    border-right: thin solid #fff;
    color: #fff;
    display: inline-block;
    font-family: 'Lato Bold';
    padding: 5px 10px;
}

@media (min-width: 768px) {

    /*JC 992px*/
    .info-content__side-links a {
        border-right: none;
        border-bottom: thin solid #fff;
    }
}

@media (min-width: 992px) {
    .info-content__side-links a:last-of-type {
        border-bottom: none;
    }
}

.info-content__side-links a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.info-content__side-links--inner {
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 3;
}

@media (min-width: 768px) {

    /*JC 992px*/
    .info-content__side-links--inner {
        right: 15px;
        top: 50%;
        width: auto;
    }
}

.info-content__intro {
    padding: 30px;
}

@media (min-width: 992px) {
    .info-content__intro {
        padding: 0 65px 65px;
    }
}

.info-content__intro p {
    font-size: 16px;
}

@media (min-width: 992px) {
    .info-content__intro p {
        font-size: 2.5rem;
    }
}

.info-content__cards {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-content__banner {
    background: #78be20;
    color: #fff;
    font-size: 20px;
    padding: 20px;
    position: relative;
    text-align: center;
    z-index: 1;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .info-content__banner {
        font-size: 3.125rem;
    }
}

.info-content__banner::before {
    background: #78be20;
    content: "";
    position: absolute;
    top: 0;
    left: -500%;
    height: 100%;
    width: 1000%;
    z-index: -1;
}

.info-content__banner * {
    display: inline-block;
}

.info-content__banner .btn {
    margin-left: 10px;
    /*color:#fff;*/
}

.info-card {
    background: #fff;
    border: thin solid #333333;
    margin-bottom: 20px;
    padding-bottom: 30px;
    position: relative;
    width: 100%;
}

@media (min-width: 480px) {
    .info-card {
        margin-right: 12px;
        width: calc(50% - 6px);
    }
}

@media (min-width: 992px) {
    .info-card {
        width: calc(33.33% - 8px);
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    .info-card:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .info-card:nth-child(3n) {
        margin-right: 0;
    }
}

.info-card p {
    font-family: 'Lato Light';
    font-size: 1.4rem;
    padding: 0 15px;
}

.info-card p:first-of-type {
    font-family: 'Lato';
    font-size: 1.875rem;
}

.info-card__image {
    margin-bottom: 20px;
}

.info-card__type,
.info-card__category {
    color: #fff;
    font-family: 'Lato Bold';
    padding: 3px 10px 3px 20px;
    position: absolute;
    z-index: 1;
}

.info-card__type {
    background: #0e6ba5;
    left: 0;
    top: 10px;
}

.info-card__category {
    background: #4c8d1f;
    right: 0;
    top: 30%;
}

.info-card__action {
    border: thin solid #333333;
    color: #777;
    padding: 1px 5px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    transition: all 300ms ease-in-out;
}

.info-card__action:hover {
    background: #777;
    color: #fff;
}

.overlay {
    position: absolute;
    color: #FFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.mask {
    position: absolute;
    color: #FFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transition: .5s ease;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    z-index: -1;
}

.card>.overlay.in,
.card>.overlay:hover,
.card:hover>.overlay.in,
.card:hover>.overlay,
.card>.mask.in,
.card>.mask:hover {
    opacity: 1;
    z-index: 2;
}

.close_social {
    position: absolute;
    margin: 1rem;
    right: 0;
    top: 0;
    color: #fff;
    font-size: 3rem;
}

.social {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -25%);
    -ms-transform: translate(-50%, -25%);
    width: 60%;
}

.end-tile .social {
    width: 96%;
}

@media all and (min-width:601px) {
    .end-tile .social {
        width: auto;
    }
}

.related {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: auto;
    transform: translate(-50%, -25%);
    -ms-transform: translate(-50%, -25%);
}

.social__bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2px;
    margin: 10px 0 0 0;
}

.social__icon {
    flex: 0 1 auto;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    margin: 1%;
    opacity: 1;
    width: 25%;
    max-height: 45px;
}

.social2 .social__icon {
    max-height:25%;
}
.social__icon path {
    fill: #ccc;
}

.social__icon:hover path {
    fill: #fff;
}

.social__icon:first-child {
    margin-left: 0;
}

.social__icon:last-child {
    margin-right: 0;
}

.social__icon img {
    color: #000;
}

.blog-social-bar .social__icon path {
    fill: #0077C8
}

.blog-social-bar .social__icon:hover path {
    fill: #666;
}

.btn-social {
    background: rgba(76, 141, 31, 1.0) !important;
    border: none;
    color: #fff;
}

.btn-feature,
.btn-feature:focus {
    color: #fff;
}

.btn-transp,
.btn-transp:focus {
    background-color: transparent;
    color: #fff;
    border: thin solid #fff;
    padding: .6em;
}

.btn-transp:hover {
    background-color: #000;
    color: #fff;
    border: thin solid #fff;
}

.btn-transp-b {
    background-color: transparent;
    color: #000;
    border: thin solid #000;
}

.btn-transp-b:hover {
    background-color: #fff;
    color: #000;
}

.btn-dark,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover {
    background-color: #000;
    color: #fff;
}

.btn-feature:hover {
    color: #333 !important;
}

.btn-primary {
    background-color: #0077C8;
    border: thin solid transparent;
    color: #fff;
}

.btn-primary:hover {
    border: thin solid transparent;
    color: #333;
    background-color: #0077C8;
}

.tw {
    background-image: url("../_Images/twitter-icon.svg");
}

.fb {
    background-image: url("../_Images/facebook-icon.svg");
}

.lk {
    background-image: url("../_Images/linkedin-icon.svg");
}

.sh {
    background-image: url("../_Images/share.svg");
}

.video-container {
    display: block;
    padding: 0;
    margin: 0;
    border-top: 30px #78be20 solid;
}

.video-container>iframe {
    width: 100%;
}

@media (min-width: 992px) {
    .video-container>iframe {
        min-height: 500px;
        width: 100%;
        /*background-color: #000;*/
    }
}

.video-container-md {
    display: block;
    padding: 120px 0;
}

.video-container-md>iframe {
    width: 100%;
}

@media all and (min-width: 992px) {
    .video-container-md>iframe {
        min-height: 500px;
        width: 100%;
        /*background-color: #000;*/
    }
}

.video-container-md h1 {
    color: #fff;
}

.video-container-md p {
    font-size: 2.5rem;
}

.featured-clients {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
}

.featured-clients__quote-wrapper {
    max-width: 750px;
    padding: 40px 40px 60px;
}

@media (min-width: 992px) {
    .featured-clients__quote-wrapper {
        padding: 80px 40px 60px;
    }
}

.featured-clients__quote {
    color: #000;
    font-family: "Lato BoldItalic";
    font-size: 28px;
    line-height: 1.1;
    position: relative;
}

@media (min-width: 768px) {
    .featured-clients__quote {
        font-size: 40px;
    }
}

.featured-clients__quote::before,
.featured-clients__quote::after {
    color: #0e6ba5;
    content: "\201c";
    font-size: 86px;
    font-family: sans-serif;
    position: absolute;
}

.featured-clients__quote::before {
    left: -35px;
    top: -10px;
}

.featured-clients__quote::after {
    margin-left: 6px;
    margin-top: -6px;
}

.featured-clients__quote__author {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    float: right;
}

.featured-clients__quote__author>* {
    color: #777;
    font-size: 18px;
    line-height: 1.2;
}

.featured-clients__logos {
    margin-bottom: 40px;
    padding: 0 60px;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 992px) {
    .featured-clients__logos {
        margin: 40px 0;
        padding: 0 80px;
    }
}

.featured-clients__logo {
    width: 100%;
}

.featured-clients__logo img {
    max-width: 100px;
}

.slick-prev,
.slick-next {
    background: none;
    border: none;
    color: transparent;
    font-family: 'Glyphicons Halflings';
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    color: #000;
    cursor: pointer;
}

/*
.slick-slide {
    padding: 0 10px;
}
*/
.slick-prev {
    left: 0px;
}

.slick-prev::before {
    color: #777;
    content: "\e257";
    font-size: 48px;
}

.slick-next {
    right: 0px;
}

.slick-next::before {
    color: #777;
    content: "\e258";
    font-size: 48px;
    margin-left: -10px;
}
#vertical_carousel .slick-next::before {
    margin-left:0px;
}

/* END MAIN.CSS */

.leadership {
    margin: 30px 0px;
}

.leadership h2 {
    color: #000;
}

.anchor:before {
    margin-top: 150px;
    display: none;
    position: relative;
    z-index: -1;
}

.v-line {
    background: #FFF;
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    height: 2px;
    width: 50px;
    transform: translate(-50%, -50%) rotate(90deg);
    background: #e0e0e0;
    width: 1px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    min-height: 50px;
}


.cyp .disabled,
.cyp .disabled li,
.cyp .disabled a {
    /*Choose Your Path navigation elements*/
    color: #999;
}

.cyp .disabled a:hover,
.cyp .disabled a:active {
    color: #999;
    /*cursor: not-allowed;*/
}

.cyp a.selected {
    color: #0077C8;
    font-weight: bold;
}

.cyp a [disabled="disabled"] {
    /*pointer-events: none;*/
    /* this is enough for non-IE browsers */
    color: #999;
    /* IE */
}


/* IE - disable hover effects */

.cyp a[disabled="disabled"]:hover {
    cursor: default;
    color: #999;
    text-decoration: none;
}


@media all and (max-width:992px) {

    .navbar-nav .open .dropdown-menu>li>a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 5px;
    }
}

@media all and (min-width: 992px) {
    ul.half-height {
        -moz-column-count: 3;
        -moz-column-gap: 20px;
        -webkit-column-count: 3;
        -webkit-column-gap: 20px;
        column-count: 3;
        column-gap: 20px;
    }

    ul.half-height li {
        display: block;
    }

    ul.half-height li a {
        display: inline-block;
    }
}

.navbar-inverse {
    background-color: #003057;
}


/*menu toggle*/

.navbar-toggle {
    background-color: transparent !important;
    border: none;
    padding: 0;
    margin: 0;
}

.navbar-toggle:hover {
    cursor: pointer;
}

.navbar-toggle.active .icon-bar {
    opacity: 0;
}

.navbar-toggle.active .icon-bar:nth-child(2) {
    display: block;
    opacity: 1;
    transform: translateY(11px) rotate(45deg);
}

.navbar-toggle.active .icon-bar:last-of-type {
    display: block;
    opacity: 1;
    transform: translateY(-11px) rotate(-45deg);
}

.navbar-toggle .icon-bar {
    background-color: #fff;
    border-radius: 2px;
    height: 5px;
    opacity: 1;
    width: 30px;
    transition: all 300ms ease-in-out;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 6px;
}


/*END menu toggle*/

.v-bar {
    background: #e0e0e0;
    width: 2px;
    content: "";
    display: table-cell;
    position: relative;
    bottom: 0;
    margin: 0 15px;
    padding: 0;
}

.logo-container {
    width: 220px;
    display: table-cell;
    position: relative;
}

@media all and (min-width:1240px) {
    .logo-container::after {
        background: #e0e0e0;
        width: 1px;
        content: "";
        position: absolute;
        bottom: 0;
        top: 0px;
        right: 0px;
    }
}

.tagline-container {
    color: #FFF;
    font-family: 'Merriweather Light';
    font-size: 1.5rem;
    display: table-cell;
    position: relative;
    padding-left: 15px;
    vertical-align: middle;
}

@media screen and (max-width:1240px) {
    .tagline-container {
        display: none;
        position: relative;
    }
}

.navSearch {
    position: relative;
    z-index: 100;
}

.search-box {
    color: #333333;
}

.search-icon {
    color: #FFF;
    font-size: 2rem;
    padding-left: 10px;
}

.input-group-addon {
    background-color: transparent;
    border: 0;
    padding: 0;
}

.content_icon {
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 10px;
}

.content_icon path,
.content_icon polygon {
    fill: #000;
}

.h_logo {
    width: 180px;
    display: inline-block;
    height: 40px;
}

@media all and (min-width: 992px) {
    .h_logo {
        width: 200px;
        height: 40px;
    }
}

.h_logo path {
    fill: #fff;
}

.logo__text {
    font-family: 'Swift Regular Italic';
    font-size: 1.475rem;
    color: #FFF;
    margin-left: 23px;
}

@media screen and (min-width: 1200px) {
    .logo__text {
        font-size: 1.875rem;
    }
}

.icon-bar--vertical {
    background-color: #fff;
    border-radius: 2px;
    float: right;
    height: 2px;
    margin-top: 6px;
    width: 50px;
    transform: translateX(28px) rotate(90deg);
    transform-origin: left;
}

.search-toggle {
    float: right;
    transform: translate(10px, 18px);
    width: 25px;
}

.search-toggle:hover {
    cursor: pointer;
}

.sb-search {
    position: relative;
    /*display: inline-block;
    margin-top: 10px;*/
    width: 0;
    min-width: 45px;
    height: 45px;
    right: -2px;
    float: right;
    margin: 0;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 20;
    -webkit-transition: width 450ms ease-in-out;
    -moz-transition: width 450ms ease-in-out;
    transition: width 450ms ease-in-out;
    font-size: 1em;
    border-right: thin solid #fff;
}

.searchBox {
    display: table-cell;
    position: relative;
    width: 45px;
    -webkit-transition: width 450ms ease-in-out;
    -moz-transition: width 450ms ease-in-out;
    transition: width 450ms ease-in-out;

}

@media all and (min-width:992px) {
    .searchBox {
        margin-top: 20px;
    }
}

.searchBox.active {
    width: 20%;
}


@media all and (max-width:992px) {
    .searchBox {
        width: 100%;
        float: left;
    }

    .searchBox.active {
        width: 100%;
    }
}

.sb-search-input {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 45px;
    margin: 0;
    z-index: -10;
    padding-left: 5px;
    font-family: inherit;
    font-size: 20px;
    color: #fff;
}


.sb-search-input::-webkit-input-placeholder {
    color: #fff;
}

.sb-search-input:-moz-placeholder {
    color: #fff;
}

.sb-search-input::-moz-placeholder {
    color: #fff;
}

.sb-search-input:-ms-input-placeholder {
    color: #fff;
}

.sb-icon-search,
.sb-search-submit {
    width: 50px;
    height: 45px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
}

.sb-search-submit {
    background: #fff;
    /* IE needs this */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 8 */
    filter: alpha(opacity=0);
    /* IE 5-7 */
    opacity: 0;
    color: transparent;
    border: none;
    outline: none;
    z-index: -1;
}

.sb-icon-search {
    color: #fff;
    background-color: transparent;
    z-index: 20;
    font-size: 1.1em;
    /*speak: none;*/
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}


/* Open state */

.sb-search.sb-search-open,
.no-js .sb-search {
    width: 18em;
    border-bottom: thin solid #fff;
    -webkit-transition: width 450ms ease-in-out;
    -moz-transition: width 450ms ease-in-out;
    transition: width 450ms ease-in-out;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
    background-color: transparent;
    color: #fff;
    z-index: 21;
}

.sb-search.sb-search .sb-icon-search:hover,
.sb-search.sb-search-open .sb-icon-search:hover,
.no-js .sb-search .sb-icon-search:hover {
    color: #0077C8;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
    z-index: 90;
}


/* END NAVIGATION */


/* FOOTER */

footer.AT_footer {
    background-color: #000;
    color: white;
}

footer.AT_footer .footer-copyright {
    background-color: #000;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
}

.footer.AT_footer ul.flinks:last-child {
    margin-bottom: 60px;
}

footer.AT_footer .navbar-brand {
    margin-top: 45px;
    height: 85px;
    text-align: center;
}

footer.AT_footer .footer-copyright p {
    margin: 10px;
    color: #ccc;
}


/*footer.AT_footer .f_logo {
    text-align: center;
}*/

.f_logo {
    max-width: 300px;
    max-height: 50px;
    text-align: center;
}

footer.AT_footer ul {
    font-size: 1.6rem;
    list-style-type: none;
    padding-left: 0;
    line-height: 1.7;
}

footer.AT_footer ul.list-inline {
    font-size: 2rem;
}

footer.AT_footer ul.list-inline li {
    padding: 10px 15px 10px 0;
}

footer.AT_footer ul.list-inline>li>a {
    color: #0077C8;
}

footer.AT_footer ul.list-inline>li>a:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    footer .AT_footer ul.list-inline li {
        padding: 5px;
        display: block;
    }
}

footer.AT_footer h5 {
    font-size: 2rem;
    color: white;
    font-weight: bold;
    margin-top: 30px;
}

footer.AT_footer h2 a {
    font-size: 50px;
    text-align: center;
    color: #fff;
}

footer.AT_footer a {
    color: #ccc;
    text-decoration: none;
}

footer.AT_footer a:hover,
footer.AT_footer a:focus {
    text-decoration: none;
    color: #0077C8;
}

footer.AT_footer .social-networks {
    text-align: left;
}

@media (max-width:768px) {
    footer.AT_footer .social-networks {
        text-align: center;
    }
}

@media (min-width:76ppx) {
    footer.AT_footer .social-networks {
        text-align: right;
    }
}

footer.AT_footer .social-networks a {
    font-size: 32px;
    color: #f9f9f9;
    padding: 10px;
}

footer.AT_footer .social-networks a:hover {
    text-decoration: none;
}

footer.AT_footer .social__icon {
    height: 4rem;
    width: 4rem;
}

.social_icon {
    height: 32px;
    width: 32px;
}

@media screen and (max-width: 767px) {
    footer.AT_footer {
        text-align: center;
    }
}

.title {
    /*   border-bottom: thin solid black;*/
    margin-bottom: 20px;
}


.mixed-messaging-module {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-content: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: row;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}


.mixed-messaging-module__container {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    margin: 20px;
    width: 75%;
    align-self: flex-start;
}

.download__container {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-content: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: flex-start;
    flex-direction: row;

}

@media all and (max-width: 767px) {
    .download__container {
        flex-direction: column;
    }

    .download_content__wrapper {
        padding: 60px 0;
    }

    .download_image__container {
        padding-bottom: 2rem;
    }
}

.download_content__container {
    position: relative;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;

}

@media all and (min-width:768px) {
    .download_content__container {
        margin: 2rem;
        width: 70%;
        -webkit-box-flex: 1;
        box-flex: 1;
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .download_image__container {
        margin: 2rem;
        max-width: 30%;
        /*add something like this for the smaller screen sizes*/
    }

    .download_content__wrapper--inner {
        margin: 2% 5%;
    }
}

.content__title {
    font-size: 2.8rem;
    font-family: "Lato";
}

.event__title,
.press__title {
    color: #000;
    margin-bottom: 1rem;
}

.sub-event__container {
    margin: 3rem 0;
}

h3.sub-event__title {
    margin-bottom: 1rem;
}

.main-event__details,
.main-event__desc,
.event__date,
.event__venue,
.event__address {
    font-size: 2.0rem;
}

.sub-event__details,
.sub-event__desc {
    font-size: 2.0rem;
    margin-bottom: .5rem;
}

.download_content__container .event__date,
.download_content__container .event__venue,
.download_content__container .event__address,
.download_content__container .content__title,
.download_content__container .content__text,
.download_content__container .content__text {
    margin: 0 1rem 1.2rem;
}


.download_content__container .content__text,
.download_content__container .content__text p {
    font-size: 2.0rem;
    font-family: "Lato Light";
    color: #000;

}

.download_content__container .content__text {
    top: 50%;

}

.social2 .social__icon svg path {
    fill: #0078c8;
    stroke: #0078c8;
}

.social2 .social__icon:hover svg path {
    fill: #747679;
    stroke: #747679;
}

.mixed-messaging-module .content__text {
    font-size: 2.4rem;
    font-family: "Lato Light";
    color: #000;
    top: 50%;
    margin: 60px 15px;
}

.mixed-messaging-module li {
    font-size: 1.8rem;
}

.content__text__container {
    background-color: #FFF;
    width: 50%;
}

.industry_hero__container,
.product_hero__container,
.product_heroCTA__container {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-content: center;
    -ms-flex-align: center;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    flex-basis: 0%;

}


.solution_hero__container {
    min-height: 20%;
}

.industry_hero,
.product_hero,
.solution_hero {
    position: relative;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero .container-fluid {
    width: 100%;
}

.heroCTA__container, 
.hero_text__container {
    position: relative;
    color: #fff;
    min-height: 200px;
    padding: 5rem 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.solution_hero .hero_text__container {
    min-height: 100px;
}

@media all and (max-width:768px) {
    .hero_text__container {
        -ms-flex-direction: column;
        flex-direction: column;
    }

}

@media all and (max-width:1024px) {

    .product_heroCTA__container,
    .heroCTA__container {
        min-height: auto;
    }
}

@media all and (min-width:768px) {

    .hero_text__container {
        width: 100%;
    }
}

@media all and (max-width:480px) {
    .hero_text__container {
        padding: 30px 0 0 0;
        margin: 1rem;
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .heroCTA__container {
        position: relative;
        color: #fff;
    }

    .product_heroCTA__container {
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        /*display:block;*/
    }
}

.solution_hero {
    text-align: center;
}

.solution_hero ul {
    top: 50%;
}

.industry__subtitle,
.industry__name,
.industry__copy,
.product__name,
.product__copy {
    color: #FFF;
}

.industry__name,
.product__name {
    /*font-size: 5em;*/
    /*text-align: right;
    margin-right: 60px;*/
    font-family: 'Lato Bold';
}

@media all and (max-width:480px) {

    .industry__name,
    .product__name {
        font-size: 2.0em;
        margin: 0;
        /*text-align: left;*/
    }

    .industry__copy,
    .product__copy {
        font-size: 1.8em;
    }
}


.industry__title {
    margin-bottom: 5px;
}

.industry__subtitle {
    font-size: 2.5rem;
    font-family: "Lato";
}

.industry__name li h2 {
    font-family: 'Lato Bold';
    /*display: inline-block;*/
    padding-right: 20px;
}

.solution_hero ul>li.industry,
.solution_hero ul>li.function,
.solution_hero ul>li.role {
    position: relative;
    font-family: 'Lato Bold';
    padding-right: 30px;
    font-size: 3rem;
    color: #fff;
}

div.solution_hero ul li {
    display: inline;
}

@media all and (max-width:768px) {
    div.solution_hero ul li {
        display: block;
        text-align: left;
        border-bottom: thin solid #fff;
    }
}

@media all and (min-width:768px) {

    .solution_hero ul>li.function::before,
    .solution_hero ul>li.role::before {
        background: #e0e0e0;
        width: 2px;
        content: "";
        position: absolute;
        bottom: 0px;
        top: 0px;
        left: -15px;
    }
}


/*.sticky_button {
    top: 106px;
    width: 100%;
    z-index: 1000;
}*/

.sticky_button .btn-row {
    top: 32px;
    margin-top: -32px;
    z-index: 1000;
    justify-content: end;
}


.sticky_button .btn {
    z-index: 100;
    min-width: 125px;
}

.mixedContent__container {
    font-size: 1.8em;
    margin: 60px 0;
}

.productContent__container {
    padding: 3rem;
    margin: 3rem 0;
}

.homeContent__container {
    padding: 0 60px;
}

@media all and (max-width:480px) {
    .mixedContent__container {
        padding: 30px 15px;
        margin: 0;
        font-size: 1.3em;
    }
}

@media all and (max-width:480px) {

    .productContent__container,
    .homeContent__container {
        padding: 0;
        margin: 0;
    }
}

.productContent__container h2 {
    text-align: left;
    color: #000;
}

.productContent__container_head {
    display: flex;
    align-items: flex-start;
    /*position: relative;*/
    padding: 0;
    /*height:50px;*/
    margin-bottom: 2rem;
    flex-direction: column;
    border-bottom: thin solid #000;
}

.productContent__container_head.white {
    border-bottom: thin solid #fff;
}

.productContent__title {
    display: inline-block;
    position: relative;
    font-size: 2.4rem;
    font-weight: normal;
}

.productContent__subtitle {
    display: inline-block;
    font-size: 2.1rem;
    font-family: 'Lato Bold';
    margin-left: 0;
    padding-left: 0;
}

@media all and (min-width:786px) {
    .productContent__container_head {
        flex-direction: row;
        align-items: center;
        font-size: 3.1rem;
    }

    .productContent__title::after {
        background: #000;
        width: 2px;
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 0;
        top: 0px;
        right: -20px;
        min-height: 50px;
    }

    .productContent__subtitle {
        display: inline-block;
        font-size: 3.1rem;
        font-family: 'Lato Bold';
        margin-left: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 768px) {
    .vdivide-a:after {
        background: #e0e0e0;
        width: 1px;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        min-height: 70px;
    }

    .vdivide-b:before {
        background: #e0e0e0;
        width: 1px;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        min-height: 70px;
    }
}

.productContent__container .vdivide-b::before {
    background: #000;
    min-height: 10px;
    left: auto;
}

.vertical-list-container {
    padding: 120px 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    box-orient: vertical;
    box-direction: normal;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vertical-list-title {
    top: 50%;
    font-size: 3.1rem;
}

.vl-column-title {
    font-family: "Lato Bold";
    font-size: 2.4rem;
    display: block;
}

.vl-column-title::before {
    background: #e0e0e0;
    width: 1px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    min-height: 70px;
}

.vl-column {
    display: block;
}

.vl-column::before {
    background: #e0e0e0;
    width: 1px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    min-height: 70px;
}

.vertical-list ul {
    list-style-type: none;
}

.vertical-list li div.p,
.vertical-list li div.adv {
    font-size: 2rem;
    width: 100%;
    padding-right: 30px;
}

.vertical-list li,
.vertical-list div.p,
.vertical-list div.adv {
    border-bottom: thin solid transparent;
}

.content-hover btn {
    color: transparent;
}

.btn-row {
    margin-top: 30px;
    position: relative;
}

.btn-row .btn {
    margin: 0 10px;
}

.list-hover-content>.popover-content {
    padding: 10px;
}

@media all and (max-size:768px) {

    .popover,
    .list-hover-content {
        display: none;
    }
}

.popover,
.list-hover-content {
    background-color: rgba(255, 255, 255, 0.1);
    border: thin solid #EA7600;
    max-width: 300px;
    margin-bottom: 15px;
    padding-bottom: 20px;
    color: #fff;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.popover>.arrow {
    display: none;
}

.popover.right {
    margin-left: 0;
}


/* experimental cards from bootstrap 4.0 */

.card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    box-orient: vertical;
    box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0;
    /*0.25rem*/
}

.btn-more {
    /*border: thin solid #000;*/
    background-color: #0077C8;
    color: #fff;
    border: #0077C8;
}

.btn-more:hover {
    /*border: thin solid #000;*/
    background-color: #ccc;
}

.content-hover,
.vertical-list .popover-content {
    background-color: transparent;
    border: thin solid #EA7600;
    max-width: 300px;
    margin-bottom: 15px;
    padding: 10px;
}

.card-block {
    -webkit-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
    overflow-y: hidden;
    background-color: #fff;
}

@media all and (min-width:601px) {
    .card-block {
        height: 100%;
    }
	.partner-card .card-block{
    height:auto;
}
}

.messaging-tiles .card-block {
    background-color: transparent;
}


.card-title {
    margin-bottom: 0.75rem;
    font-weight: bold;
    line-height: 1.35em;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text {
    margin-bottom: 0;
    font-size: 1.2em;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.25rem;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0;
    /*0.25rem*/
    border-bottom-left-radius: 0;
    /*0.25rem*/
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #f7f7f9;
    border-bottom: thin solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: 0;
    /*calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;*/
}

.card-footer {
    padding: 0.75rem 1.25rem;
    /* background-color: #f7f7f9;
    border-top: thin solid rgba(0, 0, 0, 0.125);*/
}

.card-footer:last-child {
    border-radius: 0;
    /*0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);*/
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-primary {
    background-color: #0077C8;
    border-color: #0077C8;
    color: #fff;
}

.card-primary .card-header,
.card-primary .card-footer {
    background-color: transparent;
}

.card-success {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.card-success .card-header,
.card-success .card-footer {
    background-color: transparent;
}

.card-info {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.card-info .card-header,
.card-info .card-footer {
    background-color: transparent;
}

.card-warning {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.card-warning .card-header,
.card-warning .card-footer {
    background-color: transparent;
}

.card-danger {
    background-color: #d9534f;
    border-color: #d9534f;
}

.card-danger .card-header,
.card-danger .card-footer {
    background-color: transparent;
}

.card-outline-primary {
    background-color: transparent;
    border-color: #0077C8;
}

.card-outline-secondary {
    background-color: transparent;
    border-color: #ccc;
}

.card-outline-info {
    background-color: transparent;
    border-color: #5bc0de;
}

.card-outline-success {
    background-color: transparent;
    border-color: #5cb85c;
}

.card-outline-warning {
    background-color: transparent;
    border-color: #f0ad4e;
}

.card-outline-danger {
    background-color: transparent;
    border-color: #d9534f;
}

.card-inverse {
    color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-header,
.card-inverse .card-footer {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
    color: #fff;
}

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-subtitle,
.card-inverse .card-blockquote .blockquote-footer {
    color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-link:focus,
.card-inverse .card-link:hover {
    color: #fff;
}

.card-blockquote {
    padding: 0;
    margin-bottom: 0;
    border-left: 0;
}

.card-img {
    border-radius: 0;
    /* calc(0.25rem - 1px);*/
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img-top {
    border-top-right-radius: 0;
    /* calc(0.25rem - 1px);*/
    border-top-left-radius: 0;
    /* calc(0.25rem - 1px);*/
    flex-shrink: 0;
    max-height: 205px;
}

.card-img-bottom {
    border-bottom-right-radius: 0;
    /* calc(0.25rem - 1px);*/
    border-bottom-left-radius: 0;
}



.card-deck .card:not(.slick-slide) {
    margin-right: 1%;
    margin-bottom: 3em;
}

.card-border .card {
  border: thin solid #adafb1;
}

@media all and (min-width: 576px) {
    .card-deck {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        align-content: center;
        justify-content: flex-start;

    }

    .card-deck .card {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        box-flex: 1;
        box-orient: vertical;
        box-direction: normal;
        -webkit-box-flex: 1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .homeFeature .card-deck {
        justify-content: center;
    }
}

.row.card-deck,
.card-deck.slick-initialized.slick-slider {
    justify-content: space-evenly;
}



.productContent__container .content-tile {
    background-color: #fff;
    color: #333333;
    cursor: pointer;
}

.homeFeature .content-tile {
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
}

@media all and (max-width:600px) {

    .productContent__container .content-tile,
    .content-tile__button,
    .content_tiles .card,
    .card-plain .card,
    .card.end-tile {
        -webkit-flex: 0 1 95%;
        -ms-flex: 0 1 95%;
        flex: 0 1 95%;
    }

    .card.end-tile {
        height: 56px;
        max-height: 56px;
    }

    .expanding_tiles .card {
        -webkit-flex: 1 1 350px;
        -ms-flex: 1 1 350px;
        flex: 1 1 350px;
    }
}

@media all and (min-width:601px) {

    .productContent__container .content-tile,
    .content-tile__button,
    .content_tiles .card,
    .card-plain .card,
    .card.end-tile {
        -webkit-flex: 0 1 48%;
        -ms-flex: 0 1 48%;
        flex: 0 1 48%;
    }

}

@media all and (min-width:1024px) {

    /*  .productContent__container .content-tile,
    .content-tile__button,
    .content_tiles .card,
    .card-plain .card,
    .card.end-tile	{
        -webkit-flex: 0 1 33%;
        -ms-flex: 0 1 33%;
        flex: 0 1 33%;
    }*/
    .card-plain .card-title,
    .content_tiles .card:not(.event-tile, .product) .card-title {
        min-height: 4em;
    }
}

@media all and (min-width:1200px) {

    .content-tile__button,
    .content_tiles .card,
    .card-plain .card,
    .card.end-tile {
        -webkit-flex: 0 1 24%;
        -ms-flex: 0 1 24%;
        flex: 0 1 24%;
        max-width: 24%;
    }

    .productContent__container .content-tile {
        -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
        flex: 0 1 45%;
    }
}

.content_tiles .card .card-img-top {
    background-color: #fff;
}

@media all and (min-width:601px) {
    .card.end-tile {
        min-height: 400px;
    }
}

.card.end-tile .card-body {
    align-items: center;
}

@media all and (min-width:601px) {
    .card.end-tile a.btn-primary {
        border: thin solid #FFF;
    }
}

.content_tiles .card.expanding_tiles__card .card-img-top {
    background-color: none;
}

.content_tiles .card.expanding_tiles__card .card-img-top.svg {
    padding: 2em 0;
}

.content_tiles .card.expanding_tiles__card .card-block {
    padding: 0;
}

.content_tiles .card.expanding_tiles__card .card-title {
    text-align: center;
    padding: .5em;
    margin-top: 0;
}

.content_tiles .card.expanding_tiles__card .card-text {
    padding: 0 1em 1em;
    line-height: 1.5em;
}

.card.expanding_tiles__card .card-footer {
    border: 0;
    padding: 0;
    width: 100%;
}

.gallery_wrapper .card.expanding_tiles__card .card-footer {
    margin-top: 2em;
}

.gallery_wrapper .info-content>.card-deck>.card>.card-footer {
    padding-bottom: 3em;
}

.gallery_wrapper .card.expanding_tiles__card.slick-slide {
    /*height: 400px;*/
    min-height: 370px;
}

.gallery_wrapper.card-plain .card-deck>.card:not(.content-tile__button) {
    text-align: center;
    align-content: center;
    min-height: 370px;
}

.gallery_wrapper.card-plain .card-title {
    padding: 1em 0;
    min-height: 40%;
    font-size: 2em;
}

@media all and (max-width:1000px) {
    .gallery_wrapper.card-plain .card-title {
        height: auto;
        min-height: 1em;
        font-size: 1.8em;
        padding: 0.5em 0;
    }

    .gallery_wrapper.card-plain .card .card-text {
        font-size: 1.3em;
    }
}

@media all and (min-width:601px) {
    .gallery_wrapper.card-plain .card:not(.content-tile__button) {
        height: 300px;
        min-height: 300px;
    }
}

.gallery_wrapper.card-plain .card-text {
    font-size: 2.1rem;
}

.product-content__wrapper.primary .card-title,
.gallery_wrapper.primary .card-title {
    color: #587f95;
}

.product-content__wrapper.secondary .card-title,
.gallery_wrapper.secondary .card-title {
    color: #333;
}

@media all and (min-width:768px) {
    .gallery_wrapper .card-item_count {
        margin-bottom: 3em;
        text-align: center;
    }
}

@media all and (min-width:586px) {
    .gallery_wrapper .info-content {
        margin: 0;
    }
}

@media all and (max-width:600px) {
    .card.expanding_tiles__card.slick-slide {
        margin: 10px;
    }
}

@media all and (min-width:586px) {
    .blog.info-content {
        margin: 0;
    }
}

@media all and (min-width:601px) {

    .top_border,
    .tab_container,
    .gallery_wrapper .info-content>.card-deck {
        border-top: thin solid #666;
        padding-top: 2em;
        margin-top: 0;
    }
}

.card-svg {
    background-color: #0077C8;
    /*height: 132px;*/
}

.card-plain .card-svg {
    background-color: #fff;
}

.card-plain .svg.card-img-top,
.productContent__container .content-tile .svg.card-img-top {
    clear: both;
    width: 35%;
    margin: 2.8rem auto 1.5rem;
}
@media all and (max-width:600px) {
    .partner-card .card-block{
        width: 100%!important;
    }
    .partner-card{
       width: 100%!important;
    }
    .card-deck .partner-card{
        border: none!important;
        width: 100%!important;
    }
    .partners-logo{
        margin: 0 22%;
        width: 35%; 
        position: absolute;
    }
    
    .partner-card.expanding_tiles__card{
       width: 100%!important;
    }

    .learn_more_button{
        width: 100%!important;
    }
}
/* Dionne's updates*/
@media all and (max-width:1024px) {

    .card-plain .svg.card-img-top,
    .productContent__container .content-tile .svg.card-img-top {
        width: 55%;
    }
}

.events__container .card.event-tile .svg.card-img-top {
    max-height: 143px;
    width: auto;
}

.content-tile .svg.card-img-top {
    max-height: 132px;
    width: auto;
}

.content_tiles .svg.card-img-top.img-responsive,
.event-tile .svg.card-img-top {
    max-height: 150px;
}

@media all and (min-width:768px) {

    .content_tiles svg.card-img-top,
    .event-tile .svg.card-img-top {
        max-height: 205px;
    }
}

.card.end-tile .card-block {
    background-color: #0077C9;
}

/*
.gallery ul li {
    border-bottom: thin solid #666;
}*/

.gallery .nav-tabs>li,
.gallery .tabs li {
    float: left;
    margin-bottom: 4px;
}

.gallery .nav>li>a,
.gallery .tabs li {
    padding: 0 1.5em;
    color: #000;
}

.gallery .nav-tabs>li>a,
.gallery .tabs li {
    margin-right: 12px;
    line-height: 2.2;
    border: 0;
    border-radius: 0;
}

.gallery .nav-tabs>li.active>a,
.gallery .nav-tabs>li.active>a:hover,
.gallery .nav-tabs>li.active>a:focus,
.gallery .tabs li.active,
.gallery .tabs li.active:hover,
.gallery .tabs li.active:focus {
    color: #000;
    cursor: default;
    background-color: #eee;
    border: 0;
}


.event-tile {
    background-color: #fff;
    color: #333333;
    cursor: pointer;
}

.event-tile {
    -webkit-flex: 0 1 30%;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
}

@media all and (max-width:480px) {
    .event-tile {
        -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active),
(min-width:1024px) {

    /*IE Only tile image height*/
    .content-tile img {
        max-height: 169px;
    }

    .content-tile .svg.card-img-top {
        max-height: 205px;
    }

    /* .event-tile svg {
        height:205px;
        width: auto;        
    } 
    /*.event-tile img {
        max-height: 132px;
    }*/
}



.wide .container-fluid .event-tile .card-img-top {
    min-height: 205px;
}

.blog .event-tile .card-title,
.blog .event-tile .card-text,
.card-text,
.card-title {
    font-size: 2.0rem;
}

.card-text1{
    font-size: 1.8rem;
}
.card-text2{
    font-size: 1.7rem;
}
.blog .event-tile .card-text, .card-text1,card-text2,
.card-text {
    font-family: "Lato Light";
    line-height: 2.4rem;
    padding-top: .6em;
}

.blog .event-tile .card-subtitle {
    font-size: 1.5rem;
}

.messaging-tiles .card-deck {
    justify-content: center;
}

.messaging-tiles .card-deck .card {
    margin: 0;
    padding: 2%;
}

.messaging-tiles.tile1 .card-deck .card {
    -webkit-flex: 0 1 75%;
    -ms-flex: 0 1 75%;
    flex: 0 1 75%;
}

.messaging-tiles.tile2 .card-deck .card {
    -webkit-flex: 0 1 45%;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
}

.messaging-tiles.tile3 .card-deck .card {
    -webkit-flex: 0 1 28%;
    -ms-flex: 0 1 28%;
    flex: 0 1 28%;
}

.messaging-tiles.tile4 .card-deck .card {
    -webkit-flex: 0 1 21%;
    -ms-flex: 0 1 21%;
    flex: 0 1 21%;
}

@media all and (min-width:768px) {
    .messaging-tiles .card-deck .card {
        border-right: thin solid #a6a6a6;
        padding: 1%;
    }

    .messaging-tiles .card-deck .card:last-child {
        border-right: 0;
    }

    .messaging-tiles.tile1 .card-deck .card {
        flex-direction: row;
        -webkit-flex-direction: row;
        align-items: center;
        justify-content: center;
        -webkit-flex: 0 1 75%;
        -ms-flex: 0 1 75%;
        flex: 0 1 75%;
    }

    .messaging-tiles.tile1 .card-deck .card .card-block {
        padding: 0 2%;
        width: 75%;
    }
}

.messaging-tiles.tile1 .card-deck .card .card-img-top:not(.tc_svg) {
    height: auto;
    width: 50%;
    margin: auto;
}

.messaging-tiles.tile1 .card-deck .card .card-block {
    padding: 0 5%;
}

.messaging-tiles.tile2 .card-deck .card .card-img-top:not(.tc_svg),
.messaging-tiles.tile3 .card-deck .card .card-img-top:not(.tc_svg),
.messaging-tiles.tile4 .card-deck .card .card-img-top:not(.tc_svg) {
    height: auto;
    width: 40%;
    margin: auto;
}

@media all and (max-width:576px) {
    .messaging-tiles.tile1 .card-deck .card .card-img-top:not(.tc_svg) {
        height: auto;
        width: 40%;
        margin: auto;
    }
}

.messaging-tiles.top-content .card-deck .card {
    -webkit-flex: 0 1 25%;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
}

@media all and (max-width:768px) {
    .messaging-tiles.top-content .card-deck .card {
        -webkit-flex: 0 1 80%;
        -ms-flex: 0 1 80%;
        flex: 0 1 80%;
    }
}

.messaging-tiles.top-content .card-deck .card .overlay {
    justify-content: center;
}

.messaging-tiles .card-block .lead,
.messaging-tiles .card-block p.lead,
.messaging-tiles .card-block .lead p {
    font-family: "Lato Light";
    padding-top: .8em;
    font-size: 1.8rem;
}

/* .messaging-tiles h2 {
    font-family:"Lato Light";
    font-weight:normal !important;
}*/
hr.h-div {
    /*background-color: #666;*/
    margin: 0 auto;
    width: 50%;
    height: 1px;
    border-top: thin solid #666;
}

.messaging-tiles .card .card-title {
    padding-top: 1em;
}

@media all and (min-width:1024px) {
    .messaging-tiles.tile2 .social {
        width: 40%;
    }

}

@media all and (min-width:1200px) {
    .messaging-tiles.tile1 .social {
        width: 15%;
    }

    .messaging-tiles.tile2 .social {
        width: 25%;
    }

    .messaging-tiles.tile3 .social {
        width: 38%;
    }

    .messaging-tiles.tile4 .social {
        width: 50%;
    }
}

.messaging-tiles.top-content .social {
    width: 50%;
}

.social__icon svg {
    max-height: 100%;
    max-width: 100%;
}


.productContent__container .content-tile .card-footer {
    border-top: none;
    text-align: center;
    background-color: #fff;
    color: #666;
    padding-bottom: 3em;
}


.bg-ltBlue {

    background-color: 

    #CCE6F8;

}
.card-block {
    background-color: #fff;
}
.border .card-deck .card {
    border: thin solid rgb(173, 175, 177);
}

.centered .card-deck {
    justify-content: center;
}

.center-text .card-deck .card {
    text-align: center;
}

.card-deck .card ul {
    padding-left: inherit;
}

@media all and (min-width:1023px) {
    .vertical-div .card-deck .card:not(.end-tile) {
        border-right: thin solid #a6a6a6;
        padding: 1% 1%;
    }
}

@media all and (max-width:1023px) {
    .vertical-div .card-deck .card:nth-child(even) {
        border-right: 0;
    }
}

@media all and (max-width:1199px) {

    .vertical-div .card-deck .card:last-child {
        border-right: 0;
    }
}

@media all and (min-width:1024px) {

    .vertical-div .card-deck .card:last-child,
    .vertical-div .card-deck .card:nth-child(4n) {
        border-right: 0;
    }

    .vertical-div .overlay {
        margin-right: 1%;
    }
}

#LeadershipTeam .card-deck {
    box-sizing: border-box;
    margin: 30px auto;
    overflow-y: auto;
    text-align: center;
    width: 100%;
    padding-bottom: 600px;
}

#LeadershipTeam .bio {
    display: inline-block;
    margin: 0 30px 30px 0;
    min-height: 267px;
    position: relative;
    width: calc(33% - 30px);
    min-width: 270px;
    border: 0;
}

#LeadershipTeam .bio_top {
    left: 0;
    position: relative;
    top: 0;
    min-width: 270px;
    width: 100%;
    cursor: pointer;
}

#LeadershipTeam .active-bio-card .bio__full.active {
    cursor: default;
    display: block;
}

#LeadershipTeam .bio__full {
    background: white none repeat scroll 0 0;
    display: none;
    min-height: 280px;
    text-align: justify;
    padding: 10px 10px 10px;
    position: absolute;
    top: 420px;
    min-width: 270px;
    width: 100%;
    z-index: 2;
}

#LeadershipTeam .bio__image {
    left: 0;
    position: relative;
    top: 0;
    min-width: 270px;
    width: 100%;
}

#LeadershipTeam .active-bio-card .bio .bio__image {
    filter: grayscale(100%);
    opacity: 0.7;
}

#LeadershipTeam .active-bio-card .bio:hover .bio__image {
    opacity: 1;
    filter: none;
}

#LeadershipTeam .bio .bio__image {
    transition: opacity 0.5s ease 0s, filter 0.5s ease;
}

#LeadershipTeam .bio__close {
    top: 0;
    right: 0;
    z-index: 3;
    font-size: 2em;
    color: #ccc;
    position: absolute;
    margin-right: .3em;
    margin-top: 0.3em;
}

@media all and (min-width: 576px) {
    .card-group {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group .card {
        -webkit-box-flex: 1;
        box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .card-group .card+.card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group .card:first-child {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .card-group .card:first-child .card-img-top {
        border-top-right-radius: 0;
    }

    .card-group .card:first-child .card-img-bottom {
        border-bottom-right-radius: 0;
    }

    .card-group .card:last-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .card-group .card:last-child .card-img-top {
        border-top-left-radius: 0;
    }

    .card-group .card:last-child .card-img-bottom {
        border-bottom-left-radius: 0;
    }

    .card-group .card:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .card-group .card:not(:first-child):not(:last-child) .card-img-top,
    .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
        border-radius: 0;
    }
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 2.25rem;
        -moz-column-gap: 2.25rem;
        column-gap: 2.25rem;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
        margin-bottom: 2.75rem;
    }
}

@media (max-width:575px) {
    .card-columns .card {
        margin-bottom: 20px;
    }
}

.card__type,
.card__category {
    color: #fff;
    font-family: 'Lato Bold';
    padding: 3px 10px 3px 20px;
    position: absolute;
    z-index: 1;
}

.card__type {
    background: #0e6ba5;
    left: 0;
    top: 10px;
}

.card__category {
    background: #4c8d1f;
    right: 0;
    top: 30%;
}


/* Search and Resource Center */

.right-column__divider,
.heading__divider {
    border-bottom: thin solid #000;
    display: block;
    margin-bottom: .5em;
}

.horizontal_search-result {
    margin-bottom: 30px;
    display: block;
}

.horizontal_search-result .title {
    display: table-cell;
}

/*.horizontal_search-result .content--type {
    font-family: 'Lato Bold';
}*/
.horizontal_search-result:after {
    clear: both;
}

.horizontal_search-result a {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.2em;
    font-family: 'Lato Bold';
    display: block;
}

.horizontal_search-result p.desc {
    font-size: 1.1em;
}

.horizontal_search-result img {
    /*width: 125px;
        height: 70px;*/
    float: left;
    /*display: inline-block;*/
}

.horizontal_search-result .press__date,
.horizontal_search-result a {
    margin-top: 5px;
}

.horizontal_search-sidebar-result:after {
    clear: both;
}


/*.horizontal_search-sidebar-result > img {
    width: 70px;
    height: 70px;
    float: left;
    border: none !important;
    display: block;
    margin-right: 10px;
}*/


/*.horizontal_search-sidebar-result {
    vertical-align: top;
}*/

.horizontal_search-sidebar-result .content--type {
    font-family: 'Lato Bold';
    display: inline-block;
}

.search__filtered {
    font-size: 1.2em;
    font-family: 'Lato Bold';
    color: #000;
}

.singlefilter.btn {
    border: 0;
}

.right-column_widget {
    display: block;
    margin: 15px 15px 30px 0;
    padding-top: 10px;
    font-size: 1.6rem;
    text-align: left;
}

.right-column_widget h3 {
    color: #000;
    margin-bottom: 10px;
}

.right-column_widget:first-child {
    margin-top: 0;
    padding-top: 0;
}

.right-column_widget>.spacer {
    display: block;
    height: 45px;
}

.h-search-button {
    margin-left: 10px;
    max-width: 100px;
}


/*#filter-list > li {
    line-height: 2.5em;
    margin-left: 15px;
}*/

ul.filter-sublist {
    list-style-type: none;
    padding-left: 15px;
}

.filter-sublist>li {
    line-height: 1.5em;
}


/* Press Release */

.press-release-listing>h4 {
    line-height: 1.5em;
    width: 25%;
    margin-top: 15px;
    font-weight: 600;
}

.press-release-listing>h5 {
    margin-bottom: 0
}

.press-release-listing>.horizontal_search-result>.title {
    margin-top: -10px;
}


/* Internal Page Hero */

.int-hero {
    background-size: 100% auto;
}

.header-carousel-inner>.product-name {
    font-size: 2em;
    margin: 30px;
    display: block;
    margin-top: 10%;
    margin-bottom: 10%;
    font-size: 2em;
    float: left;
}

.int-hero>.product-copy {
    font-size: 2.0em;
    color: #ffffff;
    font-weight: bold;
    /*display: inline-block;*/
    float: left;
    width: 50%;
}


/*In The News */

.caption>.article-title {
    font-weight: bold;
}


/* Customer Success Carousel Module */

.carousel {
    width: 100%;
    height: auto;
}

.cbg-1 {
    background-image: url('../_Images/1920x500_At.com_Design.jpg');
    /* set a bunch of these, let user pick. */
}

.carousel .item {
    max-height: 500px;
}

.cs-carousel-title {
    color: #000;
    margin-top: 30px;
    margin-left: 15%;
    display: inline-block;
    position: absolute;
    font-size: 2em;
}


/* Carousel Header */

.alpha60 {
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background: rgba(0, 0, 0, 0.6);
    /* For IE 5.5 - 7*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}
.alpha61 {
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgb(255, 255, 255);
    /* RGBa with 0.6 opacity */
    background: rgba(255, 255, 255, 0.6);
    /* For IE 5.5 - 7*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

.header-carousel-inner {
    position: relative;
    color: #fff;
    min-height: 300px;
    width: 90%;
    margin: 6rem auto 8rem auto;
    padding: 2rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
}

@media all and (max-width:768px) {
    .header-carousel-inner {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media all and (min-width:768px) {
    .header-carousel-inner {
        width: 100%;
    }
}

.carousel-content-label {
    font-size: 2rem;
}

@media all and (min-width:768px) {
    .carousel-content-label {
        text-align: right;
    }
}

.carousel-content-image {
    width: 100%;
}

.carousel-content-copy {
    border-left: 2px solid #fff;
    padding-left: 4rem;
    font-size: 2.5em;
    margin: 1em 0;
}

@media all and (max-width:768px) {
    .carousel-content-copy {
        border: 0;
        padding-left: 0;
        margin: 1em 0;
    }
}

.carousel-content-publication {
    display: block;
    font-size: 1.8rem;
    color: #cccccc;
    margin-top: 15px;
}

.carousel-content-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    padding: 10px;
    width: 33%;
    background: rgba(76, 141, 31, 1.0);
    border: none;
    color: #fff;
    text-align: center;
}
.carousel-content-btn1 {
    position: absolute;
    display: block;
    padding: 10px;
    width: 15%;
    background: rgba(76, 141, 31, 0);
    color: #fff;
    text-align: center;
}

/* Single modules */

.messaging-module {
    display: block;
    background-color: #4B1360;
    color: #ffffff;
}

.messaging-module .copy {
    max-width: 60%;
    display: inline-block;
    padding: 2%;
    font-family: 'Lato Light', sans-serif;
	line-height: 60px;
}


/* Topics / Product List Widget */

.topical-list {
    padding-top: 8px;
}

.topical-list>li {
    line-height: 2.5rem;
    font-size: 1.8rem;
}

/* Blog */

.comment-btn {
    margin-top: -7px;
}

#blog-header_date {
    display: block;
}

#blog-header-author-block {
    margin-top: 20px;
}

#blog-header-author-block img {
    height: 90px;
    width: 90px;
    border: none;
    margin-right: 15px;
}

#blog-header-author-block>#author-info {
    display: inline-block;
    margin: 10px 0 0 0;
    vertical-align: top;
}

.author-info {
    margin: 0;
    font-size: 3.0rem;
}

.author-bio {
    font-size: 2.4rem;
    line-height: 3rem;
    font-family: "Lato Light";
}

.author-social {
    font-size: 2.0rem;
}

#author-photo {
    display: inline-block;
}

#author-info {
    display: inline-block;
}

#author-info p:first-child {
    font-weight: bold;
    margin-bottom: 0;
}

#blog-header_date p {
    font-size: initial;
    margin: 0 0 15px;
}

.bHeadImg {
    display: block;
}

.bHeadImg img {
    height: 250px;
}

.bHeadImg img.img-cover {
    width: 100%;
    object-fit: cover;
}

.blog-tag-cloud {
    display: block;
    color: #000000;
    font-size: 1.6rem;
    background-color: #e4e4e4;
    padding: 15px 15px 0px 15px;
    margin-top: 15px;
}

.blog-tag-cloud>.cloud-row {
    display: block;
    padding-bottom: 15px;
    padding-left: 15px;
}

.cloud-row>.row-label {
    font-weight: bold;
    font-size: 1.6rem;
    margin-right: 15px;
}

.blog-social-bar {
    padding: 0 15px;
}

.blog-social-bar a {
    color: #fff !important;
    text-decoration: none;
}

.blog-social-bar>.social__bar {
    float: right;
    width: 18rem;
}

.blog-social-bar>.btn-primary {
    float: left;
    vertical-align: bottom;
    margin: 10px 0;
}

.featured-related,
.related__content {
    margin-top: 30px;
}

.featured-related img,
.related-tile img {
    width: 100%;
    height: auto;
}

.featured-related-title {
    font-size: 2rem;
}

.related-tile {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

@media all and (min-width:768px) {
    .blog-contributors>.container-fluid {
        margin: 0 4%;
    }
}

.blog-contrib-listing {
    margin-left: 15px;
    padding-bottom: 30px;
}

.blog-contrib-listing img {
    display: inline-block;
}

.blog-post-summary {
    margin-bottom: 30px;
    font-size: initial;
}

.blog-contrib-img {
    width: 180px;
}

.blog-contrib-mobile-para {
    margin-top: 10px;
}

.blog-contrib-listing>.btn-lg {
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-contributors .card {
    margin-right: 2em;
}

.blog-author-tile {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.blog-contributors .card {
    min-height: 357px !important;
}

/*
.blog-contributors .card {
    margin-right:3em; 
    
} */
/*
.blog-authors__slider.card-deck {
    -ms-flex-align: center;
    align-items: center;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;    
    justify-content: center;
    list-style-type: none;
    flex-flow:nowrap;
}
@media all and (min-width:560px) {
    .blog-authors__slider  .card {
        -webkit-flex: 0 1 31%;
        -ms-flex: 0 1 31%;
        flex: 0 1 31%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    
}
@media all and (min-width:992px) {
    .blog-authors__slider  .card {
        -webkit-flex: 0 1 14%;
        -ms-flex: 0 1 14%;
        flex: 0 1 14%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
}*/
.blog-authors__slider {
    padding-left: 1%;
}

.blog-authors__slider .slick-next {
    right: -50px;
}

.blog-authors__slider .slick-prev {
    left: -50px;
}


.blog-authors__slider .carousel-indicators {
    position: relative;
    margin: 20px auto;
    left: 0;
    bottom: 5px;
}

@media all and (max-width:600px) {


    .blog-authors__slider .carousel-indicators {
        margin: 20px auto;
        bottom: 5px;
    }
}

.blog-authors__slider .carousel-indicators li {
    background-color: #fff \9;
    background-color: rgba(255, 255, 255, 0);
    border: thin solid #000;
}

.fh-carousel .carousel-indicators li button,
.blog-authors__slider .carousel-indicators li button {
    display: none;
}

.blog-authors__slider .carousel-indicators .slick-active {
    background-color: #000;
}

.blog-authors__slider .card .card-img-top {
    width: 100%;
    max-height: unset;
}

.blog-author_slider .card .card-body {
    height: 4rem;
}

.blog-authors__slider .overlay .social {
    min-width: 115px;
    padding-left: 0;
    padding-right: 0;
}

.blog-contributors .card.slick-slide {
    padding: 0;
}

.blog-author-tile img {
    border: thin solid #000000 !important;
}

.blog-content__page {
    font-size: initial;
    margin-top: 60px;
}

.blog-content {
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 1);
}

.blog-content__title {
    color: #0e6ba5;
    margin-top: 20px;
}

.comment-form__form,
.subscribe-form__form {
    padding: 0 15px;
}

ul.blog-content__comments__list {
    list-style-type: none;
    font-size: initial;
    padding: 30px;
    background-color: #e4e4e4;
}

.blog-comment__divider {
    padding: 0 10px;
    color: #0e6ba5;
    font-size: 1rem;
}

.blog__topic {
    padding: 30px 0 0 0;
}

.is-closed {
    display: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.subscribe-form.is-closed,
.subscribe-form.is-open {
    transition: all 500ms ease-in-out;
}

.subscribe-form__inside {
    background-color: #e4e4e4;
    padding: 10px 0;
    margin-left: 15px;
}

.subscribe-form__headline {
    margin-left: 10px;
}

.subscribe-form__subheadline {
    display: block;
    float: left;
    width: 100%;
    padding: 15px 20px;
    color: #fff;
    background: #0078c9;
}

.subscribe-form__form {
    display: block;
    float: left;
    width: 100%;
    padding: 30px;
}

.subscribe-form__field {
    float: left;
    width: 100%;
    padding-bottom: 15px
}

.subscribe-form__input {
    float: left;
    -webkit-transition: color 1s;
    transition: color 1s;
    color: #95989a;
    border: thin solid #8d9aa2;
    border-radius: 0;
    outline: none
}

.subscribe-form__terms {
    font-size: 1.2rem;
    display: block;
    float: left;
    width: 100%;
    color: #95989a
}

.subscribe-form__submit {
    padding-top: 10px;
    padding-bottom: 0;
    text-align: left
}

.subscribe-form__first-name {
    width: 46%
}

.subscribe-form__last-name {
    float: right;
    width: 46%
}

.subscribe-form__terms {
    text-align: right
}

.subscribe-form__submit {
    padding-top: 35px;
    text-align: right
}

.subscribe-form__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    padding: 0;
    cursor: pointer;
    border: 0;
    outline: 0;
    background: none
}

.subscribe-form__close-btn:focus {
    outline: none
}


/* Partner Directory */

.partner-container {
    display: block;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: #CCCCCC thin dotted;
}

.partner-logo {
    display: block;
    margin-right: 25px;
    float: left;
}

.partner-logo img {
    width: 90px;
    height: auto;
}

.partner-name {
    display: block;
    font-weight: bold;
    float: left;
}

.partner-subtext {
    font-size: 1.5rem;
    line-height: 1.5em;
    display: block;
    font-weight: normal;
    margin-top: 5px;
}

.partner-info {
    font-size: 1.5rem;
    line-height: 1.5em;
    display: block;
}

.partner-container h3 {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}


/* Pete's Global Styles */

.clr-row {
    clear: both;
    height: 25px;
    display: block;
}

.v-align {
    padding: 10% 0;
}

#footer_logo path {
    fill: #ccc;
}

#footer_logo:hover path {
    fill: #fff;
}

svg:hover path {
    fill: #fff;
}

.cls-1 {
    fill: #0077C8;
}

.cls-2 {
    fill: #fff;
}

.cls-3 {
    fill: #ccc;
}

.resourceCenter h1 {
    border-bottom: thin solid #000;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
}

.btn-search {
    background-color: #0077C8;
    color: #fff;
    border: thin solid #ccc;
}

.btn-search:hover {
    background-color: #003057;
    color: #fff;
}

.advancedSearch {
    font-size: 24px;
    display: block;
    border-bottom: thin solid #000;
}

.advancedSearch a {
    text-decoration: none;
    color: #000;
}

.panel-advancedSearch {
    border-radius: 0;
    border: thin solid #666;
}

.panel-advancedSearch .nav>li {
    font-size: 1.5rem;
}

.panel-advancedSearch .nav>li>a {
    line-height: 1.3em;
}

.filter-sublist>li>input[type=checkbox] {
    margin-right: 10px;
}

.list_heading {
    font-size: 24px;
    display: block;
    border-bottom: thin solid #000;
    margin-bottom: 30px;
}

.list_heading .list_filter a {
    font-size: 1.4rem;
}

/*
.list_heading .list_filter a:hover {}
*/
.list_filter .dropdown-menu {
    background-color: #fff;
    opacity: 1;
}

@media all and (max-width: 768px) {

    .list_heading .list_filter,
    .list_filter .dropdown-menu {
        width: 100%;
    }
}

.list_filter .dropdown-menu a:hover {
    color: #0077C8;
}

.resourceCenter {
    padding-bottom: 120px;
    padding-top: 30px;
}
.events__container{
    padding-bottom: 120px;
    padding-top: 70px;
}

/*overwrite default bootstrap pagination styles*/

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px auto;
    border-radius: 0;
    text-align: center;
    vertical-align: bottom;
}

.pagination>li {
    display: inline;

}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #777;
    text-decoration: none;
    background-color: transparent;
    border: transparent;
    font-size: 1.8rem;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #000;
    background-color: #ccc;
    border-color: transparent;

}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 2;
    color: #000;
    cursor: default;
    font-weight: bold;
    background-color: transparent;
    border-color: transparent;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination .PagedList-skipToPrevious,
.pagination .PagedList-skipToNext,
.pagination .PagedList-skipToFirst,
.pagination .PagedList-skipToLast,
.pagination .PagedList-ellipses {
    font-size: 1.8rem;
    line-height: 1.42857143;
}


.bottom-border {
    border-bottom: thin solid #000;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .event-tile img {
        height: auto;
        width: 100%;
    }

    .messaging-tiles.top-content svg {
        height: 160px;
        width: 160px;
    }

    /*svg.card-svg {        
        max-height: auto;
        width:100%;
    }*/
}

.tc_svg {
    height: 160px;
    width: 160px;
    margin: 0 auto;
}


/*initiative tabs (uses flex containers) */
.industryTab_desc ul li {
    font-size: 1.2em;
}

.app-tabs.initiative .app-tabs__tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 0;
    left: 0;
    position: static;
    /*width: 100%;*/
    z-index: 10;
}

.app-tabs.initiative .card.app-tabs__tab {
    margin-right: 0;
}

.app-tabs.initiative .card.app-tabs__tab a {
    color: #000;
}

.app-tabs.initiative .card .card-block,
.app-tabs.initiative .card img,
.app-tabs.initiative .card svg {
    background-color: transparent;
}

.app-tabs.initiative .card:hover,
.app-tabs.initiative .card:active,
.app-tabs.initiative .card.active {
    background-color: #CCE6F8;
}

.app-tabs.initiative .card-title {
    min-height: auto !important;
}

@media all and (max-width:1023px) {
    .app-tabs.initiative.wide .container-fluid {
        margin: 0;
        padding: 0;
    }

    .app-tabs.initiative .card-deck {
        width: 100%;
        flex-direction: column;

    }

    .app-tabs.initiative .card {
        -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
        flex: 1 1 100%;
        padding: 0;
        margin: 0;
    }

    .app-tabs.initiative .accordion-head {
        display: flex;
    }
}

@media all and (max-width:600px) {
    .accordion-head button {
        flex-direction: row;
        width: 100%;
        font-family: "Lato Light";
        height: auto;
        border-top: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: thin solid #ddd;
        padding: 0;
        color: #000;
        background-color: #fff;
        cursor: pointer;
    }

    .accordion-head button:hover,
    .accordion-head button:active {
        text-decoration: none;
        border-top: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: thin solid #ddd;
        color: #000;
        background-color: #ddd;
    }

    .accordion-head button>.card {
        flex-direction: row;
        align-items: center;
        padding: 0;
        border: 0;
        height: auto;
        min-height: auto;
    }

    .accordion-head button>.card .card-title {
        font-size: 1.4em;
        padding: .8em;
        margin-bottom: 0;
        white-space: normal;
    }

    .accordion-head button[aria-expanded=true] .card-footer:before {
        content: '-';
    }

    .accordion-head button[aria-expanded=false] .card-footer:after {
        content: '+';
    }

    .accordion-head button>.card .card-block {
        text-align: left;
        padding: 0;
        margin: 0;
        background-color: transparent;
    }

    .accordion-head button>.card .card-footer {
        font-size: 3.6em;
        font-family: "Lato Light";
        background-color: transparent;
        border-top: 0;
        font-weight: normal;
    }

    .app-tabs__accordion .industryTab_desc ul {
        list-style-type: disc;
    }
}

/*
    button.accordion-head[aria-expanded=true] span:before {
        content:'\2013';
        font-family: "Lato Light";    
        color:#888;
        float:right;
        font-size:30px;
    }
  */
/*button.accordion-head[aria-expanded=false] span:after {       
        content:'\002B';
        font-family: "Lato Light";    
        color:#888;
        float:right;
        font-size:30px;
    }*/
/*button.accordion-head {
        font-size:1.4em;
        color:#666;
        align-content:flex-start;
        font-family:"Lato Light";
        background-color:transparent;
        border-right: 0;
        border-top: 0;
        border-left: 0;
        border-bottom:thin solid #000;  
        width:100%;
        height:auto;
        padding:1em 1em 1em 0;  
        text-align:left;      
    }*/

/* Mobile tile layout (not ready for this yet)
    .app-tabs__accordion .content_tiles .card {
        -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        margin:0;
        padding:1em 0 2em 0;
    }
    .app-tabs__accordion .content_tiles .card .card__type {
        width:100%;
        line-height:2em;
        font-size:1.6em;
        font-family:"Lato Light";
        background-color:#0077C9;
        position:relative;
    }

    .app-tabs__accordion .content_tiles .overlay {
        display:none;
    }
    .app-tabs__accordion .content_tiles .card .card-footer {
         margin-top:1em;
         width:100%;
         line-height:2em;
         font-size:1.6em;
         background-color: #6BB100;
         border-top:none;
         padding:0;
         text-align:center;
    }
    .app-tabs__accordion .content_tiles .card .card-footer a {
        color:#fff;
    }
    .app-tabs__accordion .content_tiles .card .card-footer a:hover,
    .app-tabs__accordion .content_tiles .card .card-footer a:active {
        color: #003057;
    }*/

.industryTab_desc ul li {
    margin-bottom: 20px;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .app-tabs.initiative .card img.svg {
        width: 100px;
        height: auto;
    }
}

@media all and (min-width:1024px) {
    .industryTab_desc ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
    }

    .industryTab_desc ul li {
        padding: 1% 2%;
        display: table-cell;
        text-align: center;
        width: 48%;
        margin: 0;
        vertical-align: top;
    }

    .industryTab_desc ul li:only-child {
        width: 66%;
        display: inline-block;
    }

    .app-tabs.initiative .card {
        -webkit-flex: 0 1 30%;
        -ms-flex: 0 1 30%;
        flex: 0 1 30%;
        max-width: 30%;
    }

    .app-tabs.initiative .card img.svg {
        width: 40%;
        height: auto;
    }

    .app-tabs.initiative .card-deck .card,
    .app-tabs.initiative.vertical-div .card-deck .card {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .app-tabs.initiative .app-tabs__tabs {
        width: auto;
    }

    .app-tabs.initiative .card-footer {
        display: none;
    }
}

@media all and (min-width:1380px) {
    .app-tabs.initiative .card {
        -webkit-flex: 0 1 22%;
        -ms-flex: 0 1 22%;
        flex: 0 1 22%;
        max-width: 22%;
    }
}

.initiativeFeature button.app-tab-close {
    border: 0;
    background: transparent;
    font-size: 1.2em;
    color: #666;

}

.initiativeFeature {
    padding-top: 10px;
}

/*end initiative tabs */

.card.expanding_tiles__card[data-hide=true].in {
    animation: slide-down 600ms ease-in-out;
    -webkit-animation: slide-down 600ms ease-in-out;
    -moz-animation: slide-down 600ms ease-in-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slide-down {
    0% {
        opacity: 0;
        -moz-transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}



button.expandCards {
    margin-right: 1%;
    width: 125px;
}

@media all and (max-width:600px) {
    button.expandCards {
        display: none;
    }
}

/*Tab Accordion*/

ul.tabs,
.gallery_wrapper ul.nav.nav-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.tab_container {
    clear: both;
    float: left;
    width: 100%;
    overflow: hidden;
}

.tab_content {
    display: none;
}

.tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 600px) {
    .tabs {
        display: none;
    }

    .tab_content {
        padding: 20px 0;
    }

    .tab_drawer_heading {
        margin: 0;
        display: block;
        cursor: pointer;
    }
}



    
#content-fixed-top-nav {
    transition:all 500 ease-in-out;
    background-color:rgba(0, 48, 87, 1);
}
.home > #content-fixed-top-nav {    
    background-color:transparent;
}


@media all and (max-width:998px){
    .nav.navbar-nav {
        background-color:transparent;
    }
    .home > #content-fixed-top-nav {
        background-color:rgba(0, 48, 87, 1);
}
}
nav .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    flex-flow: column;
    width:100%;
  }
.h-logo {
  width:180px;
  /*margin-top:.5em;*/
}
@media all and (max-width:998px) {
    .h-logo {
        width:180px;
    }
    .menu1 {
        display:none;
    }
}
div.tagline {
  font-size: .74em;
  font-family: 'Merriweather Light';
  color:#fff;
  margin-left:1em;
  padding:1em;
  align-self: center;
  border-left:thin solid #fff;
}
@media all and (max-width:991.98px) {
    div.tagline {
        display:none;
    }
}





@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .top-row svg, .top-row img {
        max-height:60px;
    }
  

}
  /* end nav*/
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }

.fullscreen,
.fullscreen-hero,
nav,
.home ~ div > .messaging-tiles {
    font-size: calc(10px + (26 - 10) * ((100vmin - 300px) / (1280 - 300)));
    line-height: calc(1.5 + (2 - 1.2) * ((100vmin - 300px) / (1600 - 300)));
  }

@media (max-width:992px),(orientation:portrait) {
    .fullscreen-hero {
        font-size: calc(12px + (32 - 12) * ((100vmin - 300px) / (1920 - 300)));
        line-height: calc(1.5 + (2 - 1.2) * ((100vmin - 300px)/(1920 - 300)));
    }
}
/*@media (max-width:992px) and (orientation:landscape) {
    .fullscreen-hero {
        font-size: calc(12px + (32 - 12) * ((100vmin - 300px) / (1920 - 300)));
        line-height: calc(1 + (2 - 1) * ((100vmin - 300px)/(1920 - 300)));
    }
}*/

.fullscreen {
    height:90vh;
}
.fullscreen-hero {
    height: 100vh;
  }
@media all and (max-width:992px) {
    /*.fullscreen-hero,*/
    .fullscreen {
        height:auto;
    }
}

/*
.hero-home {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
*/
.video-hero .video-container {
    border:0;
    height:100%;
    width:100%;
    position: absolute;
    z-index:-20;
}

.hero-home video {
    position: absolute; 
    top: 0px; 
    right: 0px; 
    bottom: 0px; 
    left: 0px; 
    width: 100%; 
    height:100%;
    object-fit: cover !important; 

}
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .hero-home video {
        position: absolute; 
        top: 0px; 
        right: 0px; 
        bottom: 0px; 
        left: 0px; 
        width: 100%; 
        height:auto !important;
        display:table-cell;
        vertical-align:middle;
        min-height:100%;
        min-width:100%;
    }
    .hero-home .video-container {
        display:table;
    }
}
html.no-object-fit .hero-home .compat-object-fit {
        background-size: cover;
        background-position: center center;
    }
html.no-object-fit  .hero-home video {
    position: absolute; 
    top: 0px; 
    right: 0px; 
    bottom: 0px; 
    left: 0px; 
    width: auto; 
    height:100%;
    display:table-cell;
    vertical-align:middle;
    min-height:100%;
    min-width:100%;
}
html.no-object-fit .hero-home .video-container {
    display:table;
    background-color:#000;
}
@media all and (max-width:992px) {
    html.no-object-fit  .hero-home video {
        height:100%;
        width:auto;
        min-width:0;
        overflow:hidden;
    }
    html.no-object-fit .hero-home .video-container {
        overflow:hidden;
    }
}
html.ieedge .hero-home .compat-object-fit {
        background-size: cover;
        background-position: center center;
    }
html.ieedge .hero-home video {
    position: absolute; 
    top: 0px; 
    right: 0px; 
    bottom: 0px; 
    left: 0px; 
    width:auto;
    height:auto;
    display:table-cell;
    vertical-align:middle;
    min-height:100%;
    min-width:100%;
}
html.ieedge .hero-home .video-container {
    display:table;
    background-color:#000;
}
@media all and (max-width:992px) {
    html.ieedge .hero-home video {
        height:100%;
        width:auto;
        min-width:0;
        overflow:hidden;
    }
    html.ieedge .hero-home .video-container {
        overflow:hidden;
    }
}

.bg-overlay {
    /*background:rgba(0, 48, 87, .5);*/
    /*z-index:3;*/
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.fh__container {    
    margin-top:100px;
    margin-left:-15px;
    padding-top: 6%;
    height:90%;
}
@media (max-width:992px),(orientation:portrait){
    .fh__container {    
        padding-top: 0;
    }
}
@media (max-width:992px),(orientation:landscape){
    .fh__container{
        margin-top:calc(55px + (100 - 55) * ((100vmin - 300px) / (992 - 300)));
    }
}
.fh__container > div.fh-carousel,
.carousel-content > div {
    position:relative;
    height:100%;
}
.fh__container .fh-main {
    justify-content:space-bewteeen;
}
.hero-home .fh-carousel {
    width:100%;    
    height:100%;
    position:absolute;
    justify-content: space-between;
}

@media all and (max-width:991.98px) {
    .fh-v-spinner {
        display:none !important;
    }
}
@media all and (orientation:portrait){
    .fh-v-spinner {
        display:none !important;
    }
}
@media all and (min-width:992px) and (orientation:landscape){
    .hero-home .fh-carousel {
        width:66.66%;    
    }
    .fh-v-spinner {
        width:33.33%;
    }
}
.hero-home .fh-carousel {
    /*padding: 2em 3em;
    padding:2em 3em 2em 0;*/
    color:#fff;
}
.fh-carousel .fh-main {
    margin-left:0;
    padding-left:0;
    padding-top:0;
    justify-content:stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;    
}

.hero-home .carousel-content h1 {
    font-size:2em;
    color:#fff;
}

.hero-home .carousel-content {
    font-size:1.4em;
}
.hero-home .carousel-content ul {
    font-size:.75em;
}
.hero-home .carousel-content .bigger {
    font-size:1.8em;
}
@media (max-width:992px) and (orientation:landscape){
.hero-home .carousel-content .bigger {
    font-size:1.4em;
}}
.hero-home .carousel-content .smaller {
    font-size:1.0em;
}
.hero-home .carousel-content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-home .carousel-content img.banner{
    max-height:15vh;
}

html.no-object-fit .hero-home .carousel-content img.banner{
    max-height:40%;
}

.fh-carousel ul {
    position:relative ;
    bottom:5px;
    margin:auto;
    width:100%;
}
.ind-text {
    font-size: calc(14px + (22 - 14) * ((100vh - 600px) / (900 - 600)));
}
.ind-text.smaller{
    font-size: calc(10px + (18 - 10) * ((100vh - 600px) / (900 - 600)));
}
.hero-home .fh-v-spinner li a {
    color:#fff;
}
.fh-carousel .carousel-indicators {
    /*padding-top:3em;*/
    justify-self: flex-end;
    position: absolute;
    margin: 0 auto;
    left: 0;
    bottom: 10%;
}
.quotes .carousel-indicators li,
.fh-carousel .carousel-indicators li {
    color:#fff;
    background-color:#fff;
    width:1em;
    height:1em;
    border-radius:1em;
}
@media all and (max-width:1024px) {
    
    .quotes .carousel-indicators li,
    .fh-carousel .carousel-indicators li {
        width:15px;
        height:15px;
        border-radius:15px;
    }
}
.quotes .carousel-indicators li,
.fh-carousel .carousel-indicators li
 {
    background-color: #fff \9;
    background-color: rgba(255, 255, 255, 0);
    border: thin solid #fff;
 
}
.quotes .carousel-indicators .slick-active,
.fh-carousel .carousel-indicators .slick-active {
background-color: #fff;
}
.carousel-indicators button {
    display:none;
}
.carousel-content {
    padding: 2em 3em 2em 4em;
    transform: translateX(-100%);
    /*left:-100%;*/
    overflow:hidden;
    height:80%;
    -webkit-transition: transform 0.5s ease-in;
    -moz-transition: transform 0.5s ease-in;
    -o-transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
}

html.no-object-fit .carousel-content{
    padding: 2em 3em 1em 4em;
}

@media (max-width:992px),(orientation:landscape){
    .navbar{
        min-height:calc(50px + (80 - 50) * ((100vmin - 300px) / (992 - 300)));
    }
}
.carousel-content img {
    display:block;
    text-align:center;
    max-width:100%;
}

@media all and (max-width:992px) {
    .carousel-content {
        padding:1em;
    }
    .carousel-content img {
        width:600px;
        height:auto;        
    }
}
@media all and (max-width:1200px) {
    .carousel-content {
        padding: 1.5em;
    }
}
@media all and (max-width:576px) {
    .carousel-content img {
        width:360px;
        height:auto;    
    }
}
.carousel-content.open {
    transform: translateX(0);
    
}
@media all and (min-width:1024px) {
    .carousel-content a.btn {
        margin:1em 0;    
    }
}
.hero-home .container-fluid {
    z-index:20;
    height:100%;
}
@media (max-width:992px),(orientation:portrait){
    .hero-home .container-fluid {
        padding:0;
    }
}
@media all and (max-width:1920px) {
.container-fluid.constrain {
    margin:0;
    padding:0;
}
}
@media all and (min-width:1921px) {
    .container-fluid.constrain {
        width:1640px;
    }
}

.hero-spacer {
    margin-right:auto;
    margin-left:auto;
}

.bg-transparent {
    background-color: transparent !important;
  }
  
  .btn-transp:hover  {
      opacity:1;
      background-color:#000;
  }
  .btn-xl {
      font-size:1.2em;
      width:auto;
      font-weight:normal;
      font-family:"Lato" !important;
  }
  .carousel-content .btn-xl {
      font-size:1em;
  }
.btn-transp,
.btn-transp:focus {
    background-color: transparent;
    color: #fff;
    border:thin solid #fff;
    padding:.6em 1em;
}
.btn-transp:hover {
    background-color:#000;
    color:#fff;
    border:thin solid #fff;
}
.btn-transp-b {
    background-color:transparent;
    color:#000;
    border: thin solid #000;
}
.btn-transp-b:hover {
    background-color:#fff;
    color:#000;
}

 
.fh-main {
    padding:3%;
    height:100%;
}
@media (max-width:992px), (orientation:portrait) {
    .fh-main{
        padding:0;
    }
}
.list {
    position:relative;
    z-index:10;
}
    .list__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
}

.fh-sub .fade-in, .list .img-row .fade-in{
    opacity:1;
}
.fh-sub h2, .list .img-row img, .fh-sub a{
    opacity:0;
}
.solution-fade {
    transition:opacity 500ms ease 0s;
}

.btn.solution-fade{
    transition: opacity 500ms ease 0s, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fullscreen.list {
    background: linear-gradient(to right, #fff 60%, #FFC425 60%);
    background: -ms-linear-gradient(to right, #fff 60%, #FFC425 60%);
    background: -webkit-linear-gradient(to right, #fff 60%, #FFC425 60%);    

}
.list .fh-main,
.list .fh-sub {
    width:100%;
}


.list .img-row {
    display:none;
}
.slideActive {
    color: #0078C9;
}
@media all and (min-width:992px) {
    .list__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        }
    .list .fh-main {
        width:66.667%;
        height:100%;
        padding-left: 6%;
        padding-top: 3%;
    }
    .fh__container .fh-v-spinner,
    .list .fh-sub {
        width:33.333%;
        height:100%;
    }
    .list .fh-sub {
        border-left:thin solid #707070;  
    }
    .list > div {
        position:relative;
        height:100%;
    }
    .list .img-row {
        position:absolute;
        display:flex;
        bottom:0;
        right:0;
        z-index:50;
        width:100%;
        background-color: transparent;
    }
    .list .img-row img {
        width:100%;
        /*height:400px;*/
    }
}

.fullscreen .list__container,
.fullscreen.list > div > div {
    height:100%;
}
.list .img-row {
    max-height:45%;
}
.list .fh-main {
    background-color:#fff;
}

.list .fh-main h1 {
    font-weight:bold;
    margin-bottom:3%;
    font-size:2.1em;
}
.list .fh-main ul {
    font-size:1.2em;   
}

.list .fh-main ul li{
    transition:all 500ms ease 0s;
}

.list .fh-main ul li:hover {
    color:#0078C9;
    cursor:pointer;
}
.list .fh-sub {
    padding: 5% 3%;
    background-color:#FFC425;
    height:100%;
      
}

.list .fh-sub h2 {
    font-size:1.4em;
}
@media all and (max-width:992px) {
    .list .fh-main,
    .list .fh-sub {
        height:auto;
    }
    .list .fh-main h1 {
        font-size:1.6em;
    }
    .list .fh-main ul,
    .list .fh-sub h2 {
        font-size:1.2em;   
    }
    
}

.quotes {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.quotes .fh-main { 
    padding:0;
}
.quotes h1 {
    color:#fff;
    font-weight:600;
    font-size:2em;
}
.quotes h1 span {
    font-family:"Lato Light";
    font-weight:300;
}
.fh-main.quote__container > div {
    position:relative;
    height:100%;
}
.quotes .quote__content {
    padding:1em 3em 2em 3em;
    background-color:rgba(0,120,201,.87);
    height:100%;    
}

.quote-content_container {
    height:100%;
}

.quotes img {
    width:180px;
    height:180px;
    justify-self:center;
    align-self:center;
}
.quotes svg {
    width:180px;
    /*height:150px;*/
    justify-self:center;
    align-self:center;
    /*padding-bottom:1em;*/
}
.quotes .quote__content .btn {
    margin-bottom:2em;
}
.quotes .fh-sub {
    padding: 5% 3%;
    background-color:transparent;
    height:100%;
}
.quotes .blockquote {
    width:90%;
    border-left:0;
    font-size:1.2em;   
}
@media all and (max-width:1024px){
    .quotes .blockquote {
        width:100%;
    }
}
@media all and (min-width:1921px) {
    .quotes .blockquote {
        width:75%;
    }
}

.quotes .blockquote,
.quotes .blockquote-footer {
    /*font-family:"Merriweather Light";*/
    font-style:italic;   
    color:#fff;
   
}
.quotes .blockquote,
.quotes .blockquote-footer,
.quotes .blockquote ~ a, .quotes svg {
    opacity: 0;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;}


.quotes .blockquote.in,
.quotes .blockquote.in .blockquote-footer,
.quotes .blockquote.in ~ a, .quotes svg.in, .quotes div.in svg {
    opacity:1;
}

.quotes .blockquote-footer {
    text-align:right;    
    font-size:65%;
    width:60%;
    align-self:flex-end;
    margin-top:.75em;
}
.quotes .blockquote-footer::before {
    content: "";
  }
.quotes ul {
    position:absolute;
    bottom:2em;
    margin:auto;
    width:100%;
}
.pageDown {
    position:absolute;
    width:100%;
    bottom:5%;
    left:0;
    right:0;
    height:75px;
}

.h-66 {
    height: 66.66% !important;
}
.w-66 {
    width: 66.66% !important;
}
.h-33 {
    height: 33.33% !important;
}
.w-33 {
    width: 33.33% !important;
}
.mh-66 {
    max-height: 66.66% !important;
}
.mw-66 {
    max-width: 66.66% !important;
}
.mh-33 {
    max-height: 33.33% !important;
}
.mw-33 {
    max-width: 33.33% !important;
}
.vh-100 {
    height: 100vh;
}
.vh-90 {
    height: 90vh;
}
.vh-80 {
    height: 80vh;
}
.vh-75 {
    height: 75vh;
}

 @-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(50%);
              transform: translateX(50%);
    }
  }
  @keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(50%);
              transform: translateX(50%);
    }
  }
  

@-webkit-keyframes slide-left {
    0% {
      -webkit-transform: translateX(50%);
              transform: translateX(50%);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slide-left {
    0% {
      -webkit-transform: translateX(50%);
              transform: translateX(50%);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @media all and (min-width:1200px) {
  .slide-left {
	-webkit-animation: slide-left 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
	        animation: slide-left 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}

.slide-right {
	-webkit-animation: slide-right 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
	        animation: slide-right 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}
  }
/*bouncy arrow*/

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -moz-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -moz-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    60% {
      -moz-transform: translateY(-15px);
      transform: translateY(-15px);
    }
  }
  @-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px);
    }
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -moz-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    60% {
      -moz-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px);
    }
  }
      @-moz-keyframes distract {
    5%,10% {
      -moz-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      -webkit-transform: translateX(-30px);
      transform: translateX(-30px);
    }
    0%,15% {
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }
          @-webkit-keyframes distract {
    5%,10% {
      -moz-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      -webkit-transform: translateX(-30px);
      transform: translateX(-30px);
    }
    0%,15% {
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }
    @keyframes distract {
    5%,10% {
      -moz-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      -webkit-transform: translateX(-30px);
      transform: translateX(-30px);
    }
    0%,15% {
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }

  .arrow-d {
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    color:#fff;
  }
  .arrow-d:hover {
    cursor:pointer;
  }
  .fullscreen .arrow-d i,
  .fullscreen .arrow-d:hover i,
  .fullscreen .arrow-d:active i {
      color:#fff !important;
  }
.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
  }
.distractotron-jr {
    -moz-animation: distract 6s infinite;
    -webkit-animation: distract 6s infinite;
    animation: distract 6s infinite;
  }
  .hero-home svg:hover path,
  #distractotron svg:hover path  {
    fill: transparent;
}
  

@-webkit-keyframes shrink {
    0% {
        color: #fff;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #fff;
    }
}

@keyframes shrink {
    0% {
        color: #fff;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #fff;
    }
}

@-webkit-keyframes grow {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #fff;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        color: #fff;
    }
}

@keyframes grow {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #fff;
        border: 0;
        padding: .5em;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        color: #fff;
        border: thin solid #fff;
    }
}

/* $. Classes
\*----------------------------------------------------------------*/

#vertical_carousel .animate {
    opacity: 1;
}

.v-item .animate,
.v-item .animate:hover,
.v-item .animate:active {
    color: #fff !important;
}

#vertical_carousel .animate {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform-origin: center left;
    transform-origin: center left;
    color: #fff;
    vertical-align:middle;
}


.animate--shrink {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: shrink;
    animation-name: shrink;
    -webkit-animation-timing-function: 'linear';
    animation-timing-function: 'linear';
    color: #fff;
}
  /*
.animate--grow,
#vertical_carousel .current>a {
  -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: 'linear';
    animation-timing-function: 'linear';
    -webkit-animation-name: grow;
    animation-name: grow;
    border: thin solid #fff;
    padding: .5em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .2);
}*/

/* Slider */

.fh-v-spinner__content {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
    /*padding-top: 1em;
    padding-bottom: 1em;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    height:80%;
    /*tap-highlight-color: transparent;*/
    /*touch-callout: none;*/
}

.fh-v-spinner__content .list {
    position: relative;
    overflow: hidden;
    display: inherit;
    flex-direction: column;
    /*display: block;*/
    margin: 0;
    padding: 0;
}

#vertical_carousel .list:focus {
    outline: none;
}

#vertical_carousel .list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-vertical .v-item:focus,
.slick-vertical .v-item:active,
.slick-vertical .v-item::selection {
    outline: none !important;
    box-shadow: none;
    /*border: 0 !important;*/
}

#vertical_carousel .track {
    position: relative;
    left: 0;
    top: 0;
    /*display: block;*/
}

#vertical_carousel .current>a {
    box-sizing: border-box;
    display: block;
}

#vertical_carousel .no-js .v-item:nth-child(4)>a {
    padding: 1em;
}

.v-item {
    float: left;
    height: 100%;
    min-height: 1px;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top:calc(10px + (22 - 10) * ((100vh - 600px) / (1080 - 600)));
    padding-bottom:calc(10px + (22 - 10) * ((100vh - 600px) / (1080 - 600)));
    display: block;
    height: auto;
    border: 0;
    outline: none;
}

.v-item a {
    display: block;
    font-weight: bold;
    color: #fff;
    width: 80%;
    text-decoration: none;
}

.v-item img {
    display: block;
}


#vertical_carousel .current {
    position: relative;
}
 /*
#vertical_carousel [aria-hidden] {
   transition: 1s;
}
*/
#vertical_carousel button {
    background-color: transparent;
    border: 0;
    margin-left: -20%;
    align-self: center;
    z-index:15;
}

#vertical_carousel button.a-up {
    transform: rotate(0.5turn);
}

html.no-object-fit button.a-up{
    margin-top:-.65em;
}
@media (max-height:600px){
        html.no-object-fit button.a-up{
        margin-top:-1em;/*Please, please never ask me about this.*/
    }
}

#vertical_carousel button svg {
    width: 2em;
}

.animated-button {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.button-icon {
    position: absolute;
    left: -2em;
    height: 2em;
    width: 2em;
    align-self: center;
}

.button-icon img {
    max-height: 1.5em;
    max-width: 1.5em;
    display: block;
}

.button-icon svg {
    max-height: 1.5em;
    max-width: 1.5em;
    display: block;
}

/* slide styles */

.v-item .animated-button.slide i {
    align-self: center;
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
}

#vertical_carousel .current>a {
    display: inline-block;
}

#vertical_carousel .current>a:not(.disabled) div.ind-text {
    -webkit-transform: translateX(2em);
    transform: translateX(2em);
    -webkit-filter: blur(0);
    filter: blur(0);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#vertical_carousel .current>a:not(.disabled) i {
    /*-webkit-transform: translateX(300%);
    transform: translateX(300%);*/
    transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    transition-delay: .1s;
}

#vertical_carousel .vertical-cursor{
    position:absolute;
    width:100%;
    /*height:61px;/*for testing only!*/
    top:0;
    bottom:0;
    margin:auto;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform-origin: center left;
    transform-origin: center left;
    color: #fff;
    border: thin solid #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .2);
}

#vertical_carousel .vertical-cursor i{
    position:absolute;
    top:0;
    bottom:0;
    right:1em;
    margin:auto;
    height:calc(14px + (26 - 14) * ((100vmin - 300px) / (1600 - 300)));
}

.slide-gradient{
    background-image: linear-gradient(to right, #5f3c6c 33%, #00a9ce 33%,#00a9ce 66%, #78be20 66%);
    height: 1.3em;
    width: 100%;
    transform: translateX(-100%);
    /*left:-100%;*/
    overflow:hidden;
    -webkit-transition: transform 0.5s ease-in;
    -moz-transition: transform 0.5s ease-in;
    -o-transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
}
.slide-gradient.open{
    transform: translateX(0);
}
/*GTM cookie banner*/
.elqOptInBanner{
    z-index:8001;
}

.no-pad{
    padding-right:0px !important;
}