@charset "UTF-8";
/* CSS Document */

/*@Resuable Global Styles
===================================== */
body {
	background:var(--light-gray);
	padding: 0;
	margin: 0;
	position: relative;
	cursor: default;
}

.grid-container {
    max-width: 80rem;
    padding-left: 1em;
    padding-right: 1em;
}

.reveal,
.reveal:focus{
    background-color: var(--white);
    border: 1px solid var(--borders);
    border-radius: var(--border-radius);
    padding: 2em;
}

.reveal.bg-light-gray{
    background-color: var(--light-gray);
}

.close-button {
    position: absolute;
    z-index: 10;
    color: var(--dark-gray);
    cursor: pointer;
    font-size: 1.25rem !important;
    top: 0.25em !important;
    right: 0.25em !important;
}

.close-button:hover{
    color: var(--magenta);
}

.reveal-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

img {
	image-rendering: optimizeQuality;
	-ms-interpolation-mode: bicubic;
}

.vertical-align {
	display: -webkit-flex;
	display: flex;
	display: -ms-flexbox;

	-webkit-flex-direction: row;
	flex-direction: row;
	-ms-flex-direction: row;

	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;

	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-pack: justify;
}

.brand{
    width:100%;
    max-width: 150px;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

.main-title{
    margin-top: 2em;
    margin-bottom: 1em;
}

.title-row{
    margin-bottom: 2.55em;
}
        
.disabled{
    opacity: 0.25;
}

.round-this {
    border-radius: var(--border-radius);
    margin: 0 auto 1.55em;
    max-width: 150px;
    overflow: hidden;
}

.divider{
    height:2px;
    margin-top:4em;
    margin-bottom: 4em;
    background: -webkit-linear-gradient(left, #126bfb 0%, #1c9fff 50%, #f62069 100%);
    background: -o-linear-gradient(left, #126bfb 0%, #1c9fff 50%, #f62069 100%);
    background: linear-gradient(to right, #126bfb 0%, #1c9fff 50%, #f62069 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.flex-video{
    border-radius: var(--border-radius);
}

.bg-linkedin{
    overflow: hidden;
    border-radius: var(--border-radius);
    padding:var(--container-padding);
    
    
    background: url(https://go.tradespace.io/rs/366-JDG-962/images/bg-linkedin.png?version=0) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.bg-small-widget{
    margin-top: 2em;
    overflow: hidden;
    border-radius: var(--border-radius-small);
    padding:var(--container-padding-small);
    
    
    background: url(https://go.tradespace.io/rs/366-JDG-962/images/bg-linkedin.png?version=0) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*@end Resuable Global Styles
===================================== */

/*@Hero Top Hat / Section
===================================== */
#topHat{
    padding:0 0 1.55em;
}

#heroWrapper{
	width:100%;
    height: auto;
    min-height: 70vh;
	padding: 1.55em 2.9375em;
	overflow: hidden;
	position: relative;
	z-index: 2;
}


#heroWrapper .grid-container{
    height: auto;
}

#heroWrapper.video-hero .grid-container{
    height: calc(70vh - 120px);
}

#heroWrapper p{
    color: var(--white);
}

#sectionWrapper .btn,
#heroWrapper .btn{
    margin-top: 2em;
}

.showHeroContent a,
.showHeroContent a:link,
.showHeroContent a:visited,
.showHeroContent a:active{
  font-weight: 500;
  text-decoration: underline;
}

.request-wrapper{
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0 auto;
    padding: var(--container-padding);
    background-color: var(--white);
    
    position: relative;
    z-index: 1;
}

.hero-content-top{
    width:100%;
    display: inline-block;
    margin-bottom: 1.55em;
}

.content-container-left {
    padding-right:2em;
    width:100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.content-container-right {
    padding-left:2em;
    width:100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.form-row{
    margin-bottom: 1em
}

.form-hero{
    padding-bottom: 3em;
}

.hero-image-wrapper{
    width:100%;
    display: inline-block;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    margin-bottom: 1.25em;
}

.hero-content-wrapper{
    width:100%;
    display: inline-block;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}
/* @end Hero
===================================== */

/* @Nav
===================================== */
#navWrapper {
    padding: 1.5em 0;
    display: inline-block;
    width: 100%;
    background-color: var(--white);
}

#navWrapper ul {
    margin: 0;
    padding:0;
    display: inline-block;
}

#navWrapper ul li {
    display: inline-block;
    list-style: none;
    padding: 0.75em 1.5em;
    margin:0 auto;
    cursor: pointer;
    
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
    color: var(--black-blue);
}

#navWrapper ul li a {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black-blue);
    text-decoration: none;
}

#navWrapper ul li a:hover {
    color: var(--hover);
}


