*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root{
    /* Primary colors */
    --pink: hsl(322, 100%, 66%);
    --light_pink: hsl(321, 100%, 78%);
    --light_red: hsl(0, 100%, 63%);

    /* Neutral Colors */
    --dark_cyan: hsl(192, 100%, 9%);
    --pale_blue: hsl(207, 100%, 98%);
}

/* Headings */
h1, h2, h3, h4, h5, h6, h7{
    font-family: 'Poppins', sans-serif;
}

/* Body text */
p, label, li{
    font-family: 'Open Sans', sans-serif;
}

/* Header Section ---------------------------------------------------------------- */

.header{
    padding: 20px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header .logo{
    width: 100px;
}

.header button {
    padding: 5px 15px;
    border-radius: 50px;
    border: 2px solid var(--pink);
    color:var(--pink);
    background-color: transparent;
}

/* Hero Section ---------------------------------------------------------------- */

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    text-align: center;
}

.hero h1{
    font-size: 1.5rem;
    color: rgb(14, 14, 14);
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero p{
    font-size: 1rem;
    color: rgb(66, 66, 66);
    margin-bottom: 30px;
}

.hero button{
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--pink);
    color:white;
    background-color: var(--pink);
    margin-bottom: 25px;
}

.hero img{
    margin-top: 25px;
    width: 99%;
}

/* Stats Section ---------------------------------------------------------------- */

.stats{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 50px;
}

.stat{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content:center;
    padding: 50px 0px;
}

.stat img{
    width: 35px;
}

.stat h2{
    font-size: 4rem;
}

.stat p{
    color: rgb(66, 66, 66)
}

/* Features Section ---------------------------------------------------------------- */

.feature{
    width: 100%;
}

.feature img{
    width: 100%;
    margin-bottom: -5px;
}

.f-1 .feature-content, .f-3 .feature-content{
    background-color: var(--pale_blue);
}

 

.feature-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.feature-image{
    width: 70%;
    margin-bottom: 50px;
}

.feature-content h4{
    font-size: 1.6rem;
    color: rgb(14, 14, 14);
    margin-bottom: 25px;
}

.feature-content p{
    color: rgb(66, 66, 66);
}

/* Cta Section ---------------------------------------------------------------- */

.cta{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    padding: 50px;
    min-height: 90vh;
    text-align: center;
}

.cta h3{
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.cta button{
    padding: 15px 25px;
    border-radius: 40px;
    border: 2px solid var(--pink);
    color:white;
    background-color: var(--pink);
    margin-bottom: 25px;
}

/* Footer Section ---------------------------------------------------------------- */

.footer .border{
    width: 100%;
    margin-bottom: -5px;
}

.footer-subscribe, .footer-info{
    background-color: var(--dark_cyan);
    padding: 50px;
}

.content {
    display: flex;
    flex-direction: column;
}

.footer h5{
    text-transform: uppercase;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
}

.footer p{
    color: rgb(216, 216, 216);
    margin-bottom: 40px;
}

.footer input{
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}

.footer button{
    width: 40%;
    float: right;
    padding: 15px;
    background-color: var(--pink);
    border: none;
    color: white;
    border-radius: 5px;
}

.footer-info img.logo{
    margin: 70px 0px 30px 0px;
}

.footer ul{
    list-style: none;
    color: white;
}

.footer ul li{
    margin-bottom: 20px;
}

.footer ul li img{
    margin-right: 20px;
}

.footer i{
    color: white;
    margin-top: 30px;
    font-size: 20px;
    margin-right: 20px;
}

/* Media Queries ----------------------------------------------------------------------- */


/* Tablet View (min-width: 768px) */
@media (min-width: 768px) {
    .header {
        padding: 20px 30px;
    }

    .hero {
        padding: 100px 100px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 30px;
        width: 55%;
    }

    .hero img {
        width: 80%;
        margin-top: 50px;
    }

    .stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 50px 100px;
    }

    .stat {
        width: 30%;
    }

    .feature-content {
        flex-direction: row;
        text-align: left;
        padding: 0px 70px;
    }

    .f-1 .feature-content, .f-3 .feature-content{
        flex-direction: row-reverse;
    }

    .feature-img {
        width: 80%;
        margin-bottom: 0;
        margin-left: 20px;
    }

    .feature-info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .feature h3{
        font-size: 2rem;
    }

    .cta {
        padding: 50px 100px;
        min-height: 70vh;
    }

    .footer-content {
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 50px 100px;
    }

    .footer-info .logo {
        margin: 0 0 30px 0;
    }

    .footer-info, .footer-subscribe{
        width: 50%;
    }

   .content {
    display: flex;
    flex-direction: row;
   }


    .footer input {
        width: 60%;
        display: inline-block;
        margin-right: 10px;
        padding: 10px;
    }

    .footer button {
        width: 30%;
        display: inline-block;
        float: none;
        padding: 10px;
    }
}

/* Desktop View (min-width: 1024px) */
@media (min-width: 1024px) {
    .header {
        padding: 20px 60px;
    }

    .hero {
        padding: 50px 150px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .stats {
        padding: 50px 150px;
    }

    .feature-content {
        padding: 100px 150px;
    }

    .f-1 .feature-content, .f-3 .feature-content{
        flex-direction: row-reverse;
    }

    .cta {
        padding: 50px 150px;
        min-height: 60vh;
    }

    .footer-content {
        padding: 50px 150px;
    }
}


