/**
 * Vanilla Styles
 *
 * This second stylesheet is for hotfixes/vanilla CSS.
 * Do not edit the main style.css directly, rather
 * add your changes here if you are not compiling the Sass files.
 */

body:not(.page-template-homepage){
	height:100vh !important;
	position:relative;
	/*font-family:Montserrat;*/
}
/*
body:not(.page-template-homepage) h1,
body:not(.page-template-homepage) h2,
body:not(.page-template-homepage) h3,
body:not(.page-template-homepage) h4,
body:not(.page-template-homepage) h5,
body:not(.page-template-homepage) h6 {
	font-family:Montserrat !important;
}
*/
/*body:not(.page-template-homepage) #outer-wrapper{
	max-width:1600px;
	width:90%;
	margin:0px auto;
}*/
/* .home .container {
    position: absolute;
    top: 50%;
    left: 50%;
	width:100%;
	max-width:960px;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
body:not(.page-template-homepage) footer{
	margin-top:0;
	position:relative;
	bottom:0;
	width:100%;
	text-align:center;
}
 */
.gform_legacy_markup_wrapper .top_label .gfield_label, .gform_legacy_markup_wrapper legend.gfield_label {
	margin-bottom:0;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
/*   min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
	width: 200px;
	line-height: initial;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  font-size: 12px;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.wptb-custom_html-container [tooltip] {
	position: absolute;
    top: 3px;
    right: -10px;
    background-color: #0F0F4F;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 20px;
}

.wptb-custom-html-wrapper {
    display: inline-block;
    padding-right: 12px;
	position: static !important;
}
.wptb-table-container table td p {
    color: rgb(74, 85, 104);
}
.wptb-ph-element {
    display: inline-block;
    width: 93%;
}
.home-contact-description {
    padding-top: 50px;
    padding-bottom: 50px;
}
.home-contact-form {
    padding-top: 80px;
}
.home-contact-form .gform_button {
    background: linear-gradient(90deg, #edbd70 0%, #ae8231 100%);
    color: #ffffff;
    height: auto;
    line-height: 1.05;
    padding: 14px 20px;
    transition: .3s all;
    border: 0;
}
.home-contact-form .gform_button:hover {
	background: linear-gradient(270deg, #edbd70 0%, #ae8231 100%);
}

#hero-header-img-sml {
    box-sizing: border-box;
    padding: 50px 0 0;
    max-height: 472px;
    margin-bottom: 8vh;
    position: relative;
}

#hero-header-img-sml .grid .cell {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#hero-header-img-sml .hero-txt h2 {
    color: #152b52;
    letter-spacing: .1em;
    margin: 20px 0;
}
#hero-header-img-sml .hero-txt h2 em {
    letter-spacing: normal;
    font-weight: normal;
    font-size: 42px;
}

#hero-header-img-sml .img {
    padding-right: 35px;
}

@media (min-width: 1200px) {
	#hero-header-img-sml .img {
    	transform: translateY(46px);
	}
}

@media (max-width: 575px) {
	#hero-header-img-sml {
		padding: 25px;
	}
}

@media (max-width: 776px) {
	#hero-header-img-sml {
		padding: 50px 25px;
	}
}
@media (max-width: 991px) {
	#hero-header-img-sml {
		padding: 50px 25px 25px;
		margin-bottom: 2vh;
	}
}
@media (max-width: 1199px) {
	#hero-header-img-sml {
		padding: 60px 0;
		max-height: none;
	}
}

.wptb-element-text-712 a, 
.wptb-element-text-713 a, 
.wptb-element-text-714 a,
.gform_button,
.woocommerce .woocommerce-error .button, 
.woocommerce .woocommerce-info .button, 
.woocommerce .woocommerce-message .button, 
.woocommerce-page .woocommerce-error .button, 
.woocommerce-page .woocommerce-info .button, 
.woocommerce-page .woocommerce-message .button,
.woocommerce #payment #place_order, 
.woocommerce-page #payment #place_order,
body .woocommerce button.button:disabled, 
body .woocommerce .woocommerce button.button:disabled[disabled], 
body .woocommerce-page button.button:disabled, 
body .woocommerce-page .woocommerce button.button:disabled[disabled], 
body.woocommerce button.button:disabled, 
body.woocommerce .woocommerce button.button:disabled[disabled],
body.woocommerce-page button.button:disabled, 
body.woocommerce-page .woocommerce button.button:disabled[disabled],
.woocommerce .cart .button, 
.woocommerce .cart input.button,
body .woocommerce .button, 
body .woocommerce button.button.alt, 
body .woocommerce #respond input#submit, 
body .woocommerce .wc-proceed-to-checkout a.checkout-button, 
body .woocommerce-page .button, 
body .woocommerce-page button.button.alt, 
body .woocommerce-page #respond input#submit, 
body .woocommerce-page .wc-proceed-to-checkout a.checkout-button, 
body.woocommerce .button, 
body.woocommerce button.button.alt,
body.woocommerce #respond input#submit, 
body.woocommerce .wc-proceed-to-checkout a.checkout-button, 
body.woocommerce-page .button, 
body.woocommerce-page button.button.alt, 
body.woocommerce-page #respond input#submit, 
body.woocommerce-page .wc-proceed-to-checkout a.checkout-button {
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 1.5px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;

  background: linear-gradient(90deg, #edbd70 0%, #ae8231 100%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  height: auto !important;
  line-height: 1.05 !important;
  padding: 14px 20px !important;
  transition: .3s all !important;
}

.wptb-element-text-712 a:hover, 
.wptb-element-text-713 a:hover, 
.wptb-element-text-714 a:hover,
.gform_button:hover,
.woocommerce .woocommerce-error .button:hover, 
.woocommerce .woocommerce-info .button:hover, 
.woocommerce .woocommerce-message .button:hover, 
.woocommerce-page .woocommerce-error .button:hover, 
.woocommerce-page .woocommerce-info .button:hover, 
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce #payment #place_order:hover, 
.woocommerce-page #payment #place_order:hover,
.woocommerce .cart .button:hover, 
.woocommerce .cart input.button:hover,
body .woocommerce .button:hover, 
body .woocommerce button.button.alt:hover, 
body .woocommerce #respond input#submit:hover, 
body .woocommerce .wc-proceed-to-checkout a.checkout-button:hover, 
body .woocommerce-page .button:hover, 
body .woocommerce-page button.button.alt:hover, 
body .woocommerce-page #respond input#submit:hover, 
body .woocommerce-page .wc-proceed-to-checkout a.checkout-button:hover, 
body.woocommerce .button:hover, 
body.woocommerce button.button.alt:hover,
body.woocommerce #respond input#submit:hover, 
body.woocommerce .wc-proceed-to-checkout a.checkout-button:hover, 
body.woocommerce-page .button:hover, 
body.woocommerce-page button.button.alt:hover, 
body.woocommerce-page #respond input#submit:hover, 
body.woocommerce-page .wc-proceed-to-checkout a.checkout-button:hover {
  background: linear-gradient(270deg, #edbd70 0%, #ae8231 100%) !important;
}

.post-2344 h1.entry-title {
  text-align: center;
}

.wptb-table-container table,
.wptb-table-container table td p {
  font-size: 20px !important;
}

.gform-body input[type="text"],
.gform-body input[type="email"],
.gform-body textarea,
.gform-grid-col--size-auto,
.ginput_container_text {
  display: block !important;
  width: 100% !important;
}



/* August 18 */
.font-garamond {
    font-family: "adobe-garamond-pro", serif;
}

.about-image-text .container .grid {
  align-items: center;
}
.about-image-text .container .font-garamond {
  font-size: 28px;
  line-height: 38px;
}

.wptb-table-container {
  max-width: 85% !important;
}
.page-support-packages section#general-content-4 p.mw-85 {
	 max-width: 85%;
    margin: auto;
}
.page-support-packages section#general-content-4 {
    margin-top: 3em;
}
.page-work-with-us #general-content-2 h3 {
  margin-top: 1em;
}

