/*---------------------*/
/* Blue Color: #0c19b9 */
/*---------------------*/
/*-----------------------------------------*/
              /* BASIC SETUP */
/*-----------------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


html,
body {
    background-color: #fff;
    color: #5f5f5f;
    font-family: 'Lato','Arial',sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}
/*-----------------------------------------*/
          /* REUSABLE COMPONENTS */
/*-----------------------------------------*/
.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0px;
    
}

.box {
    padding: 1%;
}
/*-----------------------------------------*/
                /* HEADINGS */
/*-----------------------------------------*/
h1 ,h2 ,h3 {
    font-weight: 300;
    text-transform: uppercase;
    
}

h1 {
    margin: 0;
    word-spacing: 4px;
    color: rgba(240, 248, 255, 0.85);
    font-size: 220%;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #0c19b9;
    content:" ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    font-size: 110%;
    margin-top: 15px;
    margin-bottom: 15px;
}
/*-----------------------------------------*/
                /* PARAGRAPH */
/*-----------------------------------------*/
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    text-align: center;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/*-----------------------------------------*/
                /* ICONS */
/*-----------------------------------------*/

.icon-big {
    font-size: 330%;
    display: block;
    color: #0c19b9;
    text-align: center;
    }

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #0c19b9;
    font-size: 100%;
    margin-right: 10px;
      /*SECRETS TO ALIGN TEXT AND ICONS */
    line-height: 120%;
    vertical-align: middle;
    margin-top: -9px;
} 
/*-----------------------------------------*/
                /* LINKS */
/*-----------------------------------------*/

a:link, a:visited {
    color: #0c19b9;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #0c19b9;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover, a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}
/*-----------------------------------------*/
                /* 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.2s;
    transition: background-color 0.2s,border 0.2s, color 0.2s;
    margin-top: 10px;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    border: 2px solid #0c19b9;
    background-color: #0c19b9;
    color: rgba(240, 248, 255, 0.89);
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 2px solid #0c19b9;
    color: rgba(240, 248, 255, 0.89);
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #1a28d8;
}
.btn-full:hover,
.btn-full:active {
    border: 2px solid #0c19b9;
    color: rgba(240, 248, 255, 0.89);
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 2px solid #0c19b9;
    background-color: #0c19b9;
    color: rgba(240, 248, 255, 0.89);
}

/*-----------------------------------------*/
          /* HEADER*/
/*-----------------------------------------*/
.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 5px;
}
.logo-black {
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
    display: none;
    
}
/*------------------------------------*/
/*------------ MAIN NAVI -------------*/
/*------------------------------------*/

.main-nav {
    float: right;
    list-style: none;
    margin-top: 50px;
    
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
    
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 10px 30px;
    color: #0c19b9;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border: 2px solid #0c19b9;
    border-radius: 8px 8px 8px 8px;
    background-color: #fff;
    -webkit-transition: background-color 0.2s,border 0.2s,color 0.2s;
    transition: background-color 0.2s,border 0.2s,color 0.2s;
    
}

.main-nav li a:hover,
.main-nav li a:active {
    padding: 10px 30px;
    border-radius: 8px 8px 8px 8px;
    border: 2px solid #0c19b9;
    background-color: rgba(90, 154, 242, 0.21);
    
}
/*------------------------------------*/
/*----------- MOBLIE NAVI ------------*/
/*------------------------------------*/

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: white;
}




/*------------------------------------*/
/*----------- STICKY NAVI ------------*/
/*------------------------------------*/
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.94);
    -webkit-box-shadow: 0 2px 2px rgb(208, 208, 208);
    box-shadow: 0 2px 2px rgb(208, 208, 208);
    z-index: 9999;

}

.sticky .main-nav { margin-top: 18px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 17px 0;
    color: #555;
   
}

.sticky .logo { display: none; }

.sticky .logo-black { display: block; }

/*-----------------------------------------*/
                /* FORM */
/*-----------------------------------------*/
.section-sign {
    padding: 10px;
    border-bottom: 2px solid black;
    
}
.contact-form {
    width: 60%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #bebfce;
}

textarea {
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {
    outline: none;
    
}
.form-messages {
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 30px;
    color: #333;
}

.success {
 background-color: rgba(7, 177, 59, 0.75);    
}

.error {
    background-color: rgba(181, 25, 25, 0.81);
}


/*-----------------------------------------*/
                /* FOOTER */
/*-----------------------------------------*/

footer {
    background-color: #282c58;
    padding: 50px;
    font-size: 80%;
}

.footer-nav {
    list-style: none;
    float: left;
    color: aliceblue;
    font-weight: 400;
    
}


.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: #bcbcbc;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #bcbcbc;
}
.social-links li a:link,
.social-links li a:visited {
    font-size: 150%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-google,
.ion-social-instagram {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.ion-social-facebook:hover {
    color:#3b5998;
}

.ion-social-twitter:hover {
    color:#00aced;
}

.ion-social-google:hover {
    color:#dd4b39;
}

.ion-social-instagram:hover {
    color:#3f729b;
}
footer p {
    color: #bcbcbc;
    text-align: center;
    font-size: 90%;
    margin-top: 20px;
}


/*-----------------------------------------*/
                /* ANIMATIONS */
/*-----------------------------------------*/

.js--wp-1,
.js--wp-2,
.js--wp-3
{
    opacity: 0;
    -webkit-animation-duration: 1s;
    text-align: center;
}

.js--wp-4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated
{
    opacity: 1;
}