@charset "UTF-8";
body {
    background-color: #fff;
    font-family: "Proxima Nova Rg";
    font-weight: 400;
    margin: 0;
}

h1 {
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 400;
    max-width: 100%;
    margin: 0 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 4px;
    text-align: left;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 28px;
}

h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px;
}

p {
    margin: 0 0 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

input:focus, input:active {
    outline: none;
}

button:focus, button:active {
    outline: none;
}

label {
    font-size: 18px;
    font-weight: 300;
    display: block;
    border: 1px solid #ebebeb;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 19px;
    margin-bottom: 22px;
}

.radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}

.radio .text {
    position: relative;
    padding: 0 0 0 35px;
    cursor: pointer;
}

.radio .text:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ebebeb;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ebebeb;
}

.radio .text:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 5px;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #db2d59;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.radio input:checked + .text:after {
    opacity: 1;
}

.radio input:focus + .text:before {
    border: 1px solid #db2d59;
    background: #fff;
}

.checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox .text {
    position: relative;
    padding: 0 0 0 35px;
    cursor: pointer;
}

.checkbox .text:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -1px;
    width: 19px;
    height: 19px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    background: #ebebeb;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.checkbox .text:after {
    content: '';
    font-size: 16px;
    position: absolute;
    top: 2px;
    left: 5px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #db2d59;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.checkbox input:checked + .text:before {
    border: 1px solid #db2d59;
    background: #fff;
}

.checkbox input:checked + .text:after {
    content: '✓';
}

.range {
    background: #ebebeb;
    width: 100%;
    height: 20px;
    padding: 5px 10px 5px 5px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.range .rangeVal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.range span {
    font-size: 11px;
    color: #a5a5a5;
}

.range span.current {
    position: absolute;
    background: #f4f4f4;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 3px;
    opacity: 0;
}

.range input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    position: relative;
    top: -8px;
    background: transparent;
}

.range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.range input[type=range]:focus {
    outline: none;
}

.range input[type=range]::-ms-track {
    -webkit-appearance: none;
}

.range input[type=range] {
    -webkit-appearance: none;
    width: 100%;
}

.range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.range input[type=range]:focus {
    outline: none;
}

.range input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
    position: relative;
    top: -24px;
}

.range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    cursor: pointer;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: white;
    -webkit-box-shadow: 0px 1px 4.75px 0.25px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 1px 4.75px 0.25px rgba(0, 0, 0, 0.35);
    margin-top: -10px;
}

.range input[type=range]::-moz-range-thumb {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 1px 4.75px 0.25px rgba(0, 0, 0, 0.35);
}

.range input[type=range]::-ms-thumb {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 1px 4.75px 0.25px rgba(0, 0, 0, 0.35);
}

.range input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.range input[type=range]:focus::-webkit-slider-runnable-track {
    background: #db2d59;
}

.range input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    border-radius: 15px;
}

.range input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}

.range input[type=range]::-ms-fill-lower {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    border-radius: 15px;
}

.range input[type=range]:focus::-ms-fill-lower {
    background: #db2d59;
}

.range input[type=range]::-ms-fill-upper {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    border-radius: 15px;
}

.range input[type=range]:focus::-ms-fill-upper {
    background: #db2d59;
}

.range input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.range input[type=range]:focus::-webkit-slider-runnable-track {
    background: #db2d59;
}

.range input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    border-radius: 15px;
}

.range input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}

.range input[type=range]::-ms-fill-lower {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    border-radius: 15px;
}

.range input[type=range]:focus::-ms-fill-lower {
    background: #db2d59;
}

.range input[type=range]::-ms-fill-upper {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: #db2d59;
    border-radius: 15px;
}

.range input[type=range]:focus::-ms-fill-upper {
    background: #db2d59;
}

.text-input {
    position: relative;
    margin-bottom: 22px;
}

.text-input input {
    border: 1px solid #d7d7d7;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 54px;
    font-size: 18px;
    padding-left: 46px;
}

