/*Banner*/



.page-banner-pages-buttons .page-banner-page-link {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    padding: 17px 20px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
}

.page-banner-pages-buttons .page-banner-page-link.blog-active {
    color: #fff;
    background: #026002;
}



.mobile-banner-pages {
    display: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    width: calc(100% + 12px);
    align-items: center;
    column-gap: 12px;
    padding-right: 12px;
}

.mobile-banner-pages::-webkit-scrollbar
{
    display: none;
}

.mobile-banner-pages .mobile-page-banner-page-link {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #232323;
    text-decoration: none;
    padding: 13px 20px;
    background: #fff;
    border: 1px solid #F5F5F5;
    border-radius: 50px;
}

.mobile-banner-pages .mobile-page-banner-page-link.active{
    background: #026002;
    border: 1px solid #026002;
    color: #F7F8F3;
}


/*Bloglar*/

.blogs-section {
    padding: 118px 0;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
    transition: .4s;
}

.blog-card-image, .blog-card-image img {
    aspect-ratio: 2/1.75;
    object-fit: cover;
    border-radius: 4px;
}

.blog-card .blog-card-image img
{
    transition: .4s;
}

.blog-card-text {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
    padding: 16px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    column-gap: 32px;
    justify-content: space-between;
}

.blog-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #026002;
    border-radius: 50px;
}

.blog-card-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
}

@media only screen and (max-width: 1640px)
{
    
}

@media only screen and (max-width: 1399px)
{
    
}

@media only screen and (max-width: 1199px)
{
    
}


@media only screen and (max-width: 991px)
{

.page-banner-pages-buttons {
    display: none;
}

.mobile-banner-pages
{
    display: flex;
}

.blogs-section {
    padding: 75px 0;
}

.blog-card-text {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    column-gap: 16px;
}

.blog-card-title {
    font-size: 15px;
    line-height: 23px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
}

}

@media only screen and (max-width: 767px)
{

}

@media only screen and (max-width: 475px)
{
    .blog-card-title {
    font-size: 14px;
    line-height: 22px;
}
}