
/* Body & Body related */
body{
    padding-top: 70px;
    color: #1f1f1f;
    background-color: #ffffff;
    font-family: "Lato", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif
}
h1,
button .btn {
  font-family: "Montserrat", sans-serif
}
h1{font-size: 4em}
h2{font-size: 3em}
h3{font-size: 2.35em}
h4{font-size: 2em}
h5{font-size: 1.66em}
h6{font-size: 1.33em}
.row p{
    text-align: justify;
    font-size: 20px;
    width: 100%;
}
.row{
    margin: 0px;
}
.tab{
    text-indent: 2em;
}
/* Header = Navigation Bar */
.navbar{
    font-family: "Lato";
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0px;
    border-radius: 0px;
    background-color: #3b3b3b;  
    border: 0px;
    box-shadow: 0px 5px 30px 0px rgb(0,0,0,0.75);
    /* Fixed at top */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.container-fluid{
    max-width: 1200px;
}
/* Navbar Logo */
.navbar-brand{
    height: 60px;
    float: left;
    padding: 0 0 0 0;
}
.header-logo {
    height: 100%;
}

/* Small Menu Icon with Bars */
.navbar-inverse .navbar-toggle, .navbar-inverse .navbar-toggle:active, .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover{
    background-color: white;
    border: 2px solid black;
    margin-top: 15px;
}
/* Icon Bars */
.navbar-inverse .navbar-toggle .icon-bar{
    background-color: black;
}

/* Menu Items */
.navbar-inverse .navbar-nav li a {
    color: #aaaaaa;
    margin: 5px 5px 0px 5px;
}
.navbar-inverse .navbar-nav li a:hover {
    color: white;
    border-bottom: 5px solid white;
}
.navbar-inverse .navbar-nav .active a, .navbar-inverse .navbar-nav .active a:focus, .navbar-inverse .navbar-nav .active a:hover{
    color: black;
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 5px solid white;
}

.page-content{
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

/* Footer */
footer {
    width: 100%;
    color: white;
    background-color: #3b3b3b;
    padding: 1%;
    font-family: Verdana;
    box-shadow: 0px -5px 30px 0px rgb(0,0,0,0.75);
    margin-top: 30px;
}
.footer-title{
    font-size: 24px;
}
.footer-col-left, .footer-col-right{
    display: inline-block; 
    width:45%;
}
.fa, .fa:active, .fa:focus{
    margin: 4px;
    min-width: 44px;
    padding: 8px;
    font-size: 30px;
    color: #ffffff;
    text-decoration: none;
}
.fa:hover{
    text-decoration: none;
    border: 0px solid white;
    border-radius: 10px;
    color: #ffffff;
}
.fa-facebook:hover {
    background-color: #4267b2;
}
.fa-twitter:hover{
    background-color: #1da1f2;
}
.fa-google:hover{
    background-color: #db4437;
}
.fa-linkedin:hover{
    background-color: #0077B5;
}
.fa-youtube:hover{
    background-color: red;
}
.fa-envelope-open:hover{
    background-color: #0f50b3;
}

/* Media */
@media(max-width: 1050px){
    .row p{
        font-size: 16px;
    }
    h1{font-size: 3.1em}
    h2{font-size: 2.35em}
    h3{font-size: 1.8em}
    h4{font-size: 1.45em}
    h5{font-size: 1.3em}
    h6{font-size: 1em}
    #rotate-infinite{
        width: 150px;
    }
    .fa, .fa:active, .fa:focus, .fa:hover{
        min-width: 39px;
        font-size: 25px;
        margin: 2px;
    }
    .footer-title{
        font-size: 20px;
    }
}
@media(max-width: 768px){
    .fa, .fa:active, .fa:focus, .fa:hover{
        min-width: 35px;
        font-size: 20px;
        border-radius: 8px;
    }
    .footer-title{
        font-size: 16px;
    }
    #rotate-infinite{
        width: 120px;
    }
    /* Menu Items */
    .navbar-inverse .navbar-nav li a {
        color: #aaaaaa;
        border-radius: 10px 10px 10px 10px;
    }
    .navbar-inverse .navbar-nav .active a, .navbar-inverse .navbar-nav .active a:focus, .navbar-inverse .navbar-nav .active a:hover{
        color: black;
        background-color: white;
        border-bottom: 0px;
    }
}
@media(max-width: 600px){
    .row p{
        font-size: 14px;
    }
    h1{font-size: 2.6em}
    h2{font-size: 2em}
    h3{font-size: 1.45em}
    h4{font-size: 1.3em}
    h5{font-size: 1.1em}
    h6{font-size: 0.9em}
    .fa, .fa:active, .fa:focus, .fa:hover{
        min-width: 32px;
        padding: 6px;
    }
    #rotate-infinite{
        width: 100px;
    }
}
@media(max-width: 450px){
    .footer-col-left{
        width: 30%;
    }
    .footer-col-right{
        width: 60%;
    }
    .header-logo{
        height: 80%;
        margin-top: 10px;
    }
}

/* Animation - Rotate */
#rotate-infinite {
    -webkit-animation: rotation 10s infinite linear;
}
@-webkit-keyframes rotation {
    from {
            -webkit-transform: rotate(0deg);
    }
    to {
            -webkit-transform: rotate(359deg);
    }
}