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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    max-width: 100%;
    background-color: mintcream;
}

/* Nav Bar */
#nav_bar {
    background-color: mintcream;
    width: 100%;
    height: 80px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    align-items: center;
    padding: 5px 275px;
    gap: 100px;
}

#nav_bar ul {
    display: flex;
    gap: 100px;
}

#nav_bar ul li {
    list-style: none;
}

#nav_bar ul li a {
    text-decoration: none;
    color: black;
}

#main-body {
    max-width: 100%;
    height: 600px;
    padding: 75px 0;
    margin-top: 80px;
    background-color: black;
    text-align: center;
}

#new {
    color: lightgray;
}

#heading {
    color: deeppink;
    padding: 10px 0;
}

#product-name {
    color: white;
    padding-bottom: 18px;
}

#btn button {
    color: white;
    background-color: #030f17;
    padding: 8px 15px;
    border-radius: 15px;
}

#btn #btn-1 {
    color: #3498DB;
    background-color: #030f17;
    padding: 8px 15px;
    border-radius: 15px;
}

#image img {
    padding: 10px;
}

/* Featured */
.section-featured {
    padding: 50px;
}

.container {
    padding: 0 100px;
}


.heading-featured-in {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2.4rem;
    color: #888;
}

.logos {
    display: flex;
    justify-content: space-around;
}

.logos img {
    height: 40px;
    filter: brightness(0);
}

/* Cart */
.rows {
    display: flex;
}

#card-boxes {
    max-width: 550px;
    display: flex;
    background-color: #696969;
    border-radius: 5px;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
    margin: 48px auto;
    padding: 15px 10px;
    gap: 10px;
}

#card-boxes img {
    border-radius: 5px;
}

.head {
    color: rgb(236, 223, 223);
    padding-bottom: 10px;
}

.txt {
    line-height: 22px;
    color: azure;
}

#btn-2 {
    margin-top: 35px;
    width: 75px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
}

#btn-2:hover {
    background-color: whitesmoke;
}

/* form */
.section-cta {
    padding: 4.8rem 0 12.8rem;
}

.cta {
    display: grid;
    /* 2/3 = 66.6% + 1/3 = 33.3% */
    grid-template-columns: 2fr 1fr;
    /* background-color: #e67e22; */
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    overflow: hidden;
}

.cta-text-box {
    padding: 30px;
    color: #45260a;
}

.cta .heading-secondary {
    color: inherit;
    margin-bottom: 3.2rem;
}

.cta-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4.8rem;
}

.cta-img-box {
    background-image: linear-gradient(to right bottom,
            rgba(230, 125, 34, 0.35),
            #ffffff59),
        url("./images/wow.png");
    background-size: cover;
    background-position: center;
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.2rem;
    row-gap: 2.4rem;
}

.cta-form label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1.2rem;
    font-size: 0.8rem;
    font-family: inherit;
    color: inherit;
    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
    color: #aaa;
}

.cta *:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

#sign{
    font-size: 1rem;
    width: 100%;
    height: 25px;
    margin-top: 50px;
    padding: 25px 0px;
    font-family: inherit;
    color: inherit;
    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* footer */
footer{
    background-color: #030f17;
    color: aliceblue;
    text-align: center;
   padding: 15px;
   margin-top: 0px;
}