/*
	Theme Name: Decision Sciences
	Theme URI: 
	Description: Custom theme built for Decision Sciences.
	Version: 2.0 - March 2018
	Author: Corey & Spencer
	Author URI: coreycodes.com
	Tags: Blank, HTML5, CSS3
	License: Copyright Corey Codes
*/

/* =====================================
          MOBILE FIRST STYLING
   ===================================== */

body {
    font-family: "montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #000;
}
.fixed {
    overflow: hidden;
}
html {
    height: 100%; 
    width: 100%;
}
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/* clear */
.clear:before,
.clear:after{
    content:' ';
    display:table;
}
.clear:after{ clear: both; }
.clear{ *zoom: 1; }

img{
    vertical-align: middle;
    image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
    max-width: 100%;
}

a{
    color: #000;
}
a:focus{ outline: 0; }
a:hover,
a:active{
    outline:0;
    cursor: pointer;
}
a:hover {
    color: #eb281c;
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    font-family: "rift-soft",sans-serif;
    font-style: normal;
    font-weight: 300;
}
h1 {
    font-size: 2.2em;
}
h2 {
    font-size: 2em;
}
h3 {
    font-size: 1.8em;
}
.section-headline {
    font-size: 2.2em;
    text-transform: uppercase;
    text-align: center;
}

input{
    border: 1px solid #ccc;
}
input:focus{
    
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
form, label, input{
    display: block;
    box-shadow: none;
    -webkit-box-shadow: none;
}



/* ---------- UNIVERSAL STYLING  ---------- */
section{ 
    position: relative;
}


.center{ 
    text-align: center;
}
.hidden{
    display: none;
}
.btn {
    text-transform: uppercase;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    font-family: "rift-soft", sans-serif;
    font-size: 1.2em;
    white-space: inherit;
}
.btn:hover {
    box-shadow: none;
}
.toggle-content {
    display: none;
}
   

/* HEADER */
/* SPECIAL STYLING FOR HOMEPAGE HEADER */
body.home header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    background : -moz-linear-gradient(50% 98.66% 90deg,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 100%);
    background : -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background : -webkit-gradient(linear,50% 98.66% ,50% 15.27% ,color-stop(0,rgba(0, 0, 0, 0) ),color-stop(1,rgba(0, 0, 0, 1) ));
    background : -o-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background : -ms-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background : linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
body.home .main-nav a {
    color: #000;
}
body.home .main-nav a:hover {
    text-decoration: none;
    color: #e31e38;
}
.main-nav a:hover {
    text-decoration: none;
    color: #e31e38;
}
.main-nav a {
    font-family: "rift-soft",sans-serif;
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.2em;
    color: #000;
}
.header .logo{
    width: 200px;
    display: inline-block;
    margin: 10px 10px;
    vertical-align: middle;
}
.header .logo-img{
    max-height: 90px;
}
.header .main-nav{
    display: none; 
    background: #f2f2f2;
}
.header .main-nav ul{
    padding: 1em;
    list-style: none;
}
.header .main-nav ul .sub-menu {
    margin-top: 0;
    padding: .25em 1em;
}
.main-nav li ul {
    display: none;
}
.header .main-nav li{
    display: block;
    margin: 10px;
}
.menu-item-has-children {
    position: relative;
}
.menu-drawer-btn {
    position: absolute;
    right: 0;
    font-size: 1.2em;
}
.sub-menu li .menu-drawer-btn {
    display: none;
}
.menu-button-container {
    position: relative;
    float: right;
    top: 35px;
    display: inline-block;
    padding: 0;
    width: 35px;
    height: 27px;
}
.menu-btn, .menu-btn:before, .menu-btn:after {
    position: absolute;
    top: 50%;
    right: 0;
    height: 4px;
    width: 35px;
    border-radius: 15px;
    cursor: pointer;
    background: #ec101d;
    display: inline-block;
    content: '';
}
.menu-btn:before, .menu-btn:after {
    transition: all 500ms ease-in-out;
}
.menu-btn:before {
    top: -10px;
}
.menu-btn:after {
    top: 10px;
}
.menu-btn.active {
    width: 0;
    background: #ec101d;
}
.menu-btn.active:before {
    transform: rotate(-45deg) translate(0, -1px);
    background: #ec101d;
    top: -2px;
}
.menu-btn.active:after {
    transform: rotate(45deg) translate(-15px, -14.5px);
    background: #ec101d;
    top: 18px;
}



/* ------------------------------------- BODY  -------------------------------------*/
/* ------ HOME SLIDER SECTION ------ */
button.slick-prev.slick-arrow {
    position: absolute;
    left: 25px;
    z-index: 50;
    top: 85%;
    transform: translateY(-50%);
}
button.slick-next.slick-arrow {
    position: absolute;
    right: 25px;
    z-index: 50;
    top: 85%;
    transform: translateY(-50%);
}
.slick-dots li.slick-active button:before {
    opacity: 1 !important;
}
.single-slide {
    position: relative;
    height: 600px !important;
    overflow: hidden;
}
.single-slide img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}
.hide-first, .hide-second {
    display: none !important;
}
.hero-hide-text {
    display: none;
}
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 15px;
    background: hsla(0, 0%, 0%, 0.75);
}
.slide-text h2 {
    text-transform: uppercase;
}
.slide-text .play-btn {
    font-family: "rift-soft",sans-serif;
}
.slide-text .play-btn:after {
    content: '\0025BA';
    margin-left: 5px;
}
.video-placeholder {
    cursor: pointer;
    min-width: 100%;
    height: 100%;
    max-width: none;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}
#bgvideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
iframe#player1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.single-slide .slide-iframe-container .btn {
    position: absolute;
    bottom: 45px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}
.slick-prev, .slick-next {
    width: 40px !important;
    height: 70px !important;
}
.slick-next:before {
    content: url(img/icons/right-slider-arrow.png) !important;
}
.slick-prev:before {
    content: url(img/icons/left-slider-arrow.png) !important;
}
ul.slick-dots {
    bottom: 15px;
}
.slick-dots li.slick-active button:before, .slick-dots li button:before {
    color: #fff !important;
}
.slick-dots li button:before {
    font-size: 15px !important;
}

/* ------ HOME INTRO SECTION ------ */
section.home-intro {
    margin: 4em 0;
}
.home-intro h1 {
    color: #ec101d;
    margin: .5em 0;
}
.home-intro p {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 35px;
    max-width: 775px;
}
.features {
    width: 100%;
}
.feature-wrapper div:nth-child(1) h2 {
    background: #ec101d;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
}
.feature-wrapper div:nth-child(2) h2 {
    background: #999999;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
}
.features ul {
    list-style: none;
    margin: 35px 0;
}
.features ul li:not(:last-child) {
    margin-bottom: 15px;
}
.feature-wrapper div:nth-child(1) ul li:before {
    content: '✓';
    position: relative;
    right: 10px;
    color: #fff;
    background: #1a1a1a;
    border-radius: 50%;
    padding: 5px 9px 7px;
    height: 10px;
    width: 10px;
    font-size: .7em;
    margin-left: -18px;
}
.feature-wrapper div:nth-child(2) ul li:before {
    content: 'x';
    position: relative;
    right: 10px;
    color: #fff;
    background: #999999;
    border-radius: 50%;
    text-align: center;
    padding: 5px 9px 7px;
    height: 10px;
    width: 10px;
    font-size: .7em;
    margin-left: -18px;
}

/* ------ HOME MID PAGE CTA SECTION ------ */
.mid-page-cta-banner {
    border-radius: 0;
    margin-bottom: 0;
    padding: 10vh 2rem;
}
.mid-page-cta-banner h3 {
    color: #fff;
    margin-bottom: 30px;
}
.contact-popup.popup-wrapper {
    position: fixed;
    background: #fff;
    width: 95%;
    height: 95vh;
    overflow: scroll;
    padding: 50px 20px 20px;
    left:  50%;
    top: 50%;
    transform:  translate(-50%, -50%);
    z-index: 100;
    border: 2px solid #120969;
    background: url(img/our-product-request-background.jpg) no-repeat;
    background-size: cover;
}

.mid-page-cta-banner label {
    text-align:  left;
    text-transform: uppercase;
}
.mid-page-cta-banner input, .mid-page-cta-banner textarea {
    width: 100%;
    border-left: 4px solid #100090;
}

input.wpcf7-form-control.wpcf7-submit {
    width: 300px;
    background: #000;
    color: #fff;
    font-family: "rift-soft",sans-serif;
    font-size: 1.5em;
    padding: .25em 1.5em;
    margin-top: 1.3em;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
}
.mid-page-cta-banner .close-popup {
    color: #120969;
}

