html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.3;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    color: #ffffff;
    background: #272731;
}

img {
    max-width: 100%;
}

ul,
li {
    list-style: none;
}

picture {
    display: block;
    font-size: 0;
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.overflow {
    overflow: hidden;
}

/* ----------------------------------------Common----------------------------------------- */
.container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px;
}

.title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    text-transform: uppercase;
}

.accent {
    color: #ea3bc6;
}

.logo {
    position: relative;
    padding-left: 40px;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.2;
    font-family: "Lobster", Georgia, 'Times New Roman', Times, serif;
}

.logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 38px;
    height: 36px;
    background: url("../images/logo.png") center / contain no-repeat;
}

.button {
    position: relative;
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #ea3bc6;
    border: none;
    border-radius: 8px;
    outline: none;
    transition: all .3s ease-out;
    cursor: pointer;
    z-index: 1;
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s ease-out;
    border-radius: 8px;
    z-index: -1;
}

.button::before {
    background: linear-gradient(to top, #e122ae, rgba(255, 255, 255, 0.2) 100%);
}

.button::after {
    background: linear-gradient(to bottom, #e122ae 0%, rgba(136, 91, 91, 0.2) 100%);
    opacity: 0;
}

.button:hover::after {
    opacity: 1;
}

.button:hover {
    box-shadow: 0 0 15px 0 #e122ae;
}

.link {
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    text-align: right;
    text-transform: uppercase;
    text-decoration: underline;
    color: #ee2cc6;
    background: none;
    border: none;
    outline: none;
    transition: all .3s ease-out;
    cursor: pointer;
}

.link:hover {
    color: #ffffff;
    text-decoration: none;
}

.main-header {
    padding-bottom: 250px;
    background: url("../images/main-header-bg.jpg") top center no-repeat;
}

.main-header__top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.main-header__logo-wrapper {
    margin-right: 15px;
}

.main-header__lang {
    position: absolute;
    top: 5px;
    right: 0;
    margin-left: 15px;
}

.lang__list {
    position: relative;
    display: flex;
    flex-direction: row;
    padding-right: 7px;
    flex-wrap: wrap;
    padding: 10px;
}

.selection .lang__list {
    background-color: #000000cf;
}

.lang__list::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -3px;
    display: block;
    width: 7px;
    height: 5px;
    background: url("../images/lang-arrow.svg") center no-repeat;
    transition: all .3s ease-out;
}

.lang__item {
    position: relative;
    display: none;
    min-width: 52px;
    padding: 5px 6px 5px 30px;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .15s;
    order: 1;
}

.lang__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 21px;
    height: 15px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.lang__item--en::before {
    background-image: url("../images/flag-us.svg");
}

.lang__item--it::before {
    background-image: url("../images/flag-it.svg");
}

.lang__item--ro::before {
    background-image: url("../images/flag-ro.svg");
}

.lang__item--es::before {
    background-image: url("../images/flag-es.svg");
}

.lang__item--ca::before {
    background-image: url("../images/flag-ca.svg");
}

.lang__item--au::before {
    background-image: url("../images/flag-au.svg");
}

.lang__item--nz::before {
    background-image: url("../images/flag-nz.svg");
}

.lang__item--se::before {
    background-image: url("../images/flag-se.svg");
}

.lang__item--dk::before {
    background-image: url("../images/flag-dk.svg");
}

.lang__item--fi::before {
    background-image: url("../images/flag-fi.svg");
}

.lang__item--no::before {
    background-image: url("../images/flag-no.svg");
}

.lang__item--is::before {
    background-image: url("../images/flag-is.svg");
}

.lang__item--ch::before {
    background-image: url("../images/flag-ch.svg");
}

.lang__item--za::before {
    background-image: url("../images/flag-za.svg");
}

.lang__item--qa::before {
    background-image: url("../images/flag-qa.svg");
}

.lang__item--pr::before {
    background-image: url("../images/flag-pr.svg");
}

.lang__item--tr::before {
    background-image: url("../images/flag-tr.svg");
}

.lang__item--bh::before {
    background-image: url("../images/flag-bh.svg");
}

.lang__item--ae::before {
    background-image: url("../images/flag-ae.svg");
}

.lang__item--mt::before {
    background-image: url("../images/flag-mt.svg");
}

.lang__item--il::before {
    background-image: url("../images/flag-il.svg");
}

.lang__item--cz::before {
    background-image: url("../images/flag-cz.svg");
}

.lang__item--si::before {
    background-image: url("../images/flag-si.svg");
}

.lang__item--cl::before {
    background-image: url("../images/flag-cl.svg");
}

.lang__item--pe::before {
    background-image: url("../images/flag-pe.svg");
}

.lang__item--sg::before {
    background-image: url("../images/flag-sg.svg");
}

.lang__item--hk::before {
    background-image: url("../images/flag-hk.svg");
}

.lang__item--ie::before {
    background-image: url("../images/flag-ie.svg");
}

.lang__item--in::before {
    background-image: url("../images/flag-in.svg");
}

.lang__item.active {
    display: block;
    order: -1;
}

.lang.selection .lang__item {
    display: block;
}

.lang.selection .lang__list::after {
    transform: translateY(-50%) rotate(180deg);
    right: 4px;
}

.main-header__wrapper {
    margin-top: 20px;
    text-align: center;
}

.main-header__attention {
    margin-top: 25px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ea3bc6;
}

.main-header__paragraph {
    margin-top: 10px;
    font-weight: 700;
}

.main-header__profiles-wrapper {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    margin: 340px -50vw 0;
}

.main-header__profiles {
    max-width: 320px;
    margin: 0 -10px;
}

.main-header__profiles .slick-list {
    overflow: visible !important;
}

.main-header__profiles-item {
    margin: 0 10px;
    transition: all .3s ease-out;
    opacity: 0.3;
}

.main-header__profiles-item.slick-current.slick-active {
    opacity: 1;
}

.main-header__flex {
    margin-top: 20px;
    text-align: center;
}

.main-header__registration-offer {
    margin-top: 20px;
}

.main-header__buttons {
    max-width: 280px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* .main-header__registration {
  margin-top: 75px;
} */

.popups {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.popups.shown {
    display: flex;
}

.popups__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.popup {
    position: relative;
    display: none;
    width: 100%;
    max-width: 300px;
    max-height: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    padding: 45px 15px 40px;
    border-radius: 8px;
    background-color: #1e1b2a;
    box-shadow: 0 0 50px 0 rgba(234, 59, 198, 0.7);
    overflow: auto;
}

.popup__close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: 0;
    background: none;
    border: none;
    outline: none;
    transition: all .3s ease-out;
    cursor: pointer;
}

.popup__close-button::before,
.popup__close-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #79719c;
    transition: all .3s ease-out;
}

.popup__close-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close-button:focus::before,
.popup__close-button:focus::after,
.popup__close-button:active::before,
.popup__close-button:active::after,
.popup__close-button:hover::before,
.popup__close-button:hover::after {
    background-color: #ffffff;
}


.popup__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #79719c;
}

