/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
}
a:active,
a:focus,
a:hover {
    transition: 0.3s;
    transition-property: all;
    text-decoration: none;
}
/****************************************************************************************************/
* {
    box-sizing: border-box;
}
input {
    border: none;
}
select {
    outline: none;
    border: none;
}
input[type='text'],
input[type='email'],
input[type='tel'] {
    font-size: 14px;
    line-height: 19px;
}
:root {
    --font-family: 'Roboto', sans-serif;
    --second-family: 'Afacad', sans-serif;
    --third-family: 'Birthstone', sans-serif;
}
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    background: #03152b;
    color: #fff;
    max-width: 100%;
    overflow-x: hidden;
    background-image: url('../img/bg.png');
}
a {
    color: #b88d34;
}
a:hover {
    color: #b88d34;
}
input,
textarea,
select,
button {
    font-family: inherit;
    -webkit-appearance: none;
}
select {
    cursor: pointer;
}
button {
    border: none;
    cursor: pointer;
}
img {
    max-width: 100%;
    height: auto;
}
.clearfix::after {
    display: table;
    content: '';
    clear: both;
}
.uppercase {
    text-transform: uppercase;
}
.black {
    font-weight: 900;
}
.bold {
    font-weight: bold;
}
.semibold {
    font-weight: 600;
}
.nowrap {
    white-space: nowrap;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
p:last-child {
    margin-bottom: 0;
}
strong {
    font-weight: 700;
}
.wrapper {
    width: 100%;
    max-width: 1016px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}
.header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo,
.header__logo img {
    display: block;
}
.header__btn {
    background: linear-gradient(180deg, #fb0 0%, #b88d34 100%);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #03152b;
    border-radius: 4px;
    padding: 15px 20px;
}
.header__btn:hover {
    background: linear-gradient(180deg, #fb0 0%, #b88d34 50%);
    color: #03152b;
}
.banner {
    margin-bottom: 32px;
}
.banner__image {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    /* height: 730px; */
}
.banner__image:before {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% + 15px);
    height: calc(100% + 18px);
    top: -9px;
    left: -7.5px;
    filter: blur(65.65555572509766px);
    /* background: rgba(255, 255, 255, 0.25); */
    z-index: 1;
}
.banner__image img {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    border-radius: 12px;
}
.banner__image img.banner__image-flower {
    position: absolute;
    top: 50%;
    margin-top: -341px;
    z-index: 3;
}
.banner__image-flower_left {
    left: -140px;
}
.banner__image-flower_right {
    left: auto;
    right: -140px;
    transform: scaleX(-1);
}
.banner__image-mobile {
    display: none;
}
.banner__title {
    text-align: right;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
}
.form__title {
    width: 100%;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(180deg, #fb0 0%, #b88d34 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}
.form-row {
    width: calc(50% - 20px);
}
.form-row__wrapper {
    margin-bottom: 40px;
}
.form-row__input {
    background: #d1e6ff;
    border-radius: 4px;
    height: 48px;
    width: 100%;
    border: 0;
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #222;
    padding: 16px;
}
.form-row__input:hover,
.form-row__input:focus {
    background: #fff;
}
.form-row__textarea {
    background: #d1e6ff;
    border-radius: 4px;
    height: 140px;
    width: 100%;
    border: 0;
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #222;
    padding: 16px;
}
.form-row__textarea:hover,
.form-row__textarea:focus {
    background: #fff;
}
.form-row__select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99996 10.6661C7.91222 10.6666 7.82525 10.6498 7.74402 10.6167C7.6628 10.5835 7.58892 10.5346 7.52663 10.4728L3.52663 6.47281C3.40109 6.34727 3.33057 6.17701 3.33057 5.99947C3.33057 5.82194 3.40109 5.65168 3.52663 5.52614C3.65216 5.4006 3.82243 5.33008 3.99996 5.33008C4.1775 5.33008 4.34776 5.4006 4.47329 5.52614L7.99996 9.05947L11.5266 5.53281C11.6542 5.42359 11.8182 5.36652 11.986 5.373C12.1538 5.37948 12.3129 5.44903 12.4317 5.56776C12.5504 5.68649 12.62 5.84565 12.6264 6.01344C12.6329 6.18122 12.5758 6.34527 12.4666 6.47281L8.46663 10.4728C8.34245 10.596 8.17485 10.6654 7.99996 10.6661Z' fill='black' /%3E%3C/svg%3E");
    background-color: #d1e6ff;
    background-position: calc(100% - 16px) center;
    background-repeat: no-repeat;
    border-radius: 4px;
    height: 48px;
    width: 100%;
    border: 0;
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #222;
    padding: 16px;
}
.form-row__select:hover,
.form-row__select:focus {
    background: #fff;
}
.choices[data-type*='select-one'] .choices__inner,
.choices__inner {
    background-color: #d1e6ff;
    border-radius: 4px;
    height: 48px;
    width: 100%;
    border: 0;
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #222;
    padding: 10px 12px 12px;
}
.choices[data-type*='select-one'] .choices__inner:hover,
.choices__inner:focus {
    background: #fff;
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
    background-color: #d1e6ff;
    color: #222;
    border: 1px solid #d1e6ff;
    border-color: #d1e6ff;
}
.choices[data-type*='select-one'] .choices__input {
    color: #222;
    border-bottom: 1px solid #d1e6ff;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: #fff;
    color: #222;
}
.form-row__wrapper_additional {
    /* background: #052349; */
    background: #0a0b09;
    border-radius: 8px;
    padding: 16px;
}
.form-row__wrapper-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(180deg, #fb0 0%, #b88d34 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.form-row__wrapper-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    background: linear-gradient(180deg, #fb0 0%, #b88d34 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-row__wrapper-legend {
    padding-bottom: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.form-row__radio {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.form-row__radio-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(180deg, #fb0 0%, #b88d34 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.form-row__radio-item {
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 28px;
}
.form-row__radio-item input[type='radio'] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.form-row__radio-item span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.form-row__radio-item span.gold, span.gold {
    color: #fb0;
}
.form-row__radio-item:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #d1e6ff;
    border-radius: 50%;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: 1px;
}
.ad-templates .form-row__radio-item:before {
    margin-right: 20px;
    padding-right: 20px;
}
.form-row__radio-item:hover:before {
    background: #fff;
}
.form-row__radio-item:hover > span:before,
.form-row__radio-item input:checked ~ span:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #03152b;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 5px;
}
.form-row_submit {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}
.form-row__submit {
    height: 48px;
    width: 296px;
    border-radius: 4px;
    background: linear-gradient(180deg, #fb0 0%, #b88d34 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    color: #03152b;
}
.form-row__submit:hover {
    background: linear-gradient(180deg, #fb0 0%, #b88d34 50%);
    color: #03152b;
}
.footer {
    background: #010f1d;
    padding: 80px 0;
    border-top: 2px solid #d9d9d9;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #fff;
}

.choices__list.choices__list--single .choices__item.choices__item--selectable {
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 992px) {
    .wrapper {
        padding: 0 15px;
    }
    .header {
        padding: 17px 0 21px;
        flex-direction: column;
    }
    .header__logo {
        margin-bottom: 17px;
    }
    .header__btn {
        font-size: 14px;
        width: 100%;
    }
    .banner__image img.banner__image-flower {
        top: 301px;
        margin-top: 0;
        width: 182px;
        height: auto;
    }
    .banner__image-flower_left {
        left: -41px;
        transform: rotate(12deg);
    }
    .banner__image-flower_right {
        right: -41px;
        transform: scaleX(-1) rotate(12deg);
    }
    .banner__image-desktop {
        display: none;
    }
    .banner__image-mobile {
        display: block;
    }
    .banner__image {
        margin-bottom: 20px;
        display: flex;
        height: auto;
        flex-direction: column;
    }
    .banner__title {
        font-size: 14px;
    }
    .form__title {
        font-size: 20px;
    }
    .form-row {
        width: 100%;
    }
    .form-row__wrapper {
        margin-bottom: 24px;
    }
    .form-row__wrapper-title {
        font-size: 20px;
    }
    .form-row__radio-title {
        font-size: 16px;
    }
    .form-row__radio-item span {
        font-size: 14px;
    }
    .form-row__radio {
        margin-bottom: 30px;
    }
    .form-row__wrapper-text {
        font-size: 16px;
    }
    .form-row__submit {
        width: 100%;
    }
    .footer {
        padding: 60px 0;
        font-size: 14px;
    }
}
