/* font  */
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

/* common css 
 */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

.logo a {
    text-decoration: none;
    color: #3A3A3A;
    font-size: 24px;

}

header {
    width: 90%;
    margin: 0 auto;
}

.menu {}

.menu ul {
    display: flex;
}

.menu ul li {
    list-style: none;
    margin-left: 25px;
}

.menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #3A3A3A;
    font-size: 16px;
    font-weight: 600;

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner_full {
    display: flex;
    align-items: center;
}

.banner-half {
    width: 50%;
}

.banner-half img {
    width: 80%;
}

.container {
    margin-top: 50px;
}

.start {
    font-size: 52px;
    line-height: 70px;
    color: #3A3A3A;
}

.lorem {
    font-size: 16px;
    line-height: 24px;
    color: #3A3A3A;
    margin-bottom: 35px;
}

.banner-half a {
    padding: 10px 24px;
    margin-top: 16px;
    background: #E02C6D;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #FFFFFF;
    border-radius: 30px;
}

.down_container {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.sponser_image img {
    margin: 10px 40px;
}

article {
    width: 329px;
    box-shadow: -1px 7px 20px rgb(0 0 0 / 50%);
    padding: 10px;
    border-radius: 5px;

}

.blog_img img {
    width: 100%;
}

.blog_info h2 {
    font-size: 28px;
    font-weight: 500;
    color: #18191F;
}

.blog_info h3 {
    font-size: 28px;
    font-weight: 500;
    color: #18191F;
}

.filed {
    font-size: 10px;
    color: #FB8200;
}

.blog_info p {
    font-size: 14px;
    color: #787885;
}

.collect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 30px;
    margin-bottom: 35px;

}

.collection h1 {
    text-align: center;
    margin-bottom: 30px;
}

.see {
    text-align: right;
}

.see a {
    text-decoration: none;
    font-size: 16px;
    color: rgba(224, 44, 109, 0.87);
}

.feat {
    font-size: 38px;
    color: #0A0826;
    margin-bottom: 10px;
}

.amet {
    font-size: 16px;
    line-height: 28px;
    color: #6C6C6C;
    margin-bottom: 35px;
}

footer {
    background-color: #0A0826;
    text-align: center;
    padding: 30px 0;
}

.text h1 {
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
    padding-bottom: 10px;
}

.text p {
    font-size: 14px;
    color: #D9DBE1;
    padding-bottom: 30px;
    line-height: 24px;

}

.fill {
    font-size: 16px;
}

.social_media a {
    text-decoration: none;
    color: #FFFFFF;
    padding: 10px;
    background-color: #22213C;
    border-radius: 50%;
}

@media only screen and (max-width:767px) {

    .nav,{
        display: none;
    }

    .container {
        width: 100%;
    }

    .banner_full {
        flex-direction: column;
    }

    .banner-half {
        width: 100%;
        text-align: center;
    }

    .banner-half h1 {
        font-size: 28px;
        line-height: 42px;
        margin: 10px 0;

    }

    .sponser_image {
        display: grid;
        justify-items: start;
        justify-content: space-evenly;
    
    }
    .sopnser{
        margin-top: 30px;
    }
    .collect {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    
    }
    footer{
        width: 100%;
    }
}