﻿@charset "UTF-8";
@import "html5reset.css";
/* CSS Document */

/* FONTS START */
@font-face {
  font-family: 'proxima_nova_rgbold';
  src: url('../fonts/proxima_nova_bold-webfont.woff2') format('woff2'), url('../fonts/proxima_nova_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'proxima_nova_rgregular';
  src: url('../fonts/proxima_nova_regular-webfont.woff2') format('woff2'), url('../fonts/proxima_nova_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'proxima_nova_cond';
  src: url('../fonts/proxima_nova_cond.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* FONTS END */

/* MAIN STYLES START */
* {
  box-sizing: border-box;
}

.align-center {
  text-align: center;
}

.siteWidth {
  max-width: 1300px;
  padding: 0 2%;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  min-width: 88px;
  padding: 10px 30px;
  text-align: center;
  font-family: 'proxima_nova_rgbold';
  text-transform: uppercase;
  font-size: 0.889em;
  color: #FFF;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #FFF;
  cursor: pointer;
}

.btnRed {
  color: #FFF;
  background: #ac2d2d;
  border: 1px solid #ac2d2d;
}

body {
  font: 19px 'proxima_nova_rgregular', arial, helvetica, sans-serif;
  color: #3c3c3c;
  width: 100%;
}

h2 {
  font-size: 2rem;
  font-weight: 100;
  color: #000;
}

h1 {
  font-size: 2.2rem;
  font-weight: 100;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  margin-bottom: 40px;
}

@media (min-width: 767px) {
  .section {
    margin-bottom: 60px;
  }

  h1 {
    font-size: 2.8rem;
  }
}

/* ---------------------------------------------
  Start - Page Header
--------------------------------------------- */

.pageHeader {
  background-image: url(../images/header-bg-dumpster.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0;
  position: relative;
}

  .pageHeader .logo {
    max-width: 200px;
    margin-bottom: 30px;
  }

  .pageHeader::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255, 0.8);
  }

  .pageHeader .content {
    position: relative;
    z-index: 1;
  }

  .pageHeader .innerContent {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
  }

  .pageHeader h1 {
    margin-bottom: 15px;
  }

  .pageHeader .redText {
    color: #ac2d2d;
    font-size: 1.5rem;
  }

  .pageHeader .rateBox {
    background-color: #002664;
    border-radius: 10px;
    padding: 40px 20px 30px;
    color: #FFF;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

    .pageHeader .rateBox .largeText {
      font-family: 'proxima_nova_rgbold';
      font-size: 5rem;
      line-height: 1;
    }

    .pageHeader .rateBox .rightText .top {
      font-family: 'proxima_nova_rgbold';
      font-size: 2.3rem;
      line-height: 1;
      margin-top: 5px;
    }

    .pageHeader .rateBox .rightText .bot {
      font-size: 1.6rem;
      line-height: 1;
      font-style: italic;
    }

  .pageHeader .promoCode {
    color: #002664;
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 100;
  }

  .pageHeader .terms {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 20px;
  }

  .pageHeader .innerContent .right {
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 10px -3px #000;
    padding: 40px;
  }

    .pageHeader .innerContent .right > h2,
    .pageHeader .innerContent .right > p {
      text-align: center;
    }

      .pageHeader .innerContent .right > p a {
        color: #ac2d2d;
        text-decoration: underline;
      }

      .pageHeader .innerContent .right > p {
        margin-bottom: 20px;
      }

@media (min-width: 1000px) {
  .pageHeader {
    padding: 80px 0;
  }

    .pageHeader .logo {
      max-width: 360px;
    }

    .pageHeader::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, transparent 100%)
    }

    .pageHeader .innerContent {
      margin-top: 40px;
      flex-direction: row;
      justify-content: space-between;
    }

      .pageHeader .innerContent .left,
      .pageHeader .innerContent .right {
        flex-basis: 45%;
      }
}

/* ---------------------------------------------
  End - Page Header
--------------------------------------------- */
/* ---------------------------------------------
  Start - CTA List
--------------------------------------------- */
.ctaListWrapper h2 {
  margin-bottom: 30px;
}

.ctaList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

  .ctaList .ctaItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-family: 'proxima_nova_rgbold';
  }

    .ctaList .ctaItem img {
      border-radius: 10px;
    }

@media (min-width: 950px) {
  .ctaList {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------------------------------
  End - CTA List
--------------------------------------------- */
/* ---------------------------------------------
  Start - Image With Content
--------------------------------------------- */
.imageWithContent {
  background-color: #f2f3f7;
  border-bottom: 1px solid #ebebed;
  border-top: 1px solid #ebebed;
  padding: 40px 0;
}

  .imageWithContent .siteWidth {
    display: flex;
    flex-direction: column;
    gap: 30px 20px;
  }

  .imageWithContent .left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: baseline;
  }

    .imageWithContent .left ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

      .imageWithContent .left ul li {
        display: flex;
        align-items: center;
        gap: 20px;
      }

        .imageWithContent .left ul li img {
          width: 20px;
        }

  .imageWithContent .right img {
    border-radius: 10px;
  }

@media (min-width: 767px) {

  .imageWithContent {
    padding: 80px 0;
  }

    .imageWithContent .siteWidth {
      flex-direction: row;
      justify-content: space-between;
    }

    .imageWithContent .left {
      flex-basis: 35%;
    }

    .imageWithContent .right {
      flex-basis: 60%;
    }
}

/* ---------------------------------------------
  End - Image With Content
--------------------------------------------- */
/* ---------------------------------------------
  Start - FAQ Section
--------------------------------------------- */
.faqSection .faqList {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.faqSection .faqItem {
  background-color: #f2f3f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px transparent;
  transition: box-shadow 0.2s linear;
}

  .faqSection .faqItem.active {
    box-shadow: 0px 0px 10px 0px #002664;
  }

  .faqSection .faqItem button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0;
  }

    .faqSection .faqItem button img {
      transition: 0.2s linear;
      width: 20px;
    }

  .faqSection .faqItem.active button img {
    transform: rotate(-180deg);
  }

  .faqSection .faqItem .question * {
    font-family: 'proxima_nova_rgbold';
    color: #000;
    font-size: 1.2rem;
  }

.faqSection .answerWrap {
  position: relative;
  height: 0px;
  opacity: 0;
  overflow: hidden;
}

  .faqSection .answerWrap div {
    margin-top: 20px;
  }

.faqSection ul {
  list-style: disc;
  list-style-type: disc;
  padding-left: 20px;
}

  .faqSection ul li:not(:last-child) {
    margin-bottom: 10px;
  }

.faqSection .answerWrap * {
  font-size: 1.1rem;
}

.faqSection .answerWrap div > *:not(:last-child) {
  margin-bottom: 25px;
}

.faqSection .answerWrap a {
  color: #ac2d2d;
  text-decoration: underline;
}

/* ---------------------------------------------
  End - FAQ Section
--------------------------------------------- */
/* ---------------------------------------------
  Start - Footer Section
--------------------------------------------- */

.footerBar {
  background-color: #535353;
  padding: 55px 0;
}

  .footerBar * {
    color: #C7C7C7;
    font-size: 0.9rem;
  }

  .footerBar a:hover {
    color: #FFF;
  }

  .footerBar ul {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .footerBar .siteWidth {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

/* ---------------------------------------------
  End - Footer Section
--------------------------------------------- */
/* ---------------------------------------------
  Start - HubSpot Form
--------------------------------------------- */

form.hs-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hs-form .input {
  margin: 0 !important;
}

.hs-form .hs-form-field {
  float: none !important;
  width: 100% !important;
}

.hs-form .hs-form-field > label {
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: block;
}

.hs-form .hs-form-required {
  color: #ac2d2d;
  margin-left: 3px;
}

.hs-form fieldset {
  max-width: initial !important;
}

.hs-form input:not([type=submit]),
.hs-form select {
  width: 100%;
  box-sizing: border-box;
  background: #F4F4F4;
  padding: 12px 10px !important;
  line-height: 1.4 !important;
  font-size: 15px !important;
  display: block !important;
  border: none;
  width: 100% !important;
  border: 2px solid #F4F4F4;
  color: #727272;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 4px transparent;
  transition: 0.1s linear all;
}

  .hs-form input:not([type=submit]):hover,
  .hs-form select:hover,
  .hs-form input:not([type=submit]):focus,
  .hs-form select:focus {
    box-shadow: 0 0 4px #002664;
    outline: none;
  }

.hs-form .hs-error-msg,
.hs-form .hs-error-msgs {
  font-size: 0.9rem;
  color: #ac2d2d;
  margin-top: 5px;
}

.hs-form .hs-button[type=submit] {
  background-color: #ac2d2d !important;
  color: #FFF !important;
  text-transform: uppercase;
  font-family: 'proxima_nova_rgbold' !important;
  font-size: 0.889em !important;
  display: block;
  width: 100%;
  min-width: 88px;
  padding: 10px 30px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #FFF;
  cursor: pointer;
}

.hbspt-form .submitted-message {
  text-align: center !important;
}

.hs-form .form-columns-2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 767px) {
  .hs-form .form-columns-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }

  .hs-form .form-columns-2 > * {
    flex-basis: 48%;
  }
}

/* ---------------------------------------------
  End - HubSpot Form
--------------------------------------------- */
