html,
body {
    height:100%;
    font-family: 'Alegreya Sans', sans-serif;
}

.btn {
    transition: all 0.3s ease-in-out;
}

@media(max-width:768px) {
    #header {
        text-align:center;
    }
    #header img {
        margin:20% auto 0;
    }
    #social {
        text-align:center;
    }

    #social hr, #who hr {
        margin:8% auto;
    }
    #who {
        text-align:center;
    }
    #who img {
        margin-top:15%;
    }
    #footer {
        text-align:center;
    }
}

#first {
    padding: 200px;
    border: 2px solid black;
    box-shadow: 0 .3em 1em #000;
}


#social img {
    padding-bottom: 20px;
}

.navbar {
  background-color:rgba(21, 31, 33, 0.5) !important;
  border-bottom: 1px solid #dedede;
  font-family: 'Alegreya Sans', sans-serif;   
}

#navigation,.navbar .navbar-default{
  background-image: url("../img/songofsongs-logo.png");
  background-size: 100% 100%;
}

.navbar .nav .nav-item .nav-link {
  color: #d1d1d1;
}

.navbar .nav .nav-item .nav-link:hover {
  color: #fff;
}

.navbar-toggler {
    color: white;
}

/*HEADER*/

#header {
    background:url('../img/stars-bg.jpg') center center no-repeat;
    background-size:cover;
    height:100%;
    color:white;
    display:flex;
    align-items:center;
}

#header img {
    padding:0 0 20px;
    width:80%;
}

#header .header-right {
    background-color:rgba(0,0,0,0.5);
    padding:30px;
    border-radius:10px;
}

#header .fa {
    margin:5% 0;
}

#header a .fa {
    color:#fff;
}

#header a .fa:hover {
    color:#ccc;
}

/*SOCIAL*/

#social {
    padding:4.25rem 0;
}

#social .fa {
    font-size:1.5em;
    color:#be2835;
    border:2px solid #be2835;
    width:60px;
    height:60px;
    border-radius:30%;
    text-align:center;
    padding:30% 0;
    margin-top:10px;
    transition:all 0.4s ease-in-out;
}

#social .fa:hover {
    color:#fff;
    background:#be2835;
}

/*WHO*/

#who {
    padding:5rem 0;
    background-color:#f6f6f6;
}

#who .btn-who {
    background-color: #47be09;
    color:#fff;
    width:50%;
}

#who .btn-who:hover {
    background-color:transparent;
    border:1px solid #be2835;
    color:#be2835;
}

/*WORK*/

#booklist {
    padding:5rem 0;
}

#booklist .work-img {
    position:relative;
}

#booklist .work-img .img-overlay {
    position:absolute;
    top:0;
    left:0;
    background-color:rgba(0,0,0,0.5);
    width:100%;
    height:100%;
    background-image: url('../img/eye.png');
    background-position:center center;
    background-repeat:no-repeat;
    opacity:0;
    z-index:0;
    padding-bottom: 10px;
    transition:all 0.3s ease-in-out;
}

#booklist .work-img .img-overlay:hover {
    opacity:1;
    z-index:1;
}

/*WHY*/

#why {
    padding:5rem 0;
    background-color:#f6f6f6;
}

#why .fa {
    color:#be2835;
    padding:15px 0;
}

/*CUSTOMERS*/

#customers {
    padding:5rem 0;
    overflow:hidden;
}

#customers .carousel-indicators li {
    background-color:#be2835;
}

#customers .carousel-inner {
    margin-bottom:50px;
}

#customers .carousel-indicators {
    margin-bottom:-50px;
}

/*PRICING*/

#pricing {
    padding:5rem 0;
    background-color:#f6f6f6;
}

#pricing .card .card-header {
    background-color:#6e6e6e;
    color:#fff;
    transition:all 0.2s ease-in-out;
}

#pricing .card .standard {
    background-color:#be2835;
    font-size:1.3em;
    padding:15px 0;
}

#pricing .card .card-header:hover {
    background-color:#be2835;
}

/*CONTACT*/

#contact {
    padding:5rem 0;
}

/*FOOTER*/

#footer {
    padding:2rem 0;
    background-color:#484848;
    color:white;
}

#footer a {
    color:white;
}

#footer .fa {
    padding:0 5px;
}

.blinking {
    animation: blinkingText 3s infinite;
}


.blinking1 {
    animation: blinkingText 1s infinite;
}

@keyframes blinkingText {
    0% {
        color: red;
    }
    49% {
        color: transparent;
    }
    50% {
        color: transparent;
    }
    99% {
        color: transparent;
    }
    100% {
        color: red;
    }
}


#body-row {
    margin-left:0;
    margin-right:0;
}

#sidebar-container {
    min-height: 100vh;
    background-color: white;
    padding: 0;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
    width: 230px;
}
.sidebar-collapsed {
    width: 60px;
}

/* Menu item*/
#sidebar-container .list-group a {
    height: 50px;
    color: black;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
    height: 45px;
    padding-left: 30px;
}
.sidebar-submenu {
    font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
    /*background-color: #333;*/
    height: 35px;
}
.sidebar-separator {
    /*background-color: #333;*/
    height: 25px;
}
.logo-separator {
    /*background-color: #333;    */
    height: 60px;
}

/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
    content: " \f0d7";
    font-family: FontAwesome;
    display: inline;
    text-align: right;
    padding-left: 10px;
}
/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
    content: " \f0da";
    font-family: FontAwesome;
    display: inline;
    text-align: right;
    padding-left: 10px;
}

#body-col {
    background-color: #333;
}


#tabs li {
    display:inline;
    padding-top:30px;
    margin-left: 30px;
}


nav a {
    color: #ffffff;
}

nav a:hover {
    color: red;
    text-decoration: underline;
}

section div{
    padding: 0px;
}
