.c-main {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 760px) {
    .c-main {
        max-width: 1440px;
    }
}


.heading {
    font-size: 32px;
    font-weight: 900;
    text-transform: capitalize;
}

@media (min-width: 1200px) {
    .heading {
        font-size: 48px;
    }
}

.text {
    font-size: 16px;
    font-weight: 600;
}

.text--big {
    font-weight: 600;
    font-size: 18px;
}

@media (min-width: 1200px) {
    .text {
        font-size: 18px;
    }
    .text--big {
        font-size: 24px;
    }
}

.c-container {
    padding: 0 25px;
}

@media (min-width: 760px) {
    .c-container {
        padding: 0 75px;
    }
}

@media (min-width: 990px) {
    .c-container {
        padding: 0 100px;
    }
}

@media (min-width: 1280px) {
    .c-container {
        padding: 0 150px;
    }
}

.lazyLoadBg {
    background: none !important;
    background-image: none !important;
}

.lazyLoadBg:before, .lazyLoadBg:after {
    background: none !important;
    background-image: none !important;
}

.c-intro {
    padding: 55px 0 75px;
    position: relative;
}

.c-intro:before {
    content: '';
    position: absolute;
    opacity: .5;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    width: 250px;
    height: 180px;
    background-color: #FF8200;
    left: -150px;
    bottom: 30px;
}

.c-intro:after {
    content: '';
    position: absolute;
    opacity: .5;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    width: 150px;
    height: 180px;
    background-color: #FF8200;
    right: 160px;
    top: 30px;
}

@media (min-width: 760px) {
    .c-intro {
        padding: 65px 0  105px
    }
}

@media (min-width: 990px) {
    .c-intro {
        padding: 55px 0 125px
    }
}

@media (min-width: 1200px) {
    .c-intro {
        padding: 75px 0 150px;
    }
}

.c-intro__heading {
    font-size: 50px;
    font-weight: 900;
    text-align: right;
}

.c-intro__heading--colored {
    display: block;
    text-align: left;
}

.c-intro__heading .colored {
    display: block;
    text-align: center;
}

@media (min-width: 375px) {
    .c-intro__heading {
        font-size: 70px;
    }
}

@media (min-width: 760px) {
    .c-intro__heading {
        font-size: 80px;
        max-width: 650px;
        margin: 0 auto;
        text-align: left;
    }
    .c-intro__heading--colored,
    .c-intro__heading .colored {
        display: inline;
    }
    .c-intro__heading--regular {
        text-align: right;
        display: block;
    }
}