.popup__title--login {
    text-align: left;
}

.popup__form {
    margin-top: 15px;
}

.popup__form--login {
    margin-top: 25px;
}

.popup__button {
    padding: 15px 20px;
    margin-top: 25px;
}

.pagination {
    position: relative;
    max-width: 270px;
    z-index: 1;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(234, 59, 198, 0.6);
    z-index: -1;
}

.progress-bar::before,
.progress-bar::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ea3bc6;
}

.progress-bar::before {
    left: 0;
    top: 0;
}

.progress-bar::after {
    left: 0;
    bottom: 0;
}

.progress {
    position: relative;
    display: block;
    width: 100%;
    min-height: 7px;
    border-radius: 8px;
    background-color: #ea3bc6;
    opacity: 0;
    transition: all .5s ease-out;
    z-index: 1;
}

.progress::before,
.progress::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    z-index: -1;
}

.progress::before {
    background: linear-gradient(to right, #e122ae, rgba(255, 255, 255, 0.2) 100%), #e122ae;
}

.progress::after {
    background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    animation: animate-stripes 3s linear infinite;
}

@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}


[data-current-step="1"] .progress {
    width: 0%;
    opacity: 1;
}

[data-current-step="2"] .progress {
    width: 28%;
    opacity: 1;
}

[data-current-step="3"] .progress {
    width: 50%;
    opacity: 1;
}

