@import url(./cookies.css);

.block {
    padding-bottom: 20px;
}

.bg-search {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 658px;
    margin-bottom: 10px;
    padding-bottom: 30px;
}

.bg-search::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: .5;
    z-index: 9;
}

.bg-search-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-search h1 {
    position: relative;
    color: #fff;
    margin-bottom: 50px;
    z-index: 9;
}

.bg-search-content {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    z-index: 9;
}

.bg-search-content_input {
    width: 100%;
    max-width: 500px;
    height: 50px;
    outline: none;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
}

.bg-search-content-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    background-color: var(--main-color);
}

@media screen and (max-width: 480px) {
    .content-item.long {
        flex-direction: column;
    }

    .content-item-left {
        order: 1;
    }

    .content-item-right {
        width: 100%;
        order: 0;
    }

    .content-item.box {
        display: flex;
    }

    .content-item-top {
        width: 30vmin;
        height: 30vmin;
        padding-bottom: 0;
    }

    .content-item-bottom {
        height: 30vmin;
        flex: 1;
    }

    .content-item-title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        word-break: break-all;
    }

    .content-item-bottom.gray {
        order: -1;
    }
}