/*
	Theme Name: RecruitAERO Theme
	Theme URI: https://sledgehammer.agency
	Description: Sledgehammer Base Theme
	Version: 1.0.0
	Author: Sledgehammer Creative

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/* ----------FONTS---------- */
/* barlow-regular - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-v12-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-v12-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-italic - latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-v12-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-v12-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-700 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-v12-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-v12-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-700italic - latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-v12-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-v12-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-condensed-300 - latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-condensed-v12-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-condensed-v12-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-condensed-500 - latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-condensed-v12-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-condensed-v12-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-condensed-600 - latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(''),
       url('/wp-content/themes/base/fonts/barlow-condensed-v12-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/wp-content/themes/base/fonts/barlow-condensed-v12-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* ----------CUSTOM PROPERTIES---------- */
:root {
  --white: #ffffff;
  --linen: #f8f7f6;
  --tan: #cfccc5;
  --gray: #5c5957;
  --coal: #161616;
  --blue: #0f5f73;
  --red: #9f1c21;
}

/* ----------BASE STYLES---------- */
html { height: 100%; scroll-behavior: smooth;}
body {
	background-color: #fff;
	min-height: 100%;
	margin: 0;
	padding: 0;
  border: 15px solid #fff;
	font-family: 'Barlow', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--coal);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
p, ul, ol,
.btn, a.btn, button, .button {
  font-size: 1.125rem;
	margin-bottom: 15px;
}
a, a:link, a:visited {
	color: var(--red);
	transition: all 0.3s ease-in-out !important;
}
a:hover, a:active, a:focus {
	color: var(--blue);
  text-decoration: none;
}
main a, main a:hover {
  font-weight: 700;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
	color: var(--blue);
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	margin: 0 0 25px 0;
  line-height: 1;
}
h1 {font-size:3.75rem;}
h2 {font-size:3.25rem;}
h3 {font-size:1.5rem;}
h4 {font-size:1.375rem;}
h5 {font-size:1.25rem;}
h6 {font-size:1rem;}
hr {border-top: 1px solid var(--tan);}
@media (min-width : 768px) {
	h1 {font-size:5rem;}
	h2 {font-size:3.75rem;}
	h3 {font-size:2rem;}
	h4 {font-size:1.5rem;}
	h5 {font-size:1.375rem;}
	h6 {font-size:1.25rem;}
	p, ul, ol {font-size: 1.25rem;}
}
@media (min-width : 768px) {
  h1, h2, h3 {
    line-height: 1.1;
  }
}
/* ---Buttons--- */
a,button,input[type="reset"],input[type="submit"],input[type="button"],a img,.btn,.hover-overlay,
.hover-container .btn, .button {
	transition: all 0.5s ease;
}
.btn, button {
	border-radius: 30px;
	margin: 7px 0;
	padding: 7px 14px 10px;
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
	color: var(--red);
	line-height: 1;
	border: 3px solid var(--red);
	background-color: transparent;
}
.btn:hover, .btn:active, .btn:focus,
button:hover, button:active, button:focus {
	background-color: var(--red);
	color: #fff;
  box-shadow: none;
}
.btn.btn-rev, button.btn.btn-rev {
  color: #fff;
	border: 3px solid var(--red);
	background-color: var(--red);
}
.btn.btn-rev:hover, .btn.btn-rev:active, .btn.btn-rev:focus,
button.btn.btn-rev:hover, button.btn.btn-rev:active, button.btn.btn-rev:focus {
	background-color: transparent;
	color: var(--red);
}
.triangle {
	position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -60px;
  width: 120px;
  height: 0;
  border-style: solid;
  border-width: 50px 60px 0 60px;
  border-color: #ffffff transparent transparent transparent;
	z-index: 99;
}
.triangle.tan {
  border-color: var(--tan) transparent transparent transparent;
}
@media all and (-ms-high-contrast:none) {
	.divider { /*remove unsupported svg in IE11*/
		display: none;
	}
}
/* ---Featured/Placeholders--- */
.ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #fff;
  background-size: cover;
  overflow: hidden;
}
.ratio .featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .4s ease-in-out;
}
.ratio .featured:hover {
  transform: scale(1.05);
}
.ratio .placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tan);
}
.ratio .placeholder img {
  width: 150px;
  height: auto;
  transition: all .4s ease-in-out;
}
.ratio .placeholder img:hover {
  transform: scale(1.05);
}
@media (min-width : 576px) {
  .ratio .placeholder img {
    width: 200px;
  }
}
/* ---Misc Sitewide--- */
.overlay {
  position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(15,95,115,.8);
	z-index: 0;
	top: 0;
	left: 0;
}
.red {
  font-weight: 600;
  color: var(--red);
}
#int main ul {
  padding-left: 20px;
}
#int main ul li {
  list-style-type: none;
  background-image: url(/wp-content/themes/base/img/icons/icon-list.svg);
  background-repeat: no-repeat;
  background-size: 5px 8px;
  background-position: left 20px;
  padding: 10px 5px 0 10px;
  line-height: 1.4;
}
.corners {
  border-radius: 10px;
}
@media (min-width : 768px) {
  #int main ul li {
    background-position: left 22px;
  }
}
@media (min-width : 1400px) {
  .container {
    max-width: 1340px;
  }
}