[data-current-step="4"] .progress {
    width: 73%;
    opacity: 1;
}

[data-current-step="5"] .progress {
    width: 100%;
    opacity: 1;
}

[data-current-step="6"] .progress {
    width: 100%;
    opacity: 1;
}

.pagination__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(234, 59, 198, 0.5);
    transition: all .3s ease-out;
}

.pagination__icon {
    fill: #c1c1c1;
    transition: all .3s ease-out;
}

.pagination__item.active {
    background: linear-gradient(to top, #e122ae, rgba(255, 255, 255, 0.2) 100%), #e122ae;
    box-shadow: none;
}

.pagination__item.active .pagination__icon {
    fill: #ffffff;
}


.form-step-block {
    max-width: 270px;
    margin: 25px auto 0;
}

.form-item {
    position: relative;
}

.form-step-item {
    display: none;
}

.form-step-item.active {
    display: block;
}

.form-label {
    display: block;
    width: 100%;
    text-align: center;
}

.form-field-block {
    position: relative;
    margin-top: 35px;
}

.error-message {
    position: absolute;
    top: -30px;
    right: 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    background-color: #fff;
    color: red;
    opacity: 0;
    z-index: 5;
}

.error-message.error {
    opacity: 1;
}

.form-input input {
    display: block;
    width: 100%;
    margin: 10px auto 0;
    padding: 13px 20px;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    outline: none;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input input::-webkit-input-placeholder {
    color: transparent;
}

.form-input--login input::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.form-input input::-moz-placeholder {
    color: transparent;
}

.form-input--login input::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.form-input input:-ms-input-placeholder {
    color: transparent;
}

.form-input--login input:-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.next-btn {
    margin-top: 15px;
    padding: 15px 25px;
}

.search-button {
    padding: 15px 25px;
}

.form-terms {
    font-size: 12px;
    text-align: center;
}

.form-terms a {
    color: #ea3bc6;
    text-decoration: underline;
}

.form-terms a:hover {
    text-decoration: none;
    cursor: pointer;
}

[data-current-step="6"] .form-btns-block {
    display: none;
}

.last-step-block {
    display: none;
    max-width: 270px;
    width: 100%;
}

.last-step-block .btn {
    margin: 20px auto 30px;
}

[data-current-step="6"] .last-step-block {
    display: block;
}

/* Select settings START*/
.form-select.is-active .select-dropdown {
    visibility: visible;
    transform: translateY(15px);
    opacity: 1;
}

.form-select:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    pointer-events: none;
}

.form-select select {
    width: 100%;
    /* padding: 10px 0; */
    padding: 13px 20px;
    margin: 0 auto;
    font-size: 18px;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    color: rgba(0, 0, 0, 0.85);
    border: none;
    border-radius: 8px;
    background: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    visibility: hidden;
    outline: none;
}

.form-select select::-ms-expand {
    display: none;
}

.form-select .select-value {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 13px 20px;
    margin: 0 auto;
    font-size: 18px;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    line-height: 1.2;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    outline: none;
}

.form-select .select-dropdown {
    position: absolute;
    top: 65%;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 210px;
    padding: 10px 0;
    transform: translateY(-20px);
    border-radius: 8px;
    background: #272731;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.2);
    transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: 100;
}

.form-select .select-dropdown .select-item {
    position: relative;
    display: block;
    padding: 7px 20px;
    font-size: 16px;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    color: #ffffff;
    transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
    cursor: pointer;
}

.form-select .select-dropdown .select-item:hover {
    background-color: rgba(234, 59, 198, 0.1);
}

.form-select .select-dropdown .select-item[value='default'] {
    display: none;
}

.results-list.show {
    display: block;
}

.results-list {
    position: absolute;
    max-height: 210px;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    color: #ffffff;
    background-color: #272731;
    overflow: auto;
    display: none;
    z-index: 10;
}

.results-list li {
    white-space: nowrap;
    padding: 7px 2%;
    cursor: pointer;
    transition: all .3s ease-out;
}

.results-list li:hover {
    background-color: rgba(234, 59, 198, 0.1);
}

/* Select settings END*/

.form-select {
    border-radius: 8px;
}

.form-select:focus,
.form-field:focus {
    box-shadow: 0 0 15px 0 rgba(234, 59, 198, 0.5);
}

.popup__text {
    margin-top: 25px;
    text-align: center;
}

.popup__text-item {
    display: none;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #ea3bc6;
    transition: all .3s ease-out;
}

[data-current-step="1"] .popup__text-item--1 {
    display: block;
}

[data-current-step="2"] .popup__text-item--2 {
    display: block;
}

[data-current-step="3"] .popup__text-item--3 {
    display: block;
}

[data-current-step="4"] .popup__text-item--4 {
    display: block;
}

[data-current-step="5"] .popup__text-item--5 {
    display: block;
}

[data-current-step="6"] .popup__text-item--6 {
    display: block;
}


.advantages {
    margin-top: -215px;
    padding-top: 40px;
    padding-bottom: 80px;
    text-align: center;
}

.advantages__container {
    position: relative;
    z-index: 1;
}

.advantages__logo-wrapper {
    text-align: center;
}

.advantages__logo {
    display: inline-block;
    padding-left: 50px;
    font-size: 24px;
}

.advantages__logo::before {
    width: 46px;
    height: 43px;
}

.advantages__title {
    margin-top: 15px;
    color: #ea3bc6;
}

.advantages__list {
    margin-top: 30px;
}

.advantages__item:not(:first-of-type) {
    margin-top: 15px;
}

.advantages__item::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 14px;
    margin-right: 7px;
    margin-bottom: -2px;
    background: url("../images/list-marker.svg") center / contain no-repeat;
}

