@charset "UTF-8";

/*
  Theme Name:        Calvary School of Ministry 2025
  Theme URL:         https://calvarynm.church
  Version:           20.25
  Description:       Focus Theme
  Tags:              Focus Theme, html5, css3, responsive
  Author:            Calvary Church with Skip Heitzig
  Author URI:        https://calvarynm.church
  Copyright:         © Calvary Albuquerque, Inc.
  License:           Not for personal or commercial use by anyone except Calvary Albuquerque, Inc.
  License URI:       N/A
*/

/*=======================================================================================================================================
01 Fonts
02 !!! NO RESET HERE !!!
03 Structure
04 Typography
05 Media
06 Forms & Buttons
07 Front-End Interface
08 WordPress Styles
09 Plugin Styles
10 Page-Specific Layout
=======================================================================================================================================*/

/*=======================================================================================================================================
01 FONTS
=======================================================================================================================================*/

/* Font_Example
@font-face {
	font-style: normal;
	font-weight: normal;
	font-family: 'FontExample';
	src: url('fonts/FontExample.eot');
	src: url('fonts/FontExample.eot?#iefix') format('embedded-opentype'),
		 url('fonts/FontExample.woff') format('woff'),
         url('fonts/FontExample.woff2') format('woff2'),
		 url('fonts/FontExample.ttf') format('truetype');
} */



/*=======================================================================================================================================
03 STRUCTURE
=======================================================================================================================================*/

:root {
	--color-white: #ffffff;
	--color-gray: #b7b7b7;
	--color-black: #000000;
	--color-red: #cd2229;
	
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 0 25px -3px rgba(0, 0, 0, 0.1), 0 0 12px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
	font-size: 100%;
	-webkit-box-sizing: inherit;
			box-sizing: inherit;
	scroll-behavior: smooth;
}

body {
	font-family: 'Host Grotesk', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	background-color: var(--color-white);
	color: var(--color-black);
}

main#content {
	padding: 0;
}

.header {
    position: fixed;
    top: 0;
	right: 0;
	left: 0;
	width: 100vw;
    height: auto;
    z-index: 100;
    margin: 0 auto;
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
    .header {
    }
}

.header .container {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: .85rem 3rem .35rem;
	background-color: var(--color-black);
	position: relative;
}
.header .container.on-scroll {
	-webkit-backdrop-filter: blur(8px) !important;
			backdrop-filter: blur(8px) !important;
	-webkit-transition: all .175s ease;
       -moz-transition: all .175s ease;
         -o-transition: all .175s ease;
            transition: all .175s ease;
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
    .header .container,
	.header .container.on-scroll {
        padding: .25rem 1.5rem;
    }
}

.header .wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.brand {
	font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: 1.625rem;
	line-height: 1.25;
	letter-spacing: -1px;
	color: var(--color-gray);
	text-transform: uppercase;
	display: inline-block;
	width: 150px;
	height: auto;
	margin: -.5rem 0 0;
	display: inline-block;
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
	.brand {
		display: block;
	}
}
.brand img {
	width: 128px;
	padding: 0;
	line-height: 1;
}
.brand img.mobile {
	display: none;
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
	.brand {
		width: 100px;
		margin: 0;
	}
	.brand img {
		display: none;
	}
	.brand img.mobile {
		width: 110px;
		display: inline-block;
		padding: .5rem 0 0;
	}
}

.nav-wrap {
	right: 0;
	position: absolute;
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
	.nav-wrap {
		margin: 0 0 0 auto;
	}
}

a.search, a:link.search, a:visited.search {
    float: right;
    padding: 1rem 0 0 .75rem;
    line-height: 0;
    color: var(--color-gray);
}
a:hover.search, a:active.search {
    color: var(--color-gray);
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
    a.search, a:link.search, a:visited.search {
        padding: 1rem 0;
    }
}

a.x, a:link.x, a:visited.x {
    float: right;
    margin: 2.5rem 0 0;
    padding: 0 3rem 0 0;
    line-height: 0;
    color: var(--color-gray);
}
a:hover.x, a:active.x {
    color: var(--color-gray);
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
    a.x, a:link.x, a:visited.x {
        margin: 1.5rem 0 0;
        padding: 0 2.25rem 0 0;
    }
}

