/* COLORS */
* {
  margin: 0;
  padding: 0;
}

/* calculates the font size to be 10px so that em will now correspond exactly with px. Example 2.2 em = 22px */
html {
  font-size: 0.625rem;
  font-family: "Quicksand", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 2.2rem;
  /*  set font size to 18px */
  background-color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  position: relative;
}

@media (max-width: 992px) {
  .mb-15-res {
    margin-bottom: 15px !important;
  }
}

.mb-15 {
  margin-bottom: 15px !important;
}

h1 {
  font-size: calc(.6vw + 1.6em);
  padding-top: 3rem;
}
@media (max-width: 992px) {
  h1 {
    font-size: calc(1vw + 1.4em);
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.4em;
    line-height: 39px;
  }
}

h2 {
  margin-bottom: 15px;
  font-size: calc(1vw + 1.2em);
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.2em;
  }
}

p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 992px) {
  small {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  small {
    font-size: 14px;
  }
}

a {
  text-decoration: none !important;
  color: #700000;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

@media (max-width: 992px) {
  .mt-15-res {
    margin-top: 15px !important;
  }

  .mb-0-res {
    margin-bottom: 0 !important;
  }
}
.base-color {
  color: #000;
}

.white-color {
  color: #ffffff;
}

.brand-color {
  color: #395536;
}

.accent-color {
  color: #273469;
}

.secondary-color {
  color: #700000;
}

.tertiary-color {
  color: #4298B5;
}

.quaternary-color {
  color: #007EA8;
}

.background-brand-color {
  background-color: #395536;
}

.background-accent-color {
  background-color: #273469;
}

.background-secondary-color {
  background-color: #700000;
}

.background-tertiary-color {
  background-color: #4298B5;
}

.background-quaternary-color {
  background-color: #007EA8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #395536;
}

h3 {
  font-size: calc(.8vw + 16px);
}
@media (min-width: 1600px) {
  h3 {
    font-size: 3rem;
  }
}

a, i {
  color: #395536;
}

ul {
  list-style: none;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  ul {
    font-size: 18px;
  }
}
ul li {
  margin-bottom: 5px;
}
ul li:last-child {
  margin-bottom: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.btn {
  font-size: 2rem;
  padding: 9px 10px;
  border-radius: 6px;
  outline: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .btn {
    width: 100%;
    max-width: 100%;
  }
}

.transparent-button {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
@media (max-width: 992px) {
  .transparent-button {
    max-width: 230px;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .transparent-button {
    max-width: 100%;
  }
}

.button-primary {
  outline: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .button-primary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 18px;
  }
}

.button-primary {
  background-color: #700000;
  border: 1px solid #700000;
  color: #ffffff;
  transition: all 0.3s ease;
}
.button-primary:hover {
  background-color: #273469;
  border: 1px solid #273469;
  color: #ffffff !important;
}
.button-primary:hover:hover {
  text-shadow: 2px 2px 1px #000;
}

.button-secondary {
  background-color: #273469;
  color: #000;
}

.mobile-res {
  display: block;
}
@media (min-width: 992px) {
  .mobile-res {
    display: none;
  }
}

.high-res {
  display: none;
}
@media (min-width: 992px) {
  .high-res {
    display: block;
  }
}

.show-res {
  display: block;
}
@media (min-width: 992px) {
  .show-res {
    display: none;
  }
}

@media (max-width: 992px) {
  .hide-res {
    display: none;
  }
}

#skiptocontent a {
  padding: 6px;
  position: fixed;
  top: -45px;
  left: 0;
  color: white;
  border-right: 1px solid white;
  border-bottom: 0;
  border-bottom-right-radius: 8px;
  background: #BF1722;
  -webkit-transition: top 1s ease-out;
  -o-transition: top 1s ease-out;
  -moz-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 999999;
}

#skiptocontent a:focus {
  position: fixed;
  left: 0;
  top: 0;
  outline-color: transparent;
  -webkit-transition: top 0.1s ease-in;
  -o-transition: top 0.1s ease-in;
  -moz-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

/* Flying focus */
#flying-focus {
  position: fixed;
  margin: 0;
  background: transparent;
  -webkit-transition-property: left, top, width, height;
  -o-transition-property: left, top, width, height;
  -moz-transition-property: left, top, width, height;
  transition-property: left, top, width, height;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  transition-timing-function: cubic-bezier(0, 1, 0, 1);
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 0 2px 3px #78aeda, 0 0 2px #78aeda inset;
  border-radius: 2px;
}

#flying-focus.flying-focus_visible {
  visibility: visible;
  z-index: 9999;
}

.flying-focus_target {
  outline: none !important;
  /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
  border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #flying-focus {
    box-shadow: none;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #flying-focus {
    transition-duration: 0.001ms !important;
  }
}
.modal-open {
  padding-right: 0 !important;
}

.nav-fix {
  max-height: 100%;
  position: fixed;
  overflow-y: auto;
  width: 100%;
}

