/*Body*/

.shelf[data-shelf="body"] {
padding-top: 0;
}

/*Body: Menu*/

.shelf[data-shelf="body-menu"] .center-container {
display: flex;
flex-direction: row;
justify-content: center;
background: #fff;
}

.section-menu-item {
position: relative;
flex: 1;
flex-direction: row;
display: inline-block;
text-align: center;
text-decoration: none;
padding-top: 40px;
min-height: 50px;
}

.section-menu-item:before {
content: "\f005";
position: absolute;
top: 30px;
left: 50%;
font-family: "Font Awesome\ 5 Free";
font-size: 14px;
line-height: 14px;
font-weight: 900;
color: #3c49a9;
margin-left: -7px;
-webkit-transition: all ease 300ms;
-moz-transition: all ease 300ms;
-o-transition: all ease 300ms;
transition: all ease 300ms;
z-index: 10;
}

.section-menu-item:hover:before {
font-size: 20px;
line-height: 20px;
margin-left: -10px;
}

.section-menu-item-arrow {
display: none;
position: absolute;
top: -10px;
left: 50%;
width: 100%;
height: 100px;
margin-left: -100px;
z-index: 5;
}

.section-menu-item-arrow:before {
content: "";
position: absolute;
top: -2px;
left: 0;
width: 0;
height: 0;
border-width: 50px 100px 0;
border-color: #a63b3b transparent transparent;
border-style: solid;
-webkit-transition: all ease 200ms;
-moz-transition: all ease 200ms;
-o-transition: all ease 200ms;
transition: all ease 200ms;
z-index: 5;
}

.section-menu-item-arrow:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-width: 40px 100px 0;
border-color: #3c49a9 transparent transparent;
border-style: solid;
-webkit-transition: all ease 300ms;
-moz-transition: all ease 300ms;
-o-transition: all ease 300ms;
transition: all ease 300ms;
z-index: 10;
}

.section-menu-item:hover .section-menu-item-arrow:before {
border-width: 55px 100px 0;
}

.section-menu-item:hover .section-menu-item-arrow:after {
border-width: 45px 100px 0;
}

.section-menu-item-title {
display: inline-block;
font-family: 'Cubano';
font-size: 26px;
line-height: 26px;
color: #3c49a9;
text-transform: uppercase;
padding: 20px 10px;
}

/*Body: Sections*/

.home-section {
position: relative;
display: block;
float: left;
width: 100%;
height: auto;
min-height: 100vh;
}

.home-section:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}

.home-section[data-color="blue"]:after {
background-color: rgba(60, 73, 169, 0.8);
}

.home-section[data-color="red"]:after {
background-color: rgba(169, 60, 60, 0.8);
}

.home-section .section-row {
position: relative;
float: left;
display: block;
width: 100%;
padding: 30px;
z-index: 1;
}

.home-section .section-row[data-row="image"] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
z-index: 0;
}

.home-section .section-row[data-row="header"] {
margin: 40px 0 0 0;
}

.home-section .section-row-section {
position: relative;
display: inline-block;
float: left;
width: 100%;
vertical-align: top;
}

.home-section .section-row-section[data-section="intro"] {
width: 50%;
padding: 0 10%;
}

.section-intro-title {
position: relative;
top: 60px;
display: block;
font-family: 'Cubano';
font-size: 80px;
line-height: 80px;
color: #fff;
text-transform: uppercase;
margin-bottom: 20px;
-webkit-transition: top ease 1;
-moz-transition: top ease 1s;
-o-transition: top ease 1s;
transition: top ease 1s;
}

.section-intro-description {
position: relative;
top: 50px;
display: block;
font-size: 20px;
line-height: 24px;
color: #fff;
-webkit-transition: top ease 1.5s;
-moz-transition: top ease 1.5s;
-o-transition: top ease 1.5s;
transition: top ease 1.5s;
}

.home-section[data-active="true"] .section-intro-title,
.home-section[data-active="true"] .section-intro-description {
top: 0;
}

.section-intro-description p {
display: block;
margin-bottom: 20px;
}

.section-intro-description p:last-child {
margin-bottom: 0;
}

.home-section .section-row-section[data-section="stats"] {
width: 50%;
}

.section-sub-title {
position: relative;
display: block;
width: 100%;
font-family: 'Cubano';
font-size: 25px;
line-height: 25px;
text-transform: uppercase;
color: #fff;
margin-bottom: 20px;
}