/* ------ CLIENT LOGO SECTION ------ */
.home-client-section {
    margin: 4em 0 0;
}
.home-client-section .section-headline {
    max-width: 490px;
    margin: 0 auto;
}
.home-logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 30px 2.5%;
}
.home-client-logo {
    padding: 0 15px;
    margin-bottom: 30px;
}
.home-logo-container p {
    text-align: center;
    font-size: .6em;
}

/* ------ COMPANY HISTORY HIGHLIGHTS ------ */
.company-history-highlights {
    background: url("img/dot-background.png");
    background-size: contain;
}
.company-history-highlights .section-headline {
    border: solid black;
    border-right: 0;
    border-left: 0;
    border-width: 2px;
    padding: 15px 0;
}
.company-history-highlights ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 3em 0;
}
.company-history-highlights ul li:not(:last-child) {
    margin-bottom: .5em;
}

/* ------ BOTTOM CTA ------ */

.bottom-cta {
    padding: 8vh 0;
    text-align: center;
}
.bottom-cta .bottom-cta-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 2em;
    width: 85%;
    margin: 0 auto;
    max-width: 1500px;
}
.bottom-cta-text h3 {
    margin-bottom: .75em;
}
.bottom-cta-text .btn {
    padding: 6px 30px;
    background: #000;
}




/* ------ ABOUT PAGE ------ */
.banner-section {
    max-height: 450px;
    overflow: hidden;
}
.about-us .banner-section {
    max-height: none;
}
.banner-image {
    height: 175px;
    width: 100%;
    object-fit: cover;
}
.banner-text {
    width: 250px;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
}
.about-desktop-dots {
    display: none;
}
.overview-container {
    position: relative;
}
.overview-paragraph-container p {
    position: relative;
}
.overview-paragraph-container p:first-child {
    margin-top: 4em;
}
.overview-paragraph-container:not(:nth-child(4)) p {
    margin-bottom: 4em;
}
.overview-paragraph-container:first-child p:before {
    content: '';
    background: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #ec101d;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    top: -40px;
}
.overview-paragraph-container:nth-child(2) p:before {
    content: '';
    background: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #100091;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    top: -40px;
}
.overview-paragraph-container:nth-child(3) p:before {
    content: '';
    background: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #ff580e;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    top: -40px;
}
.overview-paragraph-container:nth-child(4) p:before {
    content: '';
    background: #fff;
    width: 25px;
    height: 25px;
    border: 2px solid #25911f;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    top: -40px;
}
.overview-paragraph-container .play-btn {
    color: #fff;
    margin-top: 15px;
}
.overview-paragraph-container .close-btn.btn.btn-dark {
    z-index: 10000;
    display: inline-block;
    position: absolute;
    top: -60px;
    right: 1px;
    background: #ed0f1d;
    border: none;
}
.about-mid-page-cta {
    background: #f2f2f2;
    padding: 2em 1em;
    margin: 3em 0;
}
.about-mid-page-cta .mid-page-cta-text-wrapper {
    background: url("img/mid-cta-about-banner-background.jpg");
    background-size: cover;
    padding: 2em;
    text-align: center;
    color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}
.about-mid-page-cta h2 {
    font-size: 2em;
    margin-bottom: .5em;
}
.about-mid-page-cta .btn {
    background: #fff;
    color: #000;
    font-size: 1.6em;
}
.company-locations .section-headline {
    margin-bottom: 1em;
}
.single-location-container {
    margin-bottom: 3em;
}
.location-image {
    width: 75%;
    margin: 0 auto;
    display: inherit;
    max-width: 250px;
}
.location-text {
    margin-top: 1em;
    text-align: center;
}
.location-phone {
    margin-bottom: 0px;
}
.location-title-highlight {
    color: #ec101d;
    font-weight: 400;
}
.location-text h4 {
    margin-bottom: 0;
}
.team-information {
    margin-bottom: 3em;
}
.information-selectors {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.team-information button {
    width: 100%;
    padding: 15px;
    background: #cccccc;
    border: 1px solid #f5f5f5;
    color: #fff;
    font-family: "rift-soft",sans-serif;
    font-size: 1.5em;
}
.team-information button:focus, .team-information button:active, .team-information button:visited {
    outline: none;
}
button.active {
    background: #ec101d;
}
.team-information .info-content p:first-child {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2em;
}
.member-name {
    display: inline-block;
    text-decoration: underline;
}
.popup-btn {
    cursor: pointer;
}
.popup-btn:hover {
    color: #ec101d;
}
.member-biography-popup.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #fff;
    overflow: scroll;
    width: 100vw;
    padding: 30px 15px;
    z-index: 1;
}
.close-popup {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 0px;
    line-height: 1;
    font-size: 3em;
    color: #ec101d;
    cursor: pointer;
}






