/*-------------------------------------------*\
** 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;
}

.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;
}


/**
* 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: "Poppins", 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--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--red {
	background-color: #e71489;
    border-color: #e71489;
    color: choose-contrast-color(#e71489);
	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));
}

.btn--solid.btn--red:hover {
background-color: #40b1e5;
    border-color: #40b1e5;
    color: choose-contrast-color #40b1e5;
	 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));
}
.btn--solid.btn--blue:hover {
    background: none;
    color: #0e5196;
}

.btn--solid.btn--blue-light {
    background-color: rgb(24,132,184);
    border-color: rgb(24,132,184);
    color: choose-contrast-color rgb(24,132,184);
	 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));
}

.btn--solid.btn--blue-light:hover {
    background: #B11116;
	border-color:#B11116;
    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: #e71489;
    border-color: #e71489;
    color: #fff;
}

.btn--solid.btn--pink:hover {
    background: #40b1e5;
	border-color: #40b1e5;
    
}

.btn--outline.btn--white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

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

.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;
    /*color: #0e5196; took out mjd 
  background-color: rgb(62, 126, 138, 0.3);*/
}

.btn--outline.btn--blue:hover {
    background: #0e5196;
    color: #fff;
}

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

.btn--outline.btn--blue-light:hover {
    background: rgb(148,7,10);
    color: #fff;
}

.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--maroon {
    border-color: #9f2021;
}

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

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

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

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

.btn--outline.btn--red {
    background-color: transparent;
    border-color: #e71489;
    border-radius: 20px;
    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));
}

.btn--outline.btn--red:hover {
    background: #e71489;
    color: #fff;
}


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

.btn--outline.btn--white:hover {
    background: #e71489;
    border-color: #e71489;
}


/**
 * navigation.scss
 *
 */

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

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

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

.header a {
    color: rgb(32, 82, 149);
    -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: #e71489;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


}
.header .duplicate {
    display: block;
}
.header .header-inner {
    height: 120px;
    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: #005984;*/
    color: #fff;
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 900;
    font-size: 0.9rem;
	background:linear-gradient(to left, #1e4a7b,#40b1e5,#1e4a7b);
    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;
	margin-top:0.4%;
}
.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: 134%;
    height: auto;
    margin-top: 2%;
	max-width: unset;
}
.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 1rem;
}
.navigation-dd__menu {
    display: none;
    position: absolute;
    right: 0;
    padding: 0 1rem;
    background: #fff;
    border-radius: 20px;
    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));
}
.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;
    border-radius: 5px;
    box-shadow: var(--clay-shadow-outset, 4px 4px 8px 0 rgba(0, 0, 0, .25)), inset var(--clay-shadow-inset-primary, -1px 1px 4px 0 rgba(0, 0, 0, .25)), inset var(--clay-shadow-inset-secondary, 4px 4px 18px 0 hsla(0, 0%, 100%, .2));
}
.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: 85%;
}
.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: 85%;
    background: #fff;
    color: #0e5196;
}

/**
 * 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;
	font-weight:100;
    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:rgb(32,82,149);*/
    
    background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/KMW25_headerimage.svg) top no-repeat !important;
    height: 750px;
    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%;
	margin-left:10%;
}
.hero__date-loc {
    color: #fff;
    text-transform: uppercase;
    margin: 1rem 0 0 1rem;
}
.hero__date-loc div {
    clear: both;
}
.hero__logo {
    max-width: 1300px;
    width: 80%;
    margin: 7% 0 0 0;
}
.hero__logo img {
    width: 100%;
    height: auto;
}
.hero__tagline {
 font-size:3rem;
		 text-transform: uppercase;
	 font-weight: 700;
	 color: white;
	line-height:initial;
	 letter-spacing:normal;
	  font-family: "Barlow", serif;
  max-width: 1900px;
    width: 100%;
    margin:  auto;
  font-style: normal;
  text-align: center;
  padding-top:130px;
}

.hero__tagline span {
	    color: #fff;
	font-size: 5.4rem;
	font-weight: 700;
    line-height: 0.9;
    vertical-align: middle;
	 color:#e3e0d7;
	 letter-spacing: -1.9px;
	 text-transform: uppercase;
	 font-family: 'League Spartan', sans-serif;
}