.section-sub-title:before {
content: "";
position: relative;
display: inline-block;
top: 8px;
background: #fff;
width: 10px;
height: 10px;
opacity: 0;
margin-right: 0;
vertical-align: top;
-webkit-transition: all 1s ease 500ms;
-moz-transition: all 1s ease 500ms;
-o-transition: all 1s ease 500ms;
transition: all 1s ease 500ms;
}

.home-section[data-active="true"] .section-sub-title:before {
width: 100px;
margin-right: 10px;
opacity: 1;
}

.section-stats-list {
display: block;
}

.stats-list-icons {
display: inline-block;
float: left;
vertical-align: top;
width: 60px;
text-align: center;
margin-right: 40px;
}

.stat-item-icon {
position: relative;
display: inline-block;
width: 100%;
height: 60px;
cursor: pointer;
margin-bottom: 5px;
border: 1px solid transparent;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-transition: all ease 200ms;
-moz-transition: all ease 200ms;
-o-transition: all ease 200ms;
transition: all ease 200ms;
}

.stat-item-icon:hover {
border-color: rgba(255, 255, 255, 0.2);
}

.stat-item-icon.active {
border-color: rgba(255, 255, 255, 1);
}

.stat-item-icon > * {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}

.stat-item-icon i {
font-size: 22px;
line-height: 22px;
color: #fff;
}

.stat-item-icon img {
max-width: 90%;
}

.stats-list-data {
position: relative;
display: inline-block;
float: left;
vertical-align: top;
width: calc(100% - 100px);
}

.stat-item-data {
position: absolute;
top: 0;
left: -10px;
width: 100%;
opacity: 0;
-webkit-transition: all ease 200ms;
-moz-transition: all ease 200ms;
-o-transition: all ease 200ms;
transition: all ease 200ms;
z-index: -1;
}

.stat-item-data.active {
left: 0;
opacity: 1;
z-index: 1;
}

.stat-item-largetext {
display: block;
font-family: 'Cubano';
font-size: 130px;
line-height: 130px;
color: #fff;
margin: -23px 0 10px 0;
}

.stat-item-smalltext {
display: block;
font-family: 'Cubano';
font-size: 20px;
line-height: 20px;
color: #fff;
text-transform: uppercase;
margin-left: 10px;
}

.section-row-section[data-section="opportunities"] {
display: block;
width: 100%;
padding: 0 10%;
}

.section-opp-list {
position: relative;
display: flex;
flex-direction: row;
width: 100%;
}

.opp-item {
display: inline-block;
float: left;
width: 33.3%;
text-decoration: none;
margin-right: 10px;
overflow: hidden;
background: rgba(255, 255, 255, 0.1);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
opacity: 0;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
-webkit-transition: all ease 500ms;
-moz-transition: all ease 500ms;
-o-transition: all ease 500ms;
transition: all ease 500ms;
}

.home-section[data-active="true"] .opp-item {
-webkit-animation: opacityFade ease-in 1;
-moz-animation: opacityFade ease-in 1;
animation: opacityFade ease-in 1;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-duration: 500ms;
-moz-animation-duration: 500ms;
animation-duration: 500ms;
-webkit-animation-delay: 1.5s;
-moz-animation-delay: 1.5s;
animation-delay: 1.5s;
}

.home-section[data-active="true"] .opp-item:nth-child(2n){
-webkit-animation-delay: 1.7s;
-moz-animation-delay: 1.7s;
animation-delay: 1.7s;
}

.opp-item:last-child {
margin-right: 0;
}

.opp-item:hover {
background: rgba(255, 255, 255, 0.3);
}

.opp-item-content {
display: block;
padding: 20px;
text-align: center;
}

