/*--------------------------
	## Search
--------------------------*/
.search-box-area-wrapper {
    .form {
        display: flex;

        .form-group {
            flex: 1;
            margin-right: 10px;

            input {
                height: 50px;
                border-radius: 0;
            }
        }

        .btn-wrapper {
            .btn-default {
                height: 50px;
                border-radius: 0;
            }
        }
    }

    .content {

        margin-top: 78px;

        .title {
            font-family: var(--heading-font-two);
            font-size: 28px;
            line-height: 50px;
            font-weight: 700;
            color: var(--heading-color);
            text-transform: capitalize;
            text-align: center;
        }

        .tag-box {
            margin-top: 30px;
            text-align: center;

            .tag {
                display: inline-block;
                background-color: transparent;
                border: 1px solid #ddd;
                padding: 4px 12px;
                text-transform: capitalize;
                color: var(--heading-color-one);
                font-size: 12px;
                margin: 0 5px;
                transition: all linear 0.2s;
                margin-bottom: 10px;

                &:hover {
                    background-color: var(--main-color-one);
                    border-color:  var(--main-color-one);
                    color: #fff;
                }
            }
        }
    }
}