.hero__ctas {
    max-width: 800px;
}
.hero__ctas a {
    margin: 1rem auto;
    max-width: 90%;
    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(rgb(44, 116, 179)), to rgb(44, 116, 179)), url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KM_Blue_lt%20blue%20gradient.png") center center no-repeat;
	*/
    background: url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KM_Blue_lt%20blue%20gradient.png") 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;
	    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__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.section--intro__icon {
    color: #fff;
    -webkit-box-flex: 46%;
    -ms-flex: 46%;
    flex: 46%;
    margin: 4% 2%;
    background: #1e4a7b;
    border-radius: 10px;
    text-align: center;
    padding: 2rem 1rem;
    -webkit-box-shadow: 0 2px 5px #000;
    box-shadow: 0 2px 5px #000;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.section--intro__icon i {
    display: block;
    font-size: 8rem;
    margin: 0 0 1rem 0;
}
.section--intro__icon:hover {
    /*color: rgba(255, 255, 255, 0.5);*/
    
    color: #1e4a7b;
    background: #40b1e5;
    -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;
}
.section--sponsor__icon {
    color: #fff;
    -webkit-box-flex: 20%;
    -ms-flex: 20%;
    flex: 20%;
    margin: 4% 2%;
    background: #e71489;
    text-align: center;
    padding: 2rem 1rem;
    -webkit-box-shadow: 0 2px 5px #000;
    box-shadow: 0 2px 5px #000;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
    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 {
    background: #40b1e5;
	color:#1e4a7b;
}
.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: 7rem 2rem;
    text-align: center;
}
.section--cta .btn {
    font-size: 1.7rem;
}
.section--cta-speaker {
    
	
    background: linear-gradient(to bottom , rgba(44, 116, 179, 0.1), rgba(44, 116, 179, 10)), url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KMWE26_BeASpeaker.svg")  10% 30%  no-repeat; 
/*	
background: -webkit-gradient(linear, right top, left bottom, from(rgba( 30,74,123, 0.3)), to(rgba( 30,74,123, 0.9))), url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KMWE26_BeASpeaker.svg") 10% 30%   no-repeat;
	background: url("https://dzceab466r34n.cloudfront.net/images_nl/sh/Be%20A%20Speaker%203.png") 20% 34%   no-repeat;  
	*/
    background-size: cover;
}
.section--cta-sponsor {
    
	background: linear-gradient(to bottom , rgba(44, 116, 179, 0.1), rgba(44, 116, 179, 10)), url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KMWE26_BeASponsor.svg")  10% 12% no-repeat; 
	  
    
	/*
	background: -webkit-gradient(linear, right top, left bottom, from(rgba(44, 116, 179, 0.3)), to(rgba( 44, 116, 179, 0.8))), url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KMWE26_BeASponsor.svg") 10% 33% no-repeat;
	background:  url("https://dzceab466r34n.cloudfront.net/images_nl/sh/Be%20A%20Sponsor%202.png") 10% 33% no-repeat;
	*/
    background-size: cover;
}
.section--cta-tracks {
  /*
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(44, 116, 179, 0.3)), to(rgba( 44, 116, 179, 0.8))), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/KMW25_headerimage.png") bottomno-repeat ;
    background: linear-gradient(to bottom left, rgba(44, 116, 179, 0.3), rgba(44, 116, 179, 0.8)), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/KMW25_headerimage.png") bottom no-repeat  ;
		*/
		background:  url("https://dzceab466r34n.cloudfront.net/images_nl/sh/KMWE%20&%20TBCL%2026_Graphic%20Background%202000x1000.png")  no-repeat bottom ;
		
    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;
    text-shadow: 0 1px 10px #000;
}
.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 (max-width: 768px) {
    .hero {
        height: unset;
    }
    
    .hero__tagline {
        
		padding-top:unset;
    }
	.hero__tagline span {
        font-size: 40px;
    }
    
    .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) {
    .section--hotel,
    .section--testimonials,
    .section--form {
        text-align: left;
    }
}

@media (max-width: 1020px) {
	.hero__content {
    margin-left:unset;
}
}

@media (max-width: 768px) {


	    .hero {
        background: url(https://dzceab466r34n.cloudfront.net/images_nl/sh/KM_Blue_lt%20blue%20gradient.png) no-repeat !important;
        background-size: cover !important;
		    height: 550px;
		}
    
    .hero__logo {
        width: auto;
        margin: 3rem auto 0rem auto;
    }
	   .hero__ctas {
        max-width: 400px;
        margin: 0 auto;
    }
	.header-navigation .logo img {
		width:100%;
	}

}
@media screen and (max-width:430px) {
    .hero__logo {
            max-width: 500px;
        width: 100%;
        margin: 4rem auto 2rem auto;
    
    }
    
    .section {
        padding: 1.7rem;
    }
    
    .section--cta .btn {
        font-size: font-size: 25px;;
    }
    
    .navigation-dd__btn {
        top: -7px;
    }
    
    .hero video {
        display: contents;
    }
	.header-navigation .logo img {
		margin-top:unset;
	}
    
 
		.hero__ctas a {
		max-width:100%;
	}
    
    
    .navigation-dd__menu ul {
        font-size: 0.8rem;
    }
    
    .header-navigation .logo {
        max-width: 222px;
    }
    
    .hero__tagline {
        font-size: 2rem;
        
    }
    
    .hero__tagline span {
        font-size: 3rem;
    }
    
    .col-md-4 {
        margin-left: unset !important;
    }
}