/*!
Theme Name: Marisa VanSkiver
Theme URI: http://marisavanskiver.com/
Author: Captain Coder
Author URI: http://captcoder.com/
Description: This is a Bootstrap 5 theme custom built for Marisa VanSkiver
Version: 4.0.0
License: GNU General Public License v2 or later
Text Domain: captcoder

captcoder is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
# Imports
--------------------------------------------------------------*/
@import url("inc/normalize.css");
@import url("inc/xl.css");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/*--------------------------------------------------------------
# Table of Contents
--------------------------------------------------------------
# Colors
# HTML
# Body
# Navigation
# Buttons & Links
# Headings
# Overall / Global
# Carousel / Testimonials
# Cards
# Decorative Elements
# Accordion
# Responsive / Mobile
# Home
# Single Portfolio
# Landing Page Template
# Blog
# Bottom Includes / CTA
# Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
:root {
  --blue: #006daa;
  --red: #931621;
  --green: #12664F;
  --dkgray: #DCE1E9;
  --gray: #F2F4F3;
  --dkblue: #00072D;
  --black: #000;
  --white: #fff;
}

/*--------------------------------------------------------------
# HTML
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

div#wpadminbar {
    display: none;
}

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/
body {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--white);
  color: var(--black);
}

@media only screen and (min-width: 1200px) {
  body {
    font-size: 20px;
  }
}

.graybg {
  background-color: var(--gray);
}
.whitebg {
  background-color: var(--white);
}
.aquabg {
  background-color: var(--aqua);
}
.navybg {
  background-color: var(--deepblue);
  color: var(--white);
}
.blue-font {
  color: var(--blue) !important;
  font-size: 3.125rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
nav.navbar {
  background: transparent;
  transition: all 0.2s ease;
}

nav.navbar .navbar-toggler {
  background: var(--white);
  border-radius: 0;
  border-color: var(--dkblue);
}

.navbar-brand img {
  max-height: 36px;
  transition: all 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--dkblue) !important;
  font-weight: normal;
  font-size: 1em;
}
.navbar-dark .navbar-nav a:hover,
.navbar-dark .navbar-nav a:active,
.active > .dropdown-item,
.navbar-dark .active > .nav-link {
  color: var(--green) !important;
}
	.navbar-dark .navbar-nav li.btn.menu-item {
		width: fit-content;
	}
	.navbar-dark .navbar-nav li.btn.menu-item a.nav-link {
		color: var(--white)!important;
		width: fit-content;
		padding: 0;
	}
/* Mobile hamburger animation */
.navbar-toggler-icon {
  background-image: none !important;
  background-color: var(--dkblue);
  height: 3px;
  width: 25px;
  margin: 10px 0;
  position: relative;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.navbar-toggler-icon::before {
  display: block;
  background-color: var(--dkblue);
  height: 3px;
  content: "";
  position: relative;
  top: -7px;
  transition: all 0.15s ease-out;
  transform-origin: center;
}

.navbar-toggler-icon::after {
  display: block;
  background-color: var(--dkblue);
  height: 3px;
  content: "";
  position: relative;
  top: 4px;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-90deg) translateX(7px);
}

/* Navbar shrink on scroll */
nav.fixed-top.navbar-shrink {
  background: rgba(255, 255, 255, 0.6);
  max-height: 70px;
}

nav.fixed-top.navbar-shrink .navbar-brand img {
  max-height: 45px;
}

@media only screen and (min-width: 1200px) {
  nav.navbar {
    padding: 1.25rem 0;
  }
  .navbar-brand img {
    max-height: 70px;
  }
  .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    background: transparent;
  }
	.navbar-dark .navbar-nav li.btn.menu-item {
		margin-left: 1rem;
		line-height: 2;
	}
}
@media only screen and (min-width: 1440px) {
  .navbar-dark .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:focus {
    font-size: 1.1em;
  }
}
/*--------------------------------------------------------------
# Buttons & Links
--------------------------------------------------------------*/
a,
a:visited {
  color: var(--red);
  font-weight: bold;
}