/* ---- OUR PRODUCT ---- */




.product-intro {
    padding: 3em 0;
}
.product-intro p {
    margin: 0;
}
.product-nav {
    background: #000;
}
.product-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}
.product-nav ul li a {
    padding: 5px;
    margin: 8px 2.5px;
    color: #fff;
    font-family: "rift-soft",sans-serif;
    font-size: 1em;
    display: inline-block;
    text-decoration: underline;
}
#technology .section-headline {
    margin-bottom: 1.3em;
}
.technology-overview-container {
    padding: 1em 0;
}
.tech-container:not(:last-child) {
    margin-bottom: 3em;
}
.tech-text-container ul {
    padding-left: 19px;
}
.tech-image {
    margin-bottom: 1em;
}
#capabilities {
    color: #fff;
    padding: 2em 0;
    background: #070177;
    background: -moz-linear-gradient(-45deg, #070177 0%, #100090 50%, #010163 100%);
    background: -webkit-linear-gradient(-45deg, #070177 0%,#100090 50%,#010163 100%);
    background: linear-gradient(135deg, #070177 0%,#100090 50%,#010163 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#070177', endColorstr='#010163',GradientType=1 );
}
#capabilities .section-headline {
    margin-bottom: .8em;
}
.capability-icons-container {
    margin: 3em 3em 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.icon-wrapper {
    text-align: center;
    width: 40%;
    margin-bottom: 1em;
}
.capability-image {
    height: 65px;
    margin-bottom: 1em;
}
#case-examples {
    padding: 3em 15px;
}
#case-examples .section-headline {
    margin-bottom: 1.3em;
}
.case-container:not(:last-child) {
    margin-bottom: 3em;
}
.case-example-image {
    margin-bottom: 1.5em;
}
.case-example-text h4 {
    margin-bottom: .4em;
}
#ai-network {
    padding: 0 15px 3em;
}
#ai-network h4 {
    margin-bottom: 1.3em;
    font-family: "montserrat", sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1em;
}
.ai-image {
    margin-top: 1.5em;
}
#key-benefits {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,1a1a1a+50,000000+100 */
    background: #000000; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #000000 0%, #1a1a1a 50%, #000000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #000000 0%,#1a1a1a 50%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #000000 0%,#1a1a1a 50%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 3em 0;
    color: #fff;
}
#key-benefits .section-headline {
    margin-bottom: 1.3em;
}
.key-benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0 15px;
    max-width: 1725px;
    margin: 0 auto;
}
.benefit-item-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 325px;
}
.benefit-item-container:not(:last-child) {
    margin-bottom: 3em;
}
.benefit-item-container:nth-child(odd) .benefit-icon-wrapper {
    order: 2;
}
.benefit-icon-image {
    height: 75px;
}
.benefit-text {
    width: 70%;
    margin-right: 2.5%;
}
.benefit-item-container:nth-child(odd) .benefit-text {
    margin-right: 15px;
    margin-left: 0;
}
.benefit-text ul, .benefit-text .play-btn {
    padding-left: 18px;
    margin-bottom: 0px;
}
.benefit-text .play-btn {
    color: #eb281c;
    text-decoration: underline;
}
#key-benefits .close-btn.btn.btn-dark {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    background: #ec101d;
    border: none;
}
#faq {
    padding: 3em 15px;
}
#faq .section-headline {
    margin-bottom: 1.3em;
}
.faq {
    border: 1px solid #989898;
}
.faq:not(:last-child) {
    margin-bottom: .5em;
}
.faq.toggle-open {
    border-color: #100090;
}
.faq .toggle-btn {
    margin: 1em;
    cursor: pointer;
}
.faq .toggle-btn:after {
    content: url("img/icons/arrow.svg");
    width: 20px;
    display: inline-block;
    position: absolute;
    right: 35px;
}
.faq .toggle-content {
    margin: 0 1.5em 1em;
    padding-left: 15px;
}
#request {
    padding: 3em 0;
    background: #f8f8f8;
}
#request .section-headline {
    margin-bottom: 1.3em;
}
textarea {
    border: 1px solid #cccccc;
}
input:focus, input:active, textarea:focus, textarea:active {
    outline: none;
}
#request input[type~="submit"] {
    width: 65%;
    background: #000;
    color: #fff;
    font-family: "rift-soft",sans-serif;
    font-size: 1.5em;
    padding: .25em 1.5em;
    margin-top: 1.3em;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 5px 0 6px rgba(0, 0, 0, 0.6);
}
#request input[type~="submit"]:hover {
    box-shadow: none;
}
#request input, #request textarea {
    border-left: 4px solid #100090;
    width: 100%;
}
#request label {
    text-transform: uppercase;
}






