/*
Theme Name: Valorous Circle's Hello Elementor Child
Theme URI: https://valorouswebdesign.com
Template: hello-elementor
Author: Valorous Circle LLC
Author URI: https://valorouswebdesign.com
Description: A plain-vanilla &amp; lightweight theme for Elementor page builder
Tags: flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 2.2.0.1565622455
Updated: 2019-08-12 11:07:35

*/

/* Global CSS Variables
 see "Utility Classes & Variables" documentation in the Knowledge Base
*/

/** fallback values for browsers without clamp support **/
:root {
  --vc-radius-s: 10px;
  --vc-container-space-xs: 20px;
  --vc-container-space-s: 25px;
  --vc-container-space-m: 35px;
  --vc-container-space-l: 45px;
}
/** end fallback values **/

/** here are the REAL values **/
:root {
  --vc-radius: 12px; /* standard border radius */
  --vc-radius-s: calc(var(--vc-radius) / 2); /* small border radius*/
  --vc-box-shadow: 15px 20px 30px -6px rgba(40, 71.0000000000001, 109, 0.05);
  
  --vc-container-gutter: clamp(1.5rem, 4.242vw + -0.091rem, 5rem); /* left & right padding for outer containers */
  --vc-container-space-xs: clamp(1rem, 2.424vw + 0.091rem, 3rem); /* extra small padding */
  --vc-container-space-s: clamp(2rem, 2.424vw + 1.091rem, 4rem); /* small padding */
  --vc-container-space-m: clamp(3rem, 2.424vw + 2.091rem, 5rem); /* medium padding */
  --vc-container-space-l: clamp(6rem, 2.424vw + 5.091rem, 8rem); /* large padding */
}
/* END Global CSS Variables */




/* Utility Classes 
 see "Utility Classes & Variables" documentation in the Knowledge Base
*/

/** Outer Container Padding & Gutter **/

/** fallback values for browsers without clamp support **/
.e-con.vc-outer-con-xs, .e-con.vc-outer-con-s, .e-con.vc-outer-con-m, .e-con.vc-outer-con-l {
  padding: 30px 20px;
}
/** end fallback values **/

/*** Here are the REAL values ***/
@supports (font-size: clamp(1vw, 2vw, 3vw)) {
    .e-con.vc-outer-con-xs {
    padding-block: var(--vc-container-space-xs);
    padding-inline: var(--vc-container-gutter);
  }
	
	.e-con.vc-outer-con-s {
    padding-block: var(--vc-container-space-s);
    padding-inline: var(--vc-container-gutter);
  }

  .e-con.vc-outer-con-m {
    padding-block: var(--vc-container-space-m);
    padding-inline: var(--vc-container-gutter);
  }

  .e-con.vc-outer-con-l {
    padding-block: var(--vc-container-space-l);
    padding-inline: var(--vc-container-gutter);
  }
}

/** Box Shadows **/
.vc-box-shadow.elementor-widget:not(.elementor-widget-image) .elementor-widget-container, .vc-box-shadow.e-con, .vc-box-shadow.elementor-widget-image img, .vc-box-shadow-hover.elementor-widget .elementor-widget-container:hover, .vc-box-shadow-hover.e-con:hover {
  box-shadow: var(--vc-box-shadow);
}


/** Text Styles **/
/*** callout text ***/
.vc-highlight--primary {
    color: var(--e-global-color-7b1251f );
}

.vc-highlight--secondary {
    opacity: .6;
}

.vc-highlight--light {
    color: white;
}

/*** span in headline ***/
.vc-headline-before {
    font-size: 0.4em; /* fallback value */
    line-height: 1.2;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 10px;
}

@supports (font-size: clamp(1vw, 2vw, 3vw)) {
	.vc-headline-before {
		font-size: clamp(0.9rem, 0.242vw + 0.809rem, 1.1rem);
	}
}

/*** balances text ***/
.vc-balance {
  text-wrap: balance;
}

/*** inline link style ***/
.type-post .elementor-text-editor p a, .elementor-widget-theme-post-content .elementor-text-editor p a, #vc-post-content a, .elementor-widget-theme-post-content .elementor-text-editor ul a {
  text-decoration: underline;
  font-weight: bold;
}

/** Effects **/
/*** blur effect ***/
:root {
	--vc-blur-s: blur(2px) grayscale(20%);
	--vc-blur-m: blur(8px) grayscale(20%);
}
.vc-blur-s {
    backdrop-filter: var(--vc-blur-s);
}

.vc-blur-m {
    backdrop-filter: var(--vc-blur-m);
}
/* END Utility Classes */




/* Site Header */
/** hide menu items on non-hamburger menu **/
#vc-header nav:not(.elementor-nav-menu--dropdown) .vc-hamburger-only {
	display: none;
}
/* END Site Header */




/* Buttons */
/** site header nav buttons **/
#vc-header nav:not(.elementor-nav-menu--dropdown) > ul {
    align-items: center;
    width: 100%;
}

#vc-header nav:not(.elementor-nav-menu--dropdown) li.vc-nav-btn a {
    padding: 15px 30px;
    border-radius: 40px;
    font-family: var(--e-global-typography-accent-font-family ), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size );
    font-weight: var(--e-global-typography-accent-font-weight );
    line-height: var(--e-global-typography-accent-line-height );
    letter-spacing: var(--e-global-typography-accent-letter-spacing );
    transition: all 180ms ease-in-out;
}