.text-caps {
  text-transform: uppercase;
}

.section-faq h5 {
  letter-spacing: .075em;
}

ul.arrow-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 57px !important;
}

ul.arrow-list li {
  margin-bottom: 50px;
  padding-left: 20px;
  position: relative;
  line-height: 35px;
}

ul.arrow-list li br {
  display: none;
}

ul.arrow-list li strong {
	color: #152B52;
	display: block;
	font-family: Montserrat, sans-serif;
	margin-bottom: 0.5em;
	font-size: 1em;
	letter-spacing: 0.05em;
	    text-transform: uppercase;
}

ul.arrow-list li::before {
  background-image: url('/wp-content/uploads/2023/07/gem-1.svg');
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  left: -77px;
  position: absolute;
  top: 5px;
  width: 81px;
  height: 35px;
}
.text-center {
  text-align: center;
}

.page-work-with-us #general-content-2 .container {
  max-width: 1180px;
}
.page-work-with-us #general-content-2 p {
  line-height: 40px;
  font-size: 26px;
}

.woocommerce-info {
    border-top-color: #b48837;
}
.woocommerce-info::before {
    color: #b48837;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #ccc;
    border-radius: 0;
    height: auto;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 12px 12px;
    font-size: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
	right: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-width: 8px 8px 0 8px; 
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 8px 8px 8px;
}
@media (max-width: 1024px) {
  #home-footer #credits {
    padding: 0 40px;
  }
  .cell {
    padding-top: 20px;
  }
  ul.arrow-list li {
    line-height: normal;
  }
}