/* ----------HEADER---------- */
header {
  position: relative;
  background-color: #fff;
  z-index: 99999;
}
header .shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  box-shadow: 0 0 5px 5px rgba(22,22,22,.05) !important;
  clip-path: inset(0 0 -10px 0);
  z-index: -9;
}
.info-bar {
  background-color: var(--blue);
  padding: .5rem 0;
  color: #fff;
  line-height: 1;
}
.info-bar a, .info-bar a:link, .info-bar a:visited {
	color: #fff;
  text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.info-bar a:hover, .info-bar a:active, .info-bar a:focus {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}
header .navbar .navbar-brand img {
	width: 175px;
	height: 48px;
}
header .phone-wrap {
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
  font-size: 1.35rem;
}
.icon-phone {
  position: relative;
  top: -2px;
	width: 20px;
	height: 20px;
}
header .icon-social {
  display: inline-block;
  margin: 0 3px;
  width: 24px;
  height: 24px;
}
.int-header {
	position: relative;
  margin-top: 98px;
  background-color: #0F5F73;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%2312748C' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%231689A6'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}
.int-header h1 {
  position: relative;
	margin: 0;
	padding: 80px 0;
	text-align: center;
  color: #fff;
  z-index: 99;
}
@media (min-width : 768px) {
  .info-bar {
    padding: .5rem;
  }
  header .phone-wrap {
    font-size: 1.625rem;
  }
  .icon-phone {
  	width: 24px;
  	height: 24px;
  }
  header .icon-social {
    width: 28px;
    height: 28px;
  }
  .navbar-brand {
  	padding-top: .75rem;
    padding-bottom: .75rem;
  }
  header .navbar .navbar-brand img {
  	width: 250px;
  	height: 70px;
  }
  header.shrink .navbar .navbar-brand img {
    width: 175px;
    height: 48px;
  }
  .int-header {
    margin-top: 138px;
  }
  .int-header h1 {
    font-size: 4rem;
  }
}
@media (min-width : 992px) {
  .int-header h1 {
  	padding: 100px 0;
    font-size: 5rem;
  }
}
@media (min-width : 1200px) {
  header .navbar .navbar-brand img {
  	width: 332px;
  	height: 92px;
  }
  .int-header {
    margin-top: 160px;
  }
  .int-header h1 {
  	padding: 140px 0;
  }
}

/* ----------NAVIGATION---------- */
.navbar {
  padding: .5rem 0;
}
ul#menu-main-navigation {
  background-color: var(--tan);
  margin-top: 10px;
  text-align: center;
}
.navbar-light .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:link,
.navbar-light .navbar-nav .nav-link:visited {
	color: var(--coal);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active {
	color: var(--blue);
}
.dropdown-menu {
	background: var(--linen);
	border-radius: 0;
	border: none;
  text-align: center;
}
.dropdown-item {
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.dropdown-item,
.dropdown-item:link,
.dropdown-item:visited {
	color: var(--coal);
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
	color: var(--blue);
	background-color: transparent;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
header .navbar-light .navbar-toggler {
	position: absolute;
	top: 0;
	right: -7px;
	background-color: transparent;
	border: none;
	padding: 7px;
	z-index: 99;
}
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3e%3cpath d='M0 8.214V4.133C0 3.231.72 2.5 1.607 2.5h41.786c.888 0 1.607.731 1.607 1.633v4.082c0 .902-.72 1.633-1.607 1.633H1.607C.719 9.848 0 9.117 0 8.215Zm0 16.327v-4.082c0-.902.72-1.633 1.607-1.633h41.786c.888 0 1.607.731 1.607 1.633v4.082c0 .902-.72 1.633-1.607 1.633H1.607C.719 26.174 0 25.443 0 24.541Zm0 16.327v-4.082c0-.902.72-1.633 1.607-1.633h41.786c.888 0 1.607.731 1.607 1.633v4.082c0 .902-.72 1.633-1.607 1.633H1.607C.719 42.501 0 41.77 0 40.868Z' fill='%230f5f73'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 48px;
	height: 48px;
}
header .btn.btn-rev {
  position: absolute;
  top: 0;
  right: 60px;
  padding: 7px;
  background-color: transparent;
  border: none;
  border-radius: .25rem;
  font-size: 1.625rem;
}
header .btn.btn-rev svg {
  position: relative;
	width: 48px;
	height: 48px;
}
header .btn.btn-rev path {
  fill: var(--blue);
}
@media (min-width : 768px) {
  .navbar {
    padding: .5rem;
  }
  header .navbar-light .navbar-toggler, header .btn.btn-rev {
    top: 18px;
  }
  header.shrink .navbar-light .navbar-toggler, header.shrink .btn.btn-rev {
    top: 6px;
  }
}
@media (min-width : 992px) {
  ul#menu-main-navigation {
    background-color: transparent;
    margin-top: 0;
    margin-right: 150px;
  }
  .navbar-light .navbar-nav .nav-link {
    padding-right: 1.125rem;
    padding-left: 1.125rem;
    font-size: 1.5rem;
  }
  .dropdown-menu {
  	border-top: 5px solid var(--blue);
    border-bottom: 5px solid var(--blue);
    text-align: left;
  }
  .dropdown-item {
    font-size: 1.25rem;
  }
  header .btn.btn-rev {
    top: 24px;
    right: 0;
    padding: 7px 14px 9px;
    background-color: var(--red);
    border: 3px solid var(--red);
    border-radius: 30px;
  }
  header.shrink .btn.btn-rev {
    top: 12px;
  }
  header .btn.btn-rev svg {
    top: -2px;
  	width: 20px;
  	height: 20px;
  }
  header .btn.btn-rev path {
    fill: #fff;
  }
  header .btn.btn-rev:hover path, .btn.btn-rev:active path, .btn.btn-rev:focus path {
    fill: var(--red);
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width : 1200px) {
  header .btn.btn-rev {
    top: 34px;
  }
}

/* ----------HERO---------- */
.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 440px;
  overflow: hidden;
  margin-top: 98px;
}
.hero-wrap .wrapper {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  width: 90%;
  background-color: rgba(248, 247, 246, .8);
  text-align: center;
  z-index: 999;
}
.hero-wrap h1 {
  margin-bottom: 0;
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 300;
  font-size: 3rem;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-wrap .btn {
  position: relative;
  display: inline-block;
  margin: 20px auto 0;
  font-size: 1.5rem;
}
.hero-wrap div.red {
  display: inline-block;
}
.shapes-left, .shapes-right {
  display: none;
}
@media (min-width : 768px) {
  .hero-wrap {
    align-items: center;
    justify-content: center;
    background-position: center right;
    background-size: contain;
    height: 400px;
    margin-top: 138px;
  }
  .hero-wrap .wrapper {
    background-color: transparent;
    margin: 0;
    padding: 0 20px 20px 20px;
    width: 50%;
    max-width: 380px;
    text-align: left;
  }
  .hero-wrap h1 {
    /*font-size: 2.125rem;*/
    font-size: 4rem;
    line-height: 1;
  }
  .hero-wrap .btn {
    margin: 20px 0 0;
  }
  /* ---Shapes--- */
  .shapes-left, .shapes-right {
    display: block;
    position: absolute;
    bottom: 0;
    height: 100%;
  }
  .shapes-left {
    left: -370px;
    width: 961px;
    z-index: 9;
  }
  .shapes-right {
    right: -70px;
    width: 188px;
    z-index: 9;
  }
}
@media (min-width : 992px) {
  .hero-wrap .wrapper {
    max-width: 510px;
  }
  .shapes-left {
    left: -220px;
  }
}
@media (min-width : 1200px) {
  .hero-wrap {
    height: 600px;
    margin-top: 160px;
  }
  .hero-wrap .wrapper {
    max-width: 520px;
  }
  .hero-wrap h1 {
    font-size: 6rem;
  }
  .shapes-left {
    left: -300px;
  }
  .shapes-right {
    right: -40px;
  }
}
@media (min-width : 1400px) {
  .hero-wrap .wrapper {
    width: 52%;
    max-width: 700px;
  }
  .shapes-left {
    left: -90px;
  }
  .shapes-right {
    right: 0;
  }
}

/* ----------CONTENT---------- */
main {
	position: relative;
	padding: 40px 0;
	background: #fff;
}
#home main .container {
  max-width: 1000px;
}
#home main h2::after {
  display: block;
  margin: 30px auto;
  content: '';
  width: 100px;
  height: 5px;
  background-color: var(--red);
}
#home main p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width : 992px) {
  #home main {
  	padding: 120px 0;
  }
  main {
  	padding: 80px 0;
  }
}

