@media (max-width: 1000px) {
    .remote-team_content {
        padding: 22.5px 0;
    }

    .remote-team_items {
        padding: 15px 0 0;
        gap: 10px;
    }

    .remote-team_item__image {
        width: 100%;
        height: 100%;
    }

    .remote-team_item a:hover::before {
        content: none;
    }

    .remote-team_item a {
        position: relative;
    }

    .remote-team_item a::after {
        position: absolute;
        right: 5px;
        bottom: 7px;
        content: '';
        background-image: url(../image/search-mob.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-color: white;
        background-size: inherit;
        width: 30px;
        height: 30px;
        border-radius: 100px;
        z-index: 2;
        opacity: 0.9;
    }

    .remote-team_item a:hover .remote-team_item__image {
        filter: inherit;
    }
}

@media (max-width: 768px) {
    .remote-team_item {
        width: calc(50% - 5px);
    }
}