.navbar {
  background: #ffffff;
  border-bottom: solid 1px #f5f5f5;
}
@media (max-width: 992px) {
  .navbar {
    padding: 2.5px 0;
    max-height: 100%;
    position: fixed;
    overflow-y: auto;
    width: 100%;
    border-bottom: solid 1px #f1f1f1;
  }
}
.navbar .nav-link {
  color: #395536;
  font-size: 2.2rem;
  margin-right: 2rem;
  transition: all 0.3s ease;
  font-weight: bold !important;
}
.navbar .nav-link:hover {
  opacity: 0.7;
}
@media (max-width: 1600px) {
  .navbar .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .navbar .nav-link {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-right: 0;
    margin-left: 0;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .navbar .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0;
    margin-left: 10px;
  }
}
.navbar .nav-link.nav-phone {
  background-color: #700000;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.navbar .nav-link.nav-phone:hover {
  color: #fff;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .navbar .nav-link.nav-phone {
    padding: 6px;
  }
}
@media (max-width: 992px) {
  .navbar .nav-link.nav-phone {
    padding: 7px 10px;
    max-width: 130px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 7px;
  }
}
.navbar .nav-item {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .navbar .nav-item {
    padding: 3px !important;
  }
  .navbar .nav-item:after {
    right: 0;
    top: 23px;
  }
}
@media (max-width: 992px) {
  .navbar .nav-item {
    padding: 0 !important;
  }
}
.navbar .phone-nav {
  border-radius: 6px;
  padding: 7px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .navbar .phone-nav {
    width: 100%;
    max-width: 120px !important;
    text-align: center;
    padding: 7px;
    margin-bottom: 10px;
  }
}
.navbar .phone-nav:hover {
  opacity: 0.9 !important;
}
.navbar .dropdown-menu {
  background: #395536;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}
@media (max-width: 992px) {
  .navbar .dropdown-menu {
    border-radius: 0;
    margin-top: 0;
  }
}
.navbar .dropdown-menu .dropdown-item {
  color: #ffffff;
  font-size: 2rem;
  transition: all 0.3s ease;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 1600px) {
  .navbar .dropdown-menu .dropdown-item {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .navbar .dropdown-menu .dropdown-item {
    padding-top: 9px;
    padding-bottom: 9px;
    white-space: unset;
  }
}
.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus {
  color: #fff;
  background: #700000;
}
.navbar .navbar-toggler {
  background: #700100;
  padding: 8px 11px;
  border-radius: 6px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
  border: none;
}
.navbar .navbar-toggler:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .navbar .navbar-toggler {
    margin-top: 0;
    margin-right: 8px;
  }
}
.navbar .navbar-toggler i {
  color: #ffffff;
  font-size: 20px;
}

@media (min-width: 1200px) {
  .dropdown-toggle::after {
    top: 2px;
    position: relative;
  }
}
@media (max-width: 1200px) {
  .dropdown-toggle::after {
    right: 0 !important;
    top: 23px !important;
  }
}
@media (max-width: 992px) {
  .dropdown-toggle::after {
    position: absolute;
    right: 15px !important;
    top: 26px !important;
  }
}

@media (max-width: 992px) {
  .nav-space {
    height: 56px;
  }
}

.navbar-brand {
  font-size: 18px;
}
.navbar-brand .nav-logo {
  height: 82px;
  max-height: 82px;
  width: auto;
}
@media (max-width: 1600px) {
  .navbar-brand .nav-logo {
    max-height: 80px;
    height: 80px;
  }
}
@media (max-width: 1600px) {
  .navbar-brand .nav-logo {
    max-height: 50px;
    height: 50px;
  }
}
@media (max-width: 992px) {
  .navbar-brand .nav-logo {
    padding-left: 5px;
    max-height: 44px;
    height: 44px;
    max-width: 200px;
    margin-left: 5px;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    border-top: solid 1px #f1f1f1;
    margin-top: 7px;
  }
}

.nav-wrapper {
  position: relative;
}

.call-to-action {
  background-color: #700000;
  padding: 3rem 15px;
}
@media (max-width: 992px) {
  .call-to-action {
    padding: 15px;
  }
}
.call-to-action:hover {
  transition: all 0.3s ease;
  background: #273469;
}
.call-to-action:hover h2 {
  color: #fff;
  text-shadow: 2px 2px 1px #000;
}
.call-to-action h2 {
  font-size: 1.2em;
  color: #ffffff;
}
@media (max-width: 992px) {
  .call-to-action h2 {
    font-size: 18px;
  }
}

hr.title-divider {
  border: solid 2px #273469;
  margin-top: 6px;
  margin-bottom: 12px;
  max-width: 25px;
  border-radius: 0;
}
@media (max-width: 992px) {
  hr.title-divider {
    margin: 15px 0;
  }
}

.modal-title {
  font-size: 1.5vw;
}
@media (max-width: 992px) {
  .modal-title {
    font-size: 18px;
  }
}
.modal-title small {
  color: #ffffff;
}

@media (max-width: 992px) {
  .modal-body {
    font-size: 18px;
  }
}

footer {
  display: grid;
  padding: 15px;
  grid-gap: 15px;
  align-items: start;
  justify-items: center;
  font-weight: bold;
}
@media (min-width: 992px) {
  footer {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  footer {
    grid-gap: 15px;
    justify-items: left;
    padding: 15px;
  }
}
footer .footer-title {
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  footer .footer-brand {
    align-self: center;
  }
}
@media (max-width: 480px) {
  footer .footer-brand {
    width: 100%;
    max-width: 100%;
  }
}
footer .footer-brand img {
  max-width: 40vw;
  height: auto;
}
@media (min-width: 992px) {
  footer .footer-brand img {
    width: 250px;
    max-width: 250px;
    height: auto;
  }
}
@media (max-width: 992px) {
  footer .footer-brand img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  footer .footer-brand img {
    max-width: 100%;
  }
}
footer .fa-footer {
  margin-right: 3px;
}
footer .fa-phone-square {
  margin-right: 5px;
}
footer .fa-map-marker-alt {
  margin-right: 8px;
}
footer .fa-fax {
  margin-right: 5px;
}
footer .fa-envelope-open-text {
  margin-right: 5px;
}
footer .social-row {
  font-size: 3rem;
}
@media (max-width: 992px) {
  footer .social-row {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  footer .social-row {
    font-size: 18px;
  }
}
footer .social-row a {
  font-size: 3rem;
}
@media (max-width: 992px) {
  footer .social-row a {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  footer .social-row a {
    font-size: 18px;
  }
}
footer .footer-divider {
  border: solid 2px #273469;
  margin-top: 10px;
  margin-bottom: 12px;
  max-width: 20px;
  border-radius: 0;
}
@media (max-width: 992px) {
  footer .column-one {
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  footer .column-one a {
    display: block;
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  footer .column-two ul li {
    line-height: 4rem;
  }
}
footer ul li {
  margin-bottom: 3px;
}
@media (max-width: 1600px) {
  footer ul li {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  footer ul li {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  footer ul li {
    font-size: 18px;
  }
}
footer ul li:last-child {
  margin-bottom: 0;
}
footer a {
  transition: all 0.3s ease;
}
@media (max-width: 1600px) {
  footer a {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  footer a {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  footer a {
    font-size: 18px;
  }
}
footer a:hover {
  opacity: 0.9;
}

.copyright {
  padding: 15px;
}
.copyright p {
  font-size: 18px;
  padding: 0;
  font-weight: bold;
}
.copyright a {
  color: #ffffff;
  transition: all 0.3s ease;
}
.copyright a:hover {
  color: #ffffff;
  opacity: 0.9;
}

.banner {
  background: url("../images/iStock-1211395752.jpeg") center bottom/cover no-repeat;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 15px;
}
@media (max-width: 992px) {
  .banner {
    min-height: calc(100vh - 56px);
  }
}
.banner h1 {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  margin: 0;
  color: #ffffff;
  font-size: 8rem;
  border-radius: 12px;
}
@media (max-width: 1600px) {
  .banner h1 {
    font-size: 6.5rem;
  }
}
@media (max-width: 1366px) {
  .banner h1 {
    font-size: 5rem;
  }
}
@media (max-width: 992px) {
  .banner h1 {
    font-size: 1.6em;
  }
}
@media (max-width: 480px) {
  .banner h1 {
    font-size: 1.4em;
    line-height: 40px;
    text-align: center;
  }
}

.content {
  max-width: 50vw;
  margin: 0 0 0 -50rem;
  padding: 5rem;
  background: #ffffff;
  box-shadow: 5px 5px 1px #395536;
  border: solid 1px #f7f7f7;
}
@media (max-width: 992px) {
  .content {
    margin: 0;
    padding: 15px;
  }
}

.home-page .banner {
  background: url("../images/iStock-1211395752.jpeg") center bottom/cover no-repeat;
}
.home-page .cta-container-home {
  padding: 30px;
}
@media (max-width: 992px) {
  .home-page .cta-container-home {
    padding: 15px;
  }
}
.home-page .sharefile-calltoaction {
  background: #000;
  width: 100%;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  display: grid;
  grid-gap: 15px;
  align-items: center;
  justify-content: center;
  align-content: center;
  grid-template-columns: auto auto;
  justify-items: center;
  max-width: 500px;
  border-radius: 12px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .home-page .sharefile-calltoaction {
    padding: 15px;
    grid-template-columns: 1fr;
  }
}
.home-page .sharefile-calltoaction:hover {
  opacity: 0.8;
}
.home-page .sharefile-calltoaction img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}
@media (max-width: 992px) {
  .home-page .sharefile-calltoaction img {
    max-width: 250px;
  }
}
.home-page .sharefile-calltoaction p {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}
@media (max-width: 992px) {
  .home-page .sharefile-calltoaction p {
    display: block;
    margin-top: 0;
  }
}
.home-page .first-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .home-page .first-section {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .first-section {
    grid-template-columns: 1fr;
  }
}
.home-page .first-section .content {
  max-width: 50vw;
  margin: 0 0 0 -50rem;
  padding: 5rem;
  background: #ffffff;
  box-shadow: 5px 5px 1px #395536;
}
@media (min-width: 992px) {
  .home-page .first-section .content {
    border: solid 1px #f7f7f7;
  }
}
@media (max-width: 1600px) {
  .home-page .first-section .content {
    max-width: 100%;
    margin: 0 0 0 -15rem;
  }
}
@media (max-width: 1200px) {
  .home-page .first-section .content {
    margin: 0 30px 0 0;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .home-page .first-section .content {
    margin: 0;
    max-width: 100%;
    padding: 15px;
  }
}
@media (max-width: 1600px) {
  .home-page .first-section h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 992px) {
  .home-page .first-section h2 {
    font-size: 1.4em;
  }
}
@media (max-width: 480px) {
  .home-page .first-section h2 {
    font-size: 1.2em;
  }
}
@media (max-width: 1600px) {
  .home-page .first-section p {
    font-size: 18px;
  }
}
.home-page .first-section-home-image {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .home-page .first-section-home-image {
    margin-right: -30px;
  }
}
@media (max-width: 1600px) {
  .home-page .first-section-home-image {
    max-width: 100%;
  }
}
.home-page .second-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .home-page .second-section {
    padding: 15px 15px 0;
  }
}
@media (max-width: 992px) {
  .home-page .second-section {
    grid-template-columns: 1fr;
  }
}
.home-page .second-section .content {
  max-width: 50vw;
  margin: 0 -50rem 0 0;
  padding: 5rem;
  background: #ffffff;
  box-shadow: -5px -5px 1px #395536;
  z-index: 1;
}
@media (min-width: 992px) {
  .home-page .second-section .content {
    border: solid 1px #f7f7f7;
  }
}
@media (max-width: 1600px) {
  .home-page .second-section .content {
    max-width: 100%;
    margin: 0 -15rem 0 0;
  }
}
@media (max-width: 1200px) {
  .home-page .second-section .content {
    margin: 0 0 0 30px;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .home-page .second-section .content {
    margin: 0;
    max-width: 100%;
    padding: 15px;
  }
}
@media (max-width: 1600px) {
  .home-page .second-section h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 992px) {
  .home-page .second-section h2 {
    font-size: 1.4em;
  }
}
@media (max-width: 480px) {
  .home-page .second-section h2 {
    font-size: 1.2em;
  }
}
@media (max-width: 1600px) {
  .home-page .second-section p {
    font-size: 18px;
  }
}

.about-page .banner {
  background: url("../images/iStock-583689556.jpg") center/cover no-repeat;
}
@media (max-width: 1600px) {
  .about-page .first-section {
    padding: 15px;
  }
}
.about-page .first-section .content {
  margin: 2rem auto;
  max-width: 75vw;
  border: solid 1px #f7f7f7;
}
@media (max-width: 1600px) {
  .about-page .first-section .content {
    margin: 0 auto;
    max-width: 100%;
    padding: 15px;
  }
}
.about-page .second-section {
  background: #395536;
  padding-top: 20rem;
}
@media (max-width: 992px) {
  .about-page .second-section {
    padding-top: 65px;
  }
}
.about-page .second-section h2, .about-page .second-section h3 {
  color: #ffffff;
}
.about-page svg.pointer {
  height: 7em;
  margin-bottom: -8.3em;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .about-page svg.pointer {
    height: 35px;
    margin-bottom: -64.5px;
  }
}
.about-page small {
  display: block;
}
.about-page .team-box {
  height: 100%;
}
.about-page .team-box a {
  max-width: 300px;
  margin: 20px auto;
}
.about-page .modal-team .modal-dialog {
  max-width: 900px;
}
.about-page .modal-team h2 {
  color: #395536;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.about-page .modal-team a {
  color: #395536;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.about-page .modal-team a:hover {
  opacity: 0.9;
}

.team-row {
  grid-gap: 3rem;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 15px;
}
@media (max-width: 1600px) {
  .team-row {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .team-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .team-row {
    grid-template-columns: 1fr;
  }
}
.team-row .team-box a {
  display: block;
  outline: none;
  box-shadow: none;
}
.team-row .team-box a:hover, .team-row .team-box a:focus {
  background: #fff;
  color: #700000 !important;
  text-shadow: none !important;
}
@media (max-width: 1600px) {
  .team-row .team-box a {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .team-row .team-box a {
    max-width: 300px !important;
  }
}
.team-row .team-box h3 {
  text-align: center;
}
.team-row .team-box h3 small {
  margin-bottom: 15px;
  display: block;
  margin-top: 10px;
}
.team-row .small {
  color: #ffffff;
}

@media (min-width: 992px) {
  .team-row-top {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }
  .team-row-top .team-box-left {
    justify-content: left;
    justify-self: left;
  }
  .team-row-top .team-box-right {
    justify-content: right;
    justify-self: right;
  }
}
@media (max-width: 992px) {
  .team-row-top {
    margin-bottom: 30px;
  }
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
  background-color: transparent;
  width: 300px;
  height: 450px;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
  margin: 2rem auto;
}
/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}
.flip-box-front img, .flip-box-back img {
  max-width: 300px;
  height: auto;
}
/* Style the front side (fallback if image is missing) */
/* Style the back side */
.flip-box-back {
  transform: rotateY(180deg);
}

.close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 1;
  font-size: 3rem;
  color: #ffffff;
}
@media (max-width: 992px) {
  .close {
    padding: 3px 10px !important;
  }
}

.modal {
  padding-right: 0 !important;
}

.modal-header {
  display: block;
  background: #395536;
  padding: 0;
}
.modal-header svg.pointer {
  height: 1.3em;
  margin-bottom: -2.6em;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .modal-header svg.pointer {
    height: 1em;
    margin-bottom: -2.3em;
  }
}

.modal-title {
  background: #395536;
  text-align: center;
  color: white;
  padding: 13px 15px 0;
}
@media (max-width: 480px) {
  .modal-title {
    padding: 13px 40px 0 15px;
    text-align: left;
  }
}

.modal.show {
  display: grid !important;
}
.modal.show .modal-dialog {
  align-self: center;
}

.modal-content {
  border: none;
}

@media (max-width: 480px) {
  .modal-dialog {
    margin: 15px;
  }
}

.modal-body {
  padding: 45px 15px 15px;
}
@media (max-width: 992px) {
  .modal-body {
    padding: 35px 15px 15px;
  }
}

.close {
  box-shadow: none !important;
  outline: none !important;
  color: #fff !important;
  transition: all 0.3s ease-in-out !important;
}
.close:hover {
  opacity: 0.9;
}

.contact-page .banner {
  background: url("../images/iStock-519709446.jpeg") center/cover no-repeat;
}
.contact-page svg.pointer {
  height: 4em !important;
  margin-bottom: 1em;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .contact-page svg.pointer {
    height: 2em !important;
  }
}
.contact-page .contact-information {
  justify-self: center;
  background: #273469;
  padding: 2.5em 6em 0;
}
@media (max-width: 992px) {
  .contact-page .contact-information {
    padding: 25px 15px 0;
  }
}
@media (max-width: 992px) {
  .contact-page .contact-information br {
    display: none;
  }
}
.contact-page .contact-information p {
  font-size: 3rem;
}
@media (max-width: 992px) {
  .contact-page .contact-information p {
    font-size: 20px;
  }
}
.contact-page .contact-information p a {
  color: #ffffff;
}
@media (max-width: 992px) {
  .contact-page .contact-information p a:first-child {
    display: block;
    margin-bottom: 10px;
  }
}
.contact-page .contact-information p a i {
  color: #ffffff;
}
.contact-page .first-section {
  display: grid;
  align-items: center;
  justify-items: center;
}
@media (max-width: 1366px) {
  .contact-page .first-section {
    padding: 0 15px;
  }
}
.contact-page .first-section form {
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin-bottom: 30px;
  background: #700100;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  max-width: 900px;
}
@media (max-width: 992px) {
  .contact-page .first-section form {
    box-shadow: none;
    margin-bottom: 15px;
  }
}
.contact-page .first-section form .form-control {
  margin-bottom: 15px;
  color: #000;
}
@media (max-width: 992px) {
  .contact-page .first-section form .form-control {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .contact-page .first-section form label {
    font-size: 18px;
  }
}
.contact-page .first-section form button {
  margin-top: 15px;
  font-weight: bold;
  background: #fff;
  color: #700100;
  border: solid 1px #700100;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .contact-page .first-section form button {
    margin-top: 5px;
  }
}
.contact-page .first-section form button:hover {
  background: #700100;
  color: #fff;
  border: solid 1px #fff;
}
@media (max-width: 480px) {
  .contact-page #contact-recaptcha, .contact-page .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    height: 76px;
    width: 260px;
  }
}
.contact-page .fa-map-marker-alt {
  margin-right: 3px;
}
.contact-page .fa-phone-square {
  margin-right: 2px;
}

.map {
  width: 100%;
  height: 300px;
}

.form-control {
  font-size: 1.8rem;
}

.accounting-page h1, .quickbooks-page h1 {
  margin-top: 90px;
  background: #395536;
  color: #ffffff;
  width: 100%;
  padding: 5rem 3rem;
}
@media (max-width: 1600px) {
  .accounting-page h1, .quickbooks-page h1 {
    margin-top: 67px;
  }
}
@media (max-width: 992px) {
  .accounting-page h1, .quickbooks-page h1 {
    padding: 15px;
    margin-top: 0;
  }
}
.accounting-page .section, .quickbooks-page .section {
  margin: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}
@media (max-width: 1200px) {
  .accounting-page .section, .quickbooks-page .section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 992px) {
  .accounting-page .section, .quickbooks-page .section {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 15px;
  }
}
.accounting-page .section img, .quickbooks-page .section img {
  max-width: 35vw;
}
@media (max-width: 1200px) {
  .accounting-page .section img, .quickbooks-page .section img {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .accounting-page .section img, .quickbooks-page .section img {
    width: 100%;
    max-width: 100%;
    margin: 15px auto 0;
    display: block;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .accounting-page .section img, .quickbooks-page .section img {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .accounting-page .section .imageTwo, .quickbooks-page .section .imageTwo {
    max-width: 250px;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .accounting-page .section .imageTwo, .quickbooks-page .section .imageTwo {
    max-width: 100%;
  }
}
.accounting-page .section .content, .quickbooks-page .section .content {
  max-width: 75vw !important;
  width: 75vw !important;
  margin: auto;
}
@media (max-width: 1200px) {
  .accounting-page .section .content, .quickbooks-page .section .content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .accounting-page .section .content, .quickbooks-page .section .content {
    border: solid 5px #395536;
    box-shadow: none !important;
    border-radius: 6px;
  }
}
.accounting-page .second-section .content, .quickbooks-page .second-section .content {
  margin: 0;
  padding: 5rem;
  background: #ffffff;
  box-shadow: -5px 5px 1px #395536;
  z-index: 1;
}
@media (min-width: 992px) {
  .accounting-page .second-section .content, .quickbooks-page .second-section .content {
    border: solid 1px #f7f7f7;
  }
}
@media (max-width: 1600px) {
  .accounting-page .second-section .content, .quickbooks-page .second-section .content {
    max-width: 100%;
    margin: 0 -15rem 0 0;
  }
}
@media (max-width: 1200px) {
  .accounting-page .second-section .content, .quickbooks-page .second-section .content {
    margin: 0 0 0 30px;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .accounting-page .second-section .content, .quickbooks-page .second-section .content {
    margin: 0;
    max-width: 100%;
    padding: 15px;
  }
}

@media (max-width: 992px) {
  .accounting-page .image-one {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }
}
.accounting-page .image-two, .accounting-page .image-three {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.quickbooks-page .content {
  display: flex;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .quickbooks-page .image-one {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 992px) {
  .quickbooks-page .quickbooks-logo {
    display: block;
    margin: 0 auto;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .quickbooks-page .quickbooks-logo {
    max-width: 100%;
  }
}

.federal-refund .banner {
  background: url("../images/iStock-1340719612.jpg") center/cover no-repeat;
}
.federal-refund .first-section {
  display: grid;
  grid-template-columns: 30% 70%;
  padding: 5rem;
}
@media (max-width: 1600px) {
  .federal-refund .first-section {
    grid-gap: 30px;
    padding: 15px;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 992px) {
  .federal-refund .first-section {
    padding: 15px;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.federal-refund .first-section .button-row {
  align-self: center;
  justify-self: end;
}
.federal-refund .first-section p {
  font-size: 3rem;
}
@media (max-width: 1600px) {
  .federal-refund .first-section p {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .federal-refund .first-section p {
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  .federal-refund .first-section .irs-text {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .federal-refund .first-section .irs-text {
    margin-top: 15px;
  }
}
.federal-refund .first-section a {
  display: block;
  border-radius: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #273469, rgba(39, 52, 105, 0.8));
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25), -8px -8px 12px 0 rgba(255, 255, 255, 0.13);
  font-size: 3.4rem;
  padding: 2rem 4rem;
}
@media (max-width: 992px) {
  .federal-refund .first-section a {
    font-size: 2.4rem;
    padding: 13px;
  }
}
@media (max-width: 480px) {
  .federal-refund .first-section a {
    font-size: 18px;
  }
}
.federal-refund .first-section a:hover, .federal-refund .first-section a:focus, .federal-refund .first-section a:active {
  background: linear-gradient(135deg, rgba(39, 52, 105, 0.8), #273469);
  box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.6), inset -6px -6px 10px 0 rgba(255, 255, 255, 0.2);
}
.federal-refund .content {
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .federal-refund .content {
    max-width: 100%;
    margin: 0;
  }
}

.blog-page .banner {
  min-height: 100vh;
  background: url("../images/iStock-646224594.jpeg") center 77%/cover no-repeat;
  display: grid;
  align-items: center;
  justify-items: center;
}
@media (max-width: 992px) {
  .blog-page .banner {
    min-height: calc(100vh - 56px);
  }
}
.blog-page .banner h1 {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 480px) {
  .blog-page .sidebar {
    width: 100%;
  }
}
.blog-page .first-section {
  display: grid;
  padding: 3rem;
  margin: 0;
  align-items: start;
  justify-items: start;
  grid-gap: 3rem;
}
@media (min-width: 1200px) {
  .blog-page .first-section {
    grid-template-columns: minmax(0, 70%) minmax(0, 30%);
    padding: 3rem;
  }
}
@media (max-width: 1600px) {
  .blog-page .first-section {
    padding: 15px;
  }
}
@media (max-width: 1200px) {
  .blog-page .first-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .blog-page .first-section {
    grid-template-columns: 1fr;
    padding: 15px;
    grid-gap: 15px;
  }
}
.blog-page .first-section .blog-post {
  display: grid;
  grid-gap: 0;
  align-items: start;
}
@media (min-width: 992px) {
  .blog-page .first-section .blog-post {
    grid-template-columns: minmax(0, 35%) minmax(0, 65%);
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .blog-page .first-section .blog-post {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.blog-page .first-section .blog-post .blog-image {
  border-radius: 12px;
}
@media (max-width: 992px) {
  .blog-page .first-section .blog-post .blog-image {
    width: 100%;
    max-width: 100%;
  }
}
.blog-page .first-section .blog-post h2 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .blog-page .first-section .blog-post h2 {
    margin-bottom: 10px;
  }
}
.blog-page .first-section .blog-post .image-hover-1 {
  align-self: center;
}
.blog-page .first-section .blog-post a {
  transition: all 0.3s ease-in-out;
  max-width: 25rem;
}
.blog-page ul {
  list-style: none !important;
  margin-left: 0 !important;
}
.blog-page ul.posted-info {
  display: inline;
}
@media (min-width: 992px) {
  .blog-page ul.posted-info {
    margin-top: 10px;
  }
}
.blog-page ul.posted-info li {
  display: inline;
  margin-right: 2rem;
}
@media (max-width: 480px) {
  .blog-page ul.posted-info li {
    display: block;
  }
}
.blog-page ul.posted-info li i {
  color: #700100;
  margin-right: 2px;
}
@media (max-width: 480px) {
  .blog-page ul.posted-info li .fa-calendar-day {
    margin-right: 3px;
  }
}
.blog-page ul.pagination {
  text-align: left;
  display: block;
}
.blog-page input {
  transition: all 0.3s ease-in-out;
}
.blog-page .blog-post {
  display: flex;
  flex-direction: row;
  grid-gap: 3rem;
  align-items: center;
}
.blog-page .blog-post h2 {
  font-size: 2.6rem;
}
@media (min-width: 992px) {
  .blog-page .blog-post h2 {
    margin-top: 10px;
  }
}
.blog-page .blog-post-holder {
  display: grid;
  position: relative;
  height: 100%;
  border-right: none;
  border-top: none;
  padding: 15px;
  border: solid 1px #f7f7f7;
  box-shadow: -5px 5px 0px #395536;
}
@media (min-width: 992px) {
  .blog-page .blog-post-holder {
    height: 100%;
    display: grid;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .blog-page .blog-post-holder {
    border: solid 5px #395536;
    box-shadow: none;
    border-radius: 12px;
  }
}
.blog-page hr {
  display: none;
}
@media (max-width: 992px) {
  .blog-page hr {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: solid 3px #700100;
    width: 100%;
  }
}
.blog-page .sidebar .search-button {
  margin-top: 10px;
}
@media (max-width: 992px) {
  .blog-page .sidebar .search-button {
    padding: 9px 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .blog-page .sidebar .search-button {
    width: 100%;
    max-width: 100% !important;
  }
}
.blog-page .sidebar input {
  display: block;
}
@media (max-width: 480px) {
  .blog-page .sidebar input {
    width: 100%;
    max-width: 100%;
  }
}
.blog-page .tags-title {
  margin-bottom: 15px;
}
.blog-page .border-left-two {
  border: solid 5px #518dd1;
  display: block;
  transform: rotate(90deg);
}
@media (max-width: 992px) {
  .blog-page .border-left-two {
    border: none;
  }
}
@media (min-width: 992px) {
  .blog-page .image-hover-1 {
    padding-right: 30px;
  }
}

.tags {
  margin-bottom: 0.5rem;
  padding: 5px 9px;
  max-width: 100% !important;
}
@media (min-width: 480px) {
  .tags {
    margin-right: 5px;
  }
}
@media (max-width: 480px) {
  .tags {
    margin-bottom: 10px;
  }
  .tags:last-child {
    margin-bottom: 0;
  }
}

.blog-posts {
  padding: 15px;
}
@media (min-width: 1200px) {
  .blog-posts {
    max-width: 1200px;
    margin: 107px auto 0;
  }
}
.blog-posts h4 {
  font-size: 18px;
}
.blog-posts .posted-info {
  margin-bottom: 2rem;
  margin-left: 0;
}
@media (max-width: 992px) {
  .blog-posts .posted-info {
    margin-top: 7px;
    margin-bottom: 15px;
  }
}
.blog-posts .posted-info li {
  display: inline;
  margin-right: 2rem;
}
@media (max-width: 480px) {
  .blog-posts .posted-info li {
    display: block;
  }
}
.blog-posts .posted-info li i {
  color: #700100;
  margin-right: 2px;
}
@media (max-width: 480px) {
  .blog-posts .posted-info li .fa-calendar-day {
    margin-right: 3px;
  }
}
.blog-posts .blog-post-holder {
  margin-top: 15px;
  margin-bottom: 2rem;
  padding: 15px;
  border: solid 1px #f7f7f7;
  box-shadow: -5px 5px 1px #395536;
}
@media (min-width: 992px) {
  .blog-posts .blog-post-holder {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .blog-posts .blog-post-holder {
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: none;
    border-radius: 12px;
    border: solid 5px #395536;
  }
}
.blog-posts .blog-post-holder h1 {
  margin-bottom: 10px;
  padding-top: 0;
}
@media (max-width: 992px) {
  .blog-posts .blog-post-holder h1 {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.blog-posts .blog-post-holder h2 {
  margin-bottom: 15px;
  margin-top: 30px;
  font-size: 1.6em;
}
@media (max-width: 992px) {
  .blog-posts .blog-post-holder h2 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.2em;
    line-height: 36px;
  }
}
.blog-posts .blog-post-holder .blog-post-top {
  position: relative;
}
@media (max-width: 992px) {
  .blog-posts .blog-post-holder .blog-post-top {
    padding-left: 0;
  }
}
.blog-posts a {
  font-weight: bold;
}
.blog-posts .main-image {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .blog-posts #side-border {
    max-width: 50px !important;
  }
}
.blog-posts hr {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: solid 5px #395536;
  width: 100%;
}
@media (max-width: 992px) {
  .blog-posts hr {
    border-top: solid 3px #700100;
  }
}
.blog-posts .title-tags {
  margin-bottom: 15px;
}
.blog-posts ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 30px;
}
.blog-posts ul:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .blog-posts ul {
    margin-left: 20px;
    margin-top: 10px;
    font-size: 18px;
    line-height: 27px;
  }
}
.blog-posts ul li {
  margin-bottom: 5px;
}
.blog-posts ul li:last-child {
  margin-bottom: 0;
}
.blog-posts ol {
  list-style-type: decimal;
  margin-left: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 30px;
}
.blog-posts ol:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .blog-posts ol {
    margin-left: 20px;
    margin-top: 10px;
    font-size: 18px;
    line-height: 27px;
  }
}
.blog-posts ol li {
  margin-bottom: 5px;
}
.blog-posts ol li:last-child {
  margin-bottom: 0;
}
.blog-posts h2, .blog-posts h3, .blog-posts h4 {
  margin-top: 15px;
  margin-bottom: 10px;
}
.blog-posts p {
  margin-bottom: 15px;
  line-height: 35px;
}
.blog-posts p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .blog-posts p {
    line-height: 30px;
    font-size: 18px;
  }
}

.search-results .banner, .tag-results .banner {
  background: url("../images/iStock-646224594.jpeg") center 77%/cover no-repeat;
  padding: 15px;
  height: 100%;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
}
@media (max-width: 992px) {
  .search-results .banner, .tag-results .banner {
    min-height: calc(100vh - 56px);
  }
}
.search-results .banner h1, .tag-results .banner h1 {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px 15px;
}
@media (max-width: 992px) {
  .search-results .banner h1, .tag-results .banner h1 {
    font-size: 1.6em;
  }
}
@media (max-width: 480px) {
  .search-results .banner h1, .tag-results .banner h1 {
    font-size: 1.4em;
  }
}
.search-results .first-section, .tag-results .first-section {
  padding: 15px;
}
@media (min-width: 992px) {
  .search-results .first-section, .tag-results .first-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
  }
}
.search-results .first-section h2, .tag-results .first-section h2 {
  font-size: 2.6rem;
}
@media (max-width: 992px) {
  .search-results .first-section h2, .tag-results .first-section h2 {
    font-size: 2rem;
  }
}
.search-results .first-section h3, .tag-results .first-section h3 {
  font-size: 2rem;
}
.search-results hr, .tag-results hr {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px !important;
}
@media (max-width: 992px) {
  .search-results hr:last-child, .tag-results hr:last-child {
    margin-bottom: 0;
  }
}
.search-results small, .tag-results small {
  margin-bottom: 15px;
  font-size: 18px;
}
.search-results .back-to-blog, .tag-results .back-to-blog {
  display: block;
  margin-bottom: 0;
  margin-top: 15px;
}

.back-to-blog, .back-to-blog-btn {
  display: block;
  font-weight: bold;
  background: #395536;
  padding: 11px;
  border-radius: 6px;
  width: 100%;
  max-width: 225px;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .back-to-blog, .back-to-blog-btn {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }
}
.back-to-blog:hover, .back-to-blog-btn:hover {
  color: #fff;
  opacity: 0.9;
}
.back-to-blog i, .back-to-blog-btn i {
  color: #fff;
}

.tag-results .banner {
  background: url("../images/iStock-646224594.jpeg") center 77%/cover no-repeat;
}

.thank-you-page {
  background: url("../images/iStock-519709446.jpeg") center 14%/cover no-repeat;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100%;
  min-height: 100vh;
  padding: 15px;
}
@media (max-width: 992px) {
  .thank-you-page {
    min-height: calc(100vh - 56px);
  }
}
.thank-you-page .thank-you-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 6px;
}
@media (max-width: 992px) {
  .thank-you-page h1 {
    margin-bottom: 10px;
  }
}
.thank-you-page h1, .thank-you-page p {
  padding: 0;
  color: #ffffff;
}
@media (min-width: 992px) {
  .thank-you-page p {
    font-size: 3.4rem;
  }
}
@media (max-width: 992px) {
  .thank-you-page p {
    line-height: 27px;
  }
}

.legal-pages {
  padding: 15px;
  display: grid;
  padding-top: 115px;
}
@media (max-width: 1600px) {
  .legal-pages {
    padding-top: 80px;
  }
}
@media (max-width: 992px) {
  .legal-pages {
    padding-top: 15px;
  }
}
@media (max-width: 480px) {
  .legal-pages {
    display: block;
  }
}
.legal-pages h1 {
  padding-top: 5px;
}
.legal-pages .content {
  margin: 0;
  padding: 15px;
}
@media (max-width: 480px) {
  .legal-pages .content {
    box-shadow: none;
    border: none;
    padding: 0;
  }
}
.legal-pages .text-underline {
  text-decoration: underline;
}
.legal-pages ul {
  list-style-type: disc;
  margin-left: 30px;
}
@media (max-width: 992px) {
  .legal-pages ul {
    margin-left: 20px;
  }
}
.legal-pages ul li {
  margin-bottom: 5px;
}
.legal-pages ul li:last-child {
  margin-bottom: 0;
}
.legal-pages ol {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .legal-pages ol {
    margin-left: 20px;
  }
}
.legal-pages ol li {
  margin-bottom: 5px;
}
.legal-pages ol li:last-child {
  margin-bottom: 0;
}
.legal-pages ol {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .legal-pages ol {
    margin-left: 20px;
  }
}
.legal-pages ol li {
  margin-bottom: 5px;
}
.legal-pages ol li:last-child {
  margin-bottom: 0;
}
.legal-pages h1 {
  margin-bottom: 10px;
  color: #395536;
  text-shadow: none;
}
@media (max-width: 480px) {
  .legal-pages h1 {
    font-size: 1.2em;
    line-height: 38px;
  }
}
.legal-pages h2 {
  color: #395536;
  margin-bottom: 10px;
  margin-top: 20px;
  line-height: 27px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .legal-pages h2 {
    font-size: 20px;
  }
}
.legal-pages p {
  margin-bottom: 15px;
}
.legal-pages p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .legal-pages p {
    font-size: 18px;
  }
}
.legal-pages .fa {
  font-size: 18px;
  margin-right: 3px;
}
.legal-pages a, .legal-pages i {
  color: #395536;
}
.legal-pages a {
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .legal-pages a {
    word-break: break-word;
  }
}
.legal-pages a:hover {
  opacity: 0.9;
}
.legal-pages .content {
  max-width: 100%;
}
.legal-pages .text-left-res {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .legal-pages .text-left-res {
    padding-left: 15px;
  }
}
@media (max-width: 480px) {
  .legal-pages .text-left-res {
    padding-left: 0;
  }
}
.legal-pages .text-bottom-right {
  margin-top: 15px;
  text-align: right;
}
@media (max-width: 480px) {
  .legal-pages .text-bottom-right {
    text-align: left;
    margin-top: 10px;
  }
}

.questionnaire-page {
  min-height: calc(100vh - 425px);
}
.questionnaire-page .first-section {
  grid-gap: 5rem;
}
@media (max-width: 1200px) {
  .questionnaire-page .first-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 992px) {
  .questionnaire-page .first-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .questionnaire-page .section .content {
    max-width: 100% !important;
    width: auto !important;
  }
}
@media (max-width: 992px) {
  .questionnaire-page .section .content {
    width: 100% !important;
  }
}

.questionnaire-button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  grid-gap: 5rem;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .questionnaire-button-row {
    grid-gap: 15px;
  }
}
@media (max-width: 992px) {
  .questionnaire-button-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}

.questionnaire-button {
  border-radius: 15px;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 15rem;
  background: #273469;
  position: relative;
  color: #ffffff;
  padding: 1.5rem;
  margin: 2rem;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .questionnaire-button {
    padding: 30px;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
.questionnaire-button:hover {
  background: #700000;
  color: #ffffff;
}
.questionnaire-button i {
  position: absolute;
  top: 20px;
  right: 5px;
  color: #ffffff;
  opacity: 0.1;
  font-size: 10rem;
}
@media (max-width: 992px) {
  .questionnaire-button i {
    top: 40px;
    right: 5px;
    font-size: 7rem;
  }
}

.questionnaire-start-page {
  background: #273469;
  padding: 15rem 0 4rem;
}
@media (max-width: 1600px) {
  .questionnaire-start-page {
    padding: 12rem 0 4rem;
  }
}
@media (max-width: 992px) {
  .questionnaire-start-page {
    padding: 15px;
  }
}
.questionnaire-start-page .container {
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: 1px 1px 13px 3px rgba(0, 0, 0, 0.4);
}
.questionnaire-start-page p {
  word-break: break-word;
  font-weight: bold;
}
.questionnaire-start-page ul {
  font-weight: bold;
}
.questionnaire-start-page .engagement-link {
  color: #44853d;
  transition: all 0.3s ease-in-out;
}
.questionnaire-start-page .engagement-link:hover {
  opacity: 0.9;
}
.questionnaire-start-page .terms-questionnaire {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .questionnaire-start-page .terms-questionnaire {
    margin-bottom: 10px;
  }
}
.questionnaire-start-page .letter-text {
  margin-top: 30px;
  margin-bottom: 30px;
}

.questionnaire-forms {
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin-bottom: 0;
  margin-top: 30px;
  background: #700100;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  max-width: 900px;
}
@media (max-width: 992px) {
  .questionnaire-forms {
    box-shadow: none;
    margin-top: 20px;
  }
}
.questionnaire-forms .form-control {
  margin-bottom: 15px;
  color: #000;
}
@media (max-width: 992px) {
  .questionnaire-forms .form-control {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .questionnaire-forms label {
    font-size: 18px;
  }
}
.questionnaire-forms button {
  margin-top: 15px;
  font-weight: bold;
  background: #fff;
  color: #700100;
  border: solid 1px #700100;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .questionnaire-forms button {
    margin-top: 5px;
  }
}
.questionnaire-forms button:hover {
  background: #700100;
  color: #fff;
  border: solid 1px #fff;
}

.questionnaire-take-page {
  background: #273469;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  .questionnaire-take-page {
    padding-bottom: 15px;
  }
}
.questionnaire-take-page .container {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .questionnaire-take-page .container {
    margin-top: 15px;
    width: 100%;
    max-width: 100%;
  }
}
.questionnaire-take-page h1 {
  margin-top: 90px;
  background: #395536;
  color: #ffffff;
  width: 100%;
  padding: 5rem 3rem;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .questionnaire-take-page h1 {
    margin-top: 67px;
  }
}
@media (max-width: 992px) {
  .questionnaire-take-page h1 {
    padding: 15px;
    margin-top: 0;
  }
}
.questionnaire-take-page form {
  background: #ffffff;
  padding: 1.5rem;
  font-size: 2rem;
}
.questionnaire-take-page form h2, .questionnaire-take-page form h3 {
  font-size: 3rem;
  background: #700000;
  color: white;
  padding: 15px;
}
@media (max-width: 480px) {
  .questionnaire-take-page form h2, .questionnaire-take-page form h3 {
    font-size: 2.5rem;
  }
}
.questionnaire-take-page form h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  line-height: 35px;
}
@media (max-width: 480px) {
  .questionnaire-take-page form h3 {
    font-size: 18px;
    line-height: 29px;
  }
}
.questionnaire-take-page form p {
  font-weight: bold;
}
.questionnaire-take-page form p label {
  margin-top: 15px;
  margin-right: 10px;
}
.questionnaire-take-page form p label input {
  margin-right: 4px;
}
.questionnaire-take-page form .form-group {
  margin-bottom: 15px;
}
.questionnaire-take-page .button-primary {
  font-weight: bold;
}

/*# sourceMappingURL=project.css.map */