/* --------- MARKETS & SOLUTIONS --------- */

.solutions .banner-image {
    min-height: 225px;
}
seciton.markets-solutions-overview {
    display: inherit;
    padding: 0 15px 3em;
    max-width: 1400px;
    margin: 0 auto;
}
.solution-overview-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 452px;
    margin: 0 auto;
}
.solution-overview-container:nth-child(even) {
    margin: 0 auto 0 0;
}
.solution-overview-container:nth-child(odd) {
    margin: 0 0 0 auto;
}
.solution-overview-container:not(:last-child) {
    margin-bottom: 4.5em;
}
.solution-image-container {
    position: relative;
}
.solution-image {
    margin: 1em auto;
    box-shadow: 0px 4px 8px rgba(35, 31, 32, 0.2);
}
.solution-image-container h2 {
    position: absolute;
    color: #fff;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 1.6em;
    text-shadow: 0px 1px 12px rgba(35, 31, 32, 0.9);
    padding: 10px;
    text-align: center;
    width: 85%;
    max-width: 485px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.solution-overview-container:nth-child(even) img {
    display: inherit;
    width: 60%;
}
.solution-overview-container:nth-child(even) .solution-image {
    box-shadow: none;
}
.solution-text-box {
    box-shadow: 0px 4px 8px rgba(35, 31, 32, 0.2);
    padding: 15px;
    width: 85%;
    max-width: 450px;
    margin: -1em auto 0;
}

.solution-overview-container:nth-child(even) .solution-text-box {
    width: 95%;
    margin: 1em auto 0;
    box-shadow: none;
}
.solution-text-container h5 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 1.2em;
}
.solution-text-container ul {
    padding-left: 18px;
}






/* --------- CONTACT US --------- */
.contact-information {
    padding: 3em 0;
}
.contact-information a {
    color: #180090;
    text-decoration: underline;
}
.contact .location-text {
    margin: 3em 1em;
}
.contact #request {
    padding: 6em 0px 3em;
}
.contact-information-container:not(:last-child) {
    margin-bottom: 2em;
}
article#post-10616 br {
    display: none;
}
.contact .careers-container {
    margin-bottom: 3em;
}
.contact .careers-container .btn-primary {
    background: #000;
    border: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}