/* ----------FUNNELS---------- */
.funnel-wrap {
	position: relative;
	background-color: var(--tan);
	padding: 110px 0 60px;
  text-align: center;
}
.funnel-wrap h2 {
  font-size: 2rem;
  max-width: 700px;
}
.funnel-wrap h3 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.funnel-wrap h2::after {
  display: block;
  margin: 30px auto 20px;
  content: '';
  width: 100px;
  height: 5px;
  background-color: var(--red);
}
.funnel {
  background-color: #fff;
  border-radius: 10px 10px 5px 5px;
}
.funnel ul {
  text-align: left;
}
.funnel .pic {
	display: block;
	width: 100%;
  border-radius: 10px 10px 0 0;
}
.funnel .wrapper {
  position: relative;
  padding: 25px 15px;
}
.funnel .icon {
  position: relative;
	display: block;
  margin-top: -70px;
	width: 100px;
	height: 100px;
}
.funnel .btn {
  margin: 30px 0 0;
  padding: 13px 14px 15px;
}
@media (min-width : 768px) {
  .funnel-wrap h2 {
    font-size: 3.25rem;
  }
  .funnel-wrap h2::after {
    margin: 30px auto 50px;
  }
  .funnel .icon {
    margin-top: -90px;
  	width: 125px;
  	height: 125px;
  }
}
@media (min-width : 992px) {
  .funnel-wrap {
    padding: 160px 0 120px;
  }
  .funnel-wrap h3 {
    font-size: 1.875rem;
  }
}
@media (min-width : 1200px) {
  .funnel .wrapper {
    padding: 35px;
  }
}