@media (min-width: 990px) {
    .c-intro__heading {
        font-size: 98px;
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .c-intro__heading {
        font-size: 120px;
        max-width: 980px;
    }
}

.c-form {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF8200), color-stop(60%, #FF8200), color-stop(60%, #fff));
    background: -o-linear-gradient(top, #FF8200 0%, #FF8200 60%, #fff 60%);
    background: linear-gradient(to bottom, #FF8200 0%, #FF8200 60%, #fff 60%);
}

@media (min-width: 760px) {
    .c-form {
        background: none;
        background-color: #FF8200;
        padding: 30px 75px 50px;
    }
}

@media (min-width: 990px) {
    .c-form {
        padding: 35px 100px 60px;
    }
}

@media (min-width: 1200px) {
    .c-form {
        padding: 70px 150px 70px;
    }
}

@media (min-width: 760px) {
    .c-form__container {
        max-width: 1440px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.c-form__text-block {
    background-color: #FF8200;
    padding: 50px 20px 45px;
    color: #fff;
}

@media (min-width: 760px) {
    .c-form__text-block {
        background-color: transparent;
        padding: 0;
        max-width: 285px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 5%;
    }
}

@media (min-width: 990px) {
    .c-form__text-block {
        max-width: 350px;
    }
}

@media (min-width: 1200px) {
    .c-form__text-block {
        max-width: 400px;
    }
}

@media (min-width: 1440px) {
    .c-form__text-block {
        max-width: 575px;
    }
}

.c-form__heading {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 25px;
}

@media (min-width: 760px) {
    .c-form__heading {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

@media (min-width: 990px) {
    .c-form__heading {
        font-size: 21px;
        margin-bottom: 13px;
    }
}

@media (min-width: 1200px) {
    .c-form__heading {
        font-size: 25px;
        font-weight: 800;
        margin-bottom: 15px;
    }
}

.c-form__text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 50px;
}

@media (min-width: 760px) {
    .c-form__text {
        font-size: 12px;
        margin-bottom: 25px;
    }
}

@media (min-width: 990px) {
    .c-form__text {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .c-form__text {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 50px;
    }
}

.c-form__contacts {
    font-size: 20px;
    font-weight: 600;
    padding-left: 40px;
    color: #fff;
    position: relative;
    width: fit-content;
}
.c-form__contacts::selection {
    background-color: #5a4c3e;
}
.c-form__contacts::-moz-selection {
    background-color: #5a4c3e;
}

.c-form__contacts:before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-form__contacts--mail {
    display: block;
    margin-bottom: 30px;
}

.c-form__contacts--mail:before {
    background-image: url(../img/contacts/mail.svg);
    width: 31px;
    height: 23.5px;
    left: 0;
}

.c-form__contacts--address {
    margin-bottom: 55px;
}

.c-form__contacts--address:before {
    background-image: url(../img/contacts/address.svg);
    width: 31px;
    height: 23.5px;
    left: 7px;
}

@media (min-width: 760px) {
    .c-form__contacts {
        font-size: 12px;
    }
    .c-form__contacts--mail {
        margin-top: auto;
        margin-bottom: 20px;
    }
    .c-form__contacts--mail:before {
        width: 24px;
        height: 16.5px;
    }
    .c-form__contacts--address:before {
        width: 11.5px;
        height: 20px;
        left: 8px;
    }
}

@media (min-width: 990px) {
    .c-form__contacts {
        font-size: 15px;
    }
    .c-form__contacts--mail {
        margin-bottom: 30px;
    }
    .c-form__contacts--mail:before {
        width: 29px;
        height: 20px;
    }
    .c-form__contacts--address {
        margin-bottom: 38px;
    }
    .c-form__contacts--address:before {
        width: 14px;
        height: 24.5px;
        left: 7px;
    }
}

@media (min-width: 1200px) {
    .c-form__contacts {
        font-size: 18px;
    }
    .c-form__contacts--mail {
        margin-bottom: 50px;
    }
    .c-form__contacts--address {
        margin-bottom: 45px;
    }
    .c-form__contacts--address:before {
        width: 17px;
        height: 30px;
        left: 9px;
    }
}

.c-form__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-form__social-item {
    margin-right: 25px;
}

.c-form__social-item:last-of-type {
    margin-right: 0;
}

@media (min-width: 760px) {
    .c-form__social-item {
        margin-right: 15px;
    }
}

@media (min-width: 990px) {
    .c-form__social-item {
        margin-right: 17px;
    }
}

@media (min-width: 1200px) {
    .c-form__social-item {
        margin-right: 19px;
    }
}

.c-form__social-img {
    max-height: 35px;
}

@media (min-width: 760px) {
    .c-form__social-img {
        max-height: 20px;
    }
}

@media (min-width: 990px) {
    .c-form__social-img {
        max-height: 22px;
    }
}

@media (min-width: 1200px) {
    .c-form__social-img {
        max-height: none;
    }
}

.c-form__form {
    padding: 65px 50px 50px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 760px) {
    .c-form__form {
        padding: 35px 30px 25px;
        border-radius: 20px;
        margin-top: -105px;
    }
}

@media (min-width: 990px) {
    .c-form__form {
        margin-top: -115px;
        padding: 40px 40px 30px;
        min-width: 395px;
    }
}

@media (min-width: 1200px) {
    .c-form__form {
        margin-top: -175px;
        padding: 45px 45px 30px;
        min-width: 485px;
    }
}

.c-form__textarea,
.c-form__input {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #c5c5c5;
    padding: 8px 5px;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 600;
}

.c-form__textarea:last-of-type,
.c-form__input:last-of-type {
    margin-bottom: 40px;
}

@media (min-width: 760px) {
    .c-form__textarea,
    .c-form__input {
        font-size: 12px;
        margin-bottom: 35px;
    }
    .c-form__textarea:last-of-type,
    .c-form__input:last-of-type {
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .c-form__textarea,
    .c-form__input {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .c-form__textarea:last-of-type,
    .c-form__input:last-of-type {
        margin-bottom: 35px;
    }
}

.c-form__checkbox-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
}

@media (min-width: 760px) {
    .c-form__checkbox-wrapper {
        margin-bottom: 26px;
    }
}

@media (min-width: 992px) {
    .c-form__checkbox-wrapper {
        margin-bottom: 32px;
    }
}

@media (min-width: 1200px) {
    .c-form__checkbox-wrapper {
        margin-bottom: 40px;
    }
}

.c-form__checkbox {
    display: none;
}

.c-form__checkbox-label {
    display: block;
    border: 1px solid #BC8348;
    background-color: transparent;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 13px;
    min-width: 33px;
    max-width: 33px;
    min-height: 33px;
    max-height: 33px;
    cursor: pointer;
}

.c-form__checkbox-label--checked {
    background-image: url(../img/contacts/checked.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

@media (min-width: 760px) {
    .c-form__checkbox-label {
        min-width: 17px;
        max-width: 17px;
        min-height: 17px;
        max-height: 17px;
    }
}

@media (min-width: 990px) {
    .c-form__checkbox-label {
        min-width: 20.5px;
        max-width: 20.5px;
        min-height: 20.5px;
        max-height: 20.5px;
    }
}

@media (min-width: 1200px) {
    .c-form__checkbox-label {
        min-width: 25px;
        max-width: 25px;
        min-height: 25px;
        max-height: 25px;
    }
}

.c-form__checkbox-text {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #BC8348;
    cursor: pointer;
}

@media (min-width: 760px) {
    .c-form__checkbox-text {
        font-size: 12px;
    }
}

@media (min-width: 990px) {
    .c-form__checkbox-text {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .c-form__checkbox-text {
        font-size: 16px;
    }
}

.c-form__btn {
    background-color: #FF8200;
    border-radius: 45px;
    font-size: 22px;
    font-weight: 600;
    padding: 15px 60px;
    cursor: pointer;
    display: table;
    margin: 0 auto;
    outline: none;
    color: #FFFFFF;
    cursor: pointer;
    background-color: #FF8200;
    -webkit-transition: background-color .3s, color .3s;
    -o-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
    border: 1px solid #FF8200;
}

.c-form__btn:hover {
    color: #FF8200;
    background-color: transparent;
    border: 1px solid #FF8200;
}

@media (min-width: 760px) {
    .c-form__btn {
        font-size: 15px;
        padding: 10px 25px;
    }
}

@media (min-width: 990px) {
    .c-form__btn {
        font-size: 18px;
        padding: 15px 30px;
    }
}

@media (min-width: 1200px) {
    .c-form__btn {
        font-size: 22px;
        padding: 16px 45px;
    }
}

.c-form__btn:last-of-type {
    margin-bottom: 20px;
}

.c-faq {
    padding: 50px 0;
}

@media (min-width: 760px) {
    .c-faq {
        padding: 65px 0;
        position: relative;
    }
    .c-faq:before {
        content: '';
        position: absolute;
        opacity: .5;
        -webkit-filter: blur(100px);
        filter: blur(100px);
        width: 250px;
        height: 180px;
        background-color: #FF8200;
        left: -150px;
        bottom: 30px;
    }
    .c-faq:after {
        content: '';
        position: absolute;
        opacity: .5;
        -webkit-filter: blur(100px);
        filter: blur(100px);
        width: 150px;
        height: 180px;
        background-color: #FF8200;
        right: 0;
        bottom: 250px;
    }
}

@media (min-width: 990px) {
    .c-faq {
        padding: 80px 0;
    }
}

@media (min-width: 1200px) {
    .c-faq {
        padding: 100px 0;
    }
}

.c-faq__heading {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 70px;
}

@media (min-width: 760px) {
    .c-faq__heading {
        font-size: 34px;
        margin-bottom: 60px;
        text-align: center;
    }
}

@media (min-width: 990px) {
    .c-faq__heading {
        font-size: 40px;
        margin-bottom: 70px;
    }
}

@media (min-width: 1200px) {
    .c-faq__heading {
        font-size: 50px;
        margin-bottom: 90px;
    }
}

.c-faq__item {
    padding: 0 30px 65px 25px;
    border-bottom: 1px solid #FF8200;
    margin-bottom: 65px;
    position: relative;
}

.c-faq__item:before {
    content: '';
    position: absolute;
}

.c-faq__item:before {
    width: 13px;
    height: 13px;
    top: 5px;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #FF8200;
}

.c-faq__item:last-of-type {
    margin-bottom: 45px;
}

@media (min-width: 760px) {
    .c-faq__item {
        padding-bottom: 25px;
        margin-bottom: 28px;
    }
    .c-faq__item:last-of-type {
        margin-bottom: 47px;
    }
}

@media (min-width: 990px) {
    .c-faq__item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .c-faq__item:before {
        width: 12px;
        height: 12px;
        top: 6px;
    }
    .c-faq__item:after {
        width: 18px;
        height: 18px;
        top: 0;
        right: 0;
    }
    .c-faq__item:last-of-type {
        margin-bottom: 57px;
    }
}

@media (min-width: 1200px) {
    .c-faq__item {
        padding-bottom: 40px;
        padding-left: 40px;
        margin-bottom: 40px;
    }
    .c-faq__item:before {
        width: 15px;
        height: 15px;
    }
    .c-faq__item:after {
        width: 22px;
        height: 22px;
        top: 0;
        right: 0;
    }
    .c-faq__item:last-of-type {
        margin-bottom: 57px;
    }
}

.c-faq__item-heading {
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    margin: 0;
    -webkit-transition: margin-bottom .3s;
    -o-transition: margin-bottom .3s;
    transition: margin-bottom .3s;
}

.c-faq__item-heading--active {
    margin-bottom: 23px;
}

@media (min-width: 760px) {
    .c-faq__item-heading {
        font-size: 17px;
    }
    .c-faq__item-heading--active {
        margin-bottom: 16px;
    }
}

@media (min-width: 990px) {
    .c-faq__item-heading {
        font-size: 20.5px;
    }
    .c-faq__item-heading--active {
        margin-bottom: 20px;
    }
}

@media (min-width: 990px) {
    .c-faq__item-heading {
        font-size: 25px;
    }
    .c-faq__item-heading--active {
        margin-bottom: 25px;
    }
}

.c-faq__item-btn {
    position: absolute;
    right: 0;
    top: 5px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.c-faq__item-btn .c-faq__item-svg--vertical {
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
}

.c-faq__item-btn--active .c-faq__item-svg--vertical {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 0%;
}

@media (min-width: 600px) {
    .c-faq__item-btn {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .c-faq__item-btn {
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .c-faq__item-btn {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.c-faq__text {
    font-size: 20px;
    font-weight: 600;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
}

.c-faq__text--regular {
	height:auto;
}

.c-faq__text--lead {
    text-align: center;
    margin-bottom: 50px;
}

@media (min-width: 760px) {
    .c-faq__text {
        font-size: 14px;
        max-width: 90%;
    }
    .c-faq__text--lead {
        max-width: 370px;
        margin: 0 auto 30px;
    }
}

@media (min-width: 990px) {
    .c-faq__text {
        font-size: 16px;
    }
    .c-faq__text--lead {
        max-width: 300px;
        margin-bottom: 37px;
    }
}

@media (min-width: 1200px) {
    .c-faq__text {
        font-size: 20px;
    }
    .c-faq__text--lead {
        max-width: 370px;
        margin-bottom: 45px;
    }
}

.c-faq__link {
    color: #FF8200;
    position: relative;
    text-decoration: underline;
}

.c-faq__btn-link {
    display: table;
    margin: 0 auto;
    outline: none;
    color: #FFFFFF;
    cursor: pointer;
    background-color: #FF8200;
    -webkit-transition: background-color .3s, color .3s;
    -o-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
    border: 1px solid #FF8200;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 40px;
    padding: 20px;
    min-width: 300px;
}

.c-faq__btn-link:hover {
    color: #FF8200;
    background-color: transparent;
    border: 1px solid #FF8200;
}

.c-faq__btn-link:first-of-type {
    margin-bottom: 110px;
}

@media (min-width: 760px) {
    .c-faq__btn-link {
        font-size: 15px;
        padding: 10px 20px;
        min-width: auto;
    }
    .c-faq__btn-link:last-of-type {
        padding: 10px 30px;
    }
}

@media (min-width: 990px) {
    .c-faq__btn-link {
        font-size: 18px;
        padding: 14px 30px;
        min-width: auto;
    }
    .c-faq__btn-link:first-of-type {
        margin-bottom: 110px;
    }
    .c-faq__btn-link:last-of-type {
        padding: 14px 40px;
    }
}

@media (min-width: 1200px) {
    .c-faq__btn-link {
        font-size: 22px;
        padding: 16px 30px;
        min-width: auto;
        font-weight: 500;
    }
    .c-faq__btn-link:first-of-type {
        margin-bottom: 110px;
    }
    .c-faq__btn-link:last-of-type {
        padding: 14px 40px;
    }
}

.c-faq__img {
    max-height: 193px;
    display: table;
    margin: 0 auto 40px;
}

@media (min-width: 760px) {
    .c-faq__img {
        max-height: 130px;
    }
}

@media (min-width: 990px) {
    .c-faq__img {
        max-height: 160px;
    }
}

@media (min-width: 1200px) {
    .c-faq__img {
        max-height: none;
    }
}

.c-faq__lead {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

@media (min-width: 760px) {
    .c-faq__lead {
        font-size: 27px;
        margin-bottom: 5px;
    }
}

@media (min-width: 990px) {
    .c-faq__lead {
        font-size: 33px;
        margin-bottom: 7px;
    }
}

@media (min-width: 990px) {
    .c-faq__lead {
        font-size: 40px;
        margin-bottom: 10px;
    }
}