/* --------- FOOTER --------- */
.post-template-default footer {
    margin-top: 3em;
}
footer {
    background: #000000;
    background: -moz-linear-gradient(left, #000000 0%, #120869 100%);
    background: -webkit-linear-gradient(left, #000000 0%,#120869 100%);
    background: linear-gradient(to right, #000000 0%,#120869 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#120869',GradientType=1 );
    border-top: 6px solid #fff;
    color: #fff;
}
.footer-logo {
    width: 290px;
    margin: 3em auto;
}
.footer-locations {
    margin-top: 1em;
    padding-top: .25em;
    border-top: 1px solid #fff;
}
.footer-links .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.footer-nav-container ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
    margin: 3em 0;
}
.footer-nav-container li {
    margin: 8px;
}
.footer-nav-container ul li a {
    color: #fff;
    font-family: "rift-soft",sans-serif;
    font-size: 1.2em;
    font-weight: 100;
}
.footer-mail-container {
    display: inline-block;
    margin-bottom: 1em;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.footer-mail-container a {
    color: #fff;
    font-weight: 100;
    font-size: .8em;
}
.footer-nav-container ul li a:hover, .footer-mail-container a:hover {
    color: #ec101d;
    text-decoration: none;
}
.copyright {
    margin-bottom: 0;
    padding: 1em 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
    font-size: .7em;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/




/*------------------------------------*\
    TEMPLATE
\*------------------------------------*/
.template-banner {
    background: #000000;
    background: -moz-linear-gradient(left, #000000 0%, #120869 100%);
    background: -webkit-linear-gradient(left, #000000 0%,#120869 100%);
    background: linear-gradient(to right, #000000 0%,#120869 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#120869',GradientType=1 );
    padding: 3em 0;
    color: #fff;
    margin-bottom: 3em;
}
.template-banner h1.section-headline {
    text-align: left;
}




/*------------------------------------*\
    BLOG
\*------------------------------------*/

.news-and-events main#page-content, .category main#page-content {
    padding-bottom: 3em;
}
.post-details span{
    display: inline-block;
    font-size: 15px;
    font-size: 1.5rem;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #ccc;
}
.post-details span:last-of-type{
    border-right: 0px;
}
.post-content .view-article{
    text-decoration: underline;
}
.post-content p a,
.post-content li a{
    text-decoration: underline;
}

.post-thumbnail-container {
    order: 2;
}
.sidebar {
    width: 100%;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}
.sidebar ul li a {
    padding: 5px;
    margin: 8px 2.5px;
    font-size: 1.2em;
    display: inline-block;
    text-decoration: underline;
}
.news-and-events article, .category article {
    padding: 3em 0;
    border-bottom: 1px solid #cccccc;
}
.news-and-events article:first-child, .category article:first-child {
    padding-top: 0;
}
.news-and-events article:last-child, .category article:last-child {
    padding-bottom: 0;
}
.news-and-events article:not(:last-child) {
    margin-bottom: 1em;
}
.post-thumb {
    display: inherit;
    width: 90%;
    position: relative;
    margin: 0 auto;
    margin-bottom: 1.5em;
}
.thumb-category {
    border-left: 2px solid #eb281c;
    padding-left: 5px;
}
.post-details .date {
    font-style: italic;
    font-size: 1em;
}
.pagination {
    flex-wrap: wrap;
}
.page-numbers {
    border: 1px solid #cccccc;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-numbers.current {
    border-color: #eb281c;
    font-weight: bold;
}
a.page-numbers:hover {
    color: red;
    text-decoration: none;
}
.prev.page-numbers {
    border: none;
    width: auto;
    margin-right: 10px;
}
.next.page-numbers {
    border: none;
    width: auto;
    margin-left: 10px;
}
.single-post .wp-post-image {
    margin-bottom: 2em;
}






/*-------------------------------------------------------------------------------*\
                                
                                RESPONSIVE

\*-------------------------------------------------------------------------------*/


@media screen and (min-width: 20em) { /* Mobile (20 x 16 = 320px) */

}

@media screen and (min-width: 30em) { /* Mobile (30 x 16 = 480px) */

}

@media screen and (min-width: 40em) { /* Mobile (40 x 16 = 640px) */


    .home-client-section {
        margin: 7em 0 0;
    }
    .home-client-section .section-headline {
        max-width: 615px;
    }
    .section-headline {
        font-size: 2.5em;
    }
    .home-logo-container {
        padding: 4em 2.5%;
    }
    /* ------ ABOUT PAGE ------ */

    section.home-intro {
        margin: 7em 0;
    }
    .location-container {
        display: flex;
        justify-content: space-between;
    }



    /* ------ PRODUCT PAGE ------ */


    .product-nav ul li a {
        font-size: 1.2em;
        text-decoration: none;
    }
    .product-nav ul li a:hover {
        color: #e22638;
    }
    .product-intro {
        padding: 7em 0;
    }
    .tech-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .tech-text-container {
        width: 48.5%;
    }
    .tech-container:not(:last-child) {
        margin-bottom: 5em;
    }
    .tech-container:nth-child(even) .tech-image-container {
        order: 2;
    }
    .tech-image-container {
        width: 48%;
    }
    .tech-container p {
        width: 48.5%;
    }
    .case-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .case-container:nth-child(even) .case-image-container {
        order: 2;
    }
    .case-image-container {
        width: 48%;
    }
    .case-example-text {
        width: 49%;
    }
    .ai-image {
        margin: 1.5em auto 0;
        display: inherit;
    }
    .benefit-item-container {
        width: 45%;
    }
    .benefit-icon-wrapper {
        width: 25%;
    }
    .benefit-icon-image {
        height: auto;
        max-width: 90px;
    }
    .benefit-item-container:nth-child(odd) .benefit-icon-wrapper {
        order: 0;
    }
    .benefit-icon-image {
        margin-right: 5%;
    }
    .benefit-item-container:nth-child(odd) .benefit-text {
         margin-right: 0;
         margin-left: 0;
    }
}


@media screen and (min-width: 48em) { /* Tablets (48 x 16 = 768px) */

    /* COMPANY HISTORY SECTION */

    .company-history-highlights {
        padding: 6em 0;
        background-size: cover;
    }
    .company-history-highlights .container {
        max-width: 665px;
        display: flex;
        justify-content: space-between;
    }
    highlights .section-headline {
        width: 40%;
        text-align: right;
        display: inline-block;
        margin-left: 6%;
    }
    .company-history-highlights .section-headline {
        width: 40%;
        text-align: right;
        margin-left: 7%;
    }
    .company-history-highlights ul {
        width: 49%;
        margin: 0 0 0 4%;
        display: inline-block;
        text-align: left;
    }
    .company-history-highlights ul li:not(:last-child) {
        margin-bottom: .5em;
        border-bottom: 1px solid #999999;
        padding-bottom: 12px;
    }





    /* –----- ABOUT PAGE ------ */


    .banner-image {
        height: inherit;
        width: 100%;
        object-fit: inherit;
    }
    .about-mid-page-cta h2 {
        font-size: 2.5em;
        max-width: 895px;
        margin: 0 auto .5em;
    }
    .team-information button {
        width: 33.33%;
    }
    .members-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .member-wrapper {
        width: 30%;
        margin-right: 3.3333%
    }
    .member-name {
        text-decoration: none;
    }
    .member-biography-popup.popup-wrapper {
        width: 75%;
        height: auto;
        max-height: 75vh;
        max-width: 1140px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid #eb281c;
    }






    /* ---- OUR PRODUCT ---- */


    .technology-overview-container {
        padding: 0 0 5em;
    }
    #capabilities {
        padding: 5em 0;
    }
    .icon-wrapper {
        width: 20%;
    }
    #request {
        background: url("img/our-product-request-background.jpg") no-repeat;
        background-size: cover;
    }







    /* ---- MARKETS & SOLUTIONS PAGE ---- */

    .solution-overview-container {
        justify-content: space-between;
        flex-wrap: nowrap;
        max-width: none;
    }
    .solution-image-container {
        position: relative;
        width: 55%;
        z-index: 10;
        left: 5px;
    }
    .solution-text-box {
        max-width: none;
        width: 50%;
        z-index: 0;
        right: 5px;
        position: relative;
    }
    .solution-text-container {
        position: absolute;
        width: 75%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .solution-overview-container:nth-child(even) .solution-image-container {
        order: 2;
    }
    .solution-text-container p {
        margin-bottom: 0;
    }





    /* ---- FOOTER ---- */


    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-nav-container ul {
        justify-content: flex-end;
    }
    .footer-nav-container li:last-child {
        margin-right: 0;
    }
    .footer-logo {
        margin: 2em 0;
    }
    .footer-links {
        text-align: right;
    }
    .footer-links .btn {
        left: initial;
        transform: none;
    }
    .footer-nav-container ul {
        margin: 1em 0 1em 3em;
    }
    .footer-mail-container {
        left: inherit;
        transform: none;
    }

    /* ----- BLOG ----- */
    .post-thumbnail-container {
        order: 1;
        width: 68%;
    }
    .sidebar {
        width: 30%;
        max-width: 280px;
        border-left: 1px solid #eb281c;
        padding-left: 1em;
        order: 2;
    }
    .sidebar ul {
        display: block;
    }
    .sidebar ul li a {
        text-decoration: none;
    }
    .news-and-events article, .category article {
        max-width: 350px;
    }
    .post-thumb {
        width: 100%;
    }

}


@media screen and (min-width: 62em) { /* Small Laptop (62 x 16 = 992px) */

    .menu-button-container{
        display: none;
    }
    .header .logo {
        margin: 25px 10px;
    }
    .header .main-nav{
        display: block !important;
        float: right;
        background: transparent;
        margin-top: 30px;
    }
    body.home .main-nav a {
        color: #fff;
    }
    body.home .main-nav .sub-menu a {
        color: #000;
    }
    .menu-drawer-btn {
        display: none;
    }
    body.home .main-nav .sub-menu a:hover {
        color: #e31e38;
    }
    .menu-item-has-children {
        position: inherit;
    }
    .header .nav-toggle{
        display: none;
    }
    .header .main-nav li{
        display: inline-block;
    }
    .main-nav li ul{
        display: none;
        position: absolute;
        z-index: 990;
        padding: 10px; margin: 0;
        -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        box-shadow: 0px 7px 9px 0px rgba(0,0,0,0.25);
    }
    .main-nav li:hover ul{
        display: block;
    }
    .header .main-nav ul ul.sub-menu {
        margin-top: 0;
        background: #fff;
    }
    .header .main-nav li .sub-menu li {
        display: block;
    }
    .main-nav li ul li {
        display: block;
    }
    /* HOMEPAGE */
    .slide-text {
        left: 30%;
        max-width: 413px;
    }
    .features {
        width: 48%;
    }
    .contact-popup.popup-wrapper {
        width: 75%;
        padding: 50px;
        height: auto;
    }
    .mid-page-cta-banner .popup-btn:hover {
        color: #212529;
    }

    /* ABOUT */
    .banner-text {
        position: absolute;
        top: 50%;
        left: 30%;
        transform: translate(-50%, -50%);
        color: #fff;
        background: hsla(0, 0%, 0%, 0.5);
        padding: 1em;
        width: 360px;
    }
    .about-desktop-dots {
        display: inherit;
        margin: 1em auto;
        width: 78%;
    }
    .overview-paragraph-container p:first-child:before {
        display: none;
    }
    .overview-paragraph-container p:nth-child(2):before {
        display: none;
    }
    .overview-paragraph-container p:nth-child(3):before {
        display: none;
    }
    .overview-paragraph-container p:nth-child(4):before {
        display: none;
    }
    .overview-container {
        position: relative;
        display: flex;
        justify-content: space-evenly;
    }
    .overview-paragraph-container {
        width: 20%;
    }
    .overview-paragraph-container p:not(:nth-child(4)) {
        margin-bottom: 0;
    }
    .overview-paragraph-container p:first-child {
        margin-top: 0;
    }
    .member-wrapper {
        width: 20%;
        margin-right: 5%;
    }


    /* ------ OUR PRODUCT PAGE ------ */


    .benefit-item-container {
        width: 33%;
        max-width: 425px;
    }
    .contact-flexin {
        display: flex;
    }
    .contact-info {
        display: inline-block;
        width: 47.5%;
        margin-right: 2.5%;
    }
    .contact-info p:last-child {
        margin-bottom: 0;
    }
    .contact-info p:last-child label {
        margin-bottom: 0;
    }
    .message-container {
        display: inline-block;
        width: 50%;
    }
    .message-container label {
        margin-bottom: 0;
    }
    .message-container textarea {
        height: 166px;
    }
    #request input[type~="submit"] {
        width: 300px;
    }

    /* ----- BLOG ------ */
    .news-and-events article, .category article {
        max-width: none;
    }
    .post-thumb {
        display: inline-block;
        width: 40%;
        margin: inherit;
        vertical-align: top;
    }
    .post-content {
        display: inline-block;
        width: 55%;
        margin-left: 4%;
    }
    .contact-information {
        display: flex;
        justify-content: space-between;
    }
    .contact-information-container {
        width: 47.5%;
        margin: 0;
    }
}


@media screen and (min-width: 75em) { /* Large Desktop (75 x 16 = 1200px)  */
    /* ------ ABOUT PAGE ------ */
    .location-image {
        display: inline-block;
        width: 45%;
        vertical-align: top;
        margin-right: 5%;
    }
    .location-text {
        text-align: left;
        display: inline-block;
    }
}


@media screen and (min-width: 85em) {
    /* Large Desktop (85 x 16 = 1360px)  */
    .our-product .banner-image {
        position: relative;
        top: 50%;
        transform: translateY(-20%);
    }
}









@media only screen and (-webkit-min-device-pixel-ratio:1.5),
       only screen and (min-resolution:144dpi) {

}





/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background:transparent !important;
        color:#000 !important;
        box-shadow:none !important;
        text-shadow:none !important;
    }
    a,
    a:visited {
        text-decoration:underline;
    }
    a[href]:after {
        content:" (" attr(href) ")";
    }
    abbr[title]:after {
        content:" (" attr(title) ")";
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content:"";
    }
    pre,blockquote {
        border:1px solid #999;
        page-break-inside:avoid;
    }
    thead {
        display:table-header-group;
    }
    tr,img {
        page-break-inside:avoid;
    }
    img {
        max-width:100% !important;
    }
    @page {
        margin:0.5cm;
    }
    p,
    h2,
    h3 {
        orphans:3;
        widows:3;
    }
    h2,
    h3 {
        page-break-after:avoid;
    }
}
