/* FONTS */
@font-face {
    font-family: 'Helvetica Neue Thin';
    src: url('../fonts/HelveticaNeue-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Regular';
    src: url('../fonts/HelveticaNeue.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Roman.eot');
    src: local('../fonts/HelveticaNeueCyr-Roman'),
    url('../fonts/HelveticaNeueCyr-Roman.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Roman.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Thin.eot');
    src: local('../fonts/HelveticaNeueCyr-Thin'),
    url('../fonts/HelveticaNeueCyr-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Thin.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
/* GENERAL */
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}
body,
html {
    -webkit-overflow-scrolling: touch !important;
    -webkit-overscroll-behavior: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000;
    font-family: "HelveticaNeueCyr", sans-serif;
    font-weight: 400;
}

img,
video {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
button {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

figure {
    margin: 0;
}

button {
    border: 0;
    outline: none;
    cursor: pointer;
    background-color: transparent;
}

button:focus {
    outline: none;
}

[disabled] {
    cursor: not-allowed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0;
    font-size: unset;
}

p {
    margin: 0;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: normal;
    word-wrap: normal;
    overflow-wrap: normal;
}

input,
select,
textarea {
    font-family: inherit;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    outline: none;
}
.menu-open {
    overflow: hidden;
}
/* Mobile btn */
.mobile-btn {
    position: absolute;
    top: -35px;
    right: 0;
    display: none;
    width: 50px;
    height: 50px;
    padding: 10px;
}

.mobile-btn span,
.mobile-btn span:after,
.mobile-btn span:before {
    display: block;
    content: "";
    height: 3px;
    width: 27px;
    position: absolute;
    background-color: #fff;
    top: 50%;
    margin-top: -1px
}

.mobile-btn span:before {
    margin-top: 6px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.mobile-btn span:after {
    margin-top: -9px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.mobile-btn--active span {
    background-color: transparent !important;
}

.mobile-btn--active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 0;
    background-color: #fff;
}

.mobile-btn--active span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 0;
    background-color: #fff;
}

/* END Mobile btn */


.main {
    overflow-x: hidden;
}
container {
    max-width: 1440px;
}
/* HEADER */
.header {
    background-color: #000;
    color: #fff;
    position: fixed;
    padding: 33px 0 37px 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.header__logo {
    width: 130px;
    height: 21px;
}
.header__nav__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.header__nav__item {
    margin-right: 10px;
    font-size: 0.8rem;
}
/* HERO */
.hero {
    background: #f5f9f9 url("../images/hero/banner.png") center no-repeat;
    background-size: 100.2% 100%;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
}
.main__title {
    font-size: 52px;
    margin-bottom: 60px;
    font-weight: 100;
}
.hero__content__desc {
    font-size: 22px;
    margin-bottom: 48px;
    padding-right: 10%;
    line-height: 32px;
}
.main__btn {
    border: 3px solid #fff;
    padding: 8px 35px;
    color: #fff;
}
.main__btn:hover {
    background-color: #fff;
    color: #000;
    transition: all .3s;
    box-shadow: 0 0 4px white;
}
/* advantages */
.advantages {
    background: #fff url("../images/advantages/bg2.png") center no-repeat;
    background-size: 100% 100%;
    margin-top: -144px;
    padding: 144px 0 100px;
    position: relative;
    z-index: 8;
}
.advantages__content {
    background: url("../images/advantages/circle-photo.png") center no-repeat;
    background-size: contain;
    height: 600px;
    width: 600px;
    margin: 0 auto;
    padding: 100px;
    text-align: center;
    position: relative;
}
.advantages__content__fly-desc {
    position: absolute;
    max-width: 255px;
    text-align: left;
    font-size: 16px;
    font-weight: 100;
    line-height: 30px;
}
.advantages__fly-desc--1 {
    top: 10%;
    left: -42%;
}
.advantages__fly-desc--2 {
    top: 21%;
    right: -46%;
}
.advantages__fly-desc--3 {
    top: 45%;
    left: -42%;
}
.advantages__fly-desc--4 {
    top: 36%;
    right: -46%;
}
.advantages__fly-desc--5 {
    top: 70%;
    left: -42%;
}
.advantages__fly-desc--6 {
    top: 61%;
    right: -46%;
}
/* ABOUT */
.about {
    background: url('../images/about/photo2.jpg') center right no-repeat;
    background-size: 34%;
    padding: 100px 0 144px 0;
    color: #702C62;
    display: flex;
    align-items: center;
    font-weight: 100;
}
.about__desc {
    font-size: 18px;
    line-height: 27px;
    color: #000;
}
/* PREPARE */
.prepare {
    background:  url("../images/prepare/bg4.png") center no-repeat;
    background-size: 100.2% 100%;
    position: relative;
    z-index: 7;
    margin-top: -144px;
    padding: 184px 0 100px;
    display: flex;
    align-items: center;
    color: #fff;
}
.prepare__content {
    margin: 3rem 0;
}
.prepare__title {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 50px;
}
.prepare__list {
    list-style-image: url("../images/prepare/tick1.svg");
    font-weight: 100;
    padding-left: 25px;
}
.prepare__item {
    padding-left: 20px;
    margin-bottom: 20px;
}
/* testimony */
.testimony {
    background:  url("../images/testimony/bg5.png") center no-repeat;
    background-size: 100% 100%;
    /*position: relative;*/
    /*z-index: 7;*/
    margin-top: -144px;
    padding: 250px 0 100px 0;
    display: flex;
    align-items: center;
    color: #702C62;
}
.testimony__item {
    font-size: 26px;
    font-weight: 100;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}
.testimony__item-num {
    color: #702C62;
    border: 1px solid #702C62;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    margin-right: 15px;
}
/* DCD */
.dcd {
    background:  url("../images/prepare/bg4.png") center no-repeat;
    background-size: 100.2% 100%;
    position: relative;
    z-index: 7;
    min-height: 700px;
    margin-top: -144px;
    padding: 184px 0 100px;
    color: #fff;
    font-size: 18px;
}
.dcd__img {
    position: absolute;
    top: 40%;
    /*left: -25px;*/
    /*transform: translateY(-50%);*/
    max-width: 55%;
}
.dcd__title {
    margin-bottom: 35px;
}
.dcd__desc {
    font-weight: 100;
}
.dcd__desc__link {
    display: inline-block;
    border-bottom: 1px solid #fff;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    cursor: pointer;
}
.dcd__desc__link--popover::before {
    display: block;
    content: '';
    position: absolute;
    height: 30px;
    top: -30px;
    left: 0;
    right: 0;
    z-index: 9;
}
.dcd__desc__link--popover {
    position: absolute;
    top: 30px;
    right: -9999px;
    background-color: #fff;
    padding: 30px 36px;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid #707070;
    z-index: 9;
}
.popover__icon {
    position: absolute;
    top: 5px;
    right: 5px;
}
.popover__list {
    list-style-image: url("../images/dcd/tick1-purple.svg");
    font-weight: 100;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
}
.popover__list::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    /*content: url("../images/dcd/info-icon.svg");*/
}
.popover__item {
    margin-bottom: 10px;
}
.dcd__desc__link[data-popover="dcd__desc__link--popover-1"]:hover .dcd__desc__link--popover,
.dcd__desc__link[data-popover="dcd__desc__link--popover-2"]:hover .dcd__desc__link--popover {
    right: 0;
}
/* RESULTS */
.results {
    background-color: #f5f9f9;
    color: #702C62;
    margin-top: -225px;
    padding: 300px 0;
}
.twentytwenty-container img {
    min-height: 300px;
    object-fit: cover;
}
.twentytwenty-handle {
    background: url("../images/results/element1.png") center no-repeat;
    background-size: 100%;
}
/* FAQ */
.faq {
    background: url("../images/faq/bg8.png") center no-repeat;
    background-size: 100% 100%;
    margin-top: -150px;
    min-height: 1100px;
    padding: 144px 0 200px;
    position: relative;
}
.faq__img {
    position: absolute;
    /*top: 50%;*/
    top: 350px;
    /*transform: translateY(-50%);*/
    right: -25px;
    bottom: 0;
    width: 40%;
}
.faq .main__title {
    color: #702C62;
}
.faq__question {
    cursor: pointer;
    min-height: 50px;
    line-height: 50px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 100;
}
.faq__question--active {
    background-color: #F2F2F2;
    color: #702C62;
}
.faq__question-icon {
    width: 20px;
    height: 12px;
    display: inline-block;
    background: url('../images/faq/arrow-down.svg') center no-repeat;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.faq__question-icon--active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faq__answer {
    display: none;
    color: #9e9d9d;
    padding:0 0 30px 5px;
}
.faq__answer a {
    text-decoration: underline;
}
.faq__answer__more-text {
    display: none;
    margin-top: 20px;
}
.faq__answer__table-box {
    border-collapse: collapse;
    text-align: center;
}
.faq__answer__table-box td {
    border: 1px solid rgba(0,0,0,0.2);
}
.faq__answer__table-box td {
    padding: 15px;
}

.faq__answer__table-box caption {
    margin-bottom: 10px;
}
.faq__answer__table-box tr:first-child .faq__answer__table-col-1 {
    border-top: none;
    border-left: none;
}
.faq__answer__table-col-1 {
    border-left: none;
    text-align: left;
}
.faq__answer__table-box .faq__answer__table-col-3 {
    border-width: 2px;
    border-style: solid;
    border-left-color:#702C62!important;
    border-right-color:#702C62!important;
    border-bottom-color:rgba(0,0,0,0.2);
    background-color: #f5f9f9;
    color: #702C62;
}
.faq__answer__table-box tr:first-child td:nth-child(3) {
    border-top-color: #702C62!important;
    background-color: #fff;
}
.faq__answer__table-box tr:last-child  td:last-child {
    border-bottom-color: #702C62!important;
}

/* Questions */
.questions {
    background-color: #f5f9f9;
    /*height: 600px;*/
    margin-top: -150px;
    padding-top: 200px;
    padding-bottom: 30px;
    min-height: 350px;
    color: #702C62;
}
.questions__form__input {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    width: 100%;
    padding: 5px;
    background-color: transparent;
    margin-bottom: 50px;
    height: 30px;
}
.questions__form__message {
    border: 1px solid #000;
    min-height: 96px;
    width: 100%;
    resize: none;
    padding: 10px;
    margin-bottom: 50px;
    background-color: #f5f9f9;
}
.questions__form__input::placeholder,
.questions__form__message::placeholder {
    font-size: 14px;
}
.questions__form_submit {
    background-color: #702C62;
    color: #fff;
    padding: 15px 60px;
    border-color: #702C62;
}
.questions__content {
    color: #000;
}
.questions__content__subtitle {
    font-weight: 100;
    margin-bottom: 10px;
}

.questions__content__phone {
    display: block;
    font-size: 1.375rem;
    font-weight: 100;
    margin-bottom: 10px;
}

.form-info__feedback {
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-content: center;
}

.feedback-list {
    display: flex;
    align-items: baseline;
}

.feedback-item {
    margin-left: 10px;
}
.feedback-item:first-child {
    margin-left: 0;
}

/* Footer */

.footer {
    background-color: #000;
    width: 100%;
    min-height: 185px;
    padding: 35px 35px 0 35px;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sub-nav__list {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 0 40px;
    height: 100%;
}

.footer__nav-list {
    display: flex;
    justify-content: center;
    text-align: center;
}
.footer__nav-item {
    position: relative;
    width: 25%;
    font-size: 15px;
}
.footer__nav-item::after {
    position: absolute;
    top: 0;
    right: -1px;
    height: 92px;
    display: block;
    content: '';
    width: 1px;
    background-color: #fff;
}

.footer__nav-item:last-child::after {
    display: none;
}

.sub-nav__item {
    margin-bottom: 5px;
    white-space: nowrap;
}

.sub-nav__link {
    color: #fff;
    text-decoration: none;
}

.copyright__list {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.copyright__item {
    margin-bottom: 5px;
}
.footer__limit {
    text-align: center;
    color: #fff;
    padding: 35px 0 10px 0 ;
    font-size: 12px;
}
.footer__limit span {
    font-size: 16px;
}
/* Modal */
#main__modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 99999;
}
.main__modal--open {
    overflow: hidden;
}
.main__modal__container {
    margin: 0 auto;
    /*width: 55vw;*/
    max-width: 835px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    position: relative;
}
.main__modal__container .row {
    height: 100%;
}
.main__modal__bg {
    background: #702C62 url('../images/modal/bg-lines.jpg') center no-repeat;
    background-size: cover;
}
.main__modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 19px;
    height: 19px;
    cursor: pointer;
    background: url('../images/modal/cross-out.svg') center no-repeat;
    background-size: cover;
    z-index: 9;
}
.main__modal__content {
    padding: 30px 70px;
}
.main__modal__title {
    font-size: 36px;
    color: #702C62;
    font-weight: 100;
    margin-bottom: 20px;
}
.main__modal__subtitle {
    font-size: 22px;
    color: #702C62;
    margin-bottom: 45px;
}

/* Adaptive */
@media screen and (max-width: 1200px) {
    .hero,
    .advantages,
    .prepare,
    .dcd {
        background-size: cover;
    }
    .header__nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        transition: all 0.3s;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px;

    }
    .header__nav__list--mobile {
        right: 0;
        height: 100vh;
        background-color: rgba(0,0,0,0.9);
        margin-right: 0;
    }
    .mobile-btn {
        display: block;
        z-index: 9999;
    }
    .header__nav__list li {
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .advantages__content {
        width: 520px;
        background-size: 90%;
    }
}
@media screen and (max-width: 991px) {
    .hero,
    .advantages,
    .prepare,
    .dcd {
        background-size: 123% 100%;
    }
    .advantages {
        margin-top: -300px;
        padding-top: 270px;
    }
    .advantages__content {
        /*background: url("../images/advantages/circle-photo-mob.png") no-repeat center 8%;*/
        /*background-size: 90%;*/
        background: none;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 100px 0 0 0;
        /*!*height: 1200px;*!*/
        height: 100%;
    }
    .advantages__content__fly-desc {
        position: static;
        min-width: 100%;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #fff;
    }

    .advantages__content__fly-desc:last-child {
        border-bottom: none;
    }
    .prepare {
        padding-top: 350px;
        padding-bottom: 210px;
    }
    .about {
        background-position: 100% 100%;
    }
    .testimony__item {
        font-size: 22px;
    }
    .dcd__img,
    .faq__img {
        display: none;
    }
    .twenty {
        margin-bottom: 20px;
    }
    .questions__content {
        text-align: center;
    }
    .feedback-list {
        justify-content: center;
    }
    .sub-nav__list {
        padding: 0 15px;
        font-size: 14px;
    }
    .main__modal__container {
        width: 95%;
    }
    .main__modal__content {
        text-align: center;;
    }
}
@media screen and (max-width: 767px) {
    .hero {
        height: 85vh;
        background-image: url('../images/hero/banner-candela-mob.png');
        background-size: 100% 100%;
    }
    .main__title {
        font-size: 38px;
        text-align: center;
        margin-bottom: 30px;
    }
    .hero__content__desc {
        margin-bottom: 30px;
    }
    .header {
        padding: 25px 0;
    }
    .header__logo__link {
        position: relative;
        z-index: 9;
    }
    .header__nav__list {
        width: 100%;
        padding: 100px 100px 100px 20px;
    }
    .header__nav__list li {
        font-size: 18px;
    }
    .advantages,
    .prepare,
    .dcd {
        background-size: cover;
    }
    .hero__content {
        text-align: center;
    }
    .hero__content__desc {
        font-size: 18px;
        line-height: 1.4rem;
        padding-right: 0;
    }
    .advantages__content {
        width: 100%;
    }
    .advantages__content__fly-desc,
    .about__desc {
        line-height: 1.4rem;
    }
    .about {
        background-size: 68%;
        padding-top: 75px;
        padding-bottom: 190px;
    }
    .about__desc {
        font-size: 17px;
        text-align: center;
    }
    .prepare {
        padding-bottom: 100px;
        margin-top: -210px;
    }
    .prepare::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: #fff;
        
    }
    .testimony {
        padding-top: 200px;
    }
    .testimony .col-12:last-child .testimony__item {
        margin-bottom: 20px;
    }
    .dcd {
        text-align: center;
        padding-top: 200px;
    }
    .dcd__desc__link {
        text-align: left;
    }
    .dcd__desc__link[data-popover="dcd__desc__link--popover-1"]:hover .dcd__desc__link--popover {
        right: -50%;
    }
    .results {
        padding-top: 270px;
        padding-bottom: 200px;
    }
    .faq {
        padding-top: 70px;
        background-size: cover;
        padding-bottom: 40px;
        min-height: 870px;
    }
    .faq__question {
        padding: 0 5px;
        line-height: 1.4rem;
    }
    .faq__question-icon {
        min-width: 18px;
        height: 9px;
    }
    .faq__answer__table-box td {
        font-size: 14px;
    }
    .questions__form {
        text-align: center;
    }
    .questions__content__phone {
        font-size: 1.20rem;
    }
    .questions__form__input {
        height: 40px;
        margin-bottom: 25px;
    }
    .feedback-list {
        flex-wrap: wrap;
    /*    flex-direction: column;*/
    /*    align-items: center;*/
    }
    .feedback-item {
        width: 29%;
    }
    .feedback-item:first-child {
        margin-bottom: 20px;
        width: 100%;
    }
    .footer__logo {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer__nav {
        margin: 20px 0;
    }
    .footer__nav-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer__nav-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        width: 65%;
    }
    .footer__nav-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .footer__nav-item::after {
        height: 1px;
        width: 100%;
        top: 100%;
    }
    .footer__copyright {
        text-align: center;
        font-size: 12px;
    }
    .main__modal__title {
        font-size: 28px;
    }
    .main__modal__subtitle {
        font-size: 18px;
    }
    .main__modal__content {
        padding: 30px 40px;
    }
    #main__modal {
        overflow: unset;
    }
}
@media screen and (max-width: 320px) {
    .sub-nav__list {
        font-size: 13px;
        padding: 0 10px;
    }
}

.scroll__top {
    background: url('../images/arrow-up.svg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-size:50%;
    padding:20px;
    border-radius:50%;
    background-color:rgba(0,0,0,0.5);
    display: none;
    position: fixed;
    bottom: 6%;
    left: 2.5%;
    z-index: 9999;
}

.scroll__top--active {
    display: block;
}