/*
Palette: Red: rgba(206,0,88,1); Yellow: rgba(225,224,0,1);
*/



/* Structure */

html,body {
  height: 100%;
}

body {
  background: rgba(206,0,88,1);
  font-family: "proxima-nova";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Typography */

h1, h2, h3 {
  font-family: "Pinup";
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.wf-loading {
  visibility: hidden;
}

.wf-active {
  visibility: visible;
}

.img-center {
  margin: 0 auto;
}


/* Menu */

.b-a, .bar, .bar:before, .bar:after {
  background-color: rgba(206,0,88,1);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transition: all .25s;
  width: 25px;
}

.menu-collapsed {
  background: rgba(225,224,0,.9);
  cursor: pointer;
  height: 70px;
  left: 0;
  position: fixed;
  top: 0;
  transition: all .25s;
  width: 70px;
  z-index: 2;
}

.menu-collapsed ul {
  left: -9000px;
  position: fixed;
  transition: all 0s;
}

.bar {
  left: 23px;
  position: fixed;
  top: 33px;
}

.bar:before {
  top: -8px;
}

.bar:after {
  top: 8px;
}

.b-a-expanded, .menu-expanded .bar:before, .menu-expanded .bar:after {
  transition: all .25s;
  top: -0px;
}

.menu-expanded {
  background-color: rgba(225,224,0,1);
  border-radius: 0px;
  height: 100%;
  left: 0;
  line-height: 200px;
  text-align: center;
  top: 0;
  transition: all .25s;
  width: 100%;
  z-index: 20;
}

.menu-expanded ul {
  left: 0;
  margin-top: 50px;
  position: relative;
  transition: all 0s;
  z-index: 2;
}

.menu-expanded ul li {
  height: 50px;
}

.menu-expanded a {
  color: rgba(206,0,88,1);
  font-family: "Pinup";
  font-size: 34px;
  font-style: normal;
  font-weight: normal;
  line-height: 42px;
  padding: 15px 10px 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .15s;
}

.menu-expanded a:hover {
  background-color: rgba(206,0,88,1);
  color: rgba(225,224,0,1);
  transition: all .15s;
}

.menu-expanded a:active {
  background-color: #FFF;
  color: rgba(206,0,88,1);
}

.menu-expanded .bar {
  background-color: transparent;
  transition: all .25s;
}

.menu-expanded .bar:before {
  transform: rotate(45deg);
}

.menu-expanded .bar:after {
  transform: rotate(-45deg);
}


/* Branding */

#logo {
  background: rgba(206,0,88,0.9);
  cursor: pointer;
  height: 70px;
  left: 70px;
  padding: 10px;
  position: fixed;
  top: 0;
  transition: all .25s;
  width: 70px;
  z-index: 20;
}

#company-name {
  background: rgba(206,0,88,0.9);
  color: rgba(225,224,0,1);
  cursor: pointer;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 900;
  height: 70px;
  left: 140px;
  line-height: 70px;
  padding: 0 30px 0 10px;
  position: fixed;
  top: 0;
  transition: all .25s;
  width: 100%;
  z-index: 2;
}


/* Header */

header {
  position: relative;
  min-height: 100vh;
}

header h1 {
  color: #FFF!important;
}

header p {
  font-family: "Pinup";
  font-size: 24px;
  line-height: 29px;
  color: #FFF!important;
}

.hero-header-line-1 {
  font-size: 31px;
  line-height: 1;
}

.hero-header-line-2 {
  font-size: 46.5px;
  line-height: 1;
}

.hero-header-line-3 {
  font-size: 64px;
  line-height: .9;
}

.text-container {
  display: table;
  height: 100vh;
  width: 100%;
  text-align: center;
}

.text-container h1, .text-container p {
  display: table-cell;
  vertical-align: middle;
}


/* Sections */

section {
  padding: 40px 0 80px;
  position: relative;
}

.bg {
  bottom: -.5vw;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -3vw;
  -webkit-transform: skewY(2deg);
  -ms-transform: skewY(2deg);
  transform: skewY(2deg);
}

section:nth-child(odd) .bg {
  -webkit-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
   transform: skewY(-2deg);
}

footer .bg {
  transform: none;
}


.yellow .bg {
  background: rgba(225,224,0,1);
}

.red .bg {
  background: rgba(206,0,88,1);
}

.white .bg {
  background: #FFF;
}

section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

section h2.big {
  font-size: 80px;
  margin-bottom: 60px;
}

section h2.small {
  font-size: 24px;
  margin-bottom: 60px;
}

section.yellow h2 {
  color: rgba(206,0,88,1);
}

section.red h2 {
  color: rgba(225,224,0,1);
}

section p.lead {
  font-size: 22px;
  font-family: "proxima-nova";
  font-weight: 300;
}

section.yellow {
  color: rgba(206,0,88,1);
}

section.red {
  color: #FFF;
}

section.white {
  color: rgba(206,0,88,1);
}

.smaller-bottom-margin {
  margin-bottom: 20px;
}

.larger-bottom-margin {
  margin-bottom: 50px;
}

.btn-subscribe {
  border-radius: 0!important;
}

/* Background Video */

.bg-video {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -9;
}

