/*-------------------------------------------*\
** Imports
    - Colors
    - Typography
    - Mixins
    - Buttons
    - Navigation
    - Header
    - Footer
    - Forms    
    - Carousel    
** SASS Variables
** Global
\*-------------------------------------------*/


/**
* colors.scss
* partial to store color variables and color maps
*/


/**
 * typography.scss
 *
 * partial to store typography including imports of fonts as well as
 * setting up variables for font faces
 */

@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap");
h6 {
    font-size: 0.5rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #0e5196;
    font-weight: 900;
}

h5 {
    font-size: 1rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #0e5196;
    font-weight: 900;
}

h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #0e5196;
    font-weight: 900;
}

h3 {
    font-size: 2rem;
    margin: 1rem 0;
    color: #0e5196;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #0e5196;
    font-weight: 900;
}

h1 {
    font-size: 3rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #0e5196;
    font-weight: 900;
}

.image_header_CDS {
    max-width: 40%;
}

.image_header_SMU {
    width: auto;
    margin-right: 5%;
}

.bold {
    font-weight: 900;
}

.table td {
    border-top: unset;
}

.table td,
.table th {
    padding: unset;
}

.title {
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1.7;
}
/* for ads on conference screen */
.ad_mobile {
	display:none;
	}
	
.ad_banner {
	Display:block;
}
/**
* mixins.scss
* partial to store mixins for commonly used styles such as transitions,
* opacity, borders, etc.
*/


/**
* buttons.scss
* partial to define all buttons states
*/

.btn {
    padding: 0.5rem;
    text-align: center;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0;
    border-width: 0.1rem;
    border-radius: 2rem;
    display: block;
    width: 100%;
    /*
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  */
}

