@font-face {
    font-family: 'Baloo2';
    src: url(Font/Baloo2-ExtraBold.ttf), url(Font/Baloo2-Bold.ttf), url(Font/Baloo2-Regular.ttf);
    font-weight: bolder;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.blog-banner{
    position: relative;
    height: 464px;
    background-color: #D96846;
}

.blog-head{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media screen and (max-width:800px) {

    .blog-head{
         width: 90%;

    }
}

#searh-bar{
    display: flex;
    gap: 20px;
    width: 930px;
    height: 80px;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 600px;
    padding-left: 40px;
    
}

#searh-bar img{
    width: 30px;
}

#searh-bar input{
    font-size: 24px;
    width: 100%;
    border-radius: 0 50px 50px 0;
    border: none;
    padding-right: 40px;
}

#searh-bar input:focus{
    border: none;
    outline: none;
}

/* #searh-bar input{
   
    width: 930px;
    height: 80px;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 600px;
    padding-left: 60px;

} */




.blog-head h1{
    color: black;
    font-family: 'Baloo2';
    font-weight: bolder;
    font-size: 50px;
    line-height: 40px;
    
    margin-bottom: 56px;
}

.blog_insight_head{
    margin-top: 60px;
    /* border: 2px solid red; */
}
.insight-head h1{
    font-size: 40px;
}

.blog_insight_head_right 
{
     /* border: 2px solid yellow; */
}
.custom-select{
    background-color: #F3EDE4;
     
    border-radius: 50px;
}

.custom-select select{
   
    font-size: 20px;
    padding: 20px 40px;
    background-color: #F3EDE4;
    border: none;
    border-radius: 80px;
    margin-right: 20px;
}

.custom-select select:active{
    border: none;
    outline: none;
}

.custom-select select:focus{
    border: none;
    outline: none;
}

.custom-select select:visited{
    border: none;
    outline: none;
}


.pagination{
    display: flex;
    /* border: 2px solid red; */
    justify-content: space-between;
    width: 50%;
    margin: 120px auto;
}



.pages ul{
    display: flex;
    justify-content: center;
    /* border: 2px solid red; */
    gap: 20px;
}
.pages ul li{

   width: 50px;
   height: 50px;
   display: grid;
   place-items: center;
   border-radius: 100%;
   
   
   border: 2px solid #F0F0F0;

}


.pages ul li a{
     
    color: black;
    font-size: 16px;
    font-weight: bold;
    /* border: 2px solid yellow; */
}
.pagination a{
    text-decoration: none;
    color: black;
}

.pagination button{
    border: none;
    background-color: #D96846;
    color: white;
    padding: 16px 20px;
    border-radius: 50px;
}

.pagination button a{
    color: white;
}
@media screen and (max-width: 800px) {
  

    .pagination{
         margin: 0px auto;
        flex-direction: column;
        justify-items: center;
        justify-content: center;
        width: 100%;
        row-gap: 20px;
         
    }
    .pages ul{
        display: flex;
      
        
        gap: 20px;
    }
    .pagination button{
        width: 30%;
        margin: 0 auto;
         
    }     
    
    
}