#vc-header nav:not(.elementor-nav-menu--dropdown) .vc-nav-btn--primary a {
    background-color: var(--e-global-color-7b1251f );
    color: white;
    margin-left: 15px;
}

#vc-header nav:not(.elementor-nav-menu--dropdown) .vc-nav-btn--primary a:hover {
    background-color: var(--e-global-color-c2e8d3f );
    color: white;
}

/** button with large icon **/
.vc-btn__icon svg {
    font-size: calc(var(--e-global-typography-accent-font-size ) * 1.1);
}

/** fix alignment **/
.elementor-button .elementor-button-content-wrapper {
    align-items: center;
}




/* GravityForms */
/** field labels **/
.gform_wrapper.gravity-theme .gfield_label {
    color: var( --e-global-color-primary );
    font-size: 16px;
    font-weight: 600;
}

/** fields **/
.gfield .ginput_container input[type="text"], .gfield .ginput_container input[type="email"], .gfield .ginput_container input[type="tel"], .gfield .ginput_container input[type="number"], .gfield .ginput_container_date input[type="text"], .gfield .ginput_container_phone input[type="text"], .gfield .ginput_container_email input[type="text"], .gfield .ginput_container_text input[type="text"], .gfield textarea, .gfield select , .gform_wrapper.gravity-theme input[type=text]{
    padding: 10px;
    min-height: 50px;
    font-family: var(--e-global-typography-accent-font-family ), Sans-serif;
    font-size: 17px !important;
    line-height: 1.5em;
    color: var(--e-global-color-text );
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #EDECEC;
}

.gfield input:focus, .gfield textarea:focus {
    border-color: var( --e-global-color-56e85fe ) !important;
}

/** Google policy **/
.vc-GFGooglePolicy {
	font-size: 12px;
	line-height: 1.3;
}
/*** left align captcha policy message ***/
.vc-captcha-left .vc-GFGooglePolicy {
	text-align: left;
}
/* END GravityForms */




/* Password Protected Page */
form.post-password-form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 5rem 5%;
}

form.post-password-form p:nth-of-type(1), form.post-password-form label {
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

form.post-password-form input {
    height: 45px;
    border-radius: 3px;
}

form.post-password-form [type=submit] {
    height: 46px;
    border-radius: 3px;
    border-color: var( --e-global-color-accent );
}
/* END Password Protected Page */





/* Single Blog Post */
#vc-post-content .elementor-widget-theme-post-content h1, #vc-post-content .elementor-widget-theme-post-content h2, #vc-post-content .elementor-widget-theme-post-content h3, #vc-post-content .elementor-widget-theme-post-content h4, #vc-post-content .elementor-widget-theme-post-content h5, #vc-post-content .elementor-widget-theme-post-content h6 {
    margin-top: 1em;
    color:  var( --e-global-color-primary );
    font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
    font-weight: var( --e-global-typography-primary-font-weight );
}

/** add spacing under lists **/
#vc-post-content .elementor-widget-theme-post-content ul, #vc-post-content .elementor-widget-theme-post-content ol {
    margin-bottom: 1em;
}

#vc-post-content .elementor-widget-theme-post-content ul, #vc-post-content .elementor-widget-theme-post-content ol {
    margin-bottom: 1em;
}

/** table of contents **/
.single-post .elementor-toc__list-item-text-wrapper {
	align-items: start;
}

.single-post .elementor-toc__list-item-text-wrapper svg {
	margin-top: 3px;
}

.elementor-widget-theme-post-content img {border-radius: var(--vc-radius)}
/* END Single Blog Post*/




/* Elementor Anchor Link Offset */
body:not(.elementor-editor-active) .elementor-widget-menu-anchor {
  position: relative;
  z-index: -1;
}

body:not(.elementor-editor-active) .elementor-menu-anchor:before {
  content: "";
  display: block;
  height: 200px; /* fixed header height*/
  margin: -200px 0 0; /* negative fixed header height */
  visibility: hidden;
  pointer-events: none;
}
/* END Elementor Anchor Link Offset */





/* Inline Link Stlye */
.type-post .elementor-text-editor p a, .elementor-widget-theme-post-content .elementor-text-editor p a, #vc-post-content .elementor-widget-theme-post-content a, .elementor-widget-theme-post-content .elementor-text-editor ul a {
	text-decoration: underline;
	font-weight: bold;
}
/* END Inline Link Stlye */




/* Breadcrumbs */
.elementor-widget-breadcrumbs p {
	text-transform: none;
	letter-spacing: 0px;
}
/* END Breadcrumbs */




/* Social Media Links */
.vc-socials .jet-listing-dynamic-repeater__items ul {
    list-style-type: none;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	padding-inline-start: 0px;
}

.vc-socials .jet-listing-dynamic-repeater__item a, .jet-listing-dynamic-link__link {
    transition: all 200ms ease-in-out !important;
}
/* END Social Media Links */



/* Blog Post Grid */
.vc-posts .elementor-post__thumbnail {border-bottom: 1px solid var( --e-global-color-c76dabe );}
/* END Blog Post Grid */



/* Footer */
/** copyright **/
.vc-copyright {opacity: 0.8;}

.vc-copyright a {
    color: inherit !important;
    font-weight: inherit;
    text-decoration: none;
    opacity: 0.8;
}

/** footer menu responsiveness **/
@media (max-width: 767px) {
    .elementor-location-footer .vc-footer-menu ul {
        display: block;
        width: 100%;
        margin: 0;
    }
    .elementor-location-footer .vc-footer-menu li a {
        margin: 0 !important;
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* END Footer */