#navWrapper.fixed-nav{
    position:fixed;
    z-index: 1000;
    top:0;
    left: 0;
    -webkit-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.25);
	box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.25);
}

/* @end Nav
===================================== */


/* @Off Canvas List
===================================== */
#mobileNav{
	width:100%;
	position: fixed;
    top: 0;
    left: 0;
	z-index: 500;
	padding: 1.5em 1em;
    display: none;
    
    background-color: var(--white);
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

#mobileMenuWrapper{
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
		
	position:fixed;
	z-index:-400;
	top: 56px;
	height:100%;
	width:100%;
	background: var(--white); 
	opacity:0;
	padding: 0 0 6em;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

#mobileMenuWrapper.hideShow{
	opacity: 1;
    z-index: 400;
}

ul.off-canvas-list {
	list-style-type: none;
	padding: 0;
	margin: 0 0;
	display: block;
    font-size: 18px;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	position: relative;
	z-index: 1;
} 

ul.off-canvas-list li {
	margin: 0;
    line-height: normal;
}


ul.off-canvas-list ul{
	opacity: 1;
	height:auto;
	display: block;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}


ul.off-canvas-list li a {
    color: var(--black-blue);
    font-size: 1rem;
	font-weight: 400;
    text-transform: none;
    
    display: block;
    padding: 0.75em 1.25em;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255,255,255, 0.15);
}


ul.off-canvas-list li a:hover {
	color:var(--hover);
	text-decoration: none;
}


ul.off-canvas-list li ul{
	margin:0;
}

ul.off-canvas-list li li a{
    font-weight: 400;
    font-size: 17px;
    text-transform: none;
    
    padding-left: 2.55em;
}

ul.off-canvas-list li.btn-row{
    padding: 0.25em 0.75em;
}

ul.off-canvas-list .btn{
    width:100%;
}

.menu-icon-mobile {
    width: 25px;
    height: 15px;
    margin: 0;
    top: -2px;
    float: right;
    position: relative;
	
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.menu-icon-mobile span{
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--black-blue);
  borders-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-icon-mobile span:nth-child(1) {
	top: 0px;
}

.menu-icon-mobile span:nth-child(2) {
	top: 8px;
}

.menu-icon-mobile span:nth-child(3) {
	top: 16px;
}

.menu-icon-mobile.open span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.menu-icon-mobile.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.menu-icon-mobile.open span:nth-child(3) {
	top: 8px;
	
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
/* @end Off Canvas List
===================================== */

/* @Section Wrapper
===================================== */
#sectionWrapper{
	width: 100%;
    height: auto;
	padding:6em 2.9375em;
	overflow: hidden;
	position:relative;
	z-index:1;
}

#sectionWrapper .content-container{
    padding-top:0;
    padding-bottom: 0;
}

#sectionWrapper .button-row {
    margin-top: 2em;
}

#sectionWrapper .button-row .btn{
    margin-top: 0;
}

.fa.social-big{
    font-size: 56px;
    margin-bottom: 0.55em;
}

.fa.social-medium{
    font-size: 60px;
    margin-bottom: 0.25em;
}

.social-medium{
    width:100%;
    max-width: 50px;
    height: auto;
    margin-bottom: 1.25em;
}

.border-right{
    border-right:1px solid var(--white);
}
/* @end Section Wrapper
===================================== */