/* ----------MANTRA---------- */
.mantra-wrap {
  padding: 60px 0 200px;
  background-color: #fff;
  background-image: url(/wp-content/themes/base/img/dots.svg);
  background-size: 212px 490px;
  background-position: left bottom 5%;
  background-repeat: no-repeat;
}
.mantra-wrap .wrapper {
  position: relative;
  max-width: 500px;
}
.mantra-wrap .box {
  padding: 40px 20px 20px 20px;
  border: 1px solid var(--gray);
}
.mantra-wrap .icon {
  position: absolute;
  top: -25px;
  left: 10%;
  width: 50px;
  height: 50px;
}
.mantra-wrap h4 {
  font-size: 2.5rem;
}
.mantra-wrap h5 {
  font-size: 2rem;
}
.mantra-wrap .box ul {
  padding-left: 20px;
}
@media (min-width : 768px) {
  .mantra-wrap {
    background-size: 216px 500px;
    background-position: left bottom 15%;
  }
  .mantra-wrap h4 {
    font-size: 3.25rem;
  }
  .mantra-wrap h5 {
    font-size: 2.5rem;
  }
  .mantra-wrap .box.one {
    border-right: none;
  }
  .mantra-wrap .box.three {
    border-top: none;
  }
}
@media (min-width : 992px) {
  .mantra-wrap {
    padding: 120px 0;
    background-position: left bottom 25%;
  }
  .mantra-wrap .box {
    padding: 70px 50px 50px 50px;
  }
  .mantra-wrap .box.one {
    border-right: 1px solid var(--gray);
    border-bottom: none;
  }
  .mantra-wrap .box.two {
    border-right: none;
  }
  .mantra-wrap .box.three {
    border-top: 1px solid var(--gray);
  }
}
@media (min-width : 1200px) {
  .mantra-wrap {
    background-size: 260px 600px;
  }
}

/* ----------PAGE BUILDER---------- */
.builder .row:first-of-type {
  padding-top: 0 !important;
}
.builder .block-icon {
  display: block;
  max-width: 250px;
  height: auto;
}
.builder .row:last-of-type {
  padding-bottom: 0 !important;
}