.header nav.navbar {
    float: none;
}

.header .menu > .menu-item {
    position: relative;
    display: inline-block;
}
.header .menu > .menu-item > a {
	display: block;
	font-family: 'Dela Gothic One', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: .85rem;
	line-height: inherit;
	margin: .65rem .5rem;
	padding: .2rem 0 .1rem;
	border: none;
	outline: none;
	color: var(--color-white);
	text-transform: uppercase;
	-webkit-transition: all 0.135s ease;
	   -moz-transition: all 0.135s ease;
		 -o-transition: all 0.135s ease;
			transition: all 0.135s ease;
}

.header .menu > .menu-item > a, .header .menu > .menu-item > a:link, .header .menu > .menu-item > a:visited {
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
    font-weight: inherit;
    text-decoration: none;
}
.header .menu > .menu-item > a:hover, .header .menu > .menu-item > a:active {
	color: var(--color-red);
	-webkit-transition: all .175s ease;
	   -moz-transition: all .175s ease;
		 -o-transition: all .175s ease;
			transition: all .175s ease;
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
    .header .menu > .menu-item > a, .header .menu > .menu-item > a:link, .header .menu > .menu-item > a:visited, .header .menu > .menu-item > a:hover, .header .menu > .menu-item > a:active {
        background-image: none;
        margin: 0;
		color: var(--color-white) !important;
    }
}

.header .menu > .menu-item > a .expand {
    position: relative;
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.35rem;
    pointer-events: none;
    border: none;
    outline: none;
}
.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
    position: absolute;
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--color-gray);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.35s ease;
            transition: all 0.35s ease;
}
.header .menu > .menu-item:hover > a {
    color: var(--color-red);
}
.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
    background: var(--color-gray);
}
.header .menu > .menu-item > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: var(--color-gray);
}
.header .menu > .menu-item > .sub-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    width: 13rem;
    height: auto;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-large);
            box-shadow: var(--shadow-large);
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    -webkit-transition: all 0.35s ease;
            transition: all 0.35s ease;
            border-radius: 15px;
}
.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    padding: 0.5rem 1.75rem;
    color: var(--color-gray);
    text-decoration: none;
    -webkit-transition: all 0.35s ease;
            transition: all 0.35s ease;
}
.header .burger {
    margin-left: auto;
    position: relative;
    cursor: pointer;
    display: none;
    width: 33px;
    height: 1rem;
    margin-top: -0.25rem;
    border: 0 none !important;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
            transition: all 0.35s ease;
}
.header .burger:hover {
    background-color: transparent !important;
}
.header .burger-line {
    position: absolute;
    display: block;
    width: 33px;
    height: 4px;
    right: 0;
    border: none;
    outline: none;
    opacity: 1;
    background: var(--color-white);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
            transition: all 0.25s ease;
}
.header .burger-line:nth-child(1) {
    top: 0;
}
.header .burger-line:nth-child(2), .header .burger-line:nth-child(3) {
    top: 0.5rem;
}
.header .burger-line:nth-child(4) {
    top: 1rem;
}
.header .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, .75);
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
	cursor: pointer;
}
@-moz-document url-prefix() {
  .header .overlay {
      width: 100vw;
      height: 101vh;
      top: -1.5rem;
      left: -1.5rem;
  }
}
.header .nav-close {
    position: relative;
    top: 3.5rem;
    left: 1rem;
    cursor: pointer;
    width: 1.75rem !important;
    height: 1rem;
    outline: none;
    border: 0 none !important;
    background-color: transparent !important;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
            transition: all 0.35s ease;
}
.header .nav-close-line {
    position: absolute;
    display: block;
    width: 60%;
    height: 4px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    background: var(--color-white);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
            transition: all 0.25s ease;
}
.header .nav-close-line:nth-child(1) {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.header .nav-close-line:nth-child(2) {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

@media only screen and (min-width: 860px) {
    .header .menu > .menu-item-child:hover > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    .header .menu > .menu-item-child:hover > a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
                transform: translate(-50%, -50%) rotate(0deg);
    }
}
@media only screen and (min-width: 0px) and (max-width: 860px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
		-webkit-backdrop-filter: blur(2px) !important;
				backdrop-filter: blur(2px) !important;
    }
    .header .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 75%;
        height: 100vh;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background-color: var(--color-red);;
		/*background-image: url('img/collective-waves.svg');
		background-repeat: no-repeat;
		background-size: cover;*/
        -webkit-box-shadow: var(--shadow-large);
                box-shadow: var(--shadow-large);
        -webkit-transition: all 0.5s ease;
                transition: all 0.5s ease;
    }
    @-moz-document url-prefix() {
        .header .navbar {
            top: -.5rem;
            right: -1.5rem;
        }
    }
    .header .navbar.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin: 1rem 0;
    }
    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }
    .header .menu > .menu-item-child > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .header .menu > .menu-item > a {
		padding: 0.625rem 1.8rem;
		font-size: 1.1rem;
		color: var(--color-white);
    }
    .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
        background: var(--color-gray);
    }
    .header .menu > .menu-item-child.active > a .expand:after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
                transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a {
		padding: 0.625rem 3.2rem;
		color: var(--color-gray);
		font-family: 'Host Grotesk', 'Segoe UI', Helvetica, Arial, sans-serif;
    }
    .header .burger {
        display: block;
        float: right;
        opacity: 1;
        visibility: visible;
        margin: -.2rem 0 0 .6rem !important;
        padding: 0;
        z-index: 0;
    }
}