.advantages__profiles {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    /* max-width: 300px; */
    margin-top: 35px;
    margin-left: -5px;
    margin-right: -5px;
}

.advantages__profiles-item {
    position: relative;
    width: 88px;
    height: 100px;
    border: 3px solid #ef8bdf;
    border-radius: 20px;
    overflow: hidden;
}

.advantages__profiles-item--active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 114px;
    height: 145px;
    border-color: #ffffff;
}

.advantages__profiles-item--2,
.advantages__profiles-item--4 {
    margin-top: 60px;
}

.advantages__profiles-item--5,
.advantages__profiles-item--7 {
    margin-top: 40px;
}

.advantages__profiles-item--6 {
    margin-top: 100px;
}

.advantages__profiles-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.advantages__profiles-name {
    margin-left: 5px;
    font-weight: 700;
    font-size: 8px;
    text-align: left;
    text-shadow: 0 0 5px black;
}

.advantages__profiles-buttons {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3px;
}

.advantages__profiles-buttons::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 1px;
    height: 100%;
    background-color: #dadada;
}

.advantages__profiles-button {
    width: 50%;
    min-height: 25px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat
}

.advantages__profiles-button--reaction {
    background-image: url("../images/icon-reaction.svg");
    background-size: 15px 15px;
}

.advantages__profiles-button--message {
    background-image: url("../images/icon-message.svg");
    background-size: 16px 13px;
}

