@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins,sans-serif;

}

a{
    text-decoration: none;
    list-style: none;
}

.navbar{
    background-color:#000000 ;
}

.btn-2{
    background-color: #4C5FD5 ; 
}
.btn-2:hover{

    background-color: #4C5FD5 ;     
}
.hero-page{
    background-color: #dadbf1;
    height: 50vh;
}
.container h1{
    color: #000000;
    letter-spacing: 4px;
}
section .category-container{
    height: 90vh;
  
}


.category-container{
    margin-top: 2rem;
    padding: 20px 0;
    margin-bottom: 3rem;
}

.row-1{

    padding: 30px 50px;
    display: flex;
    gap: 2rem;
}
.row-content{
    display: flex;
    transition: 0.5s ease all;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
   
}
img{
    display: inline-block;
    height: 100px;
    width: 100px;
    object-fit: contain;
}
h4{
    color: black;
    text-transform: capitalize;
    font-family: Poppins, sans-serif;
}



footer section .footer-container{
    padding: 90px;
}

.footer-container .container h5{
    font-size: 15px;
}
.footer-container .container p{
    font-size: 13px;
}






@media only screen and (max-width: 1300px){
    .category-container{
        transition: 0.5s ease all;

    }
    img{
        height: 50px;
        width: 80px;
    }
    .title{
        font-size: 20px;
        text-align: start;
    }
    p{
        font-size: small;
    }




}
@media only screen and (max-width: 1100px){
    .category-container{
        transition: 0.5s ease all;
        padding: 50px 0;

    }
    img{
        display: none;
    }
    .category-container .row-1 .row-content .details .title{
        font-size: 25px;
        
    }
}
@media only screen and (max-width: 1000px){
    .category-container{

        transition: 0.5s ease all;

    }
    img{
        display: none;
    }
}

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

    .category-container{
        padding: 0 50px;
        margin-bottom: 550px;
        transition: 0.5s ease all;
    }
    .category-container .row-1 .row-content .details .title{
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }
    .row-1{
        display: flex;
        flex-direction: column;

    }
    .row-content{
        justify-content: flex-start;
    }

    .category-container .row-1 .row-content .details p{
        font-size: 15px;
    }

    .category-container .row-1 .row-content .details a{
        font-size: 12px;
    }
    .footer-container .container{
        display: flex;
        overflow: wrap;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-start;
        align-items: start;
    }
    .footer-container .container .copyrights-content .copyright-content p{
        display: flex;
        flex-direction: column;
        align-items: center;
    }


}
@media only screen and (max-width: 500px){
    .category-container{

        margin-bottom: 640px;
        transition: 0.5s ease all;

    }

    .row-1{
        display: flex;
        flex-direction: column;
    }

    .category-container .row-1 .row-content .details p {
        font-size: 15px;
        text-align: center;
    
    }
    .category-container .row-1 .row-content .details a{
        font-size: 12px;
        text-align: center;
    }






    .footer-container .container{
        display: flex;
        overflow: wrap;
        flex-wrap: wrap;
        gap: 2rem;

    }
    .footer-container .container h4{
        font-size: 15px;
    }
    .footer-container .container p{
        font-size: 13px;
    }
    .footer-container .container  {
        display: flex;
        align-items: flex-end;
    }






}