/* === Navigation === */

.navbar {
    margin-bottom: 30px;
}

.navbar-right {
    padding-top: 5px;
}

.navbar-default,
.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #323232;
}

.navbar-default .navbar-brand {
    color: #53bceb;
    font-size: 24px;
}

.navbar-default .navbar-brand:hover {
    color: #ffffff;
}

.navbar .fa {
    font-size: 30px;
    color: #53bceb;
}

.navbar-nav>li>a {
    padding: 4px;
}


/* === Body section === */

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Verdana', sans-serif;
    margin-bottom: 60px;
}

p {
    font-size: 18px;
}

#faqs {
    margin-top: 30px;
}

.vertical-align {
    display: flex;
    align-items: center;
}

td {
    font-size: 15px;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
    background-color: #d9edf7;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    color: #53bceb;
    background-color: #323232;
}

.img-circle {
    transition: all .2s ease-in-out;
}

.img-circle:hover {
    transform: scale(1.2) rotate(360deg);
}

.separator {
    margin-top: 40px;
    border: 1px solid #d9edf7;
}


/* === Responsive === */


/* xs only */

@media only screen and (max-width: 767px) {
    body {
        margin-bottom: 160px;
    }

    .footer {
        height: 160px;
    }

    .navbar-default .navbar-nav>li>a {
        margin-left: 10px;
    }

    .navbar-default .navbar-nav>li:first-child>a {
        margin-top: 8px;
    }

    .navbar-default .navbar-nav>li:last-child>a {
        margin-left: 6px;
        margin-bottom: 18px;
    }
}


/* xs and sm */

@media only screen and (max-width: 991px) {
    .my-sites {
        margin-bottom: 30px;
    }
}