/* global styles */
.bg-blue {
    background-color: #00002E;
}

.bg-yellow {
    background-color: #FFFF00;
}

.bg-grey {
    background-color: rgba(0, 0, 46, 0.05);
}

.text-white {
    color: #fff;
}

.text-yellow {
    color: #FFFF00;
}

.space-above {
    padding-top: 80px;
}

.space-below {
    padding-bottom: 80px;
}

@font-face {
    font-family: 'TradeGothic LT Condensed';
    src: url('/assets/fonts/Trade_Gothic_LT_Condensed_No._18.ttf') format('truetype');
}

@font-face {
    font-family: 'TradeGothic LT';
    src: url('/assets/fonts/Trade\ Gothic\ LT.ttf') format('truetype');
}  

h1, h2, h3 {
    font-family: 'TradeGothic LT Condensed', sans-serif;
    font-weight: 600;
    color: #00002E;
}

h1 {
    line-height: 1.2;
    font-size: 5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.2rem;
}

p, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #00002E;   
    font-size: 1rem; 
}

p.italic {
    font-style: italic;
}

@media print, screen and (max-width: 40em) {
    h1 {
        line-height: 1.2;
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2em;
    }
}    


/* header */
header {
    padding: 20px;
    text-align: center;
    position:fixed;
    width: 100%;
    z-index: 2;
}

header #header-logo {
    max-width: 80px;
    z-index: 3;
}


/* image banner */
.img-banner-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-height: 50vh;
    height: 750px;
    background-image: url('../assets/images/home-banner.png');
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.img-banner-content {
    z-index: 1;
    position: relative;
    width: 100%;
    padding-top: 70px;
}

.img-banner-content h1 {
    text-align: left;
    margin-bottom: 0px;
}

.img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 46, 1), rgba(0, 0, 46, 0));
    z-index: 0;
}


/* ticker */
.ticker {
    overflow: hidden;
    display: flex;
    width: 100vw;
    background-color:#FFFF00;
  }
  .ticker__list {
    display: flex;
    padding: 25px 0;
    animation: ticker 20s infinite linear;
  }
  .ticker:hover .ticker__list {
    animation-play-state: paused;
  }
  .ticker__item {
    margin-right: 25px;
    /* background-color: aqua; */
    width: 100%;
    display: inline-block;
    text-align: center;
    font-family: 'TradeGothic LT Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}


  
  @keyframes ticker {
    100% {
      transform: translateX(-100%); /*try changing this to -100vw*/
    }
  }

/* Services */
#services {
    margin: 40px 0;
}

#services ul {
    margin-bottom: 0px;
}


/* Image Collage */

.img-collage-container img {
    width: 100%;
}

/* .img-collage-container .cell {
    height: 350px;
} */

/* #img-collage-item1 {
    background-image: url('https://i.ibb.co/nnDFZ7R/gallery-image-bathroom.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#img-collage-item2 {
    background-image: url('https://i.ibb.co/MBR5yK2/gallery-image-front.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#img-collage-item3 {
    background-image: url('https://i.ibb.co/SJdZDdD/gallery-image-lawn.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
} */

@media print, screen and (max-width: 40em) {
    #img-collage-item1, #img-collage-item2 {
        margin-bottom: 20px;
    }
}

@media print, screen and (max-width: 64em) {
    #img-collage-item1 {
        margin-bottom: 20px;
    }
}

/* Testimonials */
.testimonials-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonials-container h2, .testimonials-container .h2 {
    margin-bottom: 40px;
}

.testimonials-container img.quote-icon {
    max-width: 40px;
    margin-bottom: 25px;
}

@media print, screen and (max-width: 40em) {
    .testimonials-container img.quote-icon {
        margin-top: 40px;
    }
}


/* Contact form */
.contact-container .form-group input, .contact-container .form-group textarea {
    background-color: rgba(0, 0, 46, 0.05);
    border: none;
    box-shadow: none;
}

.contact-container h2 {
    margin-bottom: 20px;
}

.contact-subline {
    margin-bottom:20px;
}

.contact-subline a {
    color:#00002E;
    text-decoration: underline;
    transition: all ease 0.2s;
    font-weight: 600;
}

.contact-subline a:hover {
    opacity: 0.7;
}

.form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color:rgba(0, 0, 46, 1);
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
  }

  .form-group textarea {
    min-height: 150px;
    min-width: 100%;
  }

  .form-group.half-width {
    width: calc(50% - 10px);
    display: inline-block;
    vertical-align: top;
  }

  .form-group.full-width {
    width: 100%;
  }

  .form-group.submit {
    text-align: right;
  }

  /* .form-group.submit button {
    background: rgba(255, 255, 0, 1);
    color: #00002E;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'TradeGothic LT Condensed', sans-serif;
    font-weight: 600;
    transition: all ease 0.2s;
  }

  .form-group.submit button:hover {
    background: rgba(255, 255, 0, 0.5);
    cursor: pointer;
  } */

  /* Footer */
  footer {
    background-color:#00002E;
  }

  footer .cell p {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    padding: 25px 0;
  }