@media (min-width: 550px) {
  .ginput_complex.has_first_name.no_middle_name.has_last_name {
    display: flex;
    margin: 0;
  }
  .ginput_complex.has_first_name.no_middle_name.has_last_name p {
    margin: 0 5px;
    width: calc( 50% - 10px );
  }
}

.blog-content p {
    margin-bottom: 1em;
}
.featured-post p {
    margin-bottom: 1em;
}


#intro.tools-intro .grid {
  flex-direction: row-reverse;
}
#intro.tools-intro .grid .col-1 {
  padding-left: 40px;
}
@media (max-width: 1600px) {
	#intro .container {
		max-width: 960px;
	}
}
@media (max-width: 991px) {
  #intro.tools-intro .grid .col-1 {
    padding-left: 0;
  }
}
#intro.tools-intro .grid .col-1 p {
  line-height: 32px;
  letter-spacing: normal;
  font-size: 21px;
  font-weight: 300;
}
#intro.tools-intro .grid .col-1 p strong {
  font-weight: 700;
}

.section-resources .container {
  max-width: 100%;
  padding: 0;
}
.section-resources .tabs [role=tablist] {
  display: flex;
  align-items: start;
  padding: 0 20px;
  margin-bottom: -1px;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .section-resources .tabs [role=tablist] {
    margin-bottom: 0px;
  }
}
.section-resources .tabs [role=tab] {
  display: flex;
  flex-direction: column;
  overflow: visible;
  cursor: pointer;
  letter-spacing: normal;
  padding: 20px 35px 22px;
  flex: 1 1 0;
  line-height: 1;
  align-self: stretch;
  margin-bottom: 0;
  text-align: left;
  text-transform: none;
  font-family: "adobe-garamond-pro", serif;
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  border-color: #0F0F4F;
  background-color: #0F0F4F;
	    height: auto;
    white-space: normal;
}
.section-resources .tabs [role=tab] span {
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 300;
	letter-spacing: 0.06em;
}
.section-resources .tabs [role=tab]:hover {
  color: #fff;
}
.section-resources .tabs [role=tab][aria-selected=true] {
  border: 1px solid #0F0F4F;
  border-bottom: none;
  border-top: 5px solid #AE8231;
  color: #0F0F4F;
  background-color: #fff;
}
.section-resources .tabs [role=tab][aria-selected=true]:hover {
  color: #0F0F4F;
}
@media (max-width: 500px) {
  .section-resources .tabs [role=tab] {
    padding: 1rem;
  }
}
.section-resources .tabs [role=tabpanel] {
  border-top: 1px solid #0F0F4F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  min-height: 10em;
  width: 100%;
  overflow: auto;
}
.section-resources .tabs [role=tabpanel] p {
	font-size: 21px;
	margin-bottom: 1em;
}
.section-resources .tabs [role=tabpanel] .panel-inner {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1170px;
}
@media (min-width: 1600px) {
  .section-resources .tabs [role=tabpanel] .panel-inner {
    max-width: 1570px;
  }
}
.section-resources .tabs [role=tabpanel] .panel-inner .spacer {
  padding-top: 150px;
  display: block;
}
.section-resources .tabs [role=tabpanel] .tab-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 4.5625em 0 6.0625em;
}
.section-resources .tabs [role=tabpanel] .tab-intro h2 {
  margin: 0;
  font-size: 36px !important;
}
.section-resources .tabs [role=tabpanel] .tab-intro h2:after {
  content: "";
  display: block;
  width: 129px;
  height: 5px;
  margin: 1.625em auto 2.0625em;
  background-color: #AE8231;
}
.section-resources .tabs [role=tabpanel] .grid {
  border-bottom: 2px solid #eee;
  padding: 4em 0;
}
@media (max-width: 991px) {
  .section-resources .tabs [role=tabpanel] .grid {
    display: block;
  }
}
.section-resources .tabs [role=tabpanel] .grid .cell {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.section-resources .tabs [role=tabpanel] .grid .col-1 {
  align-items: center;
}
@media (max-width: 991px) {
  .section-resources .tabs [role=tabpanel] .grid .col-1 {
    padding-top: 25px;
  }
}
.section-resources .tabs [role=tabpanel] .grid .col-2 {
  padding-left: 30px;
}
.section-resources .tabs [role=tabpanel] .grid .col-2 h6 {
  margin: 0 0 15px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 300;
    font-size: 15px !important;
	    letter-spacing: 0.06em;
}
.section-resources .tabs [role=tabpanel] .grid .col-2 h2 {
  margin-top: 0;
	font-size: 36px !important;
}
@media (max-width: 991px) {
  .section-resources .tabs [role=tabpanel] .grid .col-2 {
    padding-left: 0;
    padding-top: 30px;
  }
}
.section-resources .tabs [role=tabpanel] .grid .col-3 {
  align-items: center;
}
@media (max-width: 991px) {
  .section-resources .tabs [role=tabpanel] .grid .col-3 {
    padding: 0;
  }
}
.section-resources .tabs [role=tabpanel] > * {
  margin-block: 1em;
}
.section-resources .tabs [role=tabpanel][aria-hidden=true] {
  display: none;
}
@media (max-width: 1199px) {
  .section-resources .tabs [role=tabpanel] {
    padding: 25px;
  }
}
@media (max-width: 600px) {
	.section-resources .tabs [role=tablist] {
		display: block;
	}
	.section-resources .tabs [role=tab][aria-selected=true] {
		border-bottom: 1px solid #0F0F4F;
	}
	.section-resources .tabs [role=tab] {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}
	.section-resources .tabs [role=tabpanel] {
    	border-top: 0;
	}
	.section-resources .tabs [role=tabpanel] .tab-intro {
		padding: 2em 0 6.0625em;
	}
}

/* NEW SECTIONED RESOURCES TAB CONTENT */
.sectioned-resource-row{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:baseline;
}
.sectioned-resource-row .resource{
	text-align:center;
	width:22%;
	margin:0 1.5% 3%;
}
.sectioned-resource-row .resource a{
	font-style:normal;
	text-decoration:none;
	color:#000;
	transition: all 0.3s ease;
}
.sectioned-resource-row .resource a:hover h3{
	color:#AE8231;
	transition: all 0.3s ease;
}
.sectioned-resource-row .resource img{
	border:1px solid #ccc;
}
.sectioned-resource-row .resource h3{
	font-size:24px !important;
	margin-bottom:0;
	margin-top:1em;
	transition: all 0.3s ease;
}

@media(max-width:991px){
	.sectioned-resource-row .resource{
		width:30%;
	}
}
@media(max-width:575px){
	.sectioned-resource-row .resource{
		width:100%;
		margin:0 auto 25px;
	}
}