html {
    width: 100%;
    height: 100%;
}

body { 
    background: url("../assets/images/body-bg.jpg") no-repeat fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Book Antiqua', sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Bookman Old Style', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 24px;
}

a, a:hover, a:focus {
    text-decoration: none;
}

.img-responsive {
    width: 100%;
    height: 100%;
    border-radius: 0.4em;
}
/******************************************************************/
/***************************HOME SECTION***************************/
/******************************************************************/

.brand {
    text-align: center;
    margin: 2em 0;
}

.brand .brand-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 120px;
}

.brand .brand-text {
    margin-left: 2em;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #B21E35;
    padding: .3em 0 .2em 0;
}

.slogan {
    font-size: 20px;
    font-weight: 600;
}

.cards .card {
    background: transparent;
    border-color: #B21E35;
    border-radius: 0.4em;
    text-align: center;
    transition: .3s all ease;
}

.cards .card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cards .card .card-title {
    color: #B21E35;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0.2em;
}

.cards .card .card-text {
    font-size: 18px;
    padding-top: 0.6em;
}

.cards .card .card-text a{
    color: #000000!important;
    padding: 0.1em;
}

.cards .card .btn-visit-site {
    margin-top: 1em;
}

.btn-track {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 999;
    width: 60px;
    height: 60px;
    color: #ffffff;
    font-size: 1.6rem;
    border-radius: 50px;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
    transition: all .3s ease-in-out;
}



