.hoverme {
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 25px;
    outline: 0;
    cursor: pointer;
    /*transition: all 0.3s ease;*/
}
.hoverme p {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.hoverme:hover {
    background: rgba(246, 246, 246, .3);
}
.hoverme:hover > .pop {
    opacity: 1;
    width: 65px;
    height: 40px;
    border-radius: unset;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.pop {
    opacity: 0;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 100%;
    z-index: -1;
    margin: auto;
    /*transition: all 0.3s ease;*/
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
}
.pop > a {
    color: #353535;
    font-size: 20px;
}

.resent-information .main-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resent-information .main-info h1{
    font-family: "Gotham Light", sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #004D42;
    line-height: 90px;
    margin: 37px 0 30px 0;
    letter-spacing: -0.3px;
    text-align: center;
}

.resent-information .main-info p{
    font-family: "Gotham Book", sans-serif;
    font-size: 16px;
    width: 100%;
    max-width: 424px;
    text-align: center;
    margin: 0 0 50px 0;
}

.blog-posts{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 118px;
}

.blog-posts .blog-post{
    max-width: 344px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
}

.blog-post img{
    height: 200px;
}

.blog-post .blog-category{
    height: 28px;
    margin-top: 16px;
}

.blog-post .blog-category span{
    font-family: "Gotham Bold", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    padding: 8px 18px;
    background-color: #BDA150;
    text-transform: uppercase;
}

.blog-post .blog-information{
    padding: 18px 26px 13px 21px;
}

.blog-post .blog-information span{
    font-family: "Gotham Black", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #004D42;
    line-height: 17px;
    letter-spacing: 0.3px;
    height: 41px;
    display: block;
    margin-top: 8px;
}

.blog-post .blog-information .description{
    font-family: "Gotham Book", sans-serif;
    font-size: 14px;
    margin: 0;
    line-height: 19px;
    height: 37px;
}

.blog-post .blog-information .description p{
    margin: 0;
}

.blog-post .author-social-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.blog-post .author-social-links .author-date p{
    font-family: "Gotham Book", sans-serif;
    font-size: 14px;
    color: #004D42;
    margin: 0;
}

.blog-post .author-social-links .hoverme img{
    height: auto;
}

.filters{
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #214C42;
    border-bottom: 1px solid #214C42;
    padding-top: 5.5px;
    padding-bottom: 5.5px;
    margin-bottom: 52px;
    align-items: center;
}

.filters span{
    font-family: "Gotham Bold", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #7DAAA4;
    text-transform: uppercase;
    cursor: pointer;
}

.filters span.active{
    color: #004D42;
    font-weight: 600;
}

.pagination{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 120px;
}

.pagination ul{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

.pagination ul li{
    font-family: "Gotham Book", sans-serif;
    font-size: 20px;
    color: #004D42;
    cursor: pointer;
    list-style-type: none;
}

.pagination ul li.current{
    font-weight: 600;
    cursor: unset;
}

.pagination ul li.all{
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    margin-left: 20px;
}


@media (max-width: 550px) {
    .resent-information .main-info{
        align-items: flex-start;
    }

    .resent-information .main-info h1{
        font-size: 16px;
        font-weight: 600;
        text-align: left;
        margin-bottom: 2px;
        margin-top: 29px;
        line-height: 16px;
    }

    .resent-information .main-info p{
        text-align: left;
        margin: 18px 0 46px 0;
    }

    .filters{
        gap: 6px;
        margin-bottom: 19px;
    }

    .blog-posts{
        gap: 37px;
        margin-bottom: 92px;
    }

    .blog-post img{
        height: 170px;
        width: 100%;
    }

    .blog-posts .blog-post{
        max-width: 100%;
    }

    .blog-post .blog-category{
        margin-top: 8px;
    }

    .blog-post .blog-category span{
        font-size: 12px;
        padding: 6px 18px;
    }

    .blog-post .blog-information{
        padding: 8px 26px 13px 21px;
    }

    .blog-post .blog-information span{
        line-height: 19px;
        margin-bottom: 5px;
    }

    .blog-post .author-social-links{
        margin-top: 22px;
    }

    .hoverme:hover > .pop{
        position: absolute;
        z-index: 1;
        left: -175px;
    }

    .pagination{
        margin-bottom: 167px;
    }
}
