* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
}

ul {
    list-style: none;
}

body {
    background: #fff;
    font-family: 'Open Sans', arial;
}

.container {
    width: 90%;
    margin: auto;
    color: #fff;
    font-family: 'Open Sans', arial;
}

.header {
    padding: 14px 0;
    background-image: url("../image/gallery-3.jpg");
    background-size: cover;
    background-position: center;
}

.header .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav .logo {
    width: 14%;
}

.header .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;
    font-weight: bold;
    transition: all 0.5s ease-in;
}
.nav-link:hover{
    color: #101c3a;
}
.header-body {
    justify-content: center;
    flex-direction: column;
    display: flex;
    width: 100%;
    height: 90vh;
    margin-top: 20px;
    text-align: center;
    align-items: center;
}

.header-p1 {
    margin-bottom: 10px;
    font-size: 20px;
}

.header-p2 {
    margin-bottom: 40px;
    margin-top: 10px;
    font-size: 20px;
    line-height: 50px;
    max-width: 600px;
}

.header-h1 {
    margin-bottom: 10px;
    font-size: 60px;
}

.header-btn {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 3px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s;   
    border: 2px solid rgb(255, 255, 255);   
    margin: 15px;
}

.header-btn:hover {
    background-color: #e6d8d8;
    color: black;
}

.nav {
    position: sticky;
    top: 0;
    color: #fff;
}

.section {
    margin-top: 40px;
    padding: 40px 60px;
    max-width: 100%;
    height: 800px;
    display: flex;
}
/* cards */
.product-list{
    padding-top: 40px;
}
.product-list-header h2 {
    text-align: center;
    font-size: 30px;
}

.first-part {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px;
}

.card {
    border: 3px solid rgb(9, 12, 61);
    border-radius: 3px;
    width: 400px;
    height: 400px;
    background-color: rgb(233, 232, 232);
    margin: 8px 8px;
    transition: all 0.5s ease-in-out;
}

.card-header img {
    height: 200px;
}

.card-body {
    padding: 5px;
}

.card:hover{
        width: 415px;
        height: 415px;
}

.headers {
    color: rgb(51, 46, 121);
    font-size: 20px;
}

.card-body {
    color: rgb(106, 106, 106);
    height: 200px;
}
.paragraph {
    font-size: 18px;
}
/* Footer */
.last-section {
    background-color: #101c3a;
    display: inline-block;
    margin-top: 0;
    height: 500px;
}

.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;
}