.text-input i {
    position: absolute;
    top: 20px;
    left: 18px;
    font-size: 14px;
}

button.submit {
    background: -webkit-gradient(linear, left top, right top, from(#db2d59), to(#db2d73));
    background: -webkit-linear-gradient(left, #db2d59 0%, #db2d73 100%);
    background: -o-linear-gradient(left, #db2d59 0%, #db2d73 100%);
    background: linear-gradient(90deg, #db2d59 0%, #db2d73 100%);
    width: 284px;
    height: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    cursor: pointer;
    margin-top: 30px;
}

button.submit i {
    font-size: 20px;
    margin-right: 10px;
    position: absolute;
    left: 18px;
    top: 15px;
}

button.submit.disable {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

main.quiz .confidence {
    border: none;
    padding: 0;
}

main.quiz .confidence .text {
    padding: 0 0 0 18px;
}

main.quiz .confidence .text p {
    font-size: 11px;
    font-weight: 300;
    color: #a5a5a5;
}

main.quiz .confidence .text p a {
    color: #000;
}

main.quiz .confidence .text:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #a5a5a5;
    background: #fff;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

main.quiz .confidence .text:after {
    content: '';
    font-size: 12px;
    position: absolute;
    top: 1px;
    left: 3px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #a5a5a5;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

main.quiz .confidence input:checked + .text:after {
    content: '✓';
}

main.quiz .confidence input:checked + .text:before {
    border: 1px solid #a5a5a5;
}

button.prev {
    border: 1px solid #e4e4e4;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #f4f4f4;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    float: left;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    opacity: 1;
    margin-right: 26px;
}

button.prev.invisible {
    opacity: 0;
    margin-right: -72px;
    pointer-events: none;
    cursor: not-allowed;
}

button.next {
    background-image: -webkit-gradient(linear, left top, right top, from(#db2d59), to(#db2d73));
    background-image: -webkit-linear-gradient(left, #db2d59 0%, #db2d73 100%);
    background-image: -o-linear-gradient(left, #db2d59 0%, #db2d73 100%);
    background-image: linear-gradient(90deg, #db2d59 0%, #db2d73 100%);
    width: 200px;
    height: 48px;
    color: #fff;
    border: none;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    z-index: 1;
    margin-bottom: 20px;
}

button.next:before {
    margin-left: 60px;
    content: "";
    width: 30px;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -150px;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: radiance;
    animation-name: radiance;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0.9;
}

button.next.disable {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

button.next.disable:before {
    opacity: 0;
}

button.next.invisible {
    opacity: 0;
}

button.next:hover {
    -webkit-filter: grayscale(0.3);
    filter: grayscale(0.3);
}

section.gift {
    padding-bottom: 74px;
}

section.gift h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

section.gift .gift {
    margin: -74px auto -48px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

section.gift .gift .top {
    position: relative;
    z-index: 1;
    width: 256px;
    -webkit-animation-name: open;
    animation-name: open;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

section.gift .gift .bottom {
    position: relative;
    top: -34px;
    z-index: 0;
    width: 256px;
}

section.gift .item {
    border: 1px solid #e1e1e1;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 15px 45px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 15px 45px 5px rgba(0, 0, 0, 0.15);
    min-height: 250px;
    background-position: right bottom;
    background-repeat: no-repeat;
    padding: 27px 24px 20px;
    margin-bottom: 46px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section.gift .item p {
    margin: 0 0 30px;
}

section.gift .item button {
    background-color: #fdf578;
    width: 142px;
    height: 37px;
    -webkit-border-radius: 34px;
    border-radius: 34px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 4px 1px 0px #f1e96c;
    box-shadow: 0px 4px 1px 0px #f1e96c;
    cursor: pointer;
}

section.gift .item.active, section.gift .item:hover {
    border: 1px solid #c5f072;
    -webkit-box-shadow: 0px 15px 45px 5px rgba(120, 177, 15, 0.2);
    box-shadow: 0px 15px 45px 5px rgba(120, 177, 15, 0.2);
}

section.gift .item.active button, section.gift .item:hover button {
    background-color: #c5f072;
    -webkit-box-shadow: 0px 4px 1px 0px #a1ce4f;
    box-shadow: 0px 4px 1px 0px #a1ce4f;
}

section.gift .your-gift {
    text-align: center;
}

section.gift .your-gift h4 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    margin: 26px 0 10px;
}

section.gift .your-gift .choosed {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#f4fd78), to(#c5f072));
    background-image: -webkit-linear-gradient(bottom, #f4fd78 0%, #c5f072 100%);
    background-image: -o-linear-gradient(bottom, #f4fd78 0%, #c5f072 100%);
    background-image: linear-gradient(0deg, #f4fd78 0%, #c5f072 100%);
    font-size: 28px;
    display: inline-block;
    padding: 5px 14px;
    font-weight: 600;
    margin-bottom: 42px;
}

section.gift .button.get {
    margin-bottom: 16px;
}

section.gift span.info {
    font-size: 12px;
    color: #b7b7b7;
    display: block;
    text-align: center;
}

.modal-content.gift {
    padding: 20px;
}

.gift h2 {
    font-size: 45px;
    font-weight: 600;
    margin: 0 0 42px;
    text-align: center;
}

.gift h2 b, .gift h2 strong {
    font-family: "Proxima Nova Th";
    font-weight: 800;
    display: block;
}

.gift h2 span {
    color: #db2d73;
}

main.index {
    color: #fff;
    min-height: 800px;
    height: 100vh;
}

main.index header {
    padding: 25px 0 18px;
    color: #fff;
    margin-bottom: 80px;
}

main.index header .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

main.index header .inner h1 {
    max-width: 100%;
}

main.index header .logo {
    width: auto;
    height: 62px;
    margin: 0 8px -14px 0;
}

main.index header .location {
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

main.index header .location i {
    color: #c5f072;
    font-size: 14px;
}

main.index header .phones {
    font-size: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

main.index header .phones p {
    margin-bottom: 6px;
}

main.index header .phones a:hover {
    color: inherit;
    text-decoration: underline;
}

main.index header .phones img {
    width: 24px;
}

main.index h2 {
    font-size: 45px;
    font-weight: 600;
    margin: 0 0 42px;
    text-align: center;
}

main.index h2 b, main.index h2 strong {
    font-family: "Proxima Nova Th";
    font-weight: 800;
    display: block;
}

main.index h2 span {
    color: #db2d73;
}

main.index .caption .not-bg {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

main.index .caption .bg {
    max-width: 1000px;
    min-height: 52px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#f4fd78), to(#c5f072));
    background-image: -webkit-linear-gradient(bottom, #f4fd78 0%, #c5f072 100%);
    background-image: -o-linear-gradient(bottom, #f4fd78 0%, #c5f072 100%);
    background-image: linear-gradient(0deg, #f4fd78 0%, #c5f072 100%);
    margin: 0 auto 56px;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #000;
}

main.index .caption .bg span {
    display: block;
    line-height: 0.9;
}

main.index .caption p.h {
    font-size: 22px;
    color: #fff;
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

main.index .caption p.h b {
    color: #f4fd78;
}

main.index .caption .number {
    position: relative;
    margin-bottom: 52px;
}

main.index .caption .number .round {
    width: 45px;
    height: 45px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

main.index .caption .number span {
    font-family: "Proxima Nova Th";
    font-size: 24px;
    color: #db2d73;
    font-weight: 900;
    position: relative;
    top: -6px;
    left: 6px;
    margin-right: 11px;
    z-index: 1;
}

main.index .caption .number p {
    display: inline-block;
    font-size: 14px;
    width: 190px;
}

.button.get {
    background: -webkit-gradient(linear, left top, right top, from(#db2d59), to(#db2d73));
    background: -webkit-linear-gradient(left, #db2d59 0%, #db2d73 100%);
    background: -o-linear-gradient(left, #db2d59 0%, #db2d73 100%);
    background: linear-gradient(90deg, #db2d59 0%, #db2d73 100%);
    border-radius: 34px;
    -webkit-border-radius: 34px;
    /*border-radius: 6px;*/
    width: 293px;
    height: 58px;
    display: block;
    font-size: 14px;
    margin: 0 auto;
    position: relative;
    padding: 10px 20px;
    -webkit-box-shadow: 0px 4px 1px 0px #bb1841;
    box-shadow: 0px 4px 1px 0px #bb1841;
    text-align: left;
    color: #fff;
    overflow: hidden;
}

.button.get:before {
    margin-left: 60px;
    content: "";
    width: 30px;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -150px;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: radiance;
    animation-name: radiance;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0.9;
}

.button.get span {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.button.get i {
    position: absolute;
    right: 21px;
    top: 15px;
    border: 1px solid #d7d7d7;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 13.5px 1.5px rgba(53, 2, 15, 0.35);
    box-shadow: 0px 1px 13.5px 1.5px rgba(53, 2, 15, 0.35);
    color: #000;
    padding: 6px 7px;
}

main.quiz h2 {
    padding-left: 56px;
}

main.quiz form {
    overflow: hidden;
    padding: 10px 0;
    margin-bottom: 20px;
}

main.quiz .image {
    background-size: cover;
    background-position: center;
    width: calc(100% - 30px);
    height: 455px;
    color: #fff;
    padding: 102px 24px;
    position: absolute;
    z-index: 1;
}

main.quiz .image.active {
    z-index: 10;
}

main.quiz .image img {
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: -10px;
}

main.quiz .image p {
    font-size: 28px;
    display: inline-block;
    max-width: 440px;
    line-height: 1.3;
}

main.quiz .slider {
    height: 400px;
    position: relative;
}

main.quiz .slider .slick-arrow {
    position: absolute;
    z-index: 1;
    background-color: #f2fc78;
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

main.quiz .slider .slide {
    width: 100%;
    height: 455px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: 0 62px;
}

main.quiz .slider .slide .text {
    background: #f2fc78;
    padding: 6px 20px 10px;
}

main.quiz .slider .slide .text p {
    font-size: 16px;
    margin-bottom: 0;
}

main.quiz .slider .slide .text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}

main.quiz .slider .slide .pagingInfo {
    font-weight: 600;
}

main.quiz .slider .slide .options {
    background: #db2d59db;
    padding: 12px 20px;
}

main.quiz .slider .slide .options ul {
    padding-left: 0;
    column-count: 2;
    margin-bottom: 0;
}

main.quiz .slider .slide .options li {
    background-size: contain;
    background-repeat: no-repeat;
    list-style: none;
    padding-left: 30px;
}

main.quiz .step {
    position: relative;
    top: 100px;
    height: 0px;
    opacity: 0;
    -webkit-transition: .8s;
    -o-transition: .8s;
    transition: .8s;
}

main.quiz .step.active {
    top: 0px;
    opacity: 1;
    height: auto;
}

main.quiz .step.used {
    top: -1000px;
    opacity: 0;
}

main.quiz .step .number {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, right top, left top, from(#f4fd78), to(#c5f072));
    background-image: -webkit-linear-gradient(right, #f4fd78 0%, #c5f072 100%);
    background-image: -o-linear-gradient(right, #f4fd78 0%, #c5f072 100%);
    background-image: linear-gradient(270deg, #f4fd78 0%, #c5f072 100%);
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: -6px;
    left: 0;
}

main.quiz .step p {
    font-size: 18px;
    margin-bottom: 44px;
}

main.quiz .step p b {
    background-image: -webkit-gradient(linear, right top, left top, from(#f4fd78), to(#c5f072));
    background-image: -webkit-linear-gradient(right, #f4fd78 0%, #c5f072 100%);
    background-image: -o-linear-gradient(right, #f4fd78 0%, #c5f072 100%);
    background-image: linear-gradient(270deg, #f4fd78 0%, #c5f072 100%);
    padding: 4px;
    font-size: 22px;
}

main.quiz .step a {
    border-bottom: 1px solid #c8c8c8;
    color: #db2d59;
}

main.quiz .step a:hover {
    border-bottom: 1px solid;
}

section.portfolio {
    padding: 44px 0 122px;
    background: #f7f7f7;
    margin-bottom: -166px;
}

section.portfolio h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 32px;
}

section.portfolio .projects {
    display: flex;
    justify-content: space-between;
}

section.portfolio .item {
    border: 1px solid rgb(215, 215, 215);
    border-radius: 10px;
    width: 210px;
    height: 172px;
    padding: 8px;
    text-align: center;
    background: #fff;
}

section.portfolio .item:nth-child(1),
section.portfolio .item:nth-child(5) {
    margin-top: 60px;
}

section.portfolio .item:nth-child(2),
section.portfolio .item:nth-child(4) {
    margin-top: 30px;
}

section.portfolio .item.last {
    background-image: -webkit-gradient(linear, right top, right bottom, from(#f4fd78), to(#c5f072));
    background-image: -webkit-linear-gradient(bottom, #f4fd78 0%, #c5f072 100%);
    background-image: -o-linear-gradient(bottom, #f4fd78 0%, #c5f072 100%);
    background-image: linear-gradient(360deg, #f4fd78 0%, #c5f072 100%);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.portfolio .item.last p {
    margin-bottom: 2px;
}

section.portfolio .item.last a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
}

section.portfolio .item.last a:hover {
    color: #db2d59;
}

section.portfolio .item .image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 130px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 4px;
}

section.portfolio .item h3 {
    font-size: 18px;
    font-weight: 600;
}

footer {
    background: #ebebeb;
    text-align: center;
    padding: 10px 20px;
}

footer p {
    margin-bottom: 0;
}

footer p:first-child {
    font-size: 16px;
}

footer p:nth-child(2) {
    font-size: 14px;
}

header.quiz {
    padding: 25px 0 18px;
}

header.quiz .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

header.quiz .logo {
    width: auto;
    height: 78px;
    margin: 0 12px;
}

.progress {
    margin-bottom: 31px;
    height: auto;
    background: transparent;
}

.progress p {
    font-size: 15px;
    color: #aaaaaa;
}

.progress #percent {
    color: #db2d59;
    font-weight: 600;
}

.progress .progress-bar {
    height: 8px;
    width: 100%;
    background: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.progress #progress {
    width: 0%;
    height: 100%;
    background-image: -webkit-repeating-linear-gradient(135deg, #bebebe, #bebebe 8px, #a2a2a2 6px, #a2a2a2 15px);
    background-image: -o-repeating-linear-gradient(135deg, #bebebe, #bebebe 8px, #a2a2a2 6px, #a2a2a2 15px);
    background-image: repeating-linear-gradient(-45deg, #bebebe, #bebebe 8px, #a2a2a2 6px, #a2a2a2 15px);
    -webkit-background-size: 100% 107px;
    background-size: 100% 107px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -webkit-animation: move 2s linear infinite;
    animation: move 2s linear infinite;
}

.top-navbar {
    background: #090a0b;
}

.top-navbar .top-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 4px 0;
}

.top-navbar .top-bar .nav a {
    padding-left: 20px;
    padding-top: 8px;
}

.top-navbar .top-bar a {
    color: #fff;
}

.top-navbar .top-bar a:hover {
    text-decoration: underline;
}

section.send {
    height: 100vh;
    color: #fff;
    text-align: center;
}

section.send header {
    margin-bottom: 20px;
}

section.send h2 {
    margin: 0;
    font-size: 32px;
}

section.send h3 {
    margin: 0 0 30px;
}

section.send h3 a {
    display: block;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section.send h3 a:hover {
    color: #db2d73;
    transform: scale(1.2);
}

section.send .gift {
    margin: -66px auto -68px;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

@-webkit-keyframes radiance {
    0% {
        left: -30px;
        margin-left: 0px;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}

@keyframes radiance {
    0% {
        left: -30px;
        margin-left: 0px;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 44px;
    }
}

@-webkit-keyframes open {
    from, to {
        top: -40px;
    }
    50% {
        top: 40px;
    }
}

@keyframes open {
    from, to {
        top: -40px;
    }
    50% {
        top: 40px;
    }
}

@media (max-width: 1200px) {
    main.index .caption .not-bg, main.index .caption .bg span {
        font-size: 40px;
        line-height: 1.2;
    }

    section.portfolio .item {
        width: 19%;
    }
}

@media (max-width: 992px) {
    .gift h2,
    section.portfolio h2 {
        font-size: 36px;
    }

    section.portfolio .projects {
        flex-wrap: wrap;
    }

    section.portfolio .item {
        width: 24%;
    }

    section.portfolio .item:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    main.index {
        padding-bottom: 100px;
        height: auto;
    }

    section.send h2 {
        font-size: 24px;
    }

    .table {
        display: block;
        width: 100%;
    }

    section.portfolio .item {
        width: 32%;
    }

    section.portfolio .item:nth-child(4) {
        display: block;
    }

    section.portfolio .item:nth-child(5) {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    main.index {
        padding-bottom: 140px;
        height: auto;
    }

    main.index h2,
    section.portfolio h2 {
        font-size: 28px;
    }

    main.index header {
        margin-bottom: 20px;
    }

    main.index header .inner {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        align-items: center;
    }

    main.index header .logo {
        height: 58px;
    }

    main.index header .phones {
        font-size: 16px;
        text-align: center;
        align-items: center;
        padding-top: 16px;
    }

    main.index header .phones img {
        width: 20px;
        position: relative;
        top: -1px
    }

    main.index .caption .not-bg {
        font-size: 24px;
    }

    main.index .caption .bg span {
        font-size: 27px;
    }

    main.index .caption .number {
        display: flex;
        align-items: center;
    }

    main.index .caption .number .round {
        width: 60px;
        height: 60px;
    }

    main.index .caption .number span {
        font-size: 30px;
        top: -17px;
        left: 8px;
    }

    main.index .caption .number p {
        width: auto;
        margin: 10px 0 0 5px;
    }

    main.quiz h3 {
        font-size: 18px;
    }

    main.quiz .image {
        background-repeat: no-repeat;
        height: 266px;
        padding: 72px 24px;
    }

    main.quiz .slider .slide {
        height: 266px;
        background-position: center;
    }

    .slick-prev, .slick-next {
        display: none;
        opacity: 0;
    }

    main.quiz .slider .slide .text p {
        font-size: 12px;
    }

    main.quiz .slider .slide .text h3 {
        font-size: 16px;
    }

    main.quiz .image p {
        font-size: 20px;
    }

    section.gift .gift {
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
    }

    section.gift .item {
        padding: 10px;
        min-height: auto;
        background-size: 112%;
    }

    section.gift .item h3 {
        font-size: 16px;
    }

    section.gift .item p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    section.gift .item button {
        width: 100px;
        height: 26px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    section.gift .your-gift .choosed {
        font-size: 22px;
    }

    button.submit i {
        left: 9px;
    }

    section.send h2 {
        font-size: 18px;
    }

    section.send {
        height: auto;
        min-height: 100vh;
    }

    section.send h3 {
        font-size: 16px;
    }

    section.send .gift {
        margin: -50px auto -44px;
    }

    footer p:first-child b {
        display: block;
    }

    section.portfolio .item {
        width: 100%;
    }

    section.portfolio .item:nth-child(1),
    section.portfolio .item:nth-child(2),
    section.portfolio .item:nth-child(3),
    section.portfolio .item:nth-child(4),
    section.portfolio .item:nth-child(5) {
        margin-top: 0;
        margin-bottom: 20px;
    }
}