.advantages__profiles-favorite {
    position: absolute;
    top: 4px;
    right: 7px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.advantages__profiles-favorite-item {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
}

.advantages__profiles-favorite-item--star {
    margin-right: 3px;
    background-color: #61c891;
    background-image: url("../images/icon-star.svg");
}

.advantages__profiles-favorite-item--diamond {
    background-color: #ef8bdf;
    background-image: url("../images/icon-diamond.svg");
}

@keyframes float {
    0% {
        transform: translatey(0) scale(1);
    }
    50% {
        transform: translatey(-20px) scale(1.1);
    }
    100% {
        transform: translatey(0) scale(1);
    }
}

.advantages__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.advantages__decoration {
    position: absolute;
    display: block;
    /* transform: translate(0); */
}

.advantages__decoration--1 {
    bottom: -70px;
    left: -70px;
    max-width: 189px;
    animation: float 6s ease-in-out infinite;
}

.advantages__decoration--2 {
    bottom: 270px;
    left: -50px;
    max-width: 77px;
    animation: float 5s ease-in-out infinite;
}

.advantages__decoration--3 {
    bottom: 300px;
    left: -15px;
    max-width: 85px;
    animation: float 3s ease-in-out infinite;
}

.advantages__decoration--4 {
    bottom: 290px;
    right: -70px;
    max-width: 147px;
    animation: float 4s ease-in-out infinite;
}

.advantages__decoration--5 {
    bottom: -30px;
    right: -30px;
    max-width: 85px;
    animation: float 3s ease-in-out infinite;
}

.reviews {
    position: relative;
    margin-top: -200px;
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
    background-color: #6f2b64;
    background: linear-gradient(to bottom, transparent 0%, rgba(111, 43, 100, 0.5) 50%, transparent 100%);
}

.reviews__title {
    color: #ea3bc6;
}

.reviews__text {
    min-height: 160px;
    margin-top: 35px;
}

.reviews__info {
    max-width: 200px;
    margin: 0 auto;
}

.reviews__names {
    display: block;
    font-weight: 700;
    color: #ea3bc6;
}

.reviews__quote {
    display: block;
    margin-top: 15px;
}

.reviews__photos {
    min-height: 410px;
    margin-top: 30px;
}

.reviews__photo {
    max-width: 184px;
    margin-left: -92px;
    opacity: 1 !important;
}


#dots {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    text-align: center;
}

#dots span {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all .3s ease-out;
    cursor: pointer;
}

#dots span:not(:last-of-type) {
    margin-right: 10px;
}

#dots span.active {
    background-color: #ea3bc6;
}

.steps {
    margin-top: -100px;
    padding-bottom: 170px;
    text-align: center;
    background: url("../images/steps-bg.jpg") bottom center no-repeat;
}

.steps__title {
    color: #ea3bc6;
}

.steps__list-pagination {
    display: none;
}

.steps__list {
    margin-top: 30px;
}

.steps__item:not(:first-of-type) {
    margin-top: 20px;
}

.steps__marker {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(234, 59, 198, 0.8);
    transition: all .3s ease-out;
    transition-delay: 1s;
}

.steps__icon {
    fill: #c1c1c1;
    transition: all .3s ease-out;
}

