.search_bm .warpper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 1170px;
    margin-right: auto;
    margin-left: auto;
    max-width: 95%;
    padding: 20px 0;
}

.warpper .box_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search_bm .warpper p {
    font-weight: bold;
    font-size: 28px;
    line-height: 28px;
    color: #000000;
}

.search_bm .warpper span {
    color: #000000;
    display: inline-block;
    font-size: 18px;
}

.form_search {
    display: flex;
    gap: 20px;
}

.search_bm .warpper .search_tt {
    background: #ffffff;
    border-radius: 30px;
    width: 30%;
    height: 49px;
    border: none;
    box-shadow: 4px 1px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0 20px;
    font-size: 16px;
    line-height: 19px;
}

.search_bm .warpper .btn_search_tt {
    background: #043379;
    border-radius: 30px;
    border: none;
    height: 49px;
    box-shadow: 4px 1px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 0 30px;
    font-weight: 500;
    font-family: Roboto-Medium, sans-serif;
    font-size: 16px;
    line-height: 19px;
}

.search_bm .warpper .btn_search_tt img {
    margin-right: 5px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .search_bm {
        background: linear-gradient(348.41deg, #f7f8fb 7.78%, #d2d6f2 90.76%);
        text-align: center;
    }

    .form_search {
        justify-content: center;
    }

    .search_bm .warpper .search_tt {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .search_bm .warpper .search_tt {
        width: 60%;
        height: 49px;
    }

    .search_bm .warpper .btn_search_tt {
        height: 49px;
    }
}

@media screen and (max-width: 600px) {
    .form_search {
        gap: 10px;
    }
    .search_bm .warpper .btn_search_tt {
        padding: 0 15px;
        height: 45px;
    }
    .search_bm .warpper .search_tt {
        height: 45px;
        width: calc(100% - 10px - 125px);
    }
    .search_bm {
        height: auto;
    }
    .search_bm .warpper {
        padding: 30px 0 25px;
    }
}

@media screen and (max-width: 415px) {
    .search_bm .warpper p {
        font-size: 25px;
        line-height: 28px;
        text-align: center;
    }
}