/* @Grid Cards
===================================== */
.grid-cards{
    padding:2em;
    color: var(--white);
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.grid-card-box{
    padding:2em;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
}

.card-box-wrapper {
   margin-bottom: 2em;
}

/* @end Grid Cards
===================================== */

/* @Checklist
===================================== */
.checklist{
    list-style: none;
    margin-top:3.55em;
    margin-left: 0.25em;
}

.checklist li{
    position: relative;
    padding-left: 2.25em;
    font-size: 1.25rem;
    margin-bottom: 1.25em;
}

.checklist li:before{
    content: "\f00c";
    font-family: FontAwesome;
    color: var(--blue);
    font-size: 1.45rem;
    
    position: absolute;
    left: 0;
    top: -4px;
}

.checklist li:last-child{
    margin-bottom: 0;
}

.mark-your-calendar{
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    opacity: 1;
    cursor: pointer;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.mark-your-calendar .bg-magenta{
    cursor: pointer;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.mark-your-calendar:hover .bg-magenta{
    background-color: var(--hover);
    color: var(--dark-gray) !important;
}

.mark-your-calendar-content{
    padding: 2em;
    width:100%;
    height: 100%;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.mark-your-calendar:hover .mark-your-calendar-content h4{
    color: var(--magenta);
}
/* @end Checklist
===================================== */

/* @Roundie
===================================== */
.roundie {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 200px;
    margin: 3em auto;
    
    border-radius: 50%;
    border: 1px solid var(--borders);
    
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.speakers .roundie{
    margin: 1.55em auto; 
    max-width: 300px;
    height: auto;
    max-height: 300px;
}

.speakers .roundie img {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 300px;
}

.roundie img{
    width:100%;
    max-width: 200px;
    height: auto;
    max-height: 200px;
}

.roundie.large,
.roundie.large img{
    max-width: 300px;
    max-height: 300px;
}

.small-roundie{
    max-width: 50px;
    max-height: 50px;
}
        
.squarie {
    border-radius: var(--border-radius);
    width: 100%;
    height: 75%;
    padding-top: 75%;
    position: relative;
    border: 1px solid var(--borders);
    overflow: hidden;
    display: inline-block;
}


.grid-x:has(.squarie){
    margin-bottom: 2em;
}


.speakers-title{
    margin-bottom: 1.55em;
}
/* @end Roundie
===================================== */
    

/* @Video
===================================== */
.video-wrapper{
    position: relative;
    width:100%;
    height: auto;
    display: inline-block;
    background-color: var(--black);
    
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-wrapper .video-thumb{
    width:100%;
    position: relative;
    z-index: 1;
    opacity: 1;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.video-wrapper:hover img{
    opacity: 0.5;
}

.video-wrapper .video-icon{
    position: absolute;
    z-index: 2;
    
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* @end Video
===================================== */

/* @Footer
===================================== */
#footerWrapper{
	width:100%;
	padding: 1.75em 2.9375em;
    margin-top: 3em;
	position:relative;
	z-index:4;
	overflow: hidden;
    
    color: var(--gray);
    font-size: 0.825rem;
}

#footerWrapper ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    float: none;
    display: inline-block;
    text-align: center;
}

#footerWrapper li {
    list-style: none;
    margin: 0 0.55em;
    padding: 0;
    display: inline-block;
    font-size: 0.875rem;
}

#footerWrapper li:first-child {
    margin-right: 0;
}

#footerWrapper li:last-child {
    margin-left: 0;
}

#footerWrapper a{
    font-size: 0.875rem;
    color: var(--black-blue);
    font-weight: 700;
} 

#footerWrapper a.social{
    color: var(--blue);
    font-size: 1.45rem;
    
    top: 3px;
    position: relative;
} 

#footerWrapper a:hover{
    color: var(--hover);
} 
/* @end Footer
===================================== */

@media only screen and (max-width: 1280px) {
     #navWrapper{
        display: none;
    }
    
    #mobileNav{
        display: block;
    }
    
    #navWrapper ul li {
        padding: 0.75em 0.55em;
    }
    
    #navWrapper ul li a {
        font-size: 0.9rem;
    }
    
    .brand{
        max-width: 125px;
    }
}

@media only screen and (max-width: 720px) {
	html{
		height: 100%;
		width: 100%;
	}
    
    .vertical-align{
        display:inline-block;
    }

    .add-margin-bottom{
        margin-bottom: 2em;
    }  

    
    .form-hero,
    .content-container-left,
    .content-container-right{
        padding:0;
    }
    
    #heroWrapper{
        height: auto;
        padding:3em 1.55em;
    }
    
    #heroWrapper .hero-image{
        max-width: 85%;
    }
    
    #heroWrapper.video-hero .grid-container,
    #heroWrapper .grid-container {
        height: auto;
    }
    
    
    #sectionWrapper {
        padding: 4em 1.55em;
    }
    
    .top-spacer{
        width:100%;
        height: 74px;
        display: block;
    }
    
    #heroWrapper #topHat {
        text-align: left;
        padding-left: 0.55em;
    }
    
    #footer{
        padding:1.75em 1.55em;
    }
    
    #footerWrapper ul {
        float: inherit;
        margin: 0 auto;
    }
   
    #footerWrapper li,
    #footerWrapper .cell{
        text-align: center;
    }
    
    #footerWrapper li {
        display: block;
        margin:0 0 0.25em;
    }
    
    #footerWrapper li:last-child{
        margin: 0;
    }
    
    .border-right {
        border-right: none;
        padding-bottom:2em;
        border-bottom: 1px solid var(--white);
    }
    
    #sectionWrapper .button-row .add-margin-bottom{
        margin-bottom: 0.55em;
    }
    
    .roundie {
        margin: 2em auto;
    }
    
    .card-box-wrapper:last-child {
        margin-bottom: 0;
    }
    
    #sectionWrapper .content-container {
        padding: 0;
    }
    
    .video-wrapper .video-icon {
        width: 60px;
        height:60px;
    }
    
    .reveal {
        min-height: auto;
        width: 95%;
        height: auto;
        left: 2.5%;
        top: 1em !important;
    }
    
}