.btn:hover {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/*.btn:active {
    -webkit-transition: unset;
    transition: unset;
}
*/

.btn--solid.btn--white {
    background-color: #fff;
    border-color: #fff;
    color: choose-contrast-color(#fff);
}

.btn--solid.btn--white:hover {
    background: none;
    color: #fff;
}

.btn--solid.btn--black {
    background-color: #000;
    border-color: #000;
    color: choose-contrast-color(#000);
}

.btn--solid.btn--black:hover {
    background: none;
    color: #000;
}

.btn--solid.btn--gray {
    background-color: #666;
    border-color: #666;
    color: choose-contrast-color(#666);
}

.btn--solid.btn--gray:hover {
    background: none;
    color: #666;
}

.btn--solid.btn--gray-light {
    background-color: #efefef;
    border-color: #efefef;
    color: choose-contrast-color(#efefef);
}

.btn--solid.btn--gray-light:hover {
    background: none;
    color: #efefef;
}

.btn--solid.btn--blue {
    background-color: #0e5196;
    border-color: #0e5196;
    color: choose-contrast-color(#0e5196);
}

.btn--solid.btn--blue:hover {
    background: none;
    color: #0e5196;
}

.btn--solid.btn--red {
    background-color: rgb(255, 49, 49);
    border-color: rgb(255, 49, 49);
    color: choose-contrast-color(#0e5196);
	box-shadow: var(--clay-shadow-outset,8px 8px 16px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-8px -8px 16px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,8px 8px 16px 0 hsla(0,0%,100%,.2));
}
.btn--solid.btn--red:hover {
    background: rgb(147, 149, 152);
    border-color: rgb(147, 149, 152);
	
}


.btn--solid.btn--blue-light {
    background-color: #7da7d9;
    border-color: #7da7d9;
    color: choose-contrast-color(#7da7d9);
	
}

.btn--solid.btn--blue-light:hover {
    background: none;
    color: #7da7d9;
}

.btn--solid.btn--purple {
    /*background-color: #8560a8;*/
    border-color: #8560a8;
    color: choose-contrast-color(#8560a8);
}

.btn--solid.btn--purple:hover {
    background: none;
    color: #fff;
    background-color: #8560a8;
}

.btn--solid.btn--fuschia {
    background-color: #8f008f;
    border-color: #8f008f;
    color: choose-contrast-color(#8f008f);
}

.btn--solid.btn--fuschia:hover {
    background: none;
    color: #8f008f;
}

.btn--solid.btn--pink {
    background-color: #ff00ff;
    border-color: #ff00ff;
    color: choose-contrast-color(#ff00ff);
}

.btn--solid.btn--pink:hover {
    background: none;
    color: #ff00ff;
}

.btn--outline.btn--white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
	box-shadow: var(--clay-shadow-outset,4px 4px 8px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-1px -1px 18px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,4px 4px 4px 0 hsla(0,0%,100%,.2));
    /*
  -webkit-box-shadow: 5px 10px 5px #333;
    box-shadow: 5px 10px 5px #333;;*/
}

.btn--outline.btn--white:hover {
    background: rgb(147, 149, 152);
    border-color: rgb(147, 149, 152);
}

.btn--outline.btn--black {
    background-color: transparent;
    border-color: #000;
    color: #000;
}

.btn--outline.btn--black:hover {
    background: #000;
    color: #fff;
}

.btn--outline.btn--gray {
    background-color: transparent;
    border-color: #666;
    color: #666;
}

.btn--outline.btn--gray:hover {
    background: #666;
    color: #fff;
}

.btn--outline.btn--gray-light {
    background-color: transparent;
    border-color: #efefef;
    color: #efefef;
}

.btn--outline.btn--gray-light:hover {
    background: #efefef;
    color: #fff;
}

.btn--outline.btn--blue {
    background-color: transparent;
    border-color: #0e5196;
    /*-webkit-box-shadow: 5px 10px 5px #333;;
  box-shadow: 5px 10px 5px #333;;
  color: #0e5196; took out mjd 
  background-color: rgb(62, 126, 138, 0.3);*/
}

.btn--outline.btn--blue:hover {
    background: #3B7AA9;
    color: #fff;
}

.btn--outline.btn--blue-light {
    background-color: transparent;
    border-color: #3B7AA9;
box-shadow: var(--clay-shadow-outset,4px 4px 8px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-1px -1px 18px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,4px 4px 4px 0 hsla(0,0%,100%,.2));   
   /*-webkit-box-shadow: 5px 10px 5px #333;
    box-shadow: 5px 10px 5px #333;
  color: #7da7d9; took out mjd 
  background-color: rgb(62, 126, 138, 0.3);*/
}

.btn--outline.btn--blue-light:hover {
    background: #3B7AA9;
    color: #fff;
    /*-webkit-box-shadow: 10px 15px 5px #999;
  box-shadow: 10px 15px 5px #999;*/
}

.btn--outline.btn--purple {
    background-color: transparent;
    border-color: #8560a8;
    /* mjd color: #8560a8;
  background-color: rgb(62, 126, 138, 0.3);*/
}

.btn--outline.btn--purple:hover {
    background: #8560a8;
    color: #fff;
}

.btn--outline.btn--fuschia {
    background-color: transparent;
    border-color: #8f008f;
    /* took out mjd color: #8f008f;
  background-color: rgb(62, 126, 138, 0.3); */
}

.btn--outline.btn--fuschia:hover {
    background: #8f008f;
    color: #fff;
}

.btn--outline.btn--pink {
    background-color: transparent;
    border-color: #ff00ff;
    /*color: #ff00ff; took out mjd*/
    /*background-color: rgb(62, 126, 138, 0.3);*/
}

.btn--outline.btn--maroon {
    border-color: #9f2021;
}

.btn--outline.btn--maroon:hover {
    background: #9f2021;
    color: #fff;
}

.btn--outlinee.btn--pink.a {
    color: #0e5196;
}

.btn--outline.btn--pink:hover {
    background: #ff00ff;
    color: #fff;
}

.btn--outline.btn--red {
    background-color: transparent;
    border-color: rgb(255, 49, 49);
	box-shadow: var(--clay-shadow-outset,8px 8px 16px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-8px -8px 16px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,8px 8px 16px 0 hsla(0,0%,100%,.2));
}

.btn--outline.btn--red:hover {
    background: rgb(255, 49, 49);
    color: #fff;
}


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

.btn--outline.btn--lightBlue:hover {
    background: #7da7d9;
    border-color: #7da7d9;
    /*-webkit-box-shadow: 10px 10px 5px #999;
    box-shadow: 10px 10px 5px #999; */
}

.btn--outline.btn--white:active {
    /*box-shadow: 0 4px #333;*/
    transform: translateY(14px);
    /*-webkit-box-shadow: 0 5px #333;*/
}

.btn--outline.btn--blue:active {
    box-shadow: 0 4px #333;
    transform: translateY(14px);
    -webkit-box-shadow: 0 5px #333;
}

.btn--outline.btn--blue-light:active {
    box-shadow: 0 5px #333;
    transform: translateY(4px);
    -webkit-box-shadow: 0 5px #333;
}


/**
 * navigation.scss
 *
 */

@-webkit-keyframes scroll {
    from {
        top: -110px;
    }
    to {
        top: 0;
    }
}

@keyframes scroll {
    from {
        top: -110px;
    }
    to {
        top: 0;
    }
}

.springy-text {
    animation-name: springy-text;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 6;
    animation-direction: alternate-reverse;
    animation-fill-mode: backwards;
}

@keyframes springy-text {
    0% {
        letter-spacing: 1.2em;
        color: thistle;
    }
    100% {
        letter-spacing: 0.1em;
        color: darkslateblue;
    }
}

.chameleon {
    color: orange;
    animation-name: chameleon;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 3.0);
    animation-delay: 0s;
    animation-iteration-count: 15;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes chameleon {
    0% {
        font-size: 1em;
    }
    50% {
        font-size: 2em;
        color: limegreen;
    }
    100% {
        font-size: 1em;
    }
}

.zoom {
    padding: 50px;
    background-color: green;
    transition: transform .2s;
    /* Animation */
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.header {
    position: relative;
    z-index: 999;
}

.header a {
    color: #0e5196;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /*font-size: large;*/
    font-family: "Raleway", sans-serif;
}

.header a:hover {
    color: rgb(255, 49, 49);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header .duplicate {
    display: block;
}

.header .header-inner {
    height: 121px;
    background: #fff;
    width: 100%;
}

.header .header-inner.scrolled {
    position: fixed;
    -webkit-animation: scroll 1s forwards;
    animation: scroll 1s forwards;
}

.header .header-inner.scrolled .logo {
    display: block;
}

.header .header-inner.scrolled .navigation-main {
    display: none;
}

.header .header-inner.scrolled .duplicate {
    display: block;
}

.header .container {
    /* change back if any weird things happen, changed 8/19/2020  mjd
  max-width: 1600px;
  */
    position: relative;
}

.subpage .header .header-inner.scrolled {
    -webkit-animation: none;
    animation: none;
    
	top: 0;
	
}

.header-cta {
    width: 100%;
    background: rgb(0, 19, 146);
    color: #fff;
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 900;
    font-size: 0.9rem;
	box-shadow: var(--clay-shadow-outset,4px 4px 8px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-1px -1px 18px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,4px 4px 4px 0 hsla(0,0%,100%,.2));
}

.header-cta a {
    color: #fff;
}

.header-cta__description {
    width: 50%;
    float: left;
    font-family: "Raleway", sans-serif;
}

.header-cta__link {
    width: 50%;
    float: left;
    text-align: right;
    font-family: "Raleway", sans-serif;
}

.header-navigation {
    width: 100%;
}

.header-navigation .logo {
    max-width: 300px;
    display: inline-block;
}

.header-navigation .logo img {
    width: 20vw;
    height: auto;
    margin-top: auto;
}

.navigation-main {
    float: right;
    margin: 15px 60px 0 0;
    display: none;
}

.navigation-main ul {
    list-style: none;
    font-size: initial;
}

.navigation-main ul li {
    display: inline-block;
    font-weight: 900;
    margin: 0 0 0 .6rem;
}

.navigation-dd__menu {
    display: none;
    position: absolute;
    right: 0;
    padding: 0 1rem;
    background: #fff;
}

.navigation-dd__menu ul {
    list-style: none;
    font-size: initial;
}

.navigation-dd__menu ul li {
    margin: .5rem 0 0 0;
    padding: .5rem 0 0 0;
    border-top: solid 1px #f1f1f1;
}

.navigation-dd__menu.opened {
    display: block;
}

.navigation-dd__btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 4px;
    right: 10px;
    z-index: 99999;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.navigation-dd__btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 34px;
    background: #333;
    border-radius: 1px;
    opacity: 1;
    left: 8px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navigation-dd__btn span:nth-child(1) {
    top: 12px;
}

.navigation-dd__btn span:nth-child(2),
.navigation-dd__btn span:nth-child(3) {
    top: 23px;
}

.navigation-dd__btn span:nth-child(4) {
    top: 34px;
}

.navigation-dd__btn.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.navigation-dd__btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navigation-dd__btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navigation-dd__btn.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

@media (min-width: 768px) {
    .header .navigation-main {
        display: block;
    }
    .header .duplicate {
        display: none;
    }
    .header .scrolled .logo {
        margin: 0 auto;
    }
    .section {
        padding: 4rem;
    }
}


/**
 * header.scss
 *
 */


/**
 * footer.scss
 *
 */


/**
* forms.scss
* partial to define all form styles
*/

.form--signup input {
    padding: 0.5rem 1rem;
    background: transparent;
    border: solid 1px #fff;
    color: #fff;
    border-radius: 2rem;
    font-size: 1rem;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    display: block;
    width: 100%;
}

.form--signup input::-webkit-input-placeholder {
    color: #fff;
}

.form--signup input:-ms-input-placeholder {
    color: #fff;
}

.form--signup input::-ms-input-placeholder {
    color: #fff;
}

.form--signup input::placeholder {
    color: #fff;
}

.form--signup input[type=submit] {
    width: 50%;
    background: #fff;
    color: #3B7AA9;
}


/**
 * carousel.scss
 *
 * partial to store carousel styles
 */

.carousel {
    overflow-x: hidden;
    overflow-y: hidden;
    height: 130px;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.carousel__list {
    position: absolute;
    list-style: none;
}

.carousel__item {
    height: 130px;
    max-width: 200px;
    display: inline-block;
    margin: 0;
}

.carousel__outer {
    height: 130px;
    display: table;
    margin: 0;
}

.carousel__inner {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 2rem;
}

.carousel img {
    display: block;
    max-height: 130px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
}


/*-------------------------------------------*\
** SASS Variables
\*-------------------------------------------*/


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

* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    height: 100%;
    font-family: "Raleway", sans-serif;
    background: #fff;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


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

.hero {
    position: relative;
    background-color: black;
    /*background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/DS-Connect-21_Website-Image_FINAL.svg) no-repeat !important;*/
    height: 850px;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    margin: 0 auto;
    background-size: cover !important;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-color: black;*/
    /*background-color: blue;*/
    /*background-color: grey;*/
    opacity: 0.3;
    z-index: 1;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.hero__content {
    max-width: 1920px;
    position: inherit;
    z-index: 9;
    height: 100%;
}

.hero__date-loc {
    color: #fff;
    text-transform: uppercase;
    margin: 1rem 0 0 1rem;
}

.hero__date-loc div {
    clear: both;
}

.hero__logo {
    max-width: 500px;
    width: 100%;
    margin: 1rem auto 1rem auto;
}

.hero__logo img {
    width: 100%;
    height: auto;
}

.hero__tagline {
    color: #fff;
    text-shadow: 2px 2px 8px black;
	font-family:Anton;
    /*font-weight: 900;*/
    font-size: 9.0rem;
    text-align: left;
    /*max-width: 1000px;*/
    width: 100%;
    margin: 5% 5% 0%  5%;
    line-height: 1.1;
}

.hero__tagline span {
    color:  rgb(147, 149, 152);
    text-shadow: 2px 2px 8px black;
	font-family:Anton;

    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    line-height: 1.1;
}

.hero__ctas {
    /*max-width: unset;
    margin: 78px 130px 66% 27%;
    margin: 50px 127px 53% 16%;*/
    max-width: 787px;
    padding-left: 3%;
    margin-left: 2%;
}

.hero__ctas_colo {
    /*margin: 78px 130px 66% 27%;
  margin: 50px 127px 53% 16%;*/
    max-width: 810px;
    margin: -25px auto;
    align-items: flex-end;
}

.hero__ctas_colo img {
    width: 70%;
}

.hero__ctas a {
    margin: 1rem auto;
    max-width: 80%;
    font-size: 1.4rem;
    padding: 0.5rem 0.5rem;
    color: #fff !important;
    text-shadow: 0 1px 10px #000;
}


/*-------------------------------------------*\
** Sections
    - Global
    - Intro (homepage)
    - Call to Action
    - Carousel
    - Events
    - Stats
\*-------------------------------------------*/

.section {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    background: #fff;
    text-align: center;
}

.section--img {
    background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 3, 87, 0.9)), to(rgba(0, 3, 87, 0.8))), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/DS24back2.svg") center center no-repeat;
    background: linear-gradient(to bottom left, rgba(0, 3, 87, 0.9), rgba(0, 3, 87, 0.8)), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/DS24back2.svg") center center no-repeat;
    background-size: cover;
    color: #fff;
}

.section--img h2 {
    color: #fff;
}

.section--shadow {
    -webkit-box-shadow: 0 2px 10px #000;
    box-shadow: 0 2px 10px #000;
    position: relative;
    z-index: 1;
}

.section .btn {
    width: auto;
    margin: 1rem auto;
    display: inline-block;
    padding: 0.5rem 3rem;
}

.section--intro__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section--intro__icon {
    color: rgb(0, 19, 146);
    -webkit-box-flex: 46%;
    -ms-flex: 46%;
    flex: 46%;
    margin: 4% 2%;
    background: white;
    border-radius: 10px;
    text-align: center;
    padding: 2rem 1rem;
	-webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
	box-shadow: var(--clay-shadow-outset,4px 4px 8px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-1px -1px 18px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,4px 4px 4px 0 hsla(0,0%,100%,.2));
    
}

.section--intro__icon i {
    display: block;
    font-size: 8rem;
    margin: 0 0 1rem 0;
}

.section--intro__icon:hover {
    color: #7da7d9;
	transform: scale(0.8);
    
}

.section--sponsor__icon {
    color: #fff;
    -webkit-box-flex: 20%;
    -ms-flex: 20%;
    flex: 20%;
    margin: 4% 2%;
    background: rgb(0, 19, 146);
    border-radius: 10px;
    text-align: center;
    padding: 2rem 1rem;
-webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
	box-shadow: var(--clay-shadow-outset,4px 4px 8px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-primary,-1px -1px 18px 0 rgba(0,0,0,.25)),inset var(--clay-shadow-inset-secondary,4px 4px 4px 0 hsla(0,0%,100%,.2));
    
}

.section--sponsor__icon i {
    display: block;
    font-size: 8rem;
    margin: 0 0 1rem 0;
}

.section--sponsor__icon:hover {
    color: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 16px 16px 5px #333;
    box-shadow: 16px 16px 5px #333;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
		transform: scale(0.8);
}

.section--speakers {
    padding: 4rem 2rem;
    text-align: center;
}

.section .speaker__list {
    text-align: center;
}

.section .speaker__item {
    display: inline-block;
    text-align: center;
    height: 220px;
    width: 220px;
    margin: 1rem;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}

.section .speaker__link {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.section .speaker__link:hover {
    color: #ff00ff;
}

.section .speaker__info {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    padding: 0.5rem;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.section .speaker__name,
.section .speaker__company {
    font-size: 0.8rem;
    font-weight: 900;
    display: block;
}

.section .speaker__company {
    font-style: italic;
}

.section .speaker__image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    position: relative;
    transition: transform .2s;
    /*
   These 2 below add greyscale to the speaker pics
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); 
  */
    -webkit-box-shadow: 0 2px 5px #000;
    box-shadow: 0 2px 5px #000;
}

.section .speaker__image:hover {
    border-radius: 20px;
    width: 100%;
    height: auto;
    position: relative;
    transform: scale(1.1);
    box-shadow: 0px 0px 62px #fff;
}

.section--cta {
    padding: 4rem 2rem;
    text-align: center;  
}

.section--cta .btn {
    font-size: 1.7rem;
}

.section--cta-speaker {
    background:  url("https://dzceab466r34n.cloudfront.net/Conference/DataSummit/BeASpeaker1.png") right 25% no-repeat;
    /*background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 3, 87, 0.8)), to(rgba(0, 3, 87, 0.8))), url("/Conferences/images/West2020/BeaSpeaker.jpg") center center no-repeat;
    background: linear-gradient(to bottom left, rgba(0, 3, 87, 0.8), rgba(0, 3, 87, 0.8)), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/DS24back2.svg") center center no-repeat;*/
    background-size: cover;
}

.section--cta-sponsor {
    background:  url("https://dzceab466r34n.cloudfront.net/Conference/DataSummit/DS2022SPONSOR.png") center 35% no-repeat;
    /*background: linear-gradient(to bottom left, rgba(0, 3, 87, 0.8), rgba(0, 3, 87, 0.8)), url("https://dzceab466r34n.cloudfront.net/Conference/DataSummit/DS2022SPONSOR.png") center 35% no-repeat;*/
    background-size: cover;
}

.section--cta-tracks {
    background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 3, 87, 0.8)), to(rgba(0, 3, 87, 0.8))), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/DS24back2.svg") no-repeat fixed top center;
    background: linear-gradient(to bottom left, rgba( 0, 3, 87, 0.8), rgba(0, 3, 87, 0.8)), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/DS24back2.svg") no-repeat fixed top center;
    background-size: cover;
}

.section--carousel {
    text-align: center;
    padding: 4rem 2rem;
    color: #0e5196;
    background: #fff;
}

.section--events__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section--events__event {
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    text-align: center;
    height: 300px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 2rem;
    line-height: 1;
}

.section--events__event span {
    position: relative;
    z-index: 9;
}

.section--events__event img {
    position: relative;
}

.section--events__event:hover {
    color: #fff;
}

.section--stats .stats {
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
    list-style: none;
}

.section--stats .stats__item {
    display: inline-block;
    padding: 2rem;
    text-align: center;
}

.section--stats .stats span {
    font-size: 4rem;
}

.section--testimonials {
    text-align: center;
}

.section--testimonials .testimonials {
    list-style: none;
    position: relative;
    margin: -3rem auto 0 auto;
    max-width: 1200px;
    display: block;
}

.section--testimonials .testimonials__item {
    background: #fff;
    -webkit-box-shadow: 0 1px 3px #ccc;
    box-shadow: 0 1px 3px #ccc;
    color: #666;
    border-radius: 5px;
    position: relative;
    padding: 2rem;
    font-size: 1rem;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin: 1% 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.section--testimonials .testimonials__image {
    border-radius: 50%;
    /*-webkit-filter: grayscale(100%);
  filter: grayscale(100%);*/
    max-width: 170px;
    width: 100%;
    margin: 0 0 1rem 0;
}

.section--testimonials .testimonials__quote {
    display: block;
    font-style: italic;
}

.section--testimonials .testimonials__name,
.section--testimonials .testimonials__company {
    display: inline-block;
    font-size: 1.2rem;
}


/*-------------------------------------------*\
** Video (responsive)
\*-------------------------------------------*/

.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    margin: 15px 0 7px 0;
}

.video__outer {
    position: relative;
    display: block;
    max-width: 100%;
}

.video__inner {
    padding-top: 56.25%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/*--------------------------{-----------------*\
** Other Screens
\*-------------------------------------------*/

@media screen and (max-width:1175px) {
    .form--signup {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 768px) {
/*   
   .hero {
        height: 750px;
    }
    .hero__tagline {
        font-size: 3rem;
    }
    */
    .hero__ctas a {
        max-width: 100%;
    }
    .section {
        padding: 4rem;
    }
    .section--intro,
    .section--events {
        text-align: left;
    }
    .section--testimonials .testimonials {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -7rem auto 0 auto;
    }
    .section--testimonials .testimonials__item {
        -webkit-box-flex: 48%;
        -ms-flex: 48%;
        flex: 48%;
        margin: 1%;
    }
}


/*
@media (max-width: 768px) {
  .hero {
    height: unset;
  }
  .hero__tagline {
    font-size: 1.9rem;
  }
  .hero__ctas a {
    max-width: 100%;
  }
  .section {
    padding: 4rem;
  }
  .section--intro, .section--events {
    text-align: left;
  }
  .section--testimonials .testimonials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -7rem auto 0 auto;
  }
  .section--testimonials .testimonials__item {
    -webkit-box-flex: 48%;
        -ms-flex: 48%;
            flex: 48%;
    margin: 1%;
  }


}
*/

@media (min-width: 992px) {
    /* .hero__tagline {
    font-size: 1.9rem;
  }
  */
    .section--hotel,
    .section--testimonials,
    .section--form {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero__tagline {
        margin: 2rem auto;
		    font-size: 5rem;
    }
    .hero__logo {
        width: 63%;
        margin: 1rem auto 0rem auto;
    }
}

@media (max-width: 630px) {
    .section--events__event {
        -webkit-box-flex: 51%;
        -ms-flex: 51%;
        flex: 51%;
    }
}

@media screen and (max-width:450px) {
    .ad_mobile {
	display: flex;
    justify-content: center;
    background-color: grey;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    margin: auto 2rem auto;
	
	}
.ad_mobile.scrolled {
	display:flex;
	justify-content:center;
	background-color:grey;
	bottom: 0;
	position:fixed;
	z-index:99999;
	margin: auto 2rem auto;
	
}

.ad_banner {
	Display:none;
}
	
	.hero__logo {
        max-width: 600px;
        width: 100%;
        margin: 1rem auto -3rem auto;
    }
    .section {
        padding: 1.7rem;
    }
    .section--cta .btn {
        font-size: 1.2rem;
    }
    .navigation-dd__btn {
        top: -7px;
    }
    .hero__tagline span {
        font-size: 1.2rem;
    }
    .hero video {
        display: contents;
        /*
  if no video at phone size hide everythign but display:contents
  

  position: absolute;
  top: 50%;
  
  min-width: 50%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  */
    }
    .hero {
        background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/DS24_Static%20_background.jpg) no-repeat !important;
        background-size: cover !important;
        height: 950px;
    }
    .hero__ctas {
        max-width: 700px;
        margin: 0 auto;
    }
    .hero__ctas_colo {
        /* max-width: 800px; */
        /* margin: 1px auto auto; */
        /* max-width: 900px; */
        margin: auto;
        /* padding-left: 18%; */
        width: 230px;
    }
    .navigation-dd__menu ul {
        font-size: 0.8rem;
    }
    .header-navigation .logo {
        max-width: 180px;
    }
	
	.header-navigation .logo img {
    width: 96% !important;
	}
    .hero__tagline {
        font-size: 5rem;
        
    }
	.hero__tagline span{
        font-size: 5rem;
        
    }
    .col-md-4 {
        margin-left: unset !important;
    }
    .image_header_CDS {
        padding-top: 10px;
        max-width: 92%;
    }
}

@media screen and (max-width:375px) {
.ad_mobile.scrolled {
	
	margin: auto 1.8rem auto;
	
}	
}


@media screen and (max-width:320px) {
.ad_mobile.scrolled {
	
	margin: auto;
	
}	
}