* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(21, 21, 103) ;
    padding: 0 40px;
    h1{
        color: #fff;
    }
}
.nav .logo {
    width: 14%;
}
.nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 25px;
    font-size: 20px;
}
.nav-link {
    text-decoration: none;
    transition: all 0.8s;
    color: #fff;
}


.product-card {
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    height: 300px !important;
    position: relative;
}
.card-title{
    font-size: 20px !important;
    color: #1e3161;
}
.card-width {
    width: 280px !important;
}
.first-sec-card {
    background: #f8f9fa !important;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        height: 200px;
    }
}

.add-to-cart {
    display: none;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: 85px;    
    transition: all 1s ease-in;
}
.product-card:hover .add-to-cart {
    display: block;
}
.price {
    color: #DB4444;
    font-weight: bold;
}

/* Footer */
.last-section {
    background-color: #101c3a;
    display: inline-block;
    margin-top: 0;
    height: 500px;
    width: 100%;
}

.big-div {
    display: flex;
    justify-content: space-around;
    max-width: 1400px;
    margin: 20px auto;

}

.child {
    width: 22%;
}

.head-title {
    color: #e1e1e1;
    margin-bottom: 20px;
}

.last-p {
    color: #adaaaa;
    font-size: 12px;
    line-height: 50px;
    border-bottom: 1px solid #555;
    position: relative;
    padding-left: 15px;
}

.last-p::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #adaaaa;
    font-weight: bold;
}

.last-parag {
    color: #adaaaa;
    font-size: 12px;
    line-height: 35px;
}


.info-link {
    color: #adaaaa;
    text-decoration: none;
}

.info-list {
    list-style: none;
}

.info-l {
    color: #adaaaa;
    font-size: 12px;
    line-height: 50px;
    border-bottom: 1px solid #555;
}

.info-icons {
    font-size: 15px;
    margin-right: 10px;
}

.footer-bottom {
    background-color: #3e65c7;
    height: inherit;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}