.steps__item.active .steps__marker {
    background: linear-gradient(to top, #e122ae, rgba(255, 255, 255, 0.2) 100%), #e122ae;
    box-shadow: none;
}

.steps__item.active .steps__icon {
    fill: #ffffff;
}

.steps__heading {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.steps__heading .accent {
    display: block;
    margin-top: 3px;
}

.steps__desc {
    margin-top: 15px;
}

.steps__button {
    margin-top: 170px;
}

.steps__link {
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
    text-align: center;
}


@media (min-width: 992px) {
    body {
        font-size: 22px;
    }

    .container {
        max-width: 1030px;
        padding: 0 15px;
    }

    .title {
        font-size: 48px;
        line-height: 1.1;
    }

    .logo {
        padding-left: 62px;
        font-size: 32px;
    }

    .logo::before {
        width: 58px;
        height: 55px;
    }

    .button {
        max-width: 300px;
        min-height: 68px;
        padding: 23px 25px;
    }

    .main-header {
        padding-bottom: 120px;
        background-image: url("../images/main-header-bg-desktop.jpg");
    }

    .main-header__top {
        justify-content: center;
        padding: 10px 0;
    }

    .main-header__logo-wrapper {
        margin-left: 15px;
    }

    .main-header__lang {
        top: 15px;
        left: 0;
        margin-left: 0;
        margin-right: 15px;
    }

    .lang__list {
        max-width: 127px;
        background-color: rgba(0, 0, 0, 0);
    }

    .selection .lang__list {
        max-width: 141px;
        background-color: #000000cf;
    }

    .lang__list::after {
        width: 10px;
        height: 7px;
        right: 48px;
        background-size: contain;
    }

    .lang__item {
        min-width: 60px;
        font-size: 14px;
    }

    .lang__item--en::before {
        width: 24px;
        height: 17px;
    }

    .lang__item--it::before {
        width: 24px;
        height: 17px;
    }

    .lang__item--ro::before {
        width: 25px;
        height: 17px;
    }

    .lang__item--es::before {
        width: 25px;
        height: 17px;
    }

    .main-header__wrapper {
        max-width: 531px;
        margin-top: 30px;
        text-align: left;
    }

    .main-header__attention {
        margin-top: 35px;
        font-size: 30px;
    }

    .main-header__paragraph {
        margin-top: 15px;
        font-size: 24px;
    }

    .main-header__profiles-wrapper {
        margin-top: 25px;
    }

    .main-header__profiles {
        max-width: 531px;
        margin-left: -10px;
        margin-right: auto;
    }

    .main-header__flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        text-align: left;
    }

    .main-header__registration-offer {
        max-width: 510px;
        margin-top: 0;
        margin-right: 15px;
        font-size: 24px;
    }

    .main-header__buttons {
        flex-shrink: 0;
        width: 100%;
        max-width: 300px;
        margin-top: 0;
        margin-right: 0;
        margin-left: 15px;
    }

    /* .main-header__registration {
      margin-top: 100px;
    } */
    .popup {
        max-width: 1000px;
        padding: 55px 75px;
    }

    .popup--login {
        max-width: 510px;
        padding: 80px 80px 100px;
    }

    .popup__close-button {
        top: 25px;
        right: 25px;
    }

    .popup__title {
        font-size: 22px;
        text-align: left;
    }

    .popup__form {
        margin-top: 25px;
    }

    .popup__button {
        max-width: 100%;
        margin-top: 35px;
    }

    .pagination {
        max-width: 100%;
    }

    .pagination__item {
        width: 60px;
        height: 60px;
    }

    .pagination__icon--1 {
        width: 24px;
        height: 23px;
    }

    .pagination__icon--2 {
        width: 24px;
        height: 24px;
    }

    .pagination__icon--3 {
        width: 21px;
        height: 24px;
    }

    .pagination__icon--4 {
        width: 24px;
        height: 24px;
    }

    .pagination__icon--5 {
        width: 21px;
        height: 24px;
    }

    .form-label-block {
        min-height: 58px;
        margin-right: -400px;
    }

    .form-label {
        text-align: left;
    }

    .form-step-block {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        max-width: 100%;
        margin: 42px auto 0;
    }

    .form-step-wrapper {
        width: 100%;
        max-width: calc(100% - 350px - 50px);
        margin-right: 50px;
    }

    .form-btns-block {
        width: 100%;
        max-width: 350px;
    }

    .form-input input {
        min-height: 68px;
        padding: 20px;
    }

    .form-input--login input {
        margin-top: 22px;
    }

    .form-input:not(.form-input--login) input {
        margin-top: 0;
    }

    .next-btn {
        max-width: 350px;
        margin-top: 0;
    }

    .search-button {
        min-height: 68px;
        margin-top: 0;
        padding: 23px 25px;
    }

    .last-step-block {
        display: none;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .last-step-block .form-terms {
        order: -1;
        max-width: calc(100% - 300px - 50px);
        margin-right: 50px;
    }

    .last-step-block .btn {
        flex-shrink: 0;
        margin: 0;
    }

    [data-current-step="6"] .last-step-block {
        display: flex;
    }

    .form-select:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        border-bottom: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
        pointer-events: none;
    }

    .form-select select {
        min-height: 68px;
        padding: 24px 20px;
    }

    .form-select .select-value {
        padding: 24px 20px;
    }

    .form-select.is-active .select-dropdown {
        transform: translateY(25px);
    }

    .popup__text {
        margin-top: 35px;
        text-align: left;
    }

    .popup__text-item {
        font-size: 28px;
    }

    .advantages {
        margin-top: -50px;
        padding-top: 65px;
        text-align: left;
    }

    .advantages__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .advantages__wrapper {
        max-width: calc(100% - 550px - 50px);
        margin-left: 50px;
        margin-right: 0;
    }

    .advantages__logo-wrapper {
        text-align: left;
    }

    .advantages__logo {
        padding-left: 60px;
        font-size: 32px;
    }

    .advantages__logo::before {
        width: 58px;
        height: 55px;
    }

    .advantages__title {
        margin-top: 25px;
    }

    .advantages__list {
        margin-top: 60px;
    }

    .advantages__item {
        position: relative;
        padding-left: 35px;
    }

    .advantages__item:not(:first-of-type) {
        margin-top: 25px;
    }

    .advantages__item::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 0;
        display: block;
        width: 22px;
        height: 22px;
        margin: 0;
    }

    .advantages__profiles {
        order: -1;
        /* max-width: 300px; */
        margin: 0;
    }

    .advantages__profiles-item {
        width: 161px;
        height: 177px;
    }

    .advantages__profiles-item--active {
        width: 209px;
        height: 269px;
    }

    .advantages__profiles-item--2,
    .advantages__profiles-item--4 {
        margin-top: 115px;
    }

    .advantages__profiles-item--5,
    .advantages__profiles-item--7 {
        margin-top: 80px;
    }

    .advantages__profiles-item--6 {
        margin-top: 195px;
    }

    .advantages__profiles-name {
        margin-left: 10px;
        font-size: 16px;
    }

    .advantages__profiles-buttons {
        margin-top: 7px;
    }

    .advantages__profiles-button {
        min-height: 35px;
    }

    .advantages__profiles-item--active .advantages__profiles-button {
        min-height: 50px;
    }

    .advantages__profiles-button--reaction {
        background-size: 29px 30px;
    }

    .advantages__profiles-button--message {
        background-size: 31px 27px;
    }

    .advantages__profiles-favorite {
        top: 6px;
        right: 10px;
    }

    .advantages__profiles-favorite-item {
        width: 30px;
        height: 30px;
    }

    .advantages__profiles-favorite-item--star {
        margin-right: 5px;
        background-size: 27px 27px;
    }

    .advantages__profiles-favorite-item--diamond {
        background-size: 22px 18px;
    }

    .advantages__decoration--1 {
        bottom: -100px;
        left: -270px;
        max-width: 349px;
    }

    .advantages__decoration--2 {
        bottom: 500px;
        left: -75px;
        max-width: 130px;
    }

    .advantages__decoration--3 {
        bottom: 560px;
        left: -5px;
        max-width: 127px;
    }

    .advantages__decoration--4 {
        bottom: 600px;
        right: 40%;
        max-width: 171px;
    }

    .advantages__decoration--5 {
        bottom: -30px;
        right: 45%;
        max-width: 127px;
    }

    .reviews {
        margin-top: -300px;
        padding-top: 380px;
        padding-bottom: 300px;
        text-align: left;
    }

    .reviews__container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .reviews__title {
        max-width: 400px;
    }

    .reviews__wrapper {
        width: 100%;
        max-width: 460px;
        margin-right: 50px;
        padding-bottom: 30px;
    }

    .reviews__text {
        min-height: 200px;
        margin-top: 75px;
    }

    .reviews__text-item {
        width: 100%;
        margin-left: -230px;
    }

    .reviews__text-item.bee3D--slide__inactive {
        opacity: 0;
    }

    .reviews__info {
        max-width: 100%;
        margin-left: 0;
    }

    .reviews__quote {
        margin-top: 20px;
    }

    .reviews__photos {
        min-height: 539px;
        width: 100%;
        max-width: calc(100% - 460px - 50px);
        margin-top: 0;
    }

    .reviews__photo {
        max-width: 260px;
        margin-left: -130px;
    }

    #dots {
        position: absolute;
        bottom: 0;
        left: 15px;
    }

    .steps {
        padding-top: 300px;
        margin-top: -300px;
        padding-bottom: 85px;
        text-align: left;
        background-image: url("../images/steps-bg-desktop.jpg");
        background-position: bottom center;
        background-size: cover;
    }

    .steps__wrapper {
        max-width: 510px;
        margin-left: auto;
    }

    .steps__title {
        margin-left: 95px;
    }

    .steps__list-wrapper {
        position: relative;
        z-index: 1;
    }

    .steps__list-progress-bar {
        position: absolute;
        top: 0;
        left: 27px;
        display: block;
        height: 80%;
        box-shadow: 0 0 20px 0 rgba(234, 59, 198, 0.6);
        z-index: -1;
    }

    .steps__list-progress-bar::before,
    .steps__list-progress-bar::after {
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 100%;
        background-color: #ea3bc6;
    }

    .steps__list-progress-bar::before {
        top: 0;
        left: 0;
    }

    .steps__list-progress-bar::after {
        top: 0;
        right: 0;
    }

    .steps__list-progress {
        position: relative;
        display: block;
        min-width: 7px;
        height: 0%;
        border-radius: 8px;
        background-color: #ea3bc6;
        opacity: 0;
        transition: all .5s ease-out;
        z-index: 1;
    }

    .steps__list-progress::before,
    .steps__list-progress::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        border-radius: 8px;
        z-index: -1;
    }

    .steps__list-progress::before {
        background: linear-gradient(to bottom, #e122ae, rgba(255, 255, 255, 0.2) 100%), #e122ae;
    }

    .steps__list-progress::after {
        background-size: 30px 30px;
        background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
        animation: animate-stripes-vertical 5s linear infinite;
    }

    @keyframes animate-stripes-vertical {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 0 60px;
        }
    }


    .steps__list-progress.active-half {
        height: 50%;
        opacity: 1;
    }

    .steps__list-progress.active-full {
        height: 100%;
        opacity: 1;
    }


    .steps__list {
        margin-top: 40px;
    }

    .steps__item {
        position: relative;
        padding-left: 95px;
    }

    .steps__item:not(:first-of-type) {
        margin-top: 50px;
    }

    .steps__marker {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }

    .steps__heading {
        margin-top: 0;
        font-size: 22px;
    }

    .steps__button {
        margin-left: 95px;
        margin-top: 45px;
    }

    .steps__link {
        max-width: 300px;
        margin-left: 95px;
        margin-right: auto;
        text-align: right;
    }
}