a:hover,
a:active {
  color: var(--green);
  text-decoration: none;
}
.copy-block a,
.copy-block a:visited,
.accordion-body a,
.accordion-body a:visited {
  position: relative;
  border-bottom: 2px solid var(--red);
  z-index: 2;
  transition: all 0.3s ease-in;
}
.copy-block a:before,
.copy-block a:visited:before,
.accordion-body a:before,
.accordion-body a:visited:before {
  content: "";
  background-color: var(--red);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.copy-block a:hover,
.copy-block a:active,
.copy-block a:focus,
.accordion-body a:hover,
.accordion-body a:active,
.accordion-body a:focus {
  color: var(--white);
  z-index: 99;
  background: var(--red);
}
.copy-block a:hover:before,
.copy-block a:active:before,
.copy-block a:focus:before {
  height: 100%;
  z-index: -1;
  width: 101%;
  left: -0.5%;
}

.btn,
.gform_wrapper .gform_footer input[type="submit"],
.btn:visited,
.gform_wrapper .gform_footer input[type="submit"]:visited,
a.more-link,
a.more-link:visited {
  border-radius: 10px 0 10px 0;
  background: var(--red);
  color: var(--white);
  padding: 3px 27px;
  font-size: 1.25rem;
  box-shadow: 0px 10px 20px -10px #00000080;
  font-family: "Anton", sans-serif;
  border: 2px solid var(--red);
  transition: all 0.2s ease-in;
}

.btn:hover,
.btn:active,
#btn-2:hover,
#btn-2:active,
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer input[type="submit"]:active,
a.more-link:hover,
a.more-link:active {
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  box-shadow: none;
}

a.more-link {
  display: block;
  width: 35%;
  text-align: center;
  margin-top: 1em;
}

#btn-2,
.btn.alt {
  background: var(--white);
  color: var(--red);
}

.btn.alt:hover,
.btn.alt:focus,
.btn.alt:active {
  border-color: var(--red);
}

/*--------------------------------------------------------------
# Headings
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.nav-link {
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 1.667em;
}
h2 {
  font-size: 1.444em;
}
h3 {
  font-size: 1.222em;
}
h4 {
  font-size: 1em;
}

@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 2.05em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.3em;
  }
}

/*--------------------------------------------------------------
# Overall / Global Styles
--------------------------------------------------------------*/
header {
  position: relative;
  border-top: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
}
.uppercase {
  text-transform: uppercase;
}

.two-column h2 {
  margin-top: 1em;
}
.two-column .align-items-md-center h2 {
  margin-top: 0;
}
.botgborder {
  border-bottom: 2px solid var(--gray);
}
.topgborder {
  border-top: 2px solid var(--gray);
}
.desktop-column-reverse .row {
  flex-direction: row-reverse;
}

.desktop-column-reverse .col-md-6 > .row {
  flex-direction: row-reverse;
}

.gform_wrapper.gravity-theme .gfield_required {
  color: var(--red) !important;
}

.align-top .row {
  align-items: flex-start !important;
}

.w-100 img {
  width: 100%;
}

.card {border: none;}

.topics i {
    font-size: 3.5em;
    margin-bottom: 1rem;
}

input:not(.gform_button),
select,
textarea {
  border: 1px solid var(--black);
  padding: 0.5rem !important;
}

/*--------------------------------------------------------------
# Feature Block
--------------------------------------------------------------*/
.feature-block {margin-top: -15rem;margin-bottom: 5rem;}
	.feature-block .brdr {border: 2px solid var(--gray);background: var(--white);}

@media only screen and (min-width:1600px) {
	.feature-content.p-md-5 {padding-left: 6rem!important;padding-right: 7rem!important;}
}

/*--------------------------------------------------------------
# Carousel / Testimonials
--------------------------------------------------------------*/
.testimonials {
  border-top: 2px solid var(--gray);
}

.carousel,
.carousel-item {
  height: 360px;
}

blockquote {
  color: var(--black);
  text-shadow: none;
  text-align: left;
  margin: 0 auto;
  border: 2px solid var(--green);
  padding: 5rem 2rem 3rem;
  margin-top: 3rem;
  position: relative;
}

.carousel-caption blockquote {
  border-left: 0;
}

blockquote cite {
  display: block;
  text-align: right;
  font-style: italic;
}

.carousel-inner {
  overflow: visible;
}

blockquote:before {
  content: open-quote;
  font-family: "Anton";
  color: var(--green);
  font-size: 5em;
  line-height: 0;
  position: absolute;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
#cards .card {
  border-radius: 0;
  border: none;
}

.card-footer {
  background: transparent;
  border-top: 0;
  padding-bottom: 1rem;
  font-size: 14px;
}

.cards-section .col-md-4:first-child .card-img {
  max-width: 20px;
}

.card-img {
  max-width: 30px;
  height: auto;
}

.disclaimer {
  font-size: 0.8em;
}

@media only screen and (min-width:768px) {
	.w-500 {
	  width: 500px;
	  margin: 0 auto;
	}
}
@media only screen and (min-width:992px) {
	.w-800 {
	  width: 800px;
	  margin: 0 auto;
	}
}

/*--------------------------------------------------------------
# Decorative Background Elements
--------------------------------------------------------------*/
.whitedots {
  position: relative;
  overflow: hidden;
}

.whitedots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("inc/top-right-dots.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
}

.whitedots::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("inc/bottom-left-dots.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
}

.whitedots .container {
  position: relative;
  z-index: 2;
}
#cta, #book {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#cta::after, #book::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80vh;
  background-image: url(inc/bottom-dots.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 1;
}
#cta .container, #book .container {
  z-index: 5;
  position: relative;
}
/*--------------------------------------------------------------
# List-Block
--------------------------------------------------------------*/
.list-block ul {
  list-style: none;
  padding-left: 0;
}

