/*
Red color: #A51A28
blue-grey: #7fb7be
light-blue: #d3f3ee
green: #dacc3e
grey: #262730

/* ---------------------------- */
/* Basic Setup */
/* ---------------------------- */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    
    color: #262730;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ---------------------------- */
/* Reusable components */
/* ---------------------------- */


.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    background-color: #fff;
    margin: 0;
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* -----HEADINGS -----*/

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
    word-spacing: 3px;
}

h1 {
    margin: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    letter-spacing: 1px;
}
h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after   {
    display: block;
    height: 3px;
    background-color: #7fb7be;
    content: " ";
    width: 200px;
    margin: 0 auto;
    margin-top: 25px;
}

h3 {
    font-size: 120%;
    font-weight: 400;
    margin-bottom: 15px;
    height: 40px;
}

h4 {
    font-size: 100%;
    font-weight: bold;
    margin-bottom: 5px;
}

h5 {
    font-weight: bold;
    font-size: 90%;
    margin-top: 10px;
}




/* ------- PARAGRAPHS ------*/
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    
}
.box p {
    font-size: 90%;
    line-height: 145%;    
}

/* ------- ICONS ------*/
.icon-big {
    font-size: 300%;
    display: block;
    color:  #A51A28;
    margin-bottom: 10px;
}
.icon-small {
    color: #A51A28;
    display: inline-block;
    width: 30px;
    text-align: center;
    font-size: 120%;
    
    /* secrets to alight text and icons*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 10px;
    
    
    
}


/* -------LINKS ------*/

a:link,
a:visited {
    color: #A51A28;
    text-decoration: none;
    padding: 1px;
    border-bottom: 1px solid #A51A28;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
    
}
a:hover,
a:active {
    color: #333333;
    border-bottom: 1px solid transparent;
    
}

body a:link,
body a:visited {
    color: #507074;
    border-bottom: 1px solid #507074;

}

/* -------BUTTONS ------*/

.btn:link,
.btn:visited, 
input[type="submit"] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.1s;
    transition: background-color 0.2s, border 0.2s, color 0.1s;
}

.btn-full:link,
.btn-full:visited, 
input[type="submit"] {
    background-color: #A51A28;
    border: 1px solid #A51A28;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #A51A28;
    color: #d92638;
}

.btn:hover,
.btn:active,
input[type="submit"]:hover,
input[type="submit"]:active {
    background-color: #9a1724;
}

.btn-full:hover,
.btn-full:active    {
    background-color: #9a1724;
    border: 1px solid #A51A28;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #A51A28;
    color: #fff;
}


.section-events .btn-full:link,
.section-events .btn-full:visited, 
input[type="submit"] {
    background-color: #7fb7be;
    border: 1px solid #7fb7be;
}

.section-events .btn:hover,
.section-events .btn:active,
input[type="submit"]:hover,
input[type="submit"]:active {
    background-color: #6aa1a8;
}



/* ---------------------------- */
/* Header */
/* ---------------------------- */

header {
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.6)),to(rgba(0, 0, 0, 0.7))),url();
    background-image: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.7)),url(img/hero.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    
     
}


.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 63%;
    left: 55%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.logo {
    height: 250px;
    width: auto;
    float: left;
    margin-top: 20px;
}
.logos {
    float: left;
}

.logo-black{ 
    display: none;
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;

    
}

/* Main-navi */

.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
    
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #A51A28;
}

/* mobile navi */
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/* sticky navi */
.sticky {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 2px #f0f0f0;
    z-index: 9999; 
}



.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
}

.sticky .logo { display: none; }
.sticky .logo-black {display: block; }

.sticky .main-nav {

    margin-top: 18px;
    
}
.UL {
    float: right;
}
.UL li {
    margin-right: 10px;
}
.drop{
    float: right;
    
}

/* ---------------------------- */
/* SERVICES */
/* ---------------------------- */
.section-services .long-copy {
    margin-bottom: 30px;
}

/* ---------------------------- */
/* Events */
/* ---------------------------- */

.section-events {
    background-color: #f4f4f4;
}

.events-box {
    margin-top: 30px;
    margin-bottom: 50px;
}

.events-box p{
    margin-bottom: 15px;
}

.events-box:first-child {
    text-align: right;
    padding-right: 3%;
    padding-top: 10px;
}

.events-box:last-child {
    text-align: left;
    padding-left: 3%;
    

}
.event-logo {
    width: 50%;
}