.opp-item-button {
display: inline-block;
font-size: 18px;
line-height: 18px;
font-weight: 600;
background-color: #fff;
text-transform: uppercase;
padding: 15px 20px 11px 20px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.home-section[data-color="blue"] .opp-item-button {
color: rgba(60, 73, 169, 1);
}

.home-section[data-color="red"] .opp-item-button {
color: rgba(169, 60, 60, 1);
}

/*Newsletter form*/

.mc4wp-form {
width: 100%;
text-align: center;
background: transparent;
padding: 40px 20px;
}

.mc4wp-form .mc4wp-form-fields {
display: inline-block;
width: 100%;
max-width: 600px;
margin: 0 auto;
}

.mc4wp-form .newsletter-form-title {
display: block;
width: 100%;
font-family: 'Cubano';
font-size: 35px;
line-height: 35px;
color: #515151;
text-align: center;
margin-bottom: 5px;
}

.mc4wp-form .newsletter-form-subtitle {
display: block;
width: 100%;
font-size: 18px;
line-height: 18px;
color: #515151;
text-align: center;
margin-bottom: 20px;
}

.mc4wp-form fieldset {
float: none;
clear: none;
display: inline-block;
width: auto;
overflow: hidden;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.mc4wp-form fieldset input,
.mc4wp-form fieldset button {
border: 0;
margin: 0;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
}

.mc4wp-form fieldset input {
position: relative;
display: inline-block;
width: 250px !important;
font-size: 16px;
line-height: 20px;
vertical-align: top;
background: #fff;
padding: 15px;
z-index: 10;
}

.mc4wp-form fieldset input::-webkit-input-placeholder {color: #aaa;}
.mc4wp-form fieldset input:-moz-placeholder {color: #aaa;}
.mc4wp-form fieldset input::-moz-placeholder {color: #aaa;}
.mc4wp-form fieldset input:-ms-input-placeholder {color: #aaa;}

.mc4wp-form fieldset input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px #fff inset;
-moz-box-shadow: 0 0 0 1000px #fff inset;
box-shadow: 0 0 0 1000px #fff inset;
-webkit-text-fill-color: #515151;
}

.mc4wp-form fieldset button {
position: relative;
display: inline-block;
font-size: 18px;
line-height: 50px;
vertical-align: top;
background: #3c49a9;
padding: 0 20px;
cursor: pointer;
z-index: 20;
}

.mc4wp-form fieldset input:focus {outline: none;}
.mc4wp-form fieldset input::-moz-focus-inner {outline: none;}
.mc4wp-form fieldset button:focus {outline: none;}
.mc4wp-form fieldset button::-moz-focus-inner {outline: none;}

/*Social*/

#social-home-widget {
float: left;
width: 100%;
margin-top: 50px;
}

#social-home-widget .center {
width: 300px;
min-width: 300px;
}

#social-home-widget h4 {
float: left;
width: 100%;
margin-bottom: 10px;
color: #4d4d4d;
font-family: OriyaBold, sans-serif;
font-size: 20px;
line-height: 20px;
text-align: center;
}

#social-home-widget ul {
float: left;
width: 100%;
background: #f2f2f2;
padding: 10px 5%;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

#social-home-widget li {
float: left;
width: 25%;
list-style-type: none;
}

#social-home-widget a {
position: relative;
float: left;
width: 100%;
height: 50px;
text-indent: -9999px;
}

#social-home-widget a:before {
position: absolute;
top: 0;
left: 0;
width: 100%;
display: inline-block;
font-family: "Font Awesome\ 5 Brands";
font-size: 25px;
line-height: 50px;
text-indent: 0;
color: #515151;
text-align: center;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all ease 200ms;
-moz-transition: all ease 200ms;
-o-transition: all ease 200ms;
transition: all ease 200ms;
}

#social-home-widget a:hover:before,
#social-home-widget a:active:before {
color: #000;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}

#social-home-widget a[title~="Twitter"]:before {
content: "\f099";
}

#social-home-widget a[title~="Instagram"]:before {
content: "\f16d";
}

#social-home-widget a[title~="Facebook"]:before {
content: "\f39e";
}

#social-home-widget a[title~="Vimeo"]:before {
content: "\f27d";
}

/*Instagram*/

#ig-widget {
float: left;
width: 100%;
margin: 50px 0;
}

#ig-widget #ig-header {
float: left;
width: calc(100% - 20px);
margin-bottom: 20px;
margin-left: 10px;
}

#ig-header-iglogo,
#ig-header-handle,
#ig-header-follow {
float: left;
width: auto;
margin-right: 20px;
}

#ig-header-iglogo a,
#ig-header-iglogo img,
#ig-header-follow a,
#ig-header-follow img {
float: left;
width: auto;
border: 0;
}

#ig-header-handle a {
font-size: 20px;
line-height: 48px;
font-weight: bold;
color: #000;
font-family: Arial, sans-serif;
}

#ig-header-follow {
margin-top: 12px;
}