.bg-video video {
    left: 50%;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/* Services */

.service {
  margin-bottom: 60px;
}

.service img {
  width: 140px;
}

.service h4 {
  font-weight: 700;
  color: rgba(225,224,0,1);
}


/* Packages */

.package {
  margin-bottom: 30px;
}

.package p {
  font-size: 24px;
  line-height: 29px;
  font-weight: 200;
}

.circle {
  background-color: rgba(225,224,0,1);
  border-radius: 50%;
  color: rgba(206,0,88,1);
  height: 288px;
  margin: 20px auto 30px;
  text-align: center;
  width: 288px;
}

.circle.alt {
  background-color: #FFF;
}

.circle .price {
  font-family: Pinup;
  font-size: 36px;
  line-height: 43px;
  padding-top: 100px;
}


/* Brands We've Worked With */

.brand {
  margin-bottom: 20px;
}


/* Other Services */

.service-list li {
  font-size: 36px;
  font-weight: 100;
  line-height: 60px;
}


/* Contact Us */

label {
  color: rgba(206,0,88,1);
  font-size: 24px;
  font-weight: 700;
}

.checkbox label {
  color: rgba(206,0,88,1);
  font-size: 18px;
  font-weight: 700;
}

.btn {
  border-radius: 0;
  border-width: 2px;
  font-size: 36px;
  font-weight: 700;
  padding: .25em;
  width: 4em;
}

.btn-default {
  background: transparent;
  border-color: rgba(206,0,88,1);
  color: rgba(206,0,88,1);
  transition: all .25s;
}

.btn-default:hover {
  background: rgba(206,0,88,1);
  border-color: rgba(206,0,88,1);
  color: rgba(225,224,0,1);
  transition: all .25s;
}

.form-control {
  border: none!important;
  border-radius: 0!important;
}


/* Footer */

footer {
  background: rgba(206,0,88,1);
  color: #FFF;
  padding: 50px 0 0;
  position: relative;
}

footer a {
  color: rgba(225,224,0,1);
}

footer a:hover {
  color: rgba(225,224,0,1);
}

footer ul {
  color: rgba(225,224,0,1);
  font-size: 12px;
}

footer p {
  color: rgba(225,224,0,1);
  font-weight: 500;
  margin-bottom: 20px;
}

footer .btn-default {
  background: rgba(225,224,0,1);
  border-color: rgba(225,224,0,1);
  color: rgba(206,0,88,1);
  transition: all .25s;
}

footer .btn-default:hover {
  background: transparent;
  border-color: rgba(225,224,0,1);
  color: rgba(225,224,0,1);
  transition: all .25s;
}

.newsletter-signup {
  margin-bottom: 50px;
}

.footer-branding {
  margin-bottom: 40px;
}

.footer-company-name {
  font-weight: 700;
  margin: 20px 0 50px;
  font-size: 18px;
  color: rgba(225,224,0,1);
}


.footer-links, .footer-social-links {
  text-align: center;
}

.footer-social-links li {
  padding-left: 12px;
  padding-right:  12px;
}

.footer-social-links svg:hover path {
  fill: #FFF;
}

#copyright {
  display: block;
  margin: 30px 0 10px;
}

/* Tablet */
@media(min-width: 768px){

  /* Header */

    #company-name {
      width: 206px;
      padding-left: 20px;
    }

    .bg-video {
      background-image: none;
    }

    header p {
      font-size: 52px;
      line-height: 62px;
    }

    .hero-header-line-1 {
      font-size: 78px;
    }

    .hero-header-line-2 {
      font-size: 116px;
    }

    .hero-header-line-3 {
      font-size: 159px;
    }

  /* Menu */

    .menu-expanded ul li {
      height: 80px;
    }

    .menu-expanded a {
      font-size: 72px;
      line-height: 72px;
    }

  /* Sections */

    section {
      padding: 40px 0 100px;
    }

    section p.lead {
      font-size: 28px;
      font-weight: 100;
    }

    section h2 {
      font-size: 48px;
    }

  /* Packages */

    .package {
      margin-bottom: 0;
    }

    .circle {
      height: 220px;
      width: 220px;
    }

    .circle .price {
      font-size: 34px;
      padding-top: 70px;
    }

  /* Contact Us */

    section h2.big {
      font-size: 124px;
    }

  /* Footer */

    .footer-links {
      margin-top: 30px;
    }

    .list-inline.piped li:after {
      content: '|';
      margin: 0 7px 0 10px;
    }

    .list-inline.piped li:last-child:after {
      content: '';
      margin-right: 0;
    }

    #copyright {
      display: inline-block;
      margin: 0;
    }

}

/* Desktop */
@media(min-width:992px){

  /* Header */

    header p {
      font-size: 64px;
      line-height: 77px;
    }


  /* Sections */

    section {
      padding: 40px 0 120px;
    }

    section p.lead {
      font-size: 32px;
    }

  /* Packages */

    .circle {
      height: 288px;
      width: 288px;
    }

    .circle .price {
      font-size: 36px;
      line-height: 43px;
      padding-top: 100px;
    }

  /* Contact Us */

    section h2.big {
      font-size: 144px;
    }

   /* Footer */

    .footer-links {
      margin-top: 15px;
    }

    .footer-links {
      text-align: left;
    }

    .footer-social-links {
      text-align: right;
    }


}

/* Large Screen */
@media(min-width:1200px){

  /* Header */

    header p {
      font-size: 72px;
      line-height: 86px;
    }

    .hero-header-line-1 {
      font-size: 110px;
    }

    .hero-header-line-2 {
      font-size: 164px;
      margin-left: -1px;
    }

    .hero-header-line-3 {
      font-size: 228px;
    }

  /* Sections */

    section {
      padding: 40px 0 160px;
    }

    section p.lead {
      font-size: 36px;
    }

  /* Packages */

    .package-left {
      margin-left: 50px;
    }

    .package-right {
      margin-right: 50px;
    }

}