body {
    margin: 0;
}

a {
   text-decoration: none;
}

/** BANNERS **/

.d-con-slider {
    width: 100%;
    margin: 0 auto;
    max-height: 600px;
}

li.d-slider-item {
    background: #000;
}

li.d-slider-item img {
    opacity: .4 !important;
}

/** NAV LINKS **/

ul.menu {
   flex-wrap: nowrap !important;
}

.header ul.menu li a {
    text-transform: uppercase;
}

/** SLOGAN **/

.slogan-container {
    display: flex;
    justify-content: center;
   align-items: center;
   flex-direction: column;
}

.title-top {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
}

.title-mid {
     text-transform: uppercase;
    font-size: 65px;
    color: var(--primary-color);
    margin: 10px auto;
}

.title-bottom {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.slogan-container button {
    border-top: solid 1px var(--secondary-color);
    background: var(--secondary-color);
    border-bottom: solid 1px var(--secondary-color);
    padding: 13px 30px;
    color: white;
    transition: var(--transition);
    font-weight: 600;
}

.slogan-container button:hover {
    border-top: solid 1px var(--primary-color);
    background: var(--primary-color);
    border-bottom: solid 1px var(--primary-color);
    color: black;
}

/** REVIEWS **/

.carousel-item {
    height: auto !important;
}

.carousel-item div > p {
    line-height: 1.5rem !important;
    max-height: calc(1.5rem * 3) !important;
    overflow: hidden;
}

/** LAZY LOAD IMAGES **/

.lazyload {
  opacity: 0;
  transform: translateY(-10px) scale(.99);
  transition: all 1s ease-in-out 50ms;
  visibility: hidden;
}

.lazyload.loaded {
  opacity: 1;
  height: auto;
  transform: translate(0, 0) scale(1);
  visibility: visible;
}

button#Contact-btnSubmit{
    color: #c40011;
    background-color: rgba(196,0,17,0);
    font-family: 'Raleway',sans-serif;
}

.d-wbr p {
    font-size: 16px;
}