.btn-nav a, .btn-nav a:link, .btn-nav a:visited {
	color: var(--color-white) !important;
	border: 2px solid var(--color-red) !important;
	border-radius: 5px;
	padding: 3px 13px 4px !important;
}
.btn-nav a:hover, .btn-nav a:active {
	color: var(--color-red) !important;
	border: 2px solid var(--color-white) !important;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
	.btn-nav a, .btn-nav a:link, .btn-nav a:visited {
		border: 0 none !important;
		border-radius: 0;
		padding: 0.625rem 1.8rem !important;
	}
	.btn-nav a:hover, .btn-nav a:active {
		color: var(--color-white) !important;
		border: 0 none !important;
	}
}

a#to-top, a:link#to-top, a:visited#to-top {
	background-color: var(--color-red);
}
a#to-top:before {
	content:'\f077';
	font-family: 'FontAwesome', sans-serif;
	font-size: 1.4em;
	color: var(--color-white);
}

footer {
	min-height: 100vh;
	display: grid;
	align-items: center;
	background: transparent;
	text-align: center;
	color: var(--color-red);
}
footer img.footer-logo {
	display: inline;
	min-width: 180px;
	max-width: 180px;
	height: auto;
	margin: 6rem 0 9rem;
}
footer .social-profiles {
	display: inline-block;
	padding: .5rem 1.5rem 3rem;
}
footer .social-profiles .social-icn::before {
	padding-right: 1.2rem;
	font-size: 2rem;
	color: var(--color-red);
	line-height: 1.5;
}
footer .social-profiles .social-icn:last-of-type:before {
    padding-right: 0;
}
footer .copyright {
	font-family: 'Host Grotesk', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: clamp( .5rem, 3vw, .9rem );
	padding-bottom: .5rem !important;
}
footer .copyright a, footer .copyright a:link, footer .copyright a:visited,
footer .copyright a:hover, footer .copyright a:active {
	color: inherit;
}

#footer {}
#footer .social {}
#footer .address p {
	font-size: clamp( .75rem, 2vw, .9rem );
	line-height: 1.35 !important;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
	#footer .social .vce-social-profile-icons-inner {
		-webkit-justify-content: flex-start !important;
		justify-content: flex-start !important;
	}
	#footer .address p {
		text-align: left !important;
	}
	#footer .copyright {
		padding-top: 2rem;
	}
}
.log-in-out {
	opacity: .2;
	margin-left: 1rem;
}



/*=======================================================================================================================================
04 TYPOGRAPHY
=======================================================================================================================================*/

h1, #content h1,
h2, #content h2,
h3, #content h3,
h4, #content h4,
h5, #content h5,
h6, #content h6 {
    padding-bottom: .75rem !important;
	line-height: .95;
	color: var(--color-black);
}