.list-block ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}

.list-block ul li::before {
  content: "\e2f2";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--white);
}
/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion-header .accordion-button:not(.collapsed),
.accordion-button {
  background-color: var(--teal);
  color: var(--white);
}

.accordion-body p {
  font-size: 18px;
}

.accordion-button {
  font-size: 1em;
}



.accordion-button::after {
  display: none;
}

/*--------------------------------------------------------------
# Responsive / Mobile
--------------------------------------------------------------*/
@media only screen and (max-width: 992px) {
  .whitebg {
    margin: 0 !important;
  }

  .textOver {
    position: static;
    transform: unset;
  }

  #bglogo {
    margin: 2rem !important;
  }
}
@media only screen and (min-width: 992px) {
  .amplify .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .w-500,
  .w-800 {
    width: 100%;
  }

  .column-reverse .row {
    flex-direction: column-reverse;
  }

  .column-reverse .col-md-6 > .row {
    flex-direction: row-reverse;
  }
  .desktop-column-reverse .row {
    flex-direction: column-reverse;
  }
  .whitedots::before,
  .whitedots::after {
    width: 200px;
    height: 200px;
  }
  .dropdown-menu {
    border-left: none;
    border-right: none;
    border-bottom: 3px solid;
    border-top: none;
  }
  .dropdown-item {
    font-size: inherit !important;
  }
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.card-icon i {
  color: var(--blue);
  position: absolute;
  top: -5%;
  left: -3%;
  font-size: 3rem;
  font-weight: 100;
}

.card-image img {
  position: absolute;
  top: -5%;
  left: -3%;
}

#bglogo {
  background-size: contain !important;
  margin: 3rem 0 !important;
}

.amplify {
  max-width: 1276px;
  margin: 0 auto;
  margin-top: -15rem;
  background: var(--white);
  padding: 0 !important;
  border: 2px solid var(--gray);
  margin-bottom: 5rem;
}

.amplify .col-md-4,
.amplify .img-block {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#cards {
  padding-bottom: 20rem !important;
}

/*--------------------------------------------------------------
# Single Portfolio
--------------------------------------------------------------*/
#stats {
  background-image: url(inc/logo-mark-white.png);
  background-repeat: no-repeat;
  background-position: center center;
}
p.stat {
  font: normal 2.778em / 1 "Anton";
}
p.stat-head {
  font: bold 1.11em / 1 "Roboto";
  margin-bottom: 0.25rem;
}

/*--------------------------------------------------------------
# Resources
--------------------------------------------------------------*/
#guides .img-block {
  text-align: center;
}
#guides img {
  max-width: 70%;
  box-shadow: 0px 10px 20px -10px #00000080;
}

/*--------------------------------------------------------------
# Landing Page Template
--------------------------------------------------------------*/
.page-template-landing-page header .logo img {
  max-height: 30px;
}
.page-template-landing-page header#primary {
  margin-bottom: 25%;
}
.page-template-landing-page header#primary img {
  margin-bottom: -25%;
  box-shadow: 0px 10px 20px -10px #00000080;
}