/* ----------FAQ---------- */
.faq-wrap {
  position: relative;
  padding: 110px 0 60px;
	background-color: var(--tan);
}
.faq-wrap h3 {
  font-size: 2rem;
}
.faq-wrap h3::after {
  display: block;
  margin: 30px auto 20px;
  content: '';
  width: 100px;
  height: 5px;
  background-color: var(--red);
}
.faq-wrap .container {
  max-width: 800px;
}
.faq-wrap .card {
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
}
.faq-wrap .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: none;
  border-radius: 0;
  line-height: 1;
}
.faq-wrap .card-header button {
  width: 100%;
  border-radius: 0;
  margin: 0;
  padding: 14px 40px 14px 14px;
  color: var(--red);
  line-height: 1;
  text-align: left;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 5px solid var(--red);
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12Zm7.875-1.125c-.623 0-1.125.502-1.125 1.125s.502 1.125 1.125 1.125h8.25c.623 0 1.125-.502 1.125-1.125s-.502-1.125-1.125-1.125h-8.25Z' fill='%239f1c21'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right 15px;
  background-size: 20px;
}
.faq-wrap .card-header button.collapsed {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12Zm12 5.25c.623 0 1.125-.502 1.125-1.125v-3h3c.623 0 1.125-.502 1.125-1.125s-.502-1.125-1.125-1.125h-3v-3c0-.623-.502-1.125-1.125-1.125s-1.125.502-1.125 1.125v3h-3c-.623 0-1.125.502-1.125 1.125s.502 1.125 1.125 1.125h3v3c0 .623.502 1.125 1.125 1.125Z' fill='%239f1c21'/%3e%3c/svg%3e");
}
.faq-wrap .card-header h4 {
  display: inline;
  margin-bottom: 0;
  font-size: 1.25rem;
  color: var(--blue);
  text-transform: none;
}
.faq-wrap .card-body {
  background: var(--linen);
  border-left: 5px solid var(--red);
}
.faq-wrap .card-body p {
  font-size: 1rem;
}
.faq-wrap .card-body p:last-of-type {
  margin-bottom: 0;
}
@media (min-width : 768px) {
  .faq-wrap h3 {
    font-size: 3.25rem;
  }
  .faq-wrap h3::after {
    margin: 30px auto 50px;
  }
}
@media (min-width : 992px) {
  .faq-wrap {
    padding: 160px 0 120px;
  }
}

/* ----------CONTACT---------- */
main.contact .container {
  max-width: 1000px
}
main.contact h2::after {
  display: block;
  margin: 30px auto;
  content: '';
  width: 100px;
  height: 5px;
  background-color: var(--red);
}
.form-wrap {
  position: relative;
  padding: 110px 0 60px;
	background-color: var(--tan);
}
.form-wrap h3 {
  font-size: 2rem;
  text-align: center;
}
.form-wrap h3::after {
  display: block;
  margin: 30px auto 20px;
  content: '';
  width: 100px;
  height: 5px;
  background-color: var(--red);
}
.form-wrap .container {
  max-width: 800px;
}
.form-wrap .sendit {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg class='icon-plane' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' focusable='false'%3e%3cpath d='m19.986 1.095-2.813 16.872a.94.94 0 0 1-1.289.711l-4.868-2.039-2.481 3.019c-.547.668-1.66.305-1.66-.617v-3.144l9.411-11.463c.184-.223-.121-.516-.336-.324L4.727 13.998.574 12.257a.938.938 0 0 1-.086-1.687L18.595.126c.676-.39 1.524.18 1.391.969Z' fill='%23fff'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 20px;
  padding-right: 40px !important;
}
.form-wrap .sendit:hover, .form-wrap .sendit:active, .form-wrap .sendit:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg class='icon-plane' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' focusable='true'%3e%3cpath d='m19.986 1.095-2.813 16.872a.94.94 0 0 1-1.289.711l-4.868-2.039-2.481 3.019c-.547.668-1.66.305-1.66-.617v-3.144l9.411-11.463c.184-.223-.121-.516-.336-.324L4.727 13.998.574 12.257a.938.938 0 0 1-.086-1.687L18.595.126c.676-.39 1.524.18 1.391.969Z' fill='%239f1c21'/%3e%3c/svg%3e");
  transition: all 0.3s ease-in-out;
}
@media (min-width : 768px) {
  .form-wrap h3 {
    font-size: 3.25rem;
  }
  .form-wrap h3::after {
    margin: 30px auto 50px;
  }
}
@media (min-width : 992px) {
  .form-wrap {
    padding: 160px 0 120px;
  }
}

