@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap');
:root {
    --primaryColor: #d99c6e;
    --primaryDark: #b18059;
    --secondarycolor: #f0f4f8;
    --secondaryDark: #303036;
}
* {
    transition: all .3s ease
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans 3', sans-serif;
}
body {
    font-family: 'Source Sans 3', sans-serif;
}
img {
    max-width: 100%
}
section {
    padding: 80px 0
}
.btn-primary {
    background: linear-gradient(to right, var(--primaryColor), var(--primaryDark));
    border: 0;
    padding: 12px 25px;
}
.text-primary {
    color: var(--primaryDark) !important;
}
header {
    box-shadow: 0 0 13px 0 rgba(77, 82, 94, 0.13);
}
.nav-link {
    font-weight: 700;
    text-transform: uppercase;
}
.intro {
    background-color: var(--secondaryDark);
    color: white;
    font-size: 14px;
}
.intro a {
    color: white;
    text-decoration: none;
}
.banner {
    padding-top: 35px;
}
.banner aside {
    position: relative;
    overflow: hidden;
    color: white;
}
.banner aside > * {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(0, 0, 0, 1);
}
.banner aside:before {
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.banner .col-lg-8 {
    height: 500px;
}
.banner .col-lg-8 aside {
    background-image: url(../images/banner-big.jpg);
    height: 100%;
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.banner .col-lg-4 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.banner .col-lg-4 > div {
    flex-grow: 1;
}
.banner .col-lg-4 > div aside {
    background-image: url(../images/banner-small1.jpg);
    height: 100%;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 15px;
    padding: 30px;
}
.banner .col-lg-4 > div:last-child aside {
    background-image: url(../images/banner-small2.jpg);
}
.ourtopfeature i {
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    background: linear-gradient(var(--primaryColor), var(--primaryDark));
    border-radius: 50%;
    color: white;
    font-size: 25px;
    flex: 0 0 70px;
}
.prodData img {
    height: 200px;
    flex: 0 0 200px;
    width: 200px;
    object-fit: contain;
    margin-right: 0;
}
.prodData .btn {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}
.prodData .border:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
footer {
    background-color: var(--secondaryDark);
    color: white;
}
.mainfooter {
    background-color: rgba(0, 0, 0, 0.3);
}
.cart-image {
    height: 45px;
    width: 45px;
    object-fit: contain
}
.table-cart td {
    vertical-align: middle
}
.fa-circle-xmark {
    cursor: pointer
}
#fields_note {
    width: 100%;
    display: block
}
.fa-circle-xmark {
    font-size: 28px
}
.priceShip {
    padding-left: 17px
}
.total_agree {
    margin-right: 5px
}