/* General Styling */
h2{
    text-align: center;
    font-weight: 600;
    padding: 10px;
}

.align-center{
    text-align: center;
}


article{
    padding: 15px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.btn-left{
    display: inline;
}

/* Dark & Light*/
.dark{
    background-color: maroon;
    color: white !important;
}
.dark hr{
    margin-top: 0;
    height: 3px;
    width: 60px;
    background-color: rgb(107, 107, 107);
    border-radius: 2px;
}
.dark .snapcard p{
    padding: 20px;
    border-left: 1px solid white;
    
}

.light{
    background-color: white;
}
.light h2{
    color: maroon;
}
.light hr{
    margin-top: 0;
    height: 3px;
    width: 60px;
    background-color: blue;
    border-radius: 2px;
}
.light .snapcard p{
    padding: 20px;
    border-left: 1px solid maroon;
    
}

/* Main Container */
.main{
    padding: 20px;
}
.container-fluid {
    padding-right:0;
    padding-left:0;
    margin-right:auto;
    margin-left:auto
 }

/* Snapcard */
.snapcard{
    padding:30px;
    border-radius: 5px;
    width: 70%;
    margin: 20px;
}


/* Carousel */
#sectionCarousel{
    padding: 10px;
}

#carousel{
    height: fit-content;
    border-radius: 10px;
}

.carousel-inner{
    width: 80%;
    margin: 0 auto;
    
}

.carousel-control-prev-icon{
    color: black;
}

.img-holder img{
    margin-bottom: 10px;
}

/* Card */
.card-body{
    height: 300px;
}

/* Header */
header{
    
    margin: 10px;
}
header h2{
    font-size: 70px;
}


/* Installation Article */
#articleInstallation{
    text-align: right;
    padding: 4rem;
    padding-right: 200px;
}

#articleInstallation h3{
    display: inline;
    margin-right: 10px;
}

/* Facts List Section*/
#factslistSection{
    padding: 20px;
    
}

.installation card{
    margin-bottom: 10px;
}

/* Contact Us */
.details p{
    padding-left: 15px;
}


/* Footer */
.footer {
    color: white;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #313131;
    text-align: center;
  }