/* ----------404---------- */
.fourohfour {
  background-image: url(/wp-content/themes/base/img/404.svg);
  background-size: 320px 172px;
  background-repeat: no-repeat;
  background-position: bottom right;
  min-height: 420px;
}
@media (min-width : 576px) {
  .fourohfour {
    background-size: 500px 268px;
    min-height: 450px;
  }
}
@media (min-width : 768px) {
  .fourohfour {
    background-size: 710px 380px;
    min-height: 600px;
  }
}
@media (min-width : 1200px) {
  .fourohfour {
    background-size: 820px 440px;
    min-height: 650px;
  }
}

/* ----------SIDEBARS---------- */
.archive aside {
  background-color: var(--coal);
  margin-top: 30px;
  padding: 15px;
  color: var(--linen);
}
.sidebar-widget {
	margin-bottom: 30px;
}
.sidebar-widget:last-of-type {
	margin-bottom: 0;
}
.sidebar-widget .title {
  position: relative;
  display: block;
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  color: var(--linen);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray);
}
.sidebar-widget .title::before, .sidebar-widget .title::after {
  display: inline-block;
  content: '';
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
}
.sidebar-widget .title::before {
  background-image: url(/wp-content/themes/base/img/icons/icon-title-before.svg);
  background-repeat: no-repeat;
  margin-right: 7px;
}
.sidebar-widget .title::after {
  background-image: url(/wp-content/themes/base/img/icons/icon-title-after.svg);
  margin-left: 7px;
}
.sidebar-widget ul {
	font-size: 1rem;
	margin: 0;
	padding-left: 0 !important;
}
.sidebar-widget li {
	background-image: none !important;
	padding: 3px 0;
	line-height: 1.2;
}
.sidebar-widget a, .sidebar-widget a:link, .sidebar-widget a:visited {
	color: #fff;
	text-decoration: none;
}
.sidebar-widget a:hover, .sidebar-widget a:active, .sidebar-widget a:focus {
	color: rgba(255,255,255,.6);
}
.sidebar-widget time, .sidebar-widget .cat-item {
	display: block;
	font-size: .875rem;
  color: var(--tan);
}
.sidebar-widget .cat-item a {
	font-size: 1rem;
}
.sidebar-widget p.wp-block-tag-cloud {
  font-size: 1rem;
}
.sidebar-widget .tag-cloud-link {
	font-size: 1rem !important;
  margin-right: 10px;
}
.sidebar-widget .tag-cloud-link:last-of-type {
  margin-right: 0;
}
.sidebar-widget .tag-cloud-link::before {
  display: inline-block;
  content: '\0023';
}
@media (min-width : 992px) {
  .archive aside {
    margin-top: 0;
    padding: 25px;
  }
  .sidebar-widget {
  	margin-bottom: 60px;
  }
}

/* ----------ARTICLES---------- */
.archive article {
  margin-bottom: 30px;
  text-align: center;
}
.archive article:last-of-type {
  margin-bottom: 0;
}
.archive article .featured {
  border-radius: 10px 10px 0 0;
}
.archive article .wrapper {
  /*background-color: var(--tan);*/
  padding: 20px 15px;
}
.archive h2 {
	font-size: 2rem;
	margin-bottom: 5px;
}
.archive article .wrapper a, .archive article .wrapper a:link, .archive article .wrapper a:visited {
	text-decoration: none;
}
.archive .meta {
	display: block;
}
.single .meta {
  background-color: var(--linen);
  margin-bottom: 15px;
  font-size: .875rem;
}
.archive .meta a, .single .meta a {
  font-weight: 400;
  color: var(--coal);
  text-decoration: none
}
.pagination {
  display: flex;
  justify-content: center;
	margin-top: 30px;
}
.page-numbers, a.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
	border-radius: 50%;
	background-color: var(--linen);
	margin-right: 10px;
  font-weight: 400;
  text-decoration: none;
  color: var(--coal);
  width: 40px;
  height: 40px;
}
a.page-numbers:hover, a.page-numbers:active, a.page-numbers:focus {
  background-color: var(--tan);
  font-weight: 400;
  color: var(--coal);
  text-decoration: none;
}
.page-numbers.current {
	background-color: var(--red);
  color: var(--linen);
}
.prev.page-numbers, .next.page-numbers {
  font-weight: 700;
  color: var(--red);
	background-color: transparent;
	padding: 0 5px;
  width: auto;
  height: auto;
}
.prev.page-numbers:hover, .prev.page-numbers:active, .prev.page-numbers:focus,
.next.page-numbers:hover, .next.page-numbers:active, .next.page-numbers:focus {
  background-color: transparent;
  color: var(--blue);
  font-weight: 700;
}
@media (min-width : 992px) {
  .archive article {
    margin-bottom: 60px;
  }
  .archive article .wrapper {
    padding: 20px;
  }
  .archive h2 {
  	font-size: 2.5rem;
  }
  .archive .meta {
  	margin-bottom: 15px;
  }
  .single .meta {
    margin-bottom: 30px;
  }
  .pagination {
  	margin-top: 60px;
  }
}