#ig-photos {
float: left;
width: 100%;
}

.ig-item {
float: left;
width: 180px;
height: 180px;
margin: 10px;
}

.ig-item a {
position: relative;
float: left;
width: 160px;
height: 160px;
padding: 10px;
background: #f2f2f2;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
-o-transition: all ease 0.5s;
transition: all ease 0.5s;
border: 0;
}

.ig-item img {
position: relative;
float: left;
width: 100%;
height: auto;
z-index: 1;
border: 0;
}

.ig-item span {
position: absolute;
width: 110%;
top: 0;
left: -10%;
opacity: 0;
background: rgba(0,0,0,.6);
font-size: 13px;
line-height: 14px;
color: #fff;
padding: 10px 5%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
z-index: 2;
-webkit-transition: all ease 1s;
-moz-transition: all ease 1s;
-o-transition: all ease 1s;
transition: all ease 1s;
}

.ig-item:hover a {
padding: 0;
width: 180px;
height: 180px;
}

.ig-item:hover span {
opacity: 1;
top: -40px;
}

/*Sponsor Logos*/

#sponsor-logos {
position: relative;
display: block;
float: left;
width: 100%;
text-align: center;
padding: 40px 0;
}

#sponsor-logos-title {
display: block;
width: 100%;
font-family: 'Cubano';
font-size: 30px;
line-height: 30px;
color: #515151;
margin-bottom: 5px;
}

#sponsor-logos-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 800px;
max-width: 100%;
margin: 0 auto;
}

.sponsor-logo {
flex: 1 0 calc(25% - 40px);
display: inline-block;
margin: 10px 20px;
}

.sponsor-logo a {
display: block;
position: relative;
top: 50%;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}

.sponsor-logo img {
display: inline-block;
width: auto;
height: auto;
max-width: 100%;
max-height: 100px;
opacity: 0.7;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all ease 300ms;
-moz-transition: all ease 300ms;
-o-transition: all ease 300ms;
transition: all ease 300ms;
}

.sponsor-logo:hover img {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1.1);
}

@media all and (max-width: 900px){

.shelf[data-shelf="header"][data-loaded="true"] .shelf[data-shelf="header-callout"] #h-callout-container {
top: 50px;
}

.shelf[data-shelf="body-menu"] .center-container {
flex-wrap: wrap;
padding: 0 20px;
}

.section-menu-item {
padding-top: 0;
}

.section-menu-item-arrow {
display: none;
top: -60px;
left: 0;
}

.section-menu-item:before {
top: 0;
font-size: 14px;
line-height: 14px;
}

.section-menu-item-title {
font-size: 20px;
line-height: 20px;
}

.home-section .section-row-section {
width: 100% !important;
padding: 0 !important;
margin-bottom: 60px;
}

.home-section .section-row-section:last-child {
margin-bottom: 0;
}

.home-section .section-row[data-row="image"] {
background-attachment: local;
}

.home-section .section-row[data-row="header"] {
margin: 0;
}

.home-section[data-active="true"] .section-sub-title:before {
width: 20px;
}

.stats-list-icons {
margin-right: 20px;
}

.stats-list-data {
width: calc(100% - 80px);
}

.stat-item-largetext {
font-size: 90px;
line-height: 90px;
margin-top: -17px;
}

.section-opp-list {
display: block;
}

.opp-item {
width: 100%;
margin-bottom: 20px;
}

.sponsor-logo {
flex: 1 0 calc(33% - 40px);
margin: 10px 20px;
}

}

@media all and (max-width: 800px){

.section-menu-item-arrow {
left: 0;
}

}

@media all and (max-width: 700px){

.section-menu-item-arrow {
left: -2vw;
}

}

@media all and (max-width: 600px){

.section-menu-item-arrow {
left: -4vw;
}

}

@media all and (max-width: 500px){

.section-menu-item-arrow {
left: -8vw;
}

}

@media all and (max-width: 450px){

.section-menu-item-arrow {
left: -11vw;
}

}

@-webkit-keyframes opacityFade {
    from {
        opacity: 0;
        opacity: 1\9;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes opacityFade {
    from {
        opacity: 0;
        opacity: 1\9;
    }
    to {
        opacity: 1;
    }
}

@keyframes opacityFade {
    from {
        opacity: 0;
        opacity: 1\9;
    }
    to {
        opacity: 1;
    }
}