.events-step {
    margin-bottom: 10px;
}

.events-step:last-of-type {
    margin-bottom: 30px;
}
.events-step::before{
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.events-step div {
    color: #A51A28;
    border: 2px solid #A51A28;
    display: inline-block;
    border-radius: 5%;
    height: 25px;
    width: auto;
    text-align: center;
    vertical-align: middle;
    padding: 0px 6px 0px 6px;
    font-size: 18px;
    margin-right: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.centered {
    display: inline-block;
    vertical-align: middle;
}

.btn-register:link,
.btn-register:visited {
    border: none;
}

.btn-register img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}


/* ---------------------------- */
/* Training */
/* ---------------------------- */


.section-training h3,
.section-training h4{
    text-align: center;
    margin-top: 40px;
}
.section-training {
    
}
.training-week {
    margin:  0 25%;
  
}


.training-day {
    margin-top: 20px
}

.training-day p {
    padding-top: 15px;
    margin-left: 80px;
}

.training-day div{
    color: #7fb7be;
    border: 2px solid #7fb7be;
    display: inline-block;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    letter-spacing: -1px;
    padding: 7px;
    float: left;
    font-size: 150%;
    margin-right: 25px;
}

.training-gear {
    display: block;
}

.training-gear h2 {
    margin-top: 80px;
}
.training-gear img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    height: 80px;
    width: auto;
    
}


/* ---------------------------- */
/* EVENTS */
/* ---------------------------- */
/**
.section-events {
    padding: 50px;
}

.events-showcase {
    list-style: none;
    width: 100%;
    
}

.events-showcase li {
    display: block;
    float: left;
    width: 33.33%;
}

.event-photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

.event-photo img {
    opacity: 0.6;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: opacity 0.4s, -webkit-transform 0.5s;
    transition: opacity 0.4s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.4s;
    transition: transform 0.5s, opacity 0.4s, -webkit-transform 0.5s;
    
}

.event-photo img:hover {
    opacity: 1;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    
}

/* ---------------------------- */
/* ADDRESS */
/* ---------------------------- */

.address{
    width: 20%;
    line-height: 140%;
    font-size: 120%;
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------- */
/* FORM */
/* ---------------------------- */

.section-form {
     background-color: #f4f4f4;
}

.section-form .long-copy {
    margin-bottom: 30px;
}

.contact-form {
    width: 60%;
    margin: 0 auto;
    ;
    
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
    
}


textarea {
    height: 100px;
}

input[type="checkbox"] {
    margin: 10px 5px 10px 0;
    
}

*:focus {outline: none;}

.form-messages {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    color: #333;
}

.success {background-color: rgba(46, 204, 113, 0.5);}

.error {background-color: rgba(231, 76, 60, 0.5)}

/* ---------------------------- */
/* Footer */
/* ---------------------------- */
footer {
    background-color: #262730;
    color: #e3e3e3;
    padding: 0px;
    font-size: 80%;
    margin: 0;
    overflow-y: hidden;
}


footer a:hover,
footer a:active,
footer a:link,
footer a:visited {
    border-bottom: none;
}

footer a:hover,
footer a:active {
    color: #888;
}



.social-links {
    list-style: none;
    float:right;
    
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    
}

.footer-nav li a:hover,
.footer-nav li a:active, {
    color: #ededed;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 150% 
}

.ion-social-facebook
.ion-social-twitter
.ion-social-googleplus
.ion-social-instagram
.ion-android-mail
.ion-android-call{
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.ion-social-facebook:hover {
    color: #3b5998;
}
.ion-social-twitter:hover {
    color: #55acee;
}
.ion-social-googleplus:hover {
    color: #dd4b39;
}
.ion-social-instagram:hover {
    color: #e95950;
}
.ion-android-mail:hover {
    color: #EA4335;
}
.ion-android-call:hover {
    color: #34A853;
}

footer p {
    color: #888;
    font-size: 90%;
    text-align: center;
    margin-top: 20px;
}

.footer-top {
    background-color: #fff;
    width: 100%;
    padding: 0px;
    border: 10px;   
    
}
footer img {
    width: 100%;
    position: relative;
    top: 5px;
}

/* ---------------------------- */
/* Animations */
/* ---------------------------- */

.js--wp-1,
.js--wp-2,
.js--wp-3{
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-4 {-webkit-animation-duration: 1s;animation-duration: 1s}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
    opacity: 1;
} 