h1, #content h1,
h1 strong, #content h1 strong,
h1 span, #content h1 span{
	font-family: 'Dela Gothic One', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: clamp( 2rem, 2vw, 4.2rem );
	letter-spacing: -.035em !important;
	text-transform: uppercase;
	color: var(--color-black);
}
.vce-layouts-post-title h1, #content .vce-layouts-post-title h1, h1.page-title {
	padding-top: 15vh !important;
	padding-bottom: 15vh !important;
}

h2, #content h2,
h2 strong, #content h2 strong,
h2 span, #content h2 span {
	font-family: 'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 900;
	font-size: clamp( 1.7rem, 4.5vw, 5.8rem );
	padding-bottom: .5rem !important;
	letter-spacing: -1px;
}

h3, #content h3,
h3 strong, #content h3 strong,
h3 span, #content h3 span {
	font-family: 'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 900;
	font-size: clamp( 1.4rem, 3vw, 4.8rem );
	padding-bottom: .5rem !important;
	letter-spacing: -1px;
}

h4, #content h4,
h4 strong, #content h4 strong,
h4 span, #content h4 span {
	font-family: 'Dela Gothic One', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: clamp( 1.4rem, 2vw, 3rem );
}

h5, #content h5,
h5 strong, #content h5 strong,
h5 span, #content h5 span {
	font-family: 'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: clamp( 1.3rem, 2.0vw, 3rem );
}

h6, #content h6,
h6 strong, #content h6 strong,
h6 span, #content h6 span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp( .7rem, 1vw, 1.2rem );
    letter-spacing: 4px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
    h6, #content h6 {
        letter-spacing: 3px;
    }
}

p, #content p,
.frm_primary_label {
	font-family: 'Host Grotesk', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: clamp( 1.2rem, 2vw, 1.2rem );
	font-weight: 600;
	line-height: 1.45;
	padding-bottom: 1.5rem !important;
}
.ays_image_window .ays_image_main, .ays_minimal_window .ays_minimal_main {
	font-family: 'Host Grotesk', 'Segoe UI', Helvetica, Arial, sans-serif !important;
	font-size: clamp( 1rem, 2vw, 1.2rem );
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: normal !important;
}

#content h1 a, #content h1 a:link, #content h1 a:visited,
#content h2 a, #content h2 a:link, #content h2 a:visited,
#content h3 a, #content h3 a:link, #content h3 a:visited,
#content h4 a, #content h4 a:link, #content h4 a:visited,
#content h5 a, #content h5 a:link, #content h5 a:visited,
#content h6 a, #content h6 a:link, #content h6 a:visited,
#content p a, #content p a:link, #content p a:visited,
#content li a, #content li a:link, #content li a:visited {
    line-height: 1;
    color: inherit;
    background-image: linear-gradient(120deg, var(--color-red) 0%, var(--color-red) 100%);
    background-repeat: no-repeat;
    background-size: 100% 10%;
    background-position: 0 100%;
    -webkit-transition: all .175s ease;
       -moz-transition: all .175s ease;
         -o-transition: all .175s ease;
            transition: all .175s ease;
    text-decoration: none;
}
#content h1 a:hover, #content h1 a:active,
#content h2 a:hover, #content h2 a:active,
#content h3 a:hover, #content h3 a:active,
#content h4 a:hover, #content h4 a:active,
#content h5 a:hover, #content h5 a:active,
#content h6 a:hover, #content h6 a:active,
#content p a:hover, #content p a:active,
#content li a:hover, #content li a:active {
    background-size: 100% 100%;
	color: var(--color-white);
    -webkit-transition: all .175s ease;
       -moz-transition: all .175s ease;
         -o-transition: all .175s ease;
            transition: all .175s ease;
}

.leadin, .is-style-leadin,
p.leadin, p.is-style-leadin,
.leadin p, .is-style-leadin p,
#content .leadin, #content .is-style-leadin,
#content p.leadin, #content p.is-style-leadin,
#content .leadin p, #content .is-style-leadin p,
body.single-devo main#content article p:first-of-type,
body.single-blog-post main#content article p:first-of-type {
	font-family: 'Dela Gothic One', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: clamp( 1.2rem, 2vw, 4rem );
	line-height: 1.1;
	color: var(--color-red);
}

