.header-search__container {
    width: 40%;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-search__form{
    width: 100%;
}
.search-input__container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 384px;
}

.search-input {
    background: #37393d;
    max-width: 384px;
    width: 100%;
    height: 41px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 12px 0 12px 20px;
    position: relative;
    font-family: Rubik, sans-serif;
}

.search-btn {
    position: absolute;
    right: 14px;
    cursor: pointer;
}

.search-btn.active path {
    stroke: #f8b324;
    transition: all 0.3s ease;
}

.search-input__container:hover svg path {
    stroke: #f8b324;
    transition: all 0.3s ease;
}

@media only screen and (max-width : 1023px) {
    .header-search__container {
        margin-right: 0;
    }
}

@media only screen and (max-width : 768px) {
    .search-input {
        padding: 12px 0 12px 12px;
    }
}

@media only screen and (max-width : 576px) {
    .header-search__container {
        display: none;
    }
}