/* --------------------------------------*/
/* Global styles                         */
/* --------------------------------------*/
html {
    position: relative;
    min-height: 100%;

    font-size: 14px;
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
}

a {
    color: #cc0000;
}

a:hover {
    color: #66000;
}

h1, h2, h3, h4, h5, h6 {
    color: #7b7b7b !important;
    font-weight: 300 !important;
}

.pink {
    color:#cc0000;
}

.pink-bg {
    background-color: #cc0000;
}

.divider {
    position: relative;
    margin-top: 60px;
    margin-bottom: 30px;
    height: 1px;
}
@media (max-width: 768px) {
    .divider {
        margin-top: 40px;
        margin-bottom: 10px;
    }
}

.div-transparant:before {
    content: "";
	position: absolute;
	top: 0;
	left: 2%;
	right: 2%;
	width: 96%;
	height: 1px;
	background-color: #d8d8d8;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.border-top {
    border-top: 1px solid #e5e5e5;
}
.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

/* Tile styles */

.tile {
    width: 100px;
    height: 100px;
    background-color: #cc0000;

    transition-duration: 300ms;
}

.tile:hover {
    background-color: #660000;
    transform: scale(1.1);
}

.tile-img {
    max-width: 100%;
    max-height: 100%;
}

/* Sticky footer */

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.social {
    font-size: 26px;
    margin-right: 4px;
    line-height: 60px; /* Vertically center the text there */

    transition-duration: 300ms;
}

.social:hover {
    transform: translateY(-2px);
}