blockquote, #content blockquote, #content blockquote.wp-block-quote {
	color: var(--color-white);
}

#content ul {
	padding: 0 1.5rem 2.5rem 5rem !important;
	line-height: 1.0rem;
}
@media all and (min-width: 0px) and (max-width: 768px) {
	#content ul {
		padding: 0 1.5rem 2.5rem 3rem !important;
	}
}
#content ul li {
	font-weight: 600;
}

.text.cream {
	color: var(--color-white) !important;
}

/*  - - - - -  SELECTED TEXT  - - - - -  */
::-webkit-selection{background:var(--color-red); color:var(--color-white); text-shadow:none;}
::-moz-selection{background:var(--color-red); color:var(--color-white); text-shadow:none;}
::selection {background:var(--color-red); color:var(--color-white); text-shadow:none;}

#pgheader {
	min-height: 50vh;
	margin-bottom: 3rem;
}
#pgheader .row {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}



/*=======================================================================================================================================
05 MEDIA
=======================================================================================================================================*/

#content figure,
#content .vce-row .vce-single-image-wrapper figure {
	padding-bottom: 0 !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
	#content .size-medium-mobile figure {
		padding: 0 3.5rem 0.5rem !important;
	}
}


/*  SOCIAL MEDIA
    ------------------------------------------------------------  */

/*  - - - - -  Social "Icon" Buttons  - - - - -  */

/* Global Styling */
a.social-icn, a:link.social-icn, a:visited.social-icn {
	margin: 0;
}
a:hover.social-icn, a:active.social-icn {
}
a:last-of-type.social-icn, a:link:last-of-type.social-icn, a:visited:last-of-type.social-icn {
	margin-right: 0;
}

/* Behance */
a.social-icn.be:before,
/* Dribbble */
a.social-icn.db:before,
/* Facebook */
a.social-icn.fb:before,
/* Flickr */
a.social-icn.fr:before,
/* Google+ */
a.social-icn.g1:before,
/* Instagram */
a.social-icn.ig:before,
/* LinkedIn */
a.social-icn.li:before,
/* Pinterest */
a.social-icn.pn:before,
/* RSS*/
a.social-icn.rss:before,
/* Tumblr */
a.social-icn.tr:before,
/* Twitter */
a.social-icn.tw:before,
/* Vimeo */
a.social-icn.vm:before,
/* X */
a.social-icn.tw-x:before,
/* YouTube */
a.social-icn.yt:before {
	color: var(--color-red);
}

/*
  HACK to replace Visual Composer Twitter icons with the new X
*/
.vcv-ui-icon-socialicons-twitter:before {
	content: '\e61b' !important;
	font-family: 'FontAwesome', sans-serif !important;
	font-size: 2rem !important;
}
.vcv-ui-icon-mfglabs-facebook-circle:before {
	content: '\f09a' !important;
	font-family: 'FontAwesome', sans-serif !important;
	font-size: 2rem !important;
}

#content .vce-icon-container {
	opacity: 1;
	cursor: pointer;
	-webkit-transition: all .175s ease;
       -moz-transition: all .175s ease;
         -o-transition: all .175s ease;
            transition: all .175s ease;
}
#content .vce-icon-container:hover {
	color: var(--color-white) !important;
	opacity: 1;
}

/*  - - - - -  FULLSCREEN / WIDTH  - - - - -  */
.example.full.screen,
.example.full.width {
    background-image:
        linear-gradient(
            rgba(0,0,0,.4),/*rgba(88,88,88,.5),*/
            rgba(0,0,0,.4)/*rgba(20,20,20,.75)*/
    )/*,url('https://unsplash.it/1200/800?image=961'); /* https://unsplash.it/1200/800/?image=516 */
}



/*=======================================================================================================================================
06 FORMS & BUTTONS
=======================================================================================================================================*/

button, #content button,
a.btn, #content a.btn,
a.vce-button, #content a.vce-button {
	width: auto !important;
	color: var(--color-white) !important;
	line-height: 1.05;
}
@media all and (min-width: 0px) and (max-width: 768px) {
	button, #content button,
	a.btn, #content a.btn,
	a.vce-button, #content a.vce-button {
		/*width: 100% !important;*/
	}
}
button:hover,
a.btn:hover,
a.vce-button:hover {}