/* slick-slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;
    /* overflow: visible; */

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.footer {
    padding: 50px 0;
    font-size: 16px;
}

.footer--main {
    /*margin-top: -150px;*/
    background: #000;
}

.footer .pure-c {
    z-index: auto;
}

.footer__top {
    position: relative;
    z-index: 3;
}

.footer__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-bottom: 10px;
}

.footer__list {
    margin: 0 10px 10px;
}

.footer__list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer__payment {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.footer__payment img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.footer__copyright {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}

.footer__info {
    text-align: center;
    color: #fff;
    opacity: 0.5;
    line-height: 1.25;
}

@media screen and (min-width: 768px) {
    .footer--main {
        /*margin-top: -100px;*/
    }

    .footer__top {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .footer__menu {
        margin-bottom: 0;
    }

    .footer__payment {
        margin-bottom: 0;
        text-align: right;
    }
}

@media screen and (min-width: 992px) {
    .footer__menu {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer__list {
        margin: 0;
    }

    .footer__list a:hover {
        text-decoration: underline;
    }

    .footer__table {
        display: table;
        width: 100%;
    }

    .footer__copyright {
        display: table-cell;
        vertical-align: middle;
        text-align: left;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .footer__info {
        display: table-cell;
        vertical-align: middle;
        text-align: left;
        padding-left: 15px;
    }
}

.svgSprite {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.util_bl {
    display: flex;
    justify-content: flex-end;
    width: 300px;
    margin-left: 95px;
}

.util_bl > button {
    text-align: right;
    margin-top: 15px;
}

@media screen and (max-width: 991px) {
    .util_bl {
        margin-left: 0;
    }

    .util_bl > button {
        margin-top: 0;
        padding-right: 15px !important;
    }
}
