.search {
    padding-top: 32px;
    padding-bottom: 72px;
}

.bread {
    font-size: 16px;
    line-height: 135%;
    color: #1B1E20;
    color: rgba(27, 30, 32, .6);
    margin-bottom: 44px;
}

.bread a {
    font-size: 16px;
    line-height: 135%;
    color: rgba(27, 30, 32, .6);
    text-decoration: none;
}

.search__title {
    font-family: 'Uni Sans';
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #CA4C55;
    margin-bottom: 36px;
}

.search__form {
    display: flex;
    align-items: center;
    margin-bottom: 65px;
}

.search__form input {
    width: 386px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 15px;
    color: #1A1A1A;
    margin-right: 16px;
}

.search__form button {
    width: 270px;
    height: 60px;
    background: #CA4C55;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: 500;
}

.search__item-title {
    font-family: 'Uni Sans';
    font-size: 20px;
    line-height: 110%;
    color: #CA4C55;
}

.search__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.search__item:last-child {
    margin-bottom: 0;
}

.search__item-desc {
    margin-top: 12px;
    font-family: 'Uni Sans';
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0.05em;
    color: #1B1E20;
    width: 720px;
    font-weight: 400;
}

.search__item-desc span {
    margin-top: 12px;
    font-family: 'Uni Sans';
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0.05em;
    color: #CA4C55;
    width: 720px;
    font-weight: bold;
}

.search__item-desc * {
    font-family: 'Uni Sans';
    font-size: 18px;
    line-height: 110%;
}

@media only screen and (max-width: 576px) {
    .search__title {
        letter-spacing: unset;
        margin-bottom: 25px;
    }

    .search__form {
        display: block;
    }

    .search__form input {
        width: 100%;
        height: 50px;
        margin-bottom: 10px;
    }

    .search__form button {
        width: 100%;
        font-size: 15px;
    }

    .search__item-title {
        font-size: 20px;
    }

    .search__item-desc {
        width: 100%;
    }
}