
.cd-hero *, .cd-hero *::after, .cd-hero *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cd-hero img, .cd-hero video {
  max-width: 100%;
}

.cd-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #21272c;
}

@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
  }
}

.cd-header__logo {
  float: left;
  margin: 13px 0 0 5%;
}

.cd-header__logo img {
  display: block;
}

@media only screen and (min-width: 768px) {
  .cd-header__logo {
    margin: 23px 0 0 5%;
  }
}

.cd-header__nav {

  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../assets/cd-icon-menu.svg") no-repeat center center;
}

.cd-header__nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.cd-header__nav ul.cd-is-visible {
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.cd-header__nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #21272c;
  border-top: 1px solid #333c44;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .cd-header__nav {

    width: auto;
    height: auto;
    background: none;
  }
  .cd-header__nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    line-height: 70px;
  }
  .cd-header__nav ul.cd-is-visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .cd-header__nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-header__nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
  }
}

.cd-hero {
  position: relative;
  margin-bottom: 0;
}

.cd-hero__slider {
  position: relative;
  height: 420px;
  width: 100%;
  overflow: hidden;
}

.cd-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  will-change: transform;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero__slide.cd-hero__slide--selected {

  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.cd-hero__slide.cd-hero__slide--move-left {

  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {

  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .cd-hero__slider {
    height: 380px;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__slider {
    height: 420px;
  }
}

.cd-hero__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-hero__slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

.cd-hero__slide:first-of-type {
  background-color: #222;
  background-image: url("../assets/slide2.jpg");
}

.cd-hero__slide:nth-of-type(2) {
  background-color: #222;
  background-image: url("../assets/slide2.jpg");
}

.cd-hero__slide:nth-of-type(3) {
  background-color: #222;
  background-image: url("../assets/slide-tradeshow-SPE-ICoTA.jpg");
  background-position: 0% center;
}

.cd-hero__slide:nth-of-type(4) {
  background-color: #222;

  background-position: 20% center;
}

.cd-hero__slide:nth-of-type(5) {
  background-color: #2c343b;
  background-image: url(../assets/img.jpg);
}

.cd-hero__content.cd-hero__content--full-width,
.cd-hero__content.cd-hero__content--half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  text-align: center;

  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content h2, .cd-hero__content p, .cd-hero__btn, .cd-hero__content--img img {

  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content.cd-hero__content--img {

  display: none;
}

.cd-hero__content--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content.cd-hero__content--bg-video {

  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cd-hero__content--bg-video video {

  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content h2, .cd-hero__content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
}

.cd-hero__content h2 {
  font-size: 2.4rem;
}

.cd-hero__content p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.cd-hero__btn {
  display: inline-block;
  padding: 0.8em 2em;
  margin-top: .8em;
  background-color: #db0000;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__slide.uav:first-of-type {
  background-image: url("../assets/slide-uav.jpg");
}

.cd-hero__slide.tubular:first-of-type {
  background-image: url("../assets/slide-tubular.jpg");
}

.cd-hero__slide.parts:first-of-type {
  background-image: url("../assets/slide-parts.jpg");
}

.cd-hero__slide.industry:first-of-type {
  background-image: url("../assets/slide-industry.jpg");
}

.cd-hero__slide.truck:first-of-type,
.cd-hero__slide.trucks:first-of-type {
  background-image: url("../assets/slide-truck.jpg");
}

.cd-hero__slide.trailer:first-of-type,
.cd-hero__slide.trailers:first-of-type {
  background-image: url("../assets/slide-trailer.jpg");
}

.cd-hero__slide.equipment:first-of-type {
  background-image: url("../assets/slide2.jpg");
}

@media (max-width: 760px) {
	.cd-hero__btn {
		font-size: 1rem;
	}

	.cd-hero__slide:nth-of-type(3) {
	  background-position: center center;
  	}
}

.cd-hero__btn.cd-hero__btn--secondary {
  background-color: rgba(22, 26, 30, 0.8);
}

.cd-hero__btn:nth-of-type(2) {
  margin-left: 1em;
}

.cd-hero__btn:hover {
  background-color: #d44457;
}

.cd-hero__btn.cd-hero__btn--secondary:hover {
  background-color: #161a1e;
}

@media only screen and (min-width: 768px) {
  .cd-hero__slide:nth-of-type(2),
  .cd-hero__slide:nth-of-type(3),

  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 0;
  }
  .cd-hero__content.cd-hero__content--bg-video {
    display: block;
  }
  .cd-hero__content.cd-hero__content--half-width {
    width: 45%;
  }
  .cd-hero__content.cd-hero__content--half-width:first-of-type {
    left: 5%;
  }
  .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero__content.cd-hero__content--img {
    display: block;
  }
  .cd-hero__content h2, .cd-hero__content p {
    max-width: 520px;
  }
  .cd-hero__content h2 {
    font-size: 2.4em;
    font-weight: 300;
  }
  .cd-hero__btn {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {

    padding-top: 0;
  }
  .cd-hero__content h2, .cd-hero__content p {
    margin-bottom: 20px;
  }
  .cd-hero__content h2 {
    font-size: 3.2em;
  }
  .cd-hero__content p {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 768px) {
  .cd-hero__content.cd-hero__content--half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
  }
  .cd-hero__slide--move-left .cd-hero__content.cd-hero__content--half-width {
    -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  .cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width {

    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content.cd-hero__content--half-width {

    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2),
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type {

    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type,
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {

    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  }
  .cd-hero__content--full-width h2,
  .cd-hero__content--full-width p,
  .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
  }
  .cd-hero__slide--move-left .cd-hero__content--full-width h2,
  .cd-hero__slide--move-left .cd-hero__content--full-width p,
  .cd-hero__slide--move-left .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .cd-hero__slide--selected .cd-hero__content--full-width h2,
  .cd-hero__slide--selected .cd-hero__content--full-width p,
  .cd-hero__slide--selected .cd-hero__content--full-width .cd-hero__btn {

    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content--full-width h2,
  .cd-hero__slide--is-moving .cd-hero__content--full-width p,
  .cd-hero__slide--is-moving .cd-hero__content--full-width .cd-hero__btn {

    -webkit-transition: -webkit-transform 0s 0.5s;
    transition: -webkit-transform 0s 0.5s;
    transition: transform 0s 0.5s;
    transition: transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--selected h2 {
    -webkit-transition: -webkit-transform 0.5s 0.2s;
    transition: -webkit-transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--selected p {
    -webkit-transition: -webkit-transform 0.5s 0.3s;
    transition: -webkit-transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  }
  .cd-hero__slide--selected .cd-hero__btn {
    -webkit-transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
  }
}

.cd-hero__nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  text-align: center;
  height: 55px;

}

.cd-hero__nav nav, .cd-hero__nav ul, .cd-hero__nav li, .cd-hero__nav a {
  height: 100%;
}

.cd-hero__nav nav {
  display: inline-block;
  position: relative;
}

.cd-hero__marker {

  display: none;

  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 100%;

  color: #feec76;

  -webkit-box-shadow: inset 0 2px 0 currentColor;
          box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.cd-hero__marker.cd-hero__marker--item-2 {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.cd-hero__marker.cd-hero__marker--item-3 {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}

.cd-hero__marker.cd-hero__marker--item-4 {
  -webkit-transform: translateX(300%);
      -ms-transform: translateX(300%);
          transform: translateX(300%);
}

.cd-hero__marker.cd-hero__marker--item-5 {
  -webkit-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}

.cd-hero__nav ul::after {
  clear: both;
  content: "";
  display: table;
}

.cd-hero__nav li {
  display: inline-block;
  width: 60px;
  float: left;
}

.cd-hero__nav .cd-selected a {
  color: #db0000;
}

.cd-hero__nav .cd-selected a::before {
  background: #FFF;
}

.cd-hero__nav .cd-selected a:hover {
  background-color: transparent;
}

.cd-hero__nav a {
  display: block;
  position: relative;
  padding-top: 35px;
  font-size: 1rem;
  font-weight: 700;
  color: #a8b4be;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__nav a::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);

 background: #AAA;
 border-radius: 100px;
}

.cd-hero__nav a:hover:before {
  background-color: #777;
}

.cd-hero__nav li:first-of-type a::before {
  background-position: 0 0;
}

@media only screen and (min-width: 768px) {
  .cd-hero__nav {
    height: 50px;
  }
  .cd-hero__marker,
  .cd-hero__nav li {
    width: 50px;
  }
  .cd-hero__nav a {
    padding-top: 48px;
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  .cd-hero__nav a::before {
    top: 18px;
  }
}

.cd-main-content {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 2em 0;
}

.cd-main-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #999999;
  margin: 2em 0;
}

@media only screen and (min-width: 1170px) {
  .cd-main-content {
    padding: 3em 0;
  }
  .cd-main-content p {
    font-size: 1.6rem;
  }
}

.no-js .cd-hero__slide {
  display: none;
}

.no-js .cd-hero__slide.cd-hero__slide--selected {
  display: block;
}

.no-js .cd-hero__nav {
  display: none;
}

h2.slide-hp-one {
    color: #fff;
    font-size: 4rem;
    max-width: 100%;
    font-weight: 800;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1em;
}

h2.slide-hp-two {
    color: #FFF;
    font-size: 3.6em;
    max-width: 100%;
    font-weight: 800;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1;
}

@media (min-width: 1200px) {
	h2.slide-hp-two.three.four {
		font-size: 3.3em;
	}
}

h2.slide-hp-two.three.four {
	color: #FFF;
}

h2.slide-hp-two.three.four span {
	display: block;
	margin-top: 0.4em;
}

.cd-hero__content p.slide-hp-one-tag {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -1px;
    max-width: 100%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1em;
}

.cd-hero__content p.slide-hp-two-tag {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    max-width: 100%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

p.slide-hp-one-tag.three {
	font-size: 1.9rem;
}

.cd-hero__btn.slide-hp-one {
	background: #db0000;
	font-size: 1em;
}

.cd-hero__btn.slide-hp-one:hover,
.cd-hero__btn.slide-hp-one:focus {
	background: #000;
	text-decoration: none;
	color: #FFF;
}

.cd-hero__btn.slide-hp-one.two {
    background-color: none;
    background: rgba(0,0,0,0.6);
    border: 2px solid #fff;
    color: #FFF;
    padding: 0.61em 2em;
    font-weight: 700;
}

.cd-hero__btn.slide-hp-one.two:hover,
.cd-hero__btn.slide-hp-one.two:focus {
    background-color: #db0000;
	color: #fff;
	border: 2px solid #db0000;
	text-decoration: none;
}

.cd-hero__btn.slide-hp-one.two.three {
    background-color: rgba(0,0,0,0.2);
}

.cd-hero__btn.slide-hp-one.two.three {
    background-color: rgba(0,0,0,0.4);
}

.cd-hero__btn.slide-hp-one.two.three.four {
    background-color: rgba(0,0,0,0.2);
    border-color: #FFF;
    color: #FFF;
}

.cd-hero__btn.slide-hp-one.two.three.four:hover {
	background: #db0000;
	color: #fff;
	border-color: #db0000;
}

.cd-hero__btn.slide-hp-one.two.three:hover,
.cd-hero__btn.slide-hp-one.two.three:focus {
    background-color: #db0000;
    border-color: #db0000;
    color: #FFF;
	text-decoration: none;
}

.cd-hero__btn.slide-hp-one.two.express:hover,
.cd-hero__btn.slide-hp-one.two.express:focus {
   background-color: #69b23d;
	color: #fff;
	border: 2px solid #69b23d;
	text-decoration: none;
}
.cd-hero__btn.slide-hp-one.two.express {
	margin-left: 20px;
}

.cd-hero__btn.slide-hp-one.two.show-info {
    margin-left: 16px;
}

@media (min-width:1200px) and (max-width:1274px) {
	.cd-hero__slide:nth-of-type(3) .cd-hero__content p.slide-hp-one-tag {
		font-size: 1.7rem;
	}
}

@media (max-width: 1200px) {
	h2.slide-hp-one {
	    font-size: 4em;
	    max-width: 100%;
	    font-weight: 800;
	    text-align: center;
	    letter-spacing: -2px;
	}

	h2.slide-hp-two {
		font-size: 3em;
	}

	p.slide-hp-one-tag.three {
		font-size: 1.7em;
	}

	.cd-hero__content.cd-hero__content--full-width, .cd-hero__content.cd-hero__content--half-width {
		padding-top: 0;
	}
}

@media (max-width: 900px) {
	h2.slide-hp-one {
	    font-size: 3em;
	    max-width: 100%;
	    font-weight: 800;
	    text-align: center;
	    letter-spacing: -2px;
	}

	h2.slide-hp-two {
		font-size: 2.8em;
	}

	.cd-hero__content p.slide-hp-one-tag {
	    font-size: 2rem;
	}

	.cd-hero__content p.slide-hp-two-tag {
	    font-size: 2rem;
	    line-height: 1em;
	}

	p.slide-hp-one-tag.three {
		font-size: 1.7em;
		margin-bottom: 0.3em;
	}
}

@media (max-width: 600px) {
	.cd-hero__content.cd-hero__content--full-width, .cd-hero__content.cd-hero__content--half-width {
		padding-top: 0;
	}

	.cd-hero__btn.slide-hp-one.two.express {
		margin-left: 0px;
	}

	.cd-hero__btn.slide-hp-one.two.show-info {
		margin-left: 0px;
	}

	h2.slide-hp-one {
		font-size: 2.4em;
		line-height: 1em;
		padding-top: 0em;
		margin-bottom: 4px;
	}

	.cd-hero__content p.slide-hp-one-tag {
    	font-size: 1.2rem;
    	font-weight: 500;
	}

	h2.slide-hp-two {
		font-size: 2.3em;
		line-height: 1em;
		padding-top: 0.8em;
	}

	h2.slide-hp-two.three {
		padding-top: 0;
		font-size: 2em;
	}

	.cd-hero__content.cd-hero__content--full-width.one-line-hero {
		padding-top: 0;
	}

	.cd-hero__nav {
		display: none;
	}

	.cd-hero__btn.slide-hp-one {
	    background: #db0000;
	    font-size: 1em;
	    width: 71%;
	    margin: 14px auto 0;
	    line-height: 1.2;
	    padding: 0.8em 1em;
	}
}

.btn-mobile-only {
		display: none;
	}

@media (max-width: 500px) {
	.btn-desktop-only {
		display: none;
	}
	.btn-mobile-only {
		display: block;
	}
}

@media (max-width: 400px) {
	.cd-hero__btn.slide-hp-one {
	    width: 80%;
	    margin: 14px auto 0;
	    line-height: 1.2;
	    padding: 0.8em 0;
	}

	.cd-hero__content p.slide-hp-one-tag.four {
		font-size: 1.1rem;
	}

	h2.slide-hp-two.three {
		padding-top: 0;
		font-size: 1.7em;
	}

	h2.slide-hp-two.three.four {
		padding-top: 0;
		font-size: 1.9em;
	}
}