* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-bg-color: white;
    --main-title-color: #0088cc;
    --main-body-color: #000;
    --font-family: 'Poppins', sans-serif;
    --nav-hover-color: purple;
    --footer-bg: rgba(217, 217, 217, 0.5);
    /*--header-bg: rgb(160, 29, 29);*/
    --header-bg: #000;
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    background: var(--main-bg-color);
    /* border: 1px solid red; */
}

/* header */

header{
    background: var(--header-bg);
}

.navbar{
    font-size: 18px;
    color: #fff;
}

.navbar .nav-item{
    color: #fff !important;
}
.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.header-login{
    cursor: pointer;
}

.header-login a{
    text-decoration: none;
    color: #fff;
}

.header-login p:hover {
    color: #000;

}

/* header end */

/* hero section */

.hero-section {
    background:url(../images/jumbotron.png);
    
    
    /* opacity: 0.8; */
}

.hero p{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
}

.hero-btn{
    background: var(--header-bg);
    color: yellow;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
}

.main-text-section a{
    text-decoration: none !important;
    color: var(--main-title-color);
    
}

.main-text-section a:hover {
    text-decoration: none !important;
    color: var(--header-bg);
}

.main-text-section h5 {
    font-size: 25px;
    font-weight: 600;
    font-style: normal;

}

.main-text-section p {
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 30px;

}

.img-card {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    /* width: 100%; */
    /* border: 1px solid green; */
}

.img-text {
    text-align: center;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
/* hero section end */

/* footer */

.footer-menu li {
    list-style-type: none;
    margin: 11px;
    text-transform: capitalize;
}

.socials li{
    list-style-type: none;
    margin: 11px;
    font-size: 15px;
}

/* art info */

.quote h5{
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
}

.quote .quote2 p {
    font-size: 15px;
    font-style: oblique;
    font-weight: 400;
    color: rgb(128, 115, 115);
}

.quote p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color: #000;
}

.quote .fa-heart{
color: red;
}

.art-details ul{
    padding-left: 0;
}

.art-details .details-list p{
    list-style-type: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--header-bg);
    text-transform: capitalize;
}


.art-details .details-list span{
    color: #000;
    text-align: justify;
    font-size: 15px;
        font-weight: 500;
}

.art-details p{
    text-transform: capitalize;
}


/* cart */

.recently-viewed h5{
    text-align: center;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
}

.checkout-form{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
}

.checkout-form h4{
    color: var(--header-bg);
}

.checkout-form .count{
    color: #fff;
    background: var(--header-bg);
}

.checkout-wrapper .table{
    padding: 20px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}
.checkout-table{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
    /* overflow-x: scroll; */
}
.checkout-wrapper .table thead tr th{
    padding: 14px;
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #dee2e6;
}

.checkout-wrapper .table td{
   padding: 40px 10px;
   font-size: 18px;
   font-style:normal;
   font-weight: 500;
}

.item-in-cart img{
    width:95px;
}

.item-in-cart p{
    font-size: 13px;
    color: rgb(148, 143, 136);
    font-weight: 400;
    font-style: normal;
}

.item-in-cart h6 {
    font-size: 18px;
    color: var(--header-bg);
    font-weight: 600;
    font-style: normal;
}

/* view art info */
.view-art-info .img-card{
    width:fit-content;
    margin:0 auto;
}

.view-art-info h5{
    color: var(--header-bg);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
}

.view-art-info p{
    font-size: 18px;
}

.view-art-info .text-center span{
    color: rgb(133, 130, 130);
    font-weight: 600;
    border-left: 2px solid var(--header-bg);
    padding: 3px;
}