.reverse button, #content .reverse button,
.reverse a.btn, #content .reverse a.btn,
.reverse a.vce-button, #content .reverse a.vce-button {
	background-color: var(--color-white) !important;
	color: var(--color-red) !important;
}

.secondary button, #content .secondary button,
.secondary a.btn, #content .secondary a.btn,
.secondary a.vce-button, #content .secondary a.vce-button {
	font-family: 'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	text-transform: none;
}

.vce-button--style-basic-wrapper--stretched button, #content .vce-button--style-basic-wrapper--stretched button,
.vce-button--style-basic-wrapper--stretched a.btn, #content .vce-button--style-basic-wrapper--stretched a.btn,
.vce-button--style-basic-wrapper--stretched a.vce-button, #content .vce-button--style-basic-wrapper--stretched a.vce-button {
	width: 100% !important;
}



/*=======================================================================================================================================
07 FRONT-END INTERFACE
=======================================================================================================================================*/

/*  PRELOADER
    ------------------------------------------------------------  */
#preloader {
    background-color: var(--color-black);
}
.preload-icon {
	height: 70px;
	width: 70px;
	margin: -35px 0 0 -35px;
	border: 5px solid rgba(255, 255, 255,.0);
	border-top: 5px solid var(--color-red);
}


/*  CARD
    ------------------------------------------------------------  */
#content .card {
	margin-bottom: 2rem;
	padding: 0;
	border-radius: 2rem;
	overflow: hidden;
}
#content .card figure {
	padding: 0 !important;
}
#content .card figure img {
	padding: 0;
	padding-bottom: 1.5rem;
}
#content .card p a, #content .card p a:link, #content .card p a:visited,
#content .card p a:hover, #content .card p a:active {
	text-decoration: underline;
}



/*=======================================================================================================================================
08 WORDPRESS STYLES
=======================================================================================================================================*/



/*=======================================================================================================================================
09 PLUGIN STYLES
=======================================================================================================================================*/

.vce-social-profile-icons {
	padding: 0 1.5rem;
}
.vce-social-profile-icons-inner {
	margin: 0 !important;
}
.vce-social-profile-icon {
	padding: 0 15px 0 0 !important;
}

.vce-icon-group-container {
	padding: 0 1.5rem 0;
}
.vce-icon-group-container .vce-icon-group {}
@media all and (min-width: 0px) and (max-width: 768px) {
	.vce-icon-group-container .vce-icon-group {
		justify-content: flex-start;
	}
}
.vce-icon-group-container .vce-icon-group .vce-features--icon {
	width: 1em;
	height: 1em;
}
.vce-icon-group-container .vce-icon-group .vce-var-icon {
	margin-right: 0rem !important;
}
.vce-icon-group-container .vce-icon-group .vce-var-icon:last-of-type {
	margin-right: 0 !important;
}

#content .vce-faq-group-container {
	padding: .75rem 1.5rem 1.5rem;
}
#content .vce-faq-group-shape--square .vce-faq-group-item {
	border: 0 none;
	border-bottom: 7px solid var(--color-red);
}
#content .vce-faq-group-item-heading {
	padding: 2rem 50px;
}
#content .vce-faq-group-item-heading,
#content .vce-faq-group-item-heading h3,
#content .vce-faq-group-item-icon {
	cursor: pointer !important;
}
#content .vce-faq-group-item-heading h3 {
	padding: 0 !important;
	font-family: 'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: clamp( 1.3rem, 2.0vw, 3rem );
	text-align: center;
	color: var(--color-red);
}
#content .vce-faq-group-item-content {
	border-top: 0 none;
	padding: 0 10vw 1rem;
	text-align: center;
}
#content .vce-faq-group-item-content p {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

#content .vce-button--style-basic-wrapper {
	width: 100%;
	padding: 0 1.5rem;
}
#content .vce-button, .vce-button {
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding: 1.3rem 4rem 1.4rem !important;
	border-radius: .5rem;
	border: 0 none;
	background-color: var(--color-red);
	color: var(--color-white) !important;
	font-family: 'Dela Gothic One', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 1.75rem;
	text-transform: uppercase;
}
@media all and (min-width: 0px) and (max-width: 768px) {
	#content .vce-button, .vce-button {
		padding: .8rem 2.5rem 1.1rem !important;
		font-size: 1.25rem;
	}	
}

