@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

header {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    margin-bottom: 2rem;
}

.header-image {
    width: 100%;
    position: absolute;
    top: -20vh;
    z-index: -1;
}

.header-image img {
    width: 100%;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1rem;
    margin: 0 40px;
}

.nav-bar {
    list-style: none;
    font-weight: lighter;
    display: flex;
    gap: 1.5rem;
}

.head {
    display: flex;
    flex-direction: column;
    margin-top: 7vh;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 20vw;
}

.head h3 {
    font-size: 2.1rem;
    color: whitesmoke;
    font-weight: 400;
}

.search-bar {
    display: flex;
    width: 62vw;
    height: 7vh;
    align-items: center;
    border-radius: 9px;
    background: white;
    padding: 5px 4px;
}

.search-bar .search-item {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.search-bar .search-item p {
    color: grey;
    border-right: 1px solid grey;
    margin-right: 10px;
    margin: 10px;
    padding-right: 10px;
    font-size: 15px;
}

.search-bar .search-item input {
    border-left: 1px solid grey;
    outline: none;
    border: none;
    width: 200%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
}

.search-bar .search-item:first-child {
    width: 30%;
    color: rgb(255, 126, 139);
}

.search-bar .search-item:last-child {
    width: 70%;
    color: grey;
}

/* SECTION - 1 */

.section-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.section-1 .section-1-item {
    position: relative;
    width: 15rem;
    margin: 3px 5px;
    overflow: hidden;
    border-radius: 10px;
    background: white;
    /* border: 1px solid rgb(213, 206, 206); */
    box-shadow: 3px 3px 5px whitesmoke;
}

.section-1 .section-1-item img {
    width: 100%;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    z-index: -1;
}

.section-1 .section-1-item .item-details {
    position: absolute;
    bottom: 0px;
    align-items: center;
    border: 0 0 10px 10px;
    background: white;
    width: 100%;
    height: 25%;
    z-index: 2;
}

.section-1 .section-1-item .item-details p {
    text-align: center;
}

/* SECTION - 2 */

.section-2 {
    width: 900px;
    margin: 0 auto;
    margin-bottom: 4rem;    
}

.section-2 .section-2-heading {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400px;
}

.section-2 .section-2-container .section-2-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-2 .section-2-container .section-2-items .section-2-item {
    width: 100%;
    max-width: 26%;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 2px rgb(217, 217, 217);
    padding: 20px;
}

.section-2 .section-2-container .section-2-items .section-2-item .item-head {
    font-size: 1.2rem;
    color: rgb(37, 37, 37);
    margin: 0%;
    margin-bottom: 5px;
    font-weight: lighter;
}

.section-2-item .item-subhead {
    font-weight: lighter;
    color: grey;
    margin: 0;
}

/* SECTION - 3 */

.section-3 {
    height: 620px;
    background-color: rgb(255, 251, 247);
}

.section-3-container {
    display: flex;
    width: 1080px;
    height: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.section-3-img {
    width: 40%;
}
.section-3-img img {
    width: 400px;
}

.section-3-content h1 {
    font-size: 2.5rem;
    font-weight: lighter;
    margin: 0;
    margin-bottom: 15px;
}

.section-3-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    margin-bottom: 15px;
    color: grey;
}

.section-3-download img {
    width: 30%;
}

/* FOOTER */

footer {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}