@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,900");
* {
  margin: 0;
  padding: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  text-decoration: none;
}

*::-moz-selection {
  background: #FFCB1F;
}

*::selection {
  background: #FFCB1F;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

.yellow-text {
  color: #FFCB1F;
}

.yellow-bg {
  background: #FFCB1F;
}

.black-text {
  color: #000;
}

.black-bg {
  background: #000;
}

.white-text {
  color: #fff;
}

body {
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  color: #000;
}

nav {
  background: #fff;
  height: 50px;
  position: fixed;
  -webkit-box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.2);
  left: 20px;
  right: 20px;
  top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  z-index: 101;
}

nav img {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.nav-items li, .mobile-menu, .mobile-nav-items {
  display: inline-block;
  list-style: none;
  font-size: 2em;
  margin-left: 20px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-navigation {
  z-index: 2000;
  position: fixed;
  background: #FFCB1F;
  width: 100vw;
  height: 100vh;
  padding: 10vh 10vw;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.mobile-nav-items {
  margin-left: 0px;
}

.close {
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 50px;
  cursor: pointer;
}

.yellow-border {
  position: fixed;
  top: 0px;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  border: 20px solid #FFCB1F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}

header {
  width: 100vw;
  height: 100vh;
  background: #000;
  background-image: url(../img/header-bg.jpg);
  background-position: center bottom;
  background-size: cover;
  position: relative;
}

.header-flex {
  position: relative;
  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;
  width: 960px;
  margin: 30vh auto;
  left: 0px;
  right: 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  padding: 0px 30px;
}

.header-flex h1 {
  font-size: 6.5em;
  line-height: 1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0px 2px 10px #000;
}

.header-logo {
  width: 325px;
  margin-right: 50px;
}

.header-arrow {
  position: absolute;
  bottom: 25px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
}

.main-container {
  margin: 0 auto;
  max-width: 960px;
  padding: 200px 40px 0px 40px;
  position: relative;
}

.satisfaction {
  font-size: 3em;
  line-height: 1em;
  margin-bottom: 75px;
}

.text-box {
  padding: 40px;
  font-weight: 600;
  max-width: 300px;
  line-height: 1.5em;
  -webkit-box-shadow: 0px 12px 80px -30px #000;
          box-shadow: 0px 12px 80px -30px #000;
}

.img-box {
  width: 375px;
  height: 250px;
  background: pink;
  -webkit-box-shadow: 0px 12px 80px -30px #000;
          box-shadow: 0px 12px 80px -30px #000;
}

.img-box img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}

.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-text-box {
  margin-left: -50px;
}

.button {
  padding: 20px 40px;
  color: #fff;
  display: inline-block;
  font-weight: 900;
  -webkit-box-shadow: 0px 12px 80px -30px #000;
          box-shadow: 0px 12px 80px -30px #000;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button:hover {
  background: #FFCB1F;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: #000;
}

.button-yellow {
  padding: 20px 40px;
  color: #000;
  display: inline-block;
  font-weight: 900;
  -webkit-box-shadow: 0px 12px 80px -30px #000;
          box-shadow: 0px 12px 80px -30px #000;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: #FFCB1F;
}

.button-yellow:hover {
  background: #FFCB1F;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: #000;
}

.btn-container {
  text-align: center;
  padding-top: 200px;
}

.review-container {
  text-align: center;
}

.review {
  font-size: 1.5em;
  font-weight: 900;
  max-width: 700px;
  margin: 0 auto;
}

.swoosh {
  margin: 50px auto;
  width: 300px;
}

.message-header {
  font-size: 3em;
  font-weight: 900;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.message-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.message-text-box {
  position: relative;
  margin: -100px;
  z-index: 2;
}

.message-img-one {
  margin-right: 50%;
}

.message-img-two {
  margin-left: 50%;
}

.homestars-iframe {
  border: 20px solid #FFCB1F;
  height: 285px;
  width: 335px;
  background-color: #fff;
}

.iframe-container {
  text-align: center;
  position: relative;
}

.iframe-container::after {
  content: '';
  position: absolute;
  max-width: 475px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  height: 200px;
  bottom: -40px;
  z-index: -1;
  background: #000;
  -webkit-box-shadow: 0px 12px 80px -30px #000;
          box-shadow: 0px 12px 80px -30px #000;
}

.logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.logo-container img {
  height: 100px;
  margin-top: 50px;
}

.homestars-full {
  height: 150px !important;
}

.footer-band {
  width: 100%;
  text-align: center;
  padding-top: 200px;
}

.footer-band img {
  max-width: 300px;
  margin-bottom: -100px;
}

.footer-band-info-container {
  padding: 125px 20px 75px 20px;
  font-size: 1.5em;
  font-weight: 900;
}

footer {
  background: #000;
  padding: 50px 0px;
  text-align: center;
}

footer a {
  color: #FFCB1F;
}

.footer-container {
  margin: 0 auto;
  max-width: 960px;
  padding: 50px 40px;
  position: relative;
  text-align: left;
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

hr {
  max-width: 960px;
  border: 0.5px solid #FFCB1F;
  margin: 0 auto;
  margin-bottom: 50px;
}

.disclaimer {
  font-size: .8em;
  font-style: italic;
  padding: 0px 40px;
}

.special-offer-index {
  width: 100%;
  padding: 50px 40px;
  background: #be1e2d;
  position: relative;
  text-align: center;
  font-weight: 900;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 1.25em;
}

.page-header {
  padding: 175px 60px 50px 60px;
  background: #FFCB1F;
}

.page-header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-header-flex img {
  height: 150px;
}

.tooltip {
  color: #fff;
  text-align: center;
  font-weight: normal;
  font-style: italic;
  font-size: 1.1em;
  color: #FFCB1F;
}

.page-header-title {
  font-size: 3.5em;
  line-height: 1em;
  text-transform: uppercase;
  text-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-items {
  padding: 10px 30px 100px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.portfolio-img {
  margin: 10px;
  width: calc(25% - 20px);
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}

.contact-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 20px;
  height: 75vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-block {
  width: 50%;
  background: #000;
  font-weight: 900;
  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;
  text-align: center;
}

.name {
  font-size: 4em;
}

.email, .phone {
  font-size: 3em;
}

.map-block {
  width: 50%;
}

.map-block iframe {
  width: 100%;
  height: 100%;
}

.servicing {
  text-align: center;
  font-size: 1.2em;
  font-weight: 900;
  max-width: 700px;
  margin: 40px auto;
  padding: 0px 40px;
}

.dim {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  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;
  overflow: hidden;
  display: none;
}

.message-modal {
  width: 90vw;
  max-width: 850px;
  max-height: 90vh;
  overflow: scroll;
  background: #000;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.close-message {
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.open-message {
  cursor: pointer;
}

.privacy {
  text-align: left;
}

.missing {
  background: #000;
  min-height: 100vh;
  min-width: 100vw;
  color: #fff;
  text-align: center;
  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;
  padding: 50px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.missing img {
  width: 300px;
}

.missing-text {
  font-size: 1.5em;
  max-width: 600px;
  padding: 20px;
  margin-bottom: 50px;
}

.privacy-policy {
  text-align: left;
}

@media screen and (max-width: 1320px) {
  .name {
    font-size: 3em;
  }
  .email, .phone {
    font-size: 2em;
  }
}

@media screen and (max-width: 1000px) {
  .header-flex {
    width: auto;
  }
  .header-flex h1 {
    font-size: 5em;
  }
  .portfolio-img {
    margin: 10px;
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 960px) {
  .page-header-title {
    max-width: 60%;
  }
  .contact-block {
    width: 100%;
  }
  .map-block {
    width: 100%;
  }
}

@media screen and (max-width: 848px) {
  .header-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-flex h1 {
    text-align: center;
    font-size: 4em;
  }
  .header-flex .header-logo {
    width: 250px;
    margin-right: 0px;
  }
  .header-arrow {
    display: none;
  }
  .nav-items {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}

@media screen and (max-width: 784px) {
  .about-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-header img {
    display: none;
  }
  .page-header-title {
    max-width: 100%;
  }
  .about-text-box, .message-text-box {
    margin-left: 0px;
    max-width: 80%;
  }
  .img-box {
    width: 300px;
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .btn-container {
    padding-top: 100px;
  }
  .footer-band {
    padding-top: 100px;
  }
  .yellow-border {
    bottom: 0px;
    border: 10px solid #FFCB1F;
  }
  .contact-split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 10px;
  }
  nav {
    left: 10px;
    right: 10px;
    top: 10px;
    padding: 10px 20px;
    height: 50px;
  }
  nav img {
    width: 100px;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  .message-img-one {
    margin-right: 0%;
  }
  .message-img-two {
    margin-left: 0%;
  }
  .message-text-box, .about-text-box {
    margin: 0px 0px;
    max-width: 80%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .main-container {
    padding: 100px 20px 0px 20px;
  }
}

@media screen and (max-width: 720px) {
  .special-offer {
    font-size: .8em;
  }
  .page-header {
    padding: 175px 20px 50px 20px;
    background: #FFCB1F;
  }
}

@media screen and (max-width: 600px) {
  .iframe-container {
    display: none;
  }
  .message-text-box, .about-text-box {
    margin: 0px 0px;
    max-width: 100%;
  }
  nav {
    top: 10px;
  }
  .footer-band img {
    width: 200px;
  }
  .logo-container img {
    height: 75px;
  }
  .satisfaction, .message-header {
    font-size: 2.5em;
  }
  .portfolio-img {
    margin: 10px;
    width: calc(100% - 20px);
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .page-header-title {
    font-size: 2em;
    text-shadow: 0px 0px 0px;
  }
}

@media screen and (max-width: 500px) {
  .header-flex h1 {
    font-size: 3em;
  }
  .header-flex .header-logo {
    width: 200px;
    margin-right: 0px;
  }
  .name {
    font-size: 2.5em;
  }
  .email, .phone {
    font-size: 1.5em;
  }
  .swoosh {
    width: 250px;
  }
}

@media screen and (max-width: 365px) {
  .name {
    font-size: 2em;
  }
  .email, .phone {
    font-size: 1em;
  }
}

@media screen and (max-width: 320px) {
  body {
    font-size: 14px;
  }
}

.senior-discount {
  background: #FFCB1F;
  padding: 60px 40px;
  background-image: url(../img/senior-image.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 10vw center;
}

@media (max-width: 1280px) {
  .senior-discount {
    background-size: cover;
    background-position: -10vw center;
  }
}

@media (max-width: 1080px) {
  .senior-discount {
    background-image: none;
  }
}

.senior-discount-content {
  max-width: 508px;
  margin-left: 50vw;
}

@media (max-width: 1280px) {
  .senior-discount-content {
    margin-left: 40vw;
  }
}

@media (max-width: 1080px) {
  .senior-discount-content {
    margin-left: 0vw;
    margin: 0 auto;
    text-align: center;
  }
}

.senior-discount-content h2 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 800;
}

.senior-discount-content p {
  font-size: 1.25rem;
  line-height: 2rem;
}

.senior-discount-content p strong {
  font-weight: 900;
  font-weight: bolder;
}

.senior-discount-content * + * {
  margin-top: 20px;
}

.senior-discount-content .button {
  outline: 2px solid black;
}
/*# sourceMappingURL=styles.css.map */