﻿/*Btns*/
.aerie-btn {
  padding: 5px 70px;
  border-radius: 30px;
  background: #19BEF0;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 4px 0;
}
.aerie-btn:hover,
.aerie-btn:active,
.aerie-btn:focus {
  color: #fff;
  background: #072E48;
  transition: 0.2s;
}
.header-btn {
  padding: 1px 70px;
  color: #fff;
}
.cancel-btn {
  font-style: italic;
  color: #e53935;
  text-decoration: underline;
}
.reset-btn {
  background: #A7CA71;
  color: #fff;
}
.btn-basic {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}
/* radio buttons */
/* Customize the label (the container) */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #000;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container .radiobtn {
  position: relative;
  top: -23px;
  left: -37px;
  padding: 1px 12px;
  background-color: #fff;
  border: 2px solid #9b9b9b;
  border-radius: 50%;
}
.radio-container .radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .radiobtn:after {
  display: block;
}
.radio-container .radiobtn:after {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background: #92BD4E;
  left: 50%;
  margin-left: -10px;
  top: 2px;
}
/* Custom Font awesome checkbox */
.checkbox-container:hover {
  cursor: pointer;
}
input.faChk {
  visibility: hidden;
  margin-right: 5px;
}
input.faChk:checked::after,
input.faChk::after,
input.faChk:checked::before,
input.faChk::before {
  visibility: visible;
  font-family: 'AerieHub';
  font-size: 14px;
  height: 17px;
  width: 17px;
  position: relative;
  top: -5px;
  left: 0px;
  display: inline-block;
  color: #4a4a4a;
}
input.faChk:checked::before {
  content: '\f0c9';
}
input.faChk:checked::after {
  content: '\f003';
  top: -25px;
}
input.faChk::after {
  content: '\f0c9';
}
.checkbox-background {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 4px;
  background: white;
}
/* formerly #107A9A;*/
/*Modal(s) section*/
.modal {
  padding: 20px;
  /*@TODO can do this better with less probably*/
}
.modal h6 {
  text-align: center;
  font-size: 17px;
}
.modal h4,
.modal h5,
.modal h6 {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.modal .form-check {
  display: inline-block;
}
.modal .form-check-label {
  color: #4a4a4a;
  font-size: 15px;
}
.modal .modal-header {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 7px 15px;
  color: #000;
  align-items: center;
  background: #92BD4E;
}
.modal .modal-header .modal-title {
  font-size: 17px;
  font-weight: 700;
  float: left;
}
.modal .modal-header .close {
  float: right;
  opacity: 1;
}
.modal .modal-header .close .fa-kit {
  color: black;
  font-size: 14px;
  text-shadow: none;
}
.modal .modal-body,
.modal .modal-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #e3e3e3;
  border: none;
}
.modal .modal-body hr,
.modal .modal-footer hr {
  background: #bdbaba;
  margin: 0.3rem 0;
}
.modal .modal-body {
  padding: 1rem 1.8rem;
  padding-bottom: 0;
  border-radius: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal .modal-content {
  background: transparent;
  border-radius: 0.6rem;
  overflow: hidden;
}
.modal .modal-footer {
  padding: 10px 0 20px 0;
  margin: 0;
}
.modal .modal-footer .btn {
  margin: 0;
}
.modal .current-location-title {
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: 600;
}
.modal #current-location-name {
  margin-left: 6px;
}
.modal .col-form-label {
  padding: 0;
  font-size: 16px;
}
.modal .modal-open[style] {
  overflow: hidden;
  padding-right: 0px !important;
}
/*Mixins*/
/*sections*/
/*Some general styles for the about pages*/
html {
  /*This is done to undo what is done in prevent-fouc.css, to prevent flash of unstyled content*/
  display: block;
  /* border-box box model allows us to add padding and border to our elements without increasing their size */
  box-sizing: border-box;
  font-weight: 900;
  font-size: 17px;
}
/*
  We inherit box-sizing: border-box; from our <html> selector
  Apparently this is a bit better than applying box-sizing: border-box; directly to the * selector
*/
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background-image: url("../Images/about_page/textured-background-1.png");
  background-size: 340px auto;
  min-height: calc(100vh - 100px);
  background-attachment: fixed;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 5px 0;
  font-weight: 600;
  font-family: 'Merriweather', serif;
}
h1 {
  text-shadow: 4px 3px 5px black;
  letter-spacing: 0.05em;
  font-size: 40px;
}
h2 {
  font-size: 28px;
}
a,
.nav-link {
  color: #fff;
}
a:hover,
.nav-link:hover,
a:focus,
.nav-link:focus,
a:active,
.nav-link:active {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
a:hover .fa-kit,
.nav-link:hover .fa-kit,
a:focus .fa-kit,
.nav-link:focus .fa-kit,
a:active .fa-kit,
.nav-link:active .fa-kit,
a:hover .nav-label,
.nav-link:hover .nav-label,
a:focus .nav-label,
.nav-link:focus .nav-label,
a:active .nav-label,
.nav-link:active .nav-label {
  color: #A7CA71;
  transition: 0.2s;
}
a .fa-kit,
.nav-link .fa-kit {
  color: #fff;
}
hr {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
header {
  padding: 30px 0;
}
.invalid-feedback {
  text-align: left;
}
.hide {
  display: none;
}
.status-message {
  display: inline;
  font-weight: bold;
  text-align: center;
  padding-top: 10px;
  font-size: 15px;
}
.fa-spinner {
  color: #fff;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  font-size: 20px;
}
.makeClickable {
  cursor: pointer;
}
/*Modal styles*/
.form-group.needs {
  padding: 12px 0 10px 0;
}
.form-group.pref-contact {
  padding: 14px;
}
.asteriks {
  color: #e53935;
}
.subscribe {
  font-size: 13px;
  color: black;
}
#subscribe-modal .modal-dialog {
  max-width: 500px;
}
#subscribe-modal .btn {
  width: 100%;
  margin: 20px 0;
}
#subscribe-modal .modal-body {
  padding: 0.5rem 1.8rem;
}
.preferred-contact .col-sm-9 {
  padding-left: 7px;
}
.expired-modal .modal-header {
  color: white;
  background: #e53935;
}
.expired-modal .btn {
  background: #072E48;
}
.expired-modal .modal-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 20px;
}
.expired-modal .modal-footer {
  border: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
/*Buttons*/
.sign-in-btn:hover {
  box-shadow: none;
}
.demo-btn .fa-times,
.header-btn .fa-times {
  color: #fff;
  padding: 0 5px;
}
.hero-btn {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 2px 2px 10px 0px black;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.main-nav-wrapper {
  height: 40px;
  min-height: none;
  background: #072E48;
  -webkit-appearance: none;
  -webkit-box-shadow: 0px 1px 1px #000;
  box-shadow: 0px 1px 1px #000;
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 0;
}
.main-nav-wrapper .schedule-demo-btn:first-child {
  position: relative;
  left: 15px;
}
#mobile-nav-wrapper {
  height: 60px;
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 0;
}
.navbar {
  height: 100%;
  margin: 0 auto;
  padding: 0.5rem 50px;
  max-width: 1200px;
}
.navbar-brand {
  margin-right: 6px;
}
.nav-label {
  display: none;
  color: #fff;
  padding-left: 10px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.navbar-toggler {
  border: none;
  font-size: 27px;
  float: right;
  position: relative;
  top: 12px;
}
.navbar-toggler .fa-kit {
  color: white;
}
.nav-link.show a:first-child,
.nav-link.show .fa-kit {
  color: #92BD4E;
}
.nav-link.show .fa-lock {
  color: #4a4a4a;
}
.nav-link.show .fa-spinner {
  color: #fff;
}
.form-inline .nav-link {
  text-decoration: underline;
}
.form-inline .nav-link:first-child {
  color: #19BEF0;
}
.form-inline .nav-link:first-child:hover,
.form-inline .nav-link:first-child:focus,
.form-inline .nav-link:first-child:active {
  color: #92BD4E;
}
.trade {
  position: relative;
  top: 10px;
  font-size: 1rem;
}
#sign-in-dropdown:hover,
#sign-in-dropdown:focus,
#sign-in-dropdown:active {
  color: #92BD4E;
}
#main-nav .fa-home {
  font-size: 21px;
  position: relative;
  top: 1px;
}
#main-nav .fa-envelope-o {
  font-size: 18px;
  position: relative;
  top: 1px;
}
#main-nav .fa-phone-fas {
  font-size: 16px;
}
.email-us-form img {
  width: 150px;
}
/*Mobile Nav styles*/
#mobile-nav {
  background: #f6f6f6;
  z-index: 2;
}
#mobile-nav .navbar {
  padding-bottom: 0;
  padding-top: 4px;
}
#mobile-nav .close-nav-btn {
  background: transparent;
  border: none;
  text-align: right;
  width: 100%;
  font-size: 14px;
  font-style: italic;
  padding: 10px 20px;
  padding-bottom: 8px;
  margin-bottom: 0px;
}
#mobile-nav .close-nav-btn:hover {
  cursor: pointer;
}
#mobile-nav .close-nav-btn span {
  color: #072E48;
}
#mobile-nav .fa-home {
  font-size: 22px;
}
#mobile-nav .fa-envelope-o,
#mobile-nav .fa-phone-fas {
  font-size: 17px;
  position: relative;
  left: 3px;
}
#mobile-nav .form-check {
  padding-top: 5px;
}
#mobile-nav .sign-in form {
  padding: 14px 18px;
}
#mobile-nav hr {
  background-color: #979797;
}
#mobile-nav hr.last-hr {
  margin-top: 10px;
  margin-bottom: 0;
}
.overlay {
  background: transparent;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 1;
  left: 0;
  display: none;
}
.sign-in-btn {
  background: #072E48;
}
.sign-in {
  border-bottom: 1px solid #979797;
  border-top: 1px solid #979797;
}
.sign-in .checkbox-background {
  left: 13px;
  top: 10px;
  height: 11px;
  width: 10px;
}
.mobile-sign-in-label {
  padding: 10px;
  padding-left: 20px;
}
.mobile-sign-in-label a {
  color: #072E48;
}
.mobile-sign-in-label a:hover {
  color: #92BD4E;
}
/*Hero section*/
.top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.5) url('../Images/about_page/hero-image.png') 0 / cover no-repeat;
  padding: 20px;
  margin-top: 40px;
}
.top.compliance-top {
  background: rgba(0, 0, 0, 0.5) url('../Images/about_page/CC-Background.png') 0 / cover no-repeat;
}
.top.drawings-top {
  background: rgba(0, 0, 0, 0.5) url('../Images/about_page/DMI-Background.png') 0 / cover no-repeat;
}
.top.space-top {
  background: rgba(0, 0, 0, 0.5) url('../Images/about_page/SIM-Background.png') 0 / cover no-repeat;
}
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "hero-content hero-img";
}
.hero > * {
  display: grid;
  place-items: center start;
  align-content: center;
}
.sub-hero .hero-content {
  margin-bottom: 10px;
}
.hero-content {
  grid-area: hero-content;
  color: #fff;
  padding-left: 30px;
  padding-bottom: 10px;
}
.hero-content .hero-btn {
  border: 2px solid transparent;
}
.hero-content .hero-btn:hover,
.hero-content .hero-btn:active,
.hero-content .hero-btn:focus {
  border: 2px solid;
  box-shadow: none;
}
h1 {
  font-size: 45px;
  line-height: 1.6em;
  padding-bottom: 12px;
}
.hero-img {
  grid-area: hero-img;
  justify-self: center;
  align-self: center;
  margin: 0;
  margin-bottom: 15px;
  width: 90%;
  max-width: 500px;
  min-width: 300px;
  box-shadow: -1px 2px 5px black;
  border-radius: 22px;
}
/*Features section*/
.features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  justify-content: space-around;
  color: #4a4a4a;
  padding: 10px 20px 60px 20px;
  align-items: center;
  text-align: center;
}
.features a {
  font-style: italic;
  color: blue;
  text-decoration: underline;
  font-size: 20px;
}
.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
  padding: 10px 20px;
}
.feature-icons h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
}
.feature-icons img {
  height: 69.6px;
  padding: 10px 0;
}
.feature-icons i {
  color: #4a4a4a;
  font-size: 50px;
  padding: 10px 0;
}
.feature-icons.drawing-icons {
  grid-gap: 40px 65px;
}
.feature-icons.compliance-icons {
  grid-template-columns: 1fr 1fr;
  padding: 30px 0;
  grid-gap: 0 100px;
}
.feature-icons.space-icons {
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 0;
  grid-gap: 50px 100px;
}
.feature-icons.space-icons h3:nth-child(5),
.feature-icons.space-icons h3:last-child {
  justify-content: flex-start;
}
.SM-feat,
.CC-feat {
  padding: 10px 20px 30px 20px;
}
.card-deck {
  justify-content: center;
  align-content: center;
}
.card {
  border-radius: 0;
  border-top: 5px solid #92BD4E;
  min-width: 280px;
  max-width: 280px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.25s;
  text-align: left;
}
.card img {
  border-radius: 0;
}
.card .card-title {
  font-size: 18px;
  margin-bottom: 0;
}
.card .card-body {
  padding: 1rem;
}
.card .card-text {
  margin-bottom: 0;
  font-size: 16px;
}
.card small {
  font-weight: 700;
}
.card .learn-more:hover small,
.card .learn-more:focus small,
.card .learn-more:active small {
  font-weight: bold;
  transition: 0.1s;
}
/*Endorsements section*/
.endorsements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 20px 40px 20px;
  background: #fff;
  min-height: 200px;
  color: #4a4a4a;
}
.companies {
  width: 800px;
  padding: 20px 0;
}
.companies .company-wrapper {
  display: flex;
  height: 100px;
  justify-content: space-between;
}
.companies .company-wrapper img {
  height: 80px;
}
.companies .company-wrapper:first-child {
  width: 112%;
  position: relative;
  left: -47px;
  justify-content: space-around;
}
.companies .company-wrapper:first-child img:first-child {
  width: 80px;
}
.companies .company-wrapper:first-child img:last-child {
  width: 350px;
  height: 34px;
  align-self: flex-end;
  margin-bottom: 41px;
}
.companies .company-wrapper:last-child {
  justify-content: space-around;
  align-items: flex-end;
}
.companies .company-wrapper:last-child img:first-child {
  height: 35px;
  margin-bottom: 11px;
}
.companies .company-wrapper:last-child img:last-child {
  height: 50px;
}
/*Call to action section*/
.call-to-action {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "action-content action-img";
  align-content: center;
  max-width: 1000px;
  align-items: center;
  padding: 40px 20px 45px 20px;
}
.action-content {
  grid-area: action-content;
  justify-self: center;
  padding-left: 10px;
}
.action-content header {
  padding: 20px 0 0 0;
}
.action-content h2 {
  display: inline-block;
  padding-bottom: 0px;
  font-size: 37px;
}
.action-content ol {
  padding: 11px 0px 0 27px;
  margin-bottom: 0;
}
.action-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.action-content .btn {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 17px;
  padding: 5px 53px;
  width: 100%;
}
.action-content li {
  font-family: 'Merriweather';
  font-size: 24px;
  font-weight: 600;
}
.action-content hr {
  background: #92BD4E;
  height: 3px;
  width: 284px;
  margin: 0;
}
.action-img {
  grid-area: action-img;
  width: 87%;
  margin: 0;
  margin-top: 2px;
  margin-left: -4px;
}
.action-btn {
  position: relative;
  left: -25px;
}
/*Footer section*/
footer {
  background: #072E48;
  color: #fff;
}
.footer-nav {
  display: grid;
  grid-gap: 20px;
  padding: 40px 50px;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  max-width: 1200px;
  margin: 0 auto;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  justify-content: flex-start;
}
.footer-nav nav:first-child {
  align-items: flex-start;
}
.footer-nav ul {
  padding: 0;
}
.footer-nav h5 {
  font-weight: 700;
}
.footer-nav li {
  list-style: none;
  padding-bottom: 8px;
}
.footer-nav li a {
  color: #fff;
}
.footer-nav li a:hover,
.footer-nav li a:focus,
.footer-nav li a:active {
  color: #92BD4E;
  transition: 0.2s;
}
.social-media {
  display: flex;
  font-size: 30px;
}
.social-media > span {
  padding-right: 18px;
}
hr {
  background: #fff;
}
.footer-boilerplate {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 150px 1fr 150px;
  place-items: center;
  text-align: center;
  padding: 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-boilerplate div:first-child {
  max-width: 100px;
  justify-self: left;
}
.footer-email {
  width: 155px;
  margin: 0 auto;
}
/*Dropdown(s) section*/
.form-group {
  padding-bottom: 0;
  margin: 5px 0;
}
.form-check {
  color: #fff;
  font-weight: normal;
  font-size: 14px;
  justify-content: space-between;
  display: flex;
}
.form-control {
  border: 1px solid #9b9b9b;
  font-weight: 600;
  font-size: 0.875rem;
  color: #666;
}
textarea.form-control {
  line-height: 1.2rem;
}
.dropdown h4,
.dropdown h5,
.dropdown h6 {
  font-family: 'Open Sans', sans-serif;
}
.dropdown-toggle {
  text-align: center;
}
.dropdown-toggle::after {
  content: none;
  border: none;
}
.dropdown-toggle:hover,
.dropdown-toggle:focus,
.dropdown-toggle:active {
  color: #92BD4E;
  cursor: pointer;
  transition: 0.2s;
}
.dropdown-menu {
  padding: 0;
  left: 50%;
  top: 90%;
  right: auto;
  text-align: center;
  transform: translate(-50%, 0);
  background: transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.dropdown-menu.email {
  min-width: 18rem;
}
.dropdown-menu.email .dropdown-header {
  text-decoration: underline;
}
.dropdown-menu.email .form-group {
  padding: 0.3rem 0 0.3rem 0;
}
.dropdown-menu.email .form-group:nth-child(2) {
  padding: 2px 0;
}
.dropdown-menu.sign-in {
  left: unset;
  right: 0;
  transform: none;
  width: 245px;
}
.dropdown-menu.sign-in .arrow-up {
  left: 88%;
}
.dropdown-menu.sign-in .dropdown-body {
  padding: 8px;
  padding-bottom: 6px;
}
.dropdown-menu.sign-in .form-control {
  width: 100%;
}
.dropdown-menu .form-group {
  padding: 3px 0;
  margin: 0;
}
.dropdown-menu .form-check {
  color: #4a4a4a;
  background: #f6f6f6;
  padding-bottom: 7px;
  padding-top: 6px;
  font-size: 12px;
  display: flex;
  justify-content: space-around;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.dropdown-menu .form-check div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.dropdown-menu .form-check a {
  color: #4a4a4a;
  text-decoration: underline;
}
.dropdown-header {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-weight: 800;
  font-style: normal;
  padding-top: 9px;
  background: #92BD4E;
}
.dropdown-header .fa-kit {
  color: #4a4a4a;
  font-size: 20px;
  position: relative;
  top: 1px;
}
.dropdown-body {
  padding: 5px 15px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #f6f6f6;
}
.dropdown-body .phone-number {
  font-size: 26px;
  font-weight: bold;
  color: #4a4a4a;
}
.dropdown-body .btn {
  width: 100%;
}
.dropdown-divider {
  margin: 0;
  border-top: 1px solid #d4d4d4;
}
.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #92BD4E;
  position: absolute;
  top: -5px;
  left: 48%;
}
.success-email {
  background: #f6f6f6;
  border-radius: 3px;
}
.success-email div {
  padding: 20px;
  width: 300px;
  font-size: 20px;
  height: 310px;
  color: #7e7e7e;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.success-email a {
  color: #626262;
  font-style: italic;
  text-decoration: underline;
  bottom: 8px;
}
.success-email a:last-child {
  position: relative;
  bottom: 5px;
}
.success-email .show-email-form-link {
  font-style: italic;
  text-decoration: underline;
  position: relative;
  bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;
}
.success-email .show-email-form-link:hover {
  color: #74973E;
}
.field-validation-error,
.login-failed {
  color: red;
  font-size: 13px;
  padding-left: 2px;
}
/*Media Queries*/
/*Media Queries*/
@media (max-width: 1150px) {
  h1 {
    font-size: 32px;
    line-height: 1.45em;
    padding: 15px 0 5px 0;
    padding: 0;
    margin-bottom: 11px;
  }
  h2 {
    font-size: 23px;
  }
  .action-content h2 {
    font-size: 32px;
  }
  .action-content h4 {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .companies .company-wrapper:first-child {
    width: 100%;
    position: unset;
  }
  .companies .company-wrapper:first-child * {
    margin: 0 10px;
  }
}
@media (max-width: 850px) {
  .footer-nav nav {
    align-items: flex-start;
  }
  .companies {
    width: auto;
  }
  .companies .company-wrapper {
    flex-direction: column;
    height: auto;
    align-items: center;
    padding: 10px;
  }
  .companies .company-wrapper:last-child {
    align-items: center;
  }
  .companies .company-wrapper:last-child img {
    margin: 10px;
    height: 50px;
    padding: 5px;
  }
  .companies .company-wrapper:first-child img:last-child {
    margin-top: 15px;
    align-self: center;
    margin-bottom: 0px;
  }
  .card .card-title {
    font-size: 17px;
    padding-bottom: 3px;
    line-height: 1.3rem;
  }
  .card .card-text {
    font-size: 15px;
    line-height: 1rem;
  }
  .card.learn-more {
    font-size: 15px;
  }
}
@media (min-width: 767px) {
  .main-nav-wrapper {
    display: inline-block;
  }
  #mobile-nav-wrapper {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-nav-wrapper {
    display: none;
  }
  #mobile-nav-wrapper {
    display: block;
  }
  .navbar {
    min-height: 50px;
    max-height: none;
    transition: all 0.3s;
    padding: 0 1rem;
    box-shadow: 0px 1px 1px #000;
  }
  .footer-boilerplate {
    grid-template-columns: 1fr;
  }
  .nav-label {
    display: inline-block;
    color: #072E48;
  }
  .form-inline {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    font-weight: 500;
    margin: 0 !important;
  }
  .navbar-collapse {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    max-width: 315px;
    min-width: 200px;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
  }
  .navbar-collapse .btn {
    padding: 5px;
    width: 100%;
  }
  .navbar-collapse .fa-kit {
    color: #072E48;
  }
  .navbar-collapse.collapsing {
    height: auto;
    -webkit-transition: right 0.2s ease;
    -o-transition: right 0.2s ease;
    -moz-transition: right 0.2s ease;
    transition: right 0.2s ease;
    right: -100%;
    height: 100vh;
  }
  .navbar-collapse.show {
    right: 0;
    -webkit-transition: right 0.2s ease-in;
    -o-transition: right 0.2s ease-in;
    -moz-transition: right 0.2s ease-in;
    transition: right 0.2s ease-in;
  }
  .navbar-collapse.show + .overlay {
    display: block;
    z-index: 1;
  }
  .navbar-nav {
    padding: 0 20px;
  }
  hr {
    width: 270px;
  }
  .form-check {
    justify-content: center;
    padding: 0;
  }
  .form-check a {
    text-decoration: underline;
    color: #072E48;
    font-weight: bold;
  }
  .top {
    margin-top: 60px;
    padding: 22px;
    padding-bottom: 26px;
  }
  .hero,
  .call-to-action,
  .materials-wrapper {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 0;
    grid-template-areas: "hero-img" "hero-content";
  }
  .hero-img {
    padding-top: 0;
    width: 95%;
    justify-self: center;
  }
  .hero-content {
    padding: 0;
    width: 95%;
  }
  .hero-content div {
    width: 95%;
    position: relative;
    left: 21px;
  }
  .hero-btn {
    padding: 5px 0;
    width: 98%;
  }
  .trade {
    top: 19px;
  }
}
@media (max-width: 700px) {
  .feature-icons h3 {
    justify-content: flex-start;
  }
  .feature-icons,
  .feature-icons.space-icons {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .feature-icons.compliance-icons {
    padding: 10px 0;
    grid-gap: 0 30px;
  }
  .materials-wrapper {
    grid-template-areas: "materials-img" "materials-content";
  }
  .materials-img {
    max-width: none;
  }
  .call-to-action {
    grid-template-areas: "action-content";
  }
  .action-content {
    justify-self: center;
  }
  .action-img {
    display: none;
  }
  .footer-boilerplate div:first-child {
    justify-self: center;
  }
}
@media (max-width: 600px) {
  .companies .company-wrapper img,
  .companies .company-wrapper:last-child img {
    height: auto;
  }
  .companies .company-wrapper:first-child img:first-child,
  .companies .company-wrapper:first-child img:nth-child(2) {
    margin-bottom: 19px;
  }
  .top {
    background-position: 64% 0px;
  }
  .features {
    padding: 10px 43px 30px 43px;
  }
  .features header {
    text-align: left;
    padding: 17px 0 9px 0px;
  }
  .card {
    max-width: unset;
  }
  .endorsements {
    padding: 5px 20px 0px 20px;
  }
  .endorsements header {
    padding-bottom: 0;
  }
  .call-to-action header {
    padding: 0;
  }
  .call-to-action .action-content {
    padding-left: 22px;
  }
  .call-to-action .action-content h2 {
    font-size: 34px;
    margin-bottom: 11px;
  }
  .call-to-action .action-content h4 {
    font-size: 22px;
    margin-bottom: 9px;
  }
  .footer-nav {
    padding: 40px 45px 3px 45px;
    grid-gap: 1px;
    text-align: center;
  }
  .footer-nav ul {
    width: 100%;
  }
  .footer-boilerplate {
    grid-gap: 14px;
    padding-bottom: 50px;
  }
  .copyright {
    line-height: 1.6rem;
  }
  .social-media {
    justify-content: center;
  }
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
  }
  .card-deck .card {
    margin-bottom: unset;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance:none) {
    .radio-container .radiobtn {
      top: 0px;
      left: -85px;
    }
    .radio-container .radiobtn:after {
      top: 2.5px;
    }
    input.faChk:checked:after,
    input.faChk:checked,
    input.faChk:checked:before,
    input.faChk:checked {
      top: -5px;
    }
    input.faChk:checked:after {
      top: -26px;
    }
    .main-nav-wrapper {
      box-shadow: 0px 0px 5px #000;
    }
  }
}
@-moz-document url-prefix() {
  .radio-container .radiobtn {
    top: 0px;
    left: -85px;
  }
  .radio-container .radiobtn:after {
    width: 21px;
    height: 21px;
    margin-left: -10.5px;
    top: 1px;
  }
  input.faChk {
    visibility: visible;
    background: white;
  }
  .sign-in checkbox-background {
    display: none;
  }
  .checkbox-background {
    display: none;
  }
  .dropdown-menu .form-check div:first-child {
    display: none;
  }
}
.about-wrapper::-webkit-scrollbar {
  display: none;
}