main a[href=''] { background: blue; color: yellow; }


/* Styles for featureset template.

   developer:   rmiske
   requires:    /common/framework/css/framework.ko.css
   ========================================================================== */

/* ==========================================================================
   setup the environment
   ========================================================================== */
:root {
    /*links etc*/
    --main-red: #dd1100;
    --main-orange: #ff7700;
    --new-orange: #e65c00;

    /*measurements*/
    --wrapper-h-pad: 2rem;
}

main {
    color: #535353;
    font-family: 'Source Sans Pro', Arial, sans-serif;
}
main img, main video { height: auto; max-width: 100%; }


/*section*/
section, main header {
    padding: 0 var(--wrapper-h-pad);
    width: 100%;
}
div[id$="-content"] { 
    margin: 0 auto;
    max-width: 72.5rem; /*1160*/
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
    width: 100%;
}
div[id$="-content"].narrow { max-width: 68.75rem; }
.feature div[id$="-content"] { border-top: 1px solid #dbdbdb; }
#hero + .feature div[id$="-content"] { border-top: none; }


/*grids*/
.feature-grid {
    align-items: center;
    display: grid;
    grid-gap: 0 60px;
    grid-template-columns: 1fr 1fr;
}
.feature-grid img, .feature-grid video { margin: 0 auto; max-height: 300px; }
.feature-grid .feature-right { font-size: 0; text-align: center; }
.feature-grid.img-on-left .feature-left { order: 2; }
.feature-grid.img-on-left .feature-right { order: 1; }
.feature-grid.img-stroke img, .feature-grid.img-stroke video { border: 1px solid #dbdbdb; }
.feature-grid.img-gradient img, .feature-grid.img-gradient video { 
    background: linear-gradient(0deg, #ebebeb 0%, #fbfbfb 100%);
    padding: 0.625rem; 
}


/*text*/
main h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.1;
    padding-bottom: 1.625rem;
}
main h1 span {
    display: block;
    font-size: 1.75rem;
    text-transform: uppercase;
}

main .feature h2 {
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
}

main p {
    font-size: 1.125rem;
    padding-bottom: 0.75rem; 
}
div[id$="-content"].feature-grid p { padding-bottom: 1.375rem; }

main li {
    font-size: 1.125rem;
    line-height: 1.2;
    padding-bottom: 0.625rem;
}
main li a { color: var(--new-orange); }
main li a:hover { color: var(--main-orange); }


/*buttons*/
.buttons {
    display: flex;
    margin-top: 1.75rem;
}
.button {
    font-size: 1.125rem;
    line-height: 1;
    border-radius: 0.25rem;
    padding: 0.75rem 1.5rem;
}
.button.primary {
    background: #f86300;
    border: 1px solid #f86300;
    color: #fff;
    font-weight: 400;
}
.button.primary:hover { background: #dd1100; border-color: #dd1100; }
.button.primary:active { background: #df5900; border-color: #df5900; }

/* ==========================================================================
  Overriding Announcement Include
   ========================================================================== */
#announce-stripe {
	background: #021823!important; 
}

#announce-stripe:hover {
	 background: #01131c!important; 
}

/* ==========================================================================
   hero
   ========================================================================== */
#hero { 
    background: #072a3e url('/artificial-intelligence/researchers/img/hero-bg.png') no-repeat center;
    background-size: 2500px;
    padding-bottom: 0.75rem; 
}
#hero-content { 
    padding-bottom: 3rem;
    padding-top: 3.5rem;
}


/*setup*/
#hero .feature-grid {
    grid-template-columns: 1fr 490px; 
}
#hero .feature-grid img { max-height: none; }

#hero p { 
    color: #fff;
    display: inline; 
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
}


/* ==========================================================================
   contact us (sticky)
   ========================================================================== */
footer#contact-us {
    bottom: 0;
    background: #f86300;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.2;
    position: fixed;
    width: 100%;
    z-index: 999999999;
}
footer#contact-us:hover { background: #dd1100; }

footer#contact-us a {
    color: #fff;
    display: block;
    padding: 20px 60px;
    text-align: center;
    text-decoration: none;
}
footer#contact-us a span { 
    white-space: nowrap;
}



/* ==========================================================================
   carousel
   ========================================================================== */