@media only screen and (min-width: 768px) {
  .page-template-landing-page header#primary,
  .page-template-landing-page header#primary img {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .page-template-landing-page header#primary {
    margin-bottom: 2%;
  }
  .page-template-landing-page header#primary img {
    margin-bottom: -32%;
  }
}
@media only screen and (min-width: 1400px) {
  .page-template-landing-page header#primary {
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 1600px) {
  .page-template-landing-page header#primary {
    margin-bottom: 8%;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
input#s {
  width: 85%;
}
input#searchsubmit {
  font-family: "FontAwesome";
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 9px 1rem !important;
}
input#searchsubmit:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
}
select#cat_search {
  width: 100%;
}
.card.article-wrap,
article .card,
.cases-section .card {
  border: 2px solid var(--teal);
  border-radius: unset;
}
section#breadcrumbs {
  border-top: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
}

.article-block h2 {
  margin-top: 3rem;
}

.article-block h3 {
  margin-top: 1.5rem;
}

:root {
  --scroll: 0;
  --scrollbar-height: 10px;
}
.single-post main {
  position: relative;
}
:root {
  --progress-width: 100%;
  --progress-height: 8px;
  --progress-bar-color: var(--red);
  --progress-bg: none;
  --progress-border-radius: 0;
}

progress {
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: -webkit-sticky;
  position: fixed;
  top: 0;
}

/*Target this for applying styles*/
progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Get rid of default border in Firefox. */
  border: none;

  width: var(--progress-width);
  height: var(--progress-height);

  /* Firefox: any style applied here applies to the container. */
  background-color: var(--progress-bg);
  border-radius: var(--progress-border-radius);

  /* For IE10 */
  color: var(--progress-bar-color);
}

/* For Firefox: progress bar */
progress[value]::-moz-progress-bar {
  background-color: var(--progress-bar-color);
  border-radius: var(--progress-border-radius);
}

/* WebKit/Blink browsers:
    -webkit-progress-bar is to style the container */
progress[value]::-webkit-progress-bar {
  background-color: var(--progress-bg);
  border-radius: var(--progress-border-radius);
}

/*-webkit-progress-value is to style the progress bar.*/
progress[value]::-webkit-progress-value {
  background-color: var(--progress-bar-color);
  border-radius: var(--progress-border-radius);
}

@media only screen and (min-width: 768px) {
  input#s {
    width: 83%;
  }
}
@media only screen and (min-width: 1200px) {
  .freebie {
    position: sticky;
    top: 1rem;
  }
}
/*--------------------------------------------------------------
# SItemap
--------------------------------------------------------------*/
.page-template-sitemap a,
.page-template-sitemap a:visited,
.error404 a,
.error404 a:visited {
  font-weight: normal;
}
/*--------------------------------------------------------------
# Bottom Includes / CTA
--------------------------------------------------------------*/
#cta, #book {
  margin: 0;
  border-top: 2px solid var(--gray);
}

.copy-block .social a {
  border-bottom: none;
}
.social a:hover,
.social a:focus,
.social a:active,
.social a:visited {
  background: transparent !important;
  position: static;
  border-bottom: unset;
  transition: none;
}
.social a:before,
.social a:visited:before {
  content: none !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer.footer {
  background: var(--dkblue);
  color: var(--white);
  padding-top: 1em;
}
footer.footer a {
  color: var(--white);
  font-weight: normal;
}
footer.footer a:hover,
footer.footer a:focus {
  color: var(--red);
}
.foot-nav ul {
  list-style: none;
  -webkit-padding-start: 0;
}
.location {
  margin-top: 0;
}
.social i {
  margin: 0.75rem;
  font-size: 1.444em;
}
ul#menu-legal {
    list-style: none;
    display: inline-flex;
    grid-gap: 1rem;
    padding-left: 1rem;
}
	#menu-legal>li {
		position: relative;
	}
	#menu-legal>li:before {
		content: "|";
		position: absolute;
		left: -0.65rem;
	}
	.main-foot .nav-link, #menu-legal .nav-link {
	  padding: 0 0 0.75rem;
	  font: 500 normal 1em "Roboto";
	  line-height: 1.5;
	}
#siteinfo {
  font-size: 0.8em;
}

@media only screen and (min-width: 1200px) {
  .social i {
    margin: 0.25rem;
  }
  .location {
    margin-top: 5em;
  }
}
@media only screen and (min-width: 1400px) {
  footer.footer {
    padding-top: 2rem;
  }
  footer.footer a.btn {
    padding: 5px 20px;
  }
}
