/******************************************************************
Site Name: VocoVision
Author: Soliant MC

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
*********************/
/*********************
Updates to css vars
*********************/
:root {
  --font-main: 'Raleway', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --white: #ffffff;
  --background-blue: #f4fdff;
  --fuchsia-aa: #c81330;
  --lime-200: #bec75b;
  --sky-200: #74c2df;
  --orange-200: #f3ad1c;
  --teal-100: #e9f6f5;
  --teal-200: #2fccbe;
  --teal-300: #26a499;
  --teal-400: #397069;
  --teal-aa: #397069;
  --light-teal: #e9f6f5;
  --bright-blue-aa: #1160ca;
  --lead-300: #4f4f4f;
  --navy-200: #1d4588;
  --navy-300: #0d316a;
  --navy-400: #051633;
  --medium-blue: #004586;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
BREAKPOINTS
*********************/
/*********************
TRANSITIONS/ETC
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
ANGLES
*********************/
/*** Send Resume ***/
.page-template-page-send-resume .gfield {
  max-width: 452px;
}
.page-template-page-send-resume .bh-file-upload {
  height: 52px;
  padding: 6px 12px;
}
.page-template-page-send-resume .gform_footer input[type=submit] {
  color: #c81330;
  background-color: #fff;
  padding: 1.6rem 5.2rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.page-template-page-send-resume .sec-blue {
  padding-top: 2.4rem;
}
.page-template-page-send-resume .gform_wrapper {
  max-width: 452px;
  margin: 0 auto;
}
.page-template-page-send-resume .gform_wrapper .h2 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 900;
  line-height: 116.4%;
  text-transform: unset;
  margin: 3rem 0 2rem;
}
.page-template-page-send-resume .gform_wrapper .h2:not(:first-of-type) {
  margin: 4rem 0 2rem;
}
.page-template-page-send-resume .gform_wrapper .gfield_checkbox label a {
  color: #fff;
}
.page-template-page-send-resume .gform_wrapper label {
  text-transform: none;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  line-height: 1.1;
}
.page-template-page-send-resume .gform_wrapper label[for=agreement] {
  line-height: 1.6;
}
.page-template-page-send-resume .mobile-form-section {
  display: block;
  padding-block: 0;
}
.page-template-page-send-resume .mobile-form-section .bg-form.bg-blue {
  padding-block: 6rem;
}
.page-template-page-send-resume .desktop-form-section {
  display: none;
}
@media screen and (min-width: 1240px) {
  .page-template-page-send-resume .apply-form-container.desktop {
    background-color: var(--navy-200);
    padding: 4rem 4.2rem 10rem;
    width: 100%;
    max-width: 693px;
  }
  .page-template-page-send-resume .gform_wrapper {
    margin: 0 auto;
  }
  .page-template-page-send-resume .mobile-form-section {
    display: none;
  }
  .page-template-page-send-resume .desktop-form-section {
    display: block;
  }
}
@media screen and (min-width: 1480px) {
  .page-template-page-send-resume .apply-form-container.desktop {
    padding: 4rem 4.2rem 10rem;
  }
}