.cd-hero { 
    max-width: 550px;
    position: relative; 
}
.cd-hero__slider { 
    height: calc(300px + 2rem); 
    overflow: hidden;
    position: relative;
    width: 100%;
}
.cd-hero__slide {
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    will-change: transform;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.cd-hero__slide.cd-hero__slide--selected {
    /* this is the visible slide */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.cd-hero__slide.cd-hero__slide--move-left {
    /* slide hidden on the left */
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {
    /* the cd-hero__slide--is-moving class is assigned to the slide which is moving outside the viewport */
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
html:not(.js-enabled) .cd-hero__slide { display: none; }
html:not(.js-enabled) .cd-hero__slide.cd-hero__slide--selected { display: block; }


/* hero slider nav */
.cd-hero__nav { 
    background: #fff;
    bottom: 0;
    height: 1.125rem;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.cd-hero__nav nav,
.cd-hero__nav ul,
.cd-hero__nav li,
.cd-hero__nav a { height: 100%; }

.cd-hero__nav nav {
    display: block;
    margin: 0 auto;
    position: relative;
}
.cd-hero__nav ul.outer-ul {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.cd-hero__nav li { 
    line-height: 1.125rem; 
    padding-bottom: 0; 
}
.cd-hero__nav ul.outer-ul li.scroll {
    overflow: hidden;
    width: 100%;
}
.cd-hero__nav ul.inner-ul {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
}
.cd-hero__nav ul.inner-ul > li { flex: 0 0 auto; }
.cd-hero__nav .dot {
    background: transparent;
    border-radius: 100%;
    border: 2px solid #a6a6a6;
    cursor: pointer;
    display: inline-block;
    height: 12px;
    margin: 0 4px;
    width: 12px;
}
.cd-hero__nav li.cd-selected .dot { background: #a6a6a6; }
.cd-hero__nav .dot:hover { border-color: var(--link-hover); }
.cd-hero__nav li.cd-selected .dot:hover { background: var(--link-hover); }



/* ==========================================================================
   responsive breakpoint styles
   ========================================================================== */
@media (max-width: 1200px) {
    /*setup*/
    :root {
        /*measurements*/
        --wrapper-h-pad: 3rem; /*45px*/
    }


    /*hero*/
    #hero .feature-grid {
       align-items: start;
       /*grid-template-columns: 1fr 350px;*/
    }
    #hero .feature-right {
        align-self: center;
    }
}


@media (max-width: 900px) {
    /*setup*/
    :root {
        /*etc*/
        --wrapper-h-pad: 3.2rem; /*~45px*/
    }
    .feature-grid { grid-template-columns: 1fr !important; }
    .cd-hero { margin-top: 1rem; }
    .feature-grid img, .feature-grid video { display: block !important; }


    /*hero*/
    #hero { 
        background-image: url('/artificial-intelligence/researchers/img/hero-bg-m.png');
        background-position-x: 65%; 
        background-position-y: 35%; 
    }
    #hero h1 { 
        text-align: center;
    }
    #hero .feature-grid { padding: 1rem 0 0; }
    #hero .feature-grid img { padding: 0 ; margin-bottom: 2rem; }
    #hero .feature-left { text-align: center; }
    #hero .buttons { justify-content: center; }
    #hero .button { font-size: 18px; }


    /*carousel*/
    .cd-hero { margin-left: auto; margin-right: auto; }
}


@media (max-width: 600px) {
    /*setup*/
    :root {
        /*etc*/
        --wrapper-h-pad: 1rem; /*line up with global menu*/
    }
    div[id$="-content"] {
        padding-bottom: 32px;
        padding-top: 32px;
    }
    section.feature { padding-left: 0; padding-right: 0; }
    section.feature div[id$="-content"] {
        padding-left: var(--wrapper-h-pad);
        padding-right: var(--wrapper-h-pad);
    }
    div[id$="-content"].feature-grid p { font-size: 17px; }
    main li { font-size: 1.24rem; line-height: 1.25; }
    div[id$="-content"] .intro { padding-left: var(--wrapper-h-pad); padding-right: var(--wrapper-h-pad); }
    div[id$="-content"] .intro p { font-size: 1.2rem; padding-bottom: 2rem; }
    .button { 
        border-radius: 0.3rem;
        font-size: 1.24rem;
        padding: 0.9rem 1.7rem;
    }


    /*hero*/
    #hero #breadcrumb { padding-bottom: 1.175rem; }
    #hero .button.primary { font-size: 16px; }
}


@media (max-width: 320px) {}


@media print {}
