/*-------------------------------------------*\
** 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&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed&amp;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;
}




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

.btn--outline.btn--blue:hover {
    background: #004f95;
    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: #7da7d9;
    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--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: #B11116;
}

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


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

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


/**
 * 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: #004f95;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: initial;
    font-family: "Raleway", sans-serif;
}

.header a:hover {
    color: #8f008f;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header .duplicate {
    display: block;
}

.header .header-inner {
    height: 110px;
    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 {
    
  max-width: 1920px;
  
    position: relative;
}

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

.header-cta {
    width: 100%;
    background: #004f95;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 900;
    font-size: 0.9rem;
	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));
}

.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: 80%;
    height: auto;
}

.navigation-main {
    float: right;
    /*margin: -4% 60px 0 0; margin used with tons of menu text. */
    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;
}

.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: 3px;
    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: #004f95;
    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: 1150px) {
    .header .navigation-main {
        display: block;
    }
    .header .duplicate {
        display: none;
    }
    .header .scrolled .logo {
        margin: 0 auto;
    }
    .section {
        padding: 3rem;
    }
}


/**
 * 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 !important;
    color: rgba(1, 134, 209, 0.9);
}


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

p {
    text-align: left;
    
    margin: 0.8rem 0px;
}


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

.hero {
    position: relative;
    /*background: url("https://dzceab466r34n.cloudfront.net/images_nl/sw/CXC22_Web-Image_2000x1333.svg");*/
    background-size: cover;
    background-color: black;
    height: 800px;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    margin: 0 auto;
}

.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: 42%;
    left: 48%;
    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: 700px;
    width: 100%;
    margin: 4rem auto 0rem auto;
}

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

.hero__tagline {
    color: #fff;
    text-shadow: 0 1px 10px #000;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 4rem auto 2rem auto;
    line-height: 1;
}

.hero__ctas {
    max-width: unset;
    /*margin: 78px 130px 66% 27%;
    margin: 50px 127px 53% 16%;*/
    max-width: 700px;
    margin: auto;
}

.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;
	margin-left:33%;
}

.image_header_spk {
    margin-top: 20px;
}

.image_header_scs {
    margin-top: 9px;
}

.header-text-colo {
    margin-top: 5%;
    margin-bottom: 35px;
    font-size: 1.6rem;
    margin-left: 17%;
    font-weight: 400;
    color: white;
}

.col-md-3 {
    margin-left: 2%;
    margin-right: 4%;
}


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

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

.section--img {
    background: -webkit-gradient(linear, right top, left bottom, from(rgba(1, 134, 209, 0.9)), to(rgba(1, 134, 209, 0.8))), url("https://www.destinationcrm.com/Conferences/style/img/placeholder--abstract.jpg") center center no-repeat;
    background: linear-gradient(to bottom left, rgba(1, 134, 209, 0.9), rgba(1, 134, 209, 0.8)), url("https://www.destinationcrm.com/Conferences/style/img/placeholder--abstract.jpg") 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: #fff;
    -webkit-box-flex: 46%;
    -ms-flex: 46%;
    flex: 46%;
    margin: 4% 1.3%;
    background: #004f95;
    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: 6em;
    margin: 0 0 1rem 0;
}

.section--intro__icon:hover {
    color: rgba(255, 255, 255, 0.5);
}

.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;
    /*
   These 2 below add greyscale to the speaker pics
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); 
  */
    transition: transform .2s;
    -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: -webkit-gradient(linear, right top, left bottom, from(rgba(1, 134, 209, 0.8)), to(rgba(1, 134, 209, 0.8))), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/beaspeaker_manV3.jpg") no-repeat;
    background: linear-gradient(to bottom left, rgba(1, 134, 209, 0.8), rgba(1, 134, 209, 0.8)), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/beaspeaker_manV3.jpg") no-repeat;
    background-size: cover;
}

.section--cta-sponsor {
    background: -webkit-gradient(linear, right top, left bottom, from(rgba(1, 134, 209, 0.8)), to(rgba(1, 134, 209, 0.8))), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/beaspeaker_manV3.jpg") no-repeat;
    background: linear-gradient(to bottom left, rgba(1, 134, 209, 0.8), rgba(1, 134, 209, 0.8)), url("https://dzceab466r34n.cloudfront.net/images_nl/sw/beaspeaker_manV3.jpg") no-repeat;
    background-size: cover;
}

.section--sponsor__icon {
    color: #fff;
    -webkit-box-flex: 20%;
    -ms-flex: 20%;
    flex: 20%;
    margin: 4% 2%;
    background: rgb(27, 51, 76);
    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--sponsor__icon i {
    display: block;
    font-size: 8rem;
    margin: 0 0 1rem 0;
}

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

.subpage .primary_content p {
    font-size: 1.1rem;
}

.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 (max-width: 768px) {
    .hero {
        height: unset;
    }
    .hero__tagline {
        font-size: 2.5rem;
    }
    .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: 2.7rem;
    }
    .section--hotel,
    .section--testimonials,
    .section--form {
        text-align: left;
    }
    .section {
        padding: 4rem;
    }
}

@media screen and (max-width: 1024px) {
    .section {
        margin-top: -1.3%;
    }
}

@media screen and (max-width: 768px) {
    .hero__tagline {
        margin: 2rem auto;
		font-size:2rem;
    }
    .hero__logo {
        width: 63%;
        margin: 1rem auto 0rem auto;
    }
    .section {
        padding: 4rem;
        margin-top: -1%;
    }
    .hero__ctas a {
        max-width: 90%;
		margin-left:unset;
		
    }
    .header-text-colo {
        font-size: 1.6em;
    }
	 .hero__ctas {
        max-width: 300px;
        margin: 0 auto;
    }
	    .image_header_crm {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width:415px) {
    
    .hero__ctas a {
        max-width: 100%;
		
    }
    .hero video {
        display: contents;
    }
    .header-navigation .logo img {
        width: 94%;
    }
    .hero {
        background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/CX23 Static_2000 × 1333 px_siteimage.png) no-repeat !important;
        background-size: cover !important;
        height: 600px;
    }
	  .hero__logo {
        width: 100%;
        margin: 2rem auto 0rem auto;
    }
    p {
        font-size: 1.1rem;
        line-height: unset;
    }
    .section--cta .btn {
        font-size: 1.2rem;
    }
    .row section section--img section--shadow section--intro {
        margin-top: -2px;
    }
    h2 {
        font-size: 2.5rem;
        margin: -2rem auto auto auto;
    }
    .subpage .primary_content {
        background: none;
        padding: 0px 20px 0 20px;
    }
    .hero__ctas {
        max-width: 300px;
        margin: 0 auto;
    }
    .navigation-dd__menu ul {
        font-size: 0.8rem;
    }
    .header-navigation .logo {
        max-width: 222px;
    }
    .hero__tagline {
     font-size: 1.2rem;
     margin: 1.1rem auto;
    }
    .section--intro__icon i {
        font-size: 6em;
    }
    .col-md-4 {
        margin-left: unset !important;
    }
	 .col-md-8 {
        margin-left: unset !important;
    }
    .image_header_spk {
            width: 85%;
    margin-left: 9%;
}
    }
    .image_header_crm {
    width: 85%;
    margin-top: 22px;
    margin-bottom: 5px;
    margin-left: 10%;
    }
    .image_header_scs {
        width: 85%;
		margin-top: 19px;
		margin-left: 9%;
    }
    .header-text-colo {
        margin-bottom: unset;
        margin-top: auto;
    }
	.header {
	height:127px;	
	}
}