/* ----------SEARCH RESULTS---------- */
.archive.search article {
  margin: 0;
}
.archive.search article h2 a {
  margin-bottom: 5px;
  font-size: 1.5rem;
  text-decoration: none;
}

/* ----------FOOTER---------- */
footer {
	position: relative;
	background: var(--blue);
	padding: 100px 0 60px;
	color: #fff;
  text-align: center;
}
footer .logo {
  display: block;
  margin: 0 auto 25px;
  width: 200px;
  height: auto;
}
footer .icon-social {
  display: inline-block;
  margin: 0 3px;
  width: 38px;
  height: 38px;
}
footer hr {
  margin: 30px auto 20px;
  width: 100px;
  border-top: 5px solid var(--tan);
}
#menu-footer-navigation {
	padding: 0;
	margin: 0;
}
#menu-footer-navigation li {
	display: inline-block;
	list-style: none;
	padding: 0;
}
#menu-footer-navigation a, #menu-footer-navigation a:link, #menu-footer-navigation a:visited {
  font-family: 'Barlow Condensed', 'Tahoma', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
  color: #fff;
  text-transform: uppercase;
	transition: all 0.3s ease-in-out !important;
}
#menu-footer-navigation a:hover, #menu-footer-navigation a:active, #menu-footer-navigation a:focus {
	color: rgba(255,255,255,.7);
	text-decoration: none;
}
#menu-footer-navigation .nav-link {
  padding: 5px;
}
.credit-wrap {
	padding: 10px 0;
	background: var(--gray);
	font-size: .75rem;
	color: #9e9c9b;
}
.credit-wrap a, .credit-wrap a:link, .credit-wrap a:visited {
	color: #9e9c9b;
}
.credit-wrap a:focus, .credit-wrap a:hover, .credit-wrap a:active {
	color: rgba(158, 156, 155, .8);
}
@media (min-width : 768px) {
  footer {
  	padding: 140px 0 100px;
  }
  #menu-footer-navigation .nav-link {
    padding: 5px 10px;
  }
}

/* ----------FORMS---------- */
/* used on anti-spam form */
#theForm {position:absolute;top:0;left:-99999px;}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #161616;;
	opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #161616;;
}
::-ms-input-placeholder { /* Microsoft Edge */
	color: #161616;;
}
.nf-form-fields-required {display: none;}
.ninja-forms-req-symbol {color: var(--red) !important;}
.nf-after-field .nf-error-msg {
	margin-right: 0;
	padding-left: 5px;
	background-color: var(--red);
	color: #fff !important;
}
.nf-error-msg.nf-error-field-errors {
	color: var(--red) !important;
	font-weight: 700;
	margin-top: 30px;
}
#ninja_forms_required_items, .nf-field-container {
	margin-bottom: 15px !important;
}
.label-above .nf-field-label {
	line-height: 1;
	margin-bottom: 7px !important;
}
.list-checkbox-wrap .nf-field-element, .list-image-wrap .nf-field-element, .list-radio-wrap .nf-field-element {
	margin: 7px 0 0 7px !important;
}
.list-checkbox-wrap .nf-field-element li, .list-checkbox-wrap .nf-field-element ul, .list-image-wrap .nf-field-element li,
.list-image-wrap .nf-field-element ul, .list-radio-wrap .nf-field-element li, .list-radio-wrap .nf-field-element ul {
	margin: 0 0 0 7px !important;
	line-height: 1;
}
.list-checkbox-wrap .nf-field-element li label, .list-image-wrap .nf-field-element li label, .list-radio-wrap .nf-field-element li label {
  display: inline-block !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  font-size: 1rem;
}
.list-checkbox-wrap .nf-field-element li input, .list-image-wrap .nf-field-element li input, .list-radio-wrap .nf-field-element li input {
  margin-top: 5px !important;
}
.nf-field-element input[type=text], .nf-field-element input[type=email], .nf-field-element input[type=tel] {
	background: #fff;
	width: 100%;
	height: 40px;
	border: none;
  border-radius: 3px;
	padding: 0 10px;
}
.nf-field-element textarea {
	background: #fff;
	width: 100%;
	max-height: 150px;
	border: none;
  border-radius: 3px;
	padding: 10px;
}
.nf-field-element select {
	display: block;
	padding: 5px;
	width: 100%;
	height: 40px !important;
	margin-bottom: 15px;
	border: none;
	border-radius: 3px;
	background: #fff url(/wp-content/themes/base/img/icons/icon-select.svg) right center no-repeat;
	background-size: 40px 40px;
	appearance: none; /* this is must */
	-webkit-appearance: none;
	-moz-appearance: none;
}
.field-wrap input[type="button"], .field-wrap input[type="submit"] {
  display: block;
	border-radius: 30px;
	margin: 7px auto;
	padding: 7px 14px 10px;
	font-size: 1.5rem;
	font-weight: 600;
  color: #fff;
	line-height: 1;
  border: 3px solid var(--red);
	background-color: var(--red);
}
.field-wrap input[type="button"]:hover, .field-wrap input[type="button"]:active, .field-wrap input[type="button"]:focus,
.field-wrap input[type="submit"]:hover, .field-wrap input[type="submit"]:active, .field-wrap input[type="submit"]:focus {
  background-color: transparent;
	color: var(--red);
}