@media all and (min-width: 0px) and (max-width: 860px) {
	.vce-image-masonry-gallery-list {}
	.vce-image-masonry-gallery-list .vce-image-masonry-gallery-column {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.vce-image-masonry-gallery-list .vce-image-masonry-gallery-column a.vce-image-masonry-gallery-item {
		margin-bottom: 10px;
		padding-left: 5px;
		padding-right: 5px;
	}
	.vce-image-masonry-gallery-list .vce-image-masonry-gallery-column a.vce-image-masonry-gallery-item img.vce-image-masonry-gallery-img {}
}
#content .vce-row-container .vce-row.rounded {
	border-radius: .5rem !important;
	overflow: hidden !important;
}
#content .vce-row-container > .vce-row.rounded {
	display: block;
	max-width: 97vw;
	margin: 0 auto;
	left: 0 !important;
	right: 0 !important;
}
#content .vce-single-image--border-rounded,
#content .vce-yt-video-player .vce-yt-video-player-inner,
#content .vce-self-hosted-video-player.rounded .vce-self-hosted-video-player-inner {
	border-radius: .5rem;
	overflow: hidden;
}
#content .vce-yt-video-player .vce-yt-video-player-inner,
#content .vce-self-hosted-video-player.rounded .vce-self-hosted-video-player-inner {
	cursor: pointer;
}
#content .vce-self-hosted-video-player .vce-self-hosted-video-player-inner .vce-icon-container:before {
	font-family: "FontAwesome", sans-serif;
	color: var(--color-white);
}
#content .vce-self-hosted-video-player .vce-self-hosted-video-player-inner .vce-icon-container.fa-play:before {
	margin-left: .2rem;
}
#content .vce-self-hosted-video-player .vce-self-hosted-video-player-inner .vce-features--icon {
	background-color: rgba(226, 68, 51, .6);
}
#content .vce-self-hosted-video-player .vce-self-hosted-video-player-inner .vce-icon-container {
	opacity: .82;
}
#content .vce-self-hosted-video-player .vce-self-hosted-video-player-inner .vce-icon-container:hover {
	opacity: 1;
	cursor: pointer;
}
#content .vce-single-image-container .vce-single-image-wrapper figure {
	/*padding: 0 !important;*/
}


.hurrytimer-campaign {
	margin: 2rem 0 0 0;
}
.hurrytimer-timer {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
@media all and (min-width: 0px) and (max-width: 860px) {
	.hurrytimer-timer {
		width: 80%;
	}
}
.hurrytimer-timer-block {
	width: 25%;
	margin: 0;
}
.hurrytimer-timer-digit {
	font-family: 'Dela Gothic One', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: clamp( 2.2rem, 3vw, 3.3rem ) !important;
	line-height: 1;
	text-transform: uppercase;
}
.hurrytimer-timer-label {
	font-family: 'Host Grotesk', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: clamp( .5rem, 3vw, .95rem );
	text-transform: uppercase;
	color: var(--color-red);
	padding-bottom: .5rem !important;
}

#fancybox-outer,
#fancybox-content {
	border-radius: 20px;
	overflow: hidden;
	background: #000;
}
#fancybox-close {
	position: fixed;
	top: 3vh;
	right: 3vh;
}
.fancy-ico span {
	width: 36px;
	height: 36px;
	border: 2px solid var(--color-red);
	background: var(--color-red);
}
#fancybox-close span::before,
#fancybox-close span::after {
	top: 14px;
	left: 5px;
	width: 22px;
	height: 3px;
	background-color: var(--color-gray);
}

