﻿body, html {
    font: 400 15px Lato, sans-serif;
    line-height: 1.8;
    color: #696969;
    position: relative;
}

h1 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}

h3 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

h5 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}

h6 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.container-fluid {
    padding: 60px 50px;
}

.container {
    padding: 60px 50px;
}

.bg-grey {
    background-color: #f2f2f2;
}

.navbar {
    margin-bottom: 0;
    background-color: #69acac;
    color: #fff;
    z-index: 9999;
    border: 0;
    font-size: 16px !important;
    line-height: 1.42857143 !important;
    letter-spacing: 2px;
    border-radius: 0;
    font-family: Montserrat, sans-serif;
}

nav a {
    color: #fff !important;
}

.navbar-nav li a:hover, .active {
    color: #69acac !important;
    background-color: #fff !important;
}

table {
    font-size: 20px;
}

p {
    font-size: 18px;
}

a{
    color: #69acac;
}

.row {
    margin: 15px;
}

/*float anim*/
@keyframes float-l{
    from { transform: translate(-100%); }
    to { left: 100%;}
}
.float-l{
    animation: float-l 1s linear 0s 1 normal forwards; 
}
@keyframes float-r{
    from { transform: translate(100%); }
    to { left: -100%;}
}
.float-r{
    animation: float-r 1s linear 0s 1 normal forwards; 
}