/* ----------ANIMATIONS---------- */
/*FadeIn*/
.fadeIn{
	display: block;
}
.fadeIn span {
	animation: fadeEffect 7.5s linear infinite 0s;
	-ms-animation: fadeEffect 7.5s linear infinite 0s;
	-webkit-animation: fadeEffect 7.5s linear infinite 0s;
	color: var(--red);
  font-weight: 700;
	opacity: 0;
	overflow: hidden;
	position: absolute;
  width: 100%;
  left: 0;
}
.fadeIn span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.fadeIn span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
/*FadeIn Animation*/
@-moz-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: translateY(0px); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateY(0px); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: translateY(0px); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@media (min-width : 768px) {
  .fadeIn{
  	display: inline;
    text-indent: 8px;
  }
  .fadeIn span {
    width: auto;
    left: auto;
  }
}
@media (min-width : 992px) {
  .fadeIn{
    text-indent: 10px;
  }
}
@media (min-width : 1200px) {
  .fadeIn{
    text-indent: 12px;
  }
}
@media (min-width : 1400px) {
  .fadeIn{
    text-indent: 16px;
  }
}

/* ----------WP CORE---------- */
.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.size-auto,.size-full,.size-large,.size-medium,.size-thumbnail {
	max-width: 100%;
	height: auto;
}
.wp-block-image {
	margin:25px 0;
}
.wp-block-image figcaption {
	text-align: left;
	font-size: .875em;
}
.wp-block-image img {
	height: auto;
}
 .wp-block-buttons {
   margin-bottom: 15px;
 }
.wp-block-button__link {
	border-radius: 30px;
	margin: 7px 0;
	padding: 7px 14px 10px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--red); !important;
	line-height: 1;
	border: 3px solid var(--red);
	background-color: transparent;
}
.wp-block-button__link:hover {
  background-color: var(--red);
  padding: 7px 14px 10px;
  font-weight: 600;
	color: #fff;
  text-decoration: none;
  border: 3px solid var(--red);
}

/* ----------ACCESSIBILITY---------- */

@media screen and (prefers-reduced-motion) {
* {transition:none !important; transition-duration: 0 !important; animation: none !important; opacity: 1 !important;}
.ally.static {display: inline-block;}
.ally.hidden {display: none;}
}
* a:focus-visible, * button:focus-visible {
  outline: 3px solid #0000ff !important;
}
.skip-link {
  display: block;
  background: #fff;
  font-weight: 700;
  color: var(--red) !important;
  text-align: center;
  top: -15px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 0;
  position: absolute !important;
  transform: translateY(-100%);
  overflow: hidden;
  width: 200px !important;
  z-index: 999;
}
.skip-link:focus {
  transform: translateY(15px);
}

/* ----------PRINT---------- */
@media print {
	blockquote,img,pre,tr{page-break-inside:avoid}*{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]::after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]::after,a[href^="#"]::after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}
}