.invite-everyone {}
#content .invite-everyone .addtoany_share_save_container:before,
#content .invite-everyone .addtoany_shortcode:before {
	display: none;
}
#content .invite-everyone .addtoany_share_save_container,
#content .invite-everyone .addtoany_shortcode {
	text-align: center;
}
#content .invite-everyone .addtoany_list .a2a_svg {
	width: 10vw;
	line-height: 10vw;
	height: 10vw;
}
#content .invite-everyone .addtoany_list {
	display: inline-block;
	padding-top: 3rem;
}
#content .invite-everyone .addtoany_list a {
	padding: 0 1.5rem .5rem;
}
@media all and (min-width: 0px) and (max-width: 768px) {
	#content .invite-everyone .addtoany_list .a2a_svg {
		width: 15vw;
		line-height: 15vw;
		height: 15vw;
	}
	#content .invite-everyone .addtoany_list a {
		padding: 0;
	}
}
.a2a_overlay {
	background: transparent !important;
}
#a2afeed_find_container input, #a2afeed_find_container input[type=text], #a2apage_find_container input, #a2apage_find_container input[type=text] {
	margin: 0 !important;
}

#content ul.ppshare__social.ppsocial,
#content .play-rate-list {
	display: none;
	padding: 0 !important;
}
#content .toggled-window .play-rate-list {
	display: inline-block;
}
#content .ppjs__button.ppjs__share-button.toggled-window ul.ppshare__social.ppsocial {
	display: inline-block;
}
#content .wider-player .ppjs__audio .ppjs__button > button,
#content .wider-player .ppjs__audio .ppjs__button > a.button {
	margin: 0 !important;
}

.close-image-btn, .close-minimal-btn {
	color: var(--color-white) !important;
}
.ays-pb-modals {
	text-align: left !important;
}
.ays_minimal_window {
	display: grid !important;
	width: 35vw !important;
	height: 80vh !important;
}
.ays_minimal_main {
	align-items: center;
}



/*=======================================================================================================================================
10 PAGE-SPECIFIC LAYOUT
=======================================================================================================================================*/

/*	PAGE
    ------------------------------------------------------------  */
body.page-template-default.page {}
body.page-template-default.page.home {}


/*	HOME
    ------------------------------------------------------------  */
#hero {}
#hero h1 {
	font-size: clamp( 1.8rem, 3.5vw, 4.2rem );
	color: var(--color-white);
}

.skew {
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-backface-visibility: hidden; /* the magic ingredient */
			backface-visibility: hidden;
	-webkit-transform: skew(0deg, -6deg);
			transform: skew(0deg, -6deg);
}
.skew.not {
	-webkit-transform: skew(0deg, 6deg);
			transform: skew(0deg, 6deg);
}

#content #leadership {}

#content #testimonials {}
#content #testimonials #testimonial-vids {
	width: calc(97% + .5rem) !important;
	margin: 0 auto;
}
#content #testimonials #testimonial-vids .vce-row {
	width: 100% !important;
	left: 0 !important;
	right: 0 !important;
}
#content #testimonials .vce-single-image-container .vce-single-image-wrapper figure {
	padding: 0 .25rem .5rem !important;
}

#content .step-number figure img {
	width: 100px !important;
	max-width: 100px !important;
	height: auto !important;
}
@media all and (min-width: 0px) and (max-width: 768px) {
	#content .step-number figure img {
		width: 60px !important;
		max-width: 60px !important;
		height: auto !important;
	}
}


/*	ABOUT
    ------------------------------------------------------------  */


/*	TEAM
    ------------------------------------------------------------  */
@media all and (min-width: 0px) and (max-width: 860px) {
	#content #team,
	#content #team h1,
	#content #team h2 {
		text-align: center !important;
	}
	#content #team figure {
		padding-right: 4.5rem !important;
		padding-left: 4.5rem !important;
	}
}


/*	SIGN-UP (page ID 154)
    ------------------------------------------------------------  */
body.page-id-154 {
	padding-top: 20vh !important;
}


/*	CONTACT
    ------------------------------------------------------------  */


/*	BLOG
    ------------------------------------------------------------  */

#author-bio {
    margin: 3rem 0;
	padding: 2rem;
	background: #f9fafb;
    border-radius: 1rem;
}
#author-avatar {
    width: 100%;
	float: left;
	margin-right: 3rem;
	border-radius: 100%;
    overflow: hidden;
}
#author-details {
	font-size: 1.25rem;
    line-height: 1.9rem;
}


/*  Error 404 Page
    ------------------------------------------------------------  */

body.error404 section#error404 {
    background: #0088cc !important;
}
