* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    /* background-color: black; */
}


/* ====================
# Top Bar
========================*/
#topbar {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.337);
    height: 2rem;
    line-height: 2rem;
    font-size: .9rem;
    z-index: 2;
    
}
#topbar .contact a{
    color: white;
    font-weight: 500;
    margin-left: 2rem;
}
#topbar .social i {
    color: whitesmoke;
    margin-left: 1.5rem;
}
/* ====================
# End of Top Bar
========================*/

/* ====================
# Header Section
========================*/
header {
    position: absolute;
    z-index: 2;
    background: transparent;
    width: 100%;
    margin: 0;
    padding: 0;
    top: 2.5rem;
}
header nav {
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: space-around;    
}
header nav .list {
    line-height: 4rem;
}
header nav .list a {
    font-weight: 500;
    margin-left: 6rem;
    color: whitesmoke;
    text-shadow: 0 1rem 0 0 rgb(0, 0, 0);
}

/* ====================
# End of Header Section
========================*/

/* ====================
# Carousel Section
========================*/
.carousel .carousel-item { 
    height: 100vh;
    width: 100%;
    position: center center;
}
.carousel .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
/* ====================
# End of Carousel Section
========================*/
/* ====================
# Featured Section
========================*/
#featured {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
    background: linear-gradient(to bottom, rgb(208, 208, 208) 50%, rgb(53, 52, 52) 70%);
}
#featured .card-row {
    
}
#featured .card {
    height: 50vh;
    width: 16rem;
    text-align: center;
    background-size: cover;
    margin-left: 2rem;
    border-radius: .5rem;
}
#featured .card h4,h5 {
    color: whitesmoke;
    font-weight: 500;
}
#featured .card-content {
    visibility: hidden;
}
#featured .card-content p {
    color: whitesmoke;
    margin-bottom: 8rem;
    margin-top: 2rem;
}
#featured .card button {
    width: 7rem;
    height: 2rem;
    font-weight: 500;
    color: whitesmoke;
    background-color: transparent;
    border: 1px solid white;
    border-radius: .7rem;
    margin-left: 2rem;
    z-index: 1;
}
#featured .card:hover .card-content {
    transform: translatez(.6rem);
    background-color: rgba(72, 72, 72, 0.809);
    height: 95%;
    width: 95%;
    border-radius: .5rem;
    margin:.5rem 0 0 .3rem ;
    visibility: visible;
}
/* ====================
# End of Featured Section
========================*/

/* ====================
# About Section
========================*/
#about {
    height: 80vh;
    background-size: cover;
}
#about::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(58, 58, 58, 0.412);
    height: 80vh;
    z-index: 2;
    top: 170vh;
}
#about .content {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
    padding: 3rem;
    margin-top: 5rem;
    margin-left: 5rem;
    height: 50vh;
}
#about .content h2, #about .content p {
    color: whitesmoke;
}
#about .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.356);
    height: 80vh;
    z-index: 3;
    margin-left: 3rem;
    padding: 2rem;
}
#about .slider .carousel-item {
    height: 70%;
    size: cover;
}
/* ====================
# End of About Section
========================*/
