/***** Banner CSS Start Here *****/
.banner-front {
    position: relative;
}

.banner-front .banner-front-image img {
    width: 100%;
}



.content-max {
    max-width: 410px;
}

.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.search-form .form-write {
    border: 1px solid rgba(44, 46, 48, 0.5);
    border-radius: 3px;
    width: 312px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
}

.search-form .form-write span {
    display: inline-block;
    padding: 0 12px;
    border-right: 1px solid rgba(44, 46, 48, 0.25);
    line-height: 1;
}

.search-form .form-write span img {
    vertical-align: top;
}

.search-form .form-write input {
    border: none;
    outline: none;
    height: 50px;
    padding: 0 20px;
    color: var(--revolver);
    font-size: var(--fs15);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 3px 0 0px 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    font-family: "basic-sans";
    font-weight: 700;
}

.search-form .form-write input::-webkit-input-placeholder {
    color: var(--revolver);
    font-family: "basic-sans";
    font-weight: 700;
    opacity: 1;
}

.search-form .form-write input::-moz-placeholder {
    color: var(--revolver);
    font-family: "basic-sans";
    font-weight: 700;
    opacity: 1;
}

.search-form .form-write input:-ms-input-placeholder {
    color: var(--revolver);
    font-family: "basic-sans";
    font-weight: 700;
    opacity: 1;
}

.search-form .form-write input:-moz-placeholder {
    color: var(--revolver);
    font-family: "basic-sans";
    font-weight: 700;
    opacity: 1;
}

.search-form button {
    background: var(--flamingo);
    height: 52px;
    border: none;
    font-size: var(--fs15);
    color: var(--white);
    padding: 0 40px;
    border-radius: 0 3px 3px 0px;
    margin: 0 0 0 -1px;
    outline: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-box-flex: 1;
    -ms-flex: auto 0 0px;
    flex: auto 0 0;
    font-family: "Atkinson Hyperlegible";
    font-weight: var(--fw600);
}

.search-form button:hover {
    background: var(--jungle-green);;
}

.search-form.email-form {
    width: 412px;
    position: relative;
}

.search-form.email-form button {
    padding: 0 30px;
}

.search-form.email-form .validation-advice {
    position: absolute;
    top: 100%;
    font-size: var(--fs14);
    color: red;
    line-height: normal;
}

/***** Banner CSS END Here *****/