@font-face {
    font-family: "Helvetica";
    src: url(../fonts/Helvetica.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Helvetica";
    src: url(../fonts/Helvetica-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal
}

ol, ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: unset
}

body {
    font-family: "Helvetica", sans-serif
}

.page-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 22px 64px
}

.page-button img {
    margin-right: 12px
}

.page-title {
    color: #fff;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

@media (max-width: 1700px) {
    .page-title {
        font-size: 34px
    }
}

@media (max-width: 1199px) {
    .page-title {
        text-align: center
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 32px
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 30px
    }
}

.page-title span {
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.page-text {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

@media (max-width: 1700px) {
    .page-text {
        font-size: 18px
    }
}

@media (max-width: 767px) {
    .page-text {
        font-size: 16px
    }
}

.container {
    max-width: 1470px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto
}

@media (max-width: 1440px) {
    .container {
        max-width: 1230px;
        width: 90%
    }
}

@media (max-width: 1199px) {
    .container {
        width: 100%;
        padding: 0 20px
    }
}

.header {
    background: #fff;
    padding: 20px 0
}

.header__logo {
    cursor: pointer
}

@media (max-width: 1700px) {
    .header__logo {
        max-width: 220px
    }
}

@media (max-width: 991px) {
    .header__logo {
        max-width: 170px
    }
}

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__navigation a {
    position: relative;
    font-size: 20px;
    margin-left: 32px;
    font-weight: 400;
    color: #000;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
    overflow: hidden
}

.header__navigation a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #000;
    width: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media (max-width: 1700px) {
    .header__navigation a {
        font-size: 18px
    }
}

@media (max-width: 991px) {
    .header__navigation a {
        margin-left: 24px;
        font-size: 16px
    }
}

.nav-link.mob-only {
    display: none
}

.header__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__navigation a:hover {
    color: #000
}

.header__navigation a:hover::before {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.nav-underlay {
    display: none
}

.menu-open-img, .menu-close-img {
    display: none
}

@media (max-width: 800px) {
    .menu-open-img, .menu-close-img {
        display: block
    }

    .header__navigation {
        position: fixed;
        z-index: 33;
        right: -100%;
        top: 0;
        width: 70%;
        height: auto;
        min-height: 100vh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background-color: #202223;
        padding: 4rem 1rem;
        -webkit-transition: all ease .4s;
        transition: all ease .4s
    }

    .header__navigation a {
        font-size: 1.2rem;
        margin-left: 0;
        padding: .5rem 0;
        text-align: center;
        color: #fff
    }

    .nav-underlay {
        display: block;
        position: fixed;
        z-index: -3;
        opacity: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: auto;
        min-height: 100vh;
        background-color: rgba(0, 0, 0, .6);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        -webkit-transition: all ease .4s;
        transition: all ease .4s
    }

    .nav-underlay.active {
        z-index: 12;
        opacity: 1
    }

    .nav-link.mob-only {
        display: block;
        margin-bottom: 1rem
    }

    .menu-close-img {
        position: absolute;
        top: 1rem;
        right: 1rem
    }
}

.hero {
    padding: 96px 0;
    background: url(../images/hero-bg.jpg) center center/cover no-repeat
}

@media (max-width: 576px) {
    .hero {
        padding: 64px 0
    }
}

.hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 1199px) {
    .hero__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.hero__text {
    width: 57%;
    max-width: 827px
}

@media (max-width: 1199px) {
    .hero__text {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width: 576px) {
    .hero__text {
        padding: 16px
    }
}

.hero__text h1 {
    margin-top: 24px;
    color: #fff
}

@media (max-width: 1700px) {
    .hero__text h1 {
        font-size: 52px
    }
}

@media (max-width: 1199px) {
    .hero__text h1 {
        text-align: center;
        line-height: normal
    }
}

@media (max-width: 767px) {
    .hero__text h1 {
        font-size: 42px
    }
}

@media (max-width: 576px) {
    .hero__text h1 {
        font-size: 36px
    }
}

.hero__text video {
    margin-top: 24px;
    width: 100%
}

.hero__block {
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 14px 20px;
    border-radius: 8px;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%))
}

.hero__form {
    max-width: 460px;
    width: 31%;
    border-radius: 8px;
    background: #fff;
    padding: 32px;
    padding-bottom: 28px
}

@media (max-width: 1700px) {
    .hero__form {
        padding: 32px;
        padding-bottom: 12px
    }
}

@media (max-width: 1199px) {
    .hero__form {
        width: 100%;
        margin-top: 32px
    }
}

@media (max-width: 576px) {
    .hero__form {
        padding: 24px;
        padding-bottom: 4px
    }
}

.hero__form-title {
    color: #171717;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: .56px
}

@media (max-width: 1700px) {
    .hero__form-title {
        font-size: 26px
    }
}

@media (max-width: 576px) {
    .hero__form-title {
        font-size: 24px
    }
}

.hero__form-subtitle {
    margin-top: 8px;
    color: #a7a7a7;
    text-align: center;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px
}

.attention {
    padding: 12px 0;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%))
}

.attention p {
    color: #000;
    text-align: center;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: .16px;
    text-align: center
}

.pres {
    padding: 64px 0;
    background-color: #f7f7f7
}

.pres__wrapper {
    display: grid;
    grid-template-columns:1.5fr 1fr;
    gap: 82px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 991px) {
    .pres__wrapper {
        grid-template-columns:1fr;
        gap: 32px
    }
}

.pres__left {
    padding-top: 290px;
    border-radius: 20px;
    background: url(../images/erdogan.png) center center/cover no-repeat
}

.pres__left-text {
    padding: 25px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0.9)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 0%);
    color: #303030;
    text-align: center;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 150%
}

.pres__left-text p {
    margin: 0 auto;
    max-width: 554px
}

.pres__right p {
    margin-top: 24px;
    color: #303030;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

@media (max-width: 991px) {
    .pres__right p {
        text-align: center
    }
}

@media (max-width: 576px) {
    .pres__right p {
        font-size: 16px
    }
}

.pres__right-button {
    margin-top: 32px
}

@media (max-width: 991px) {
    .pres__right-button {
        margin: 32px auto 0
    }
}

.why {
    padding: 96px 0;
    background: #292929
}

@media (max-width: 576px) {
    .why {
        padding: 64px 0
    }
}

.why__wrapper {
    max-width: 1195px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px
}

@media (max-width: 991px) {
    .why__wrapper {
        grid-template-columns:1fr;
        gap: 32px
    }
}

.why__title {
    text-align: center
}

.why__left img {
    width: 100%
}

.why__left-wrapper {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.why__left-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px
}

@media (max-width: 767px) {
    .why__left-block {
        padding: 0
    }
}

.why__left-block img {
    max-width: 64px;
    margin-bottom: 20px
}

.why__right p {
    opacity: .8
}

.why__right p:not(:last-child) {
    margin-bottom: 16px
}

.adv {
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    padding: 96px 0
}

@media (max-width: 576px) {
    .adv {
        padding: 64px 0
    }
}

.adv__title {
    text-align: center;
    color: #000
}

.adv__wrapper {
    margin-top: 32px;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 32px
}

@media (max-width: 1199px) {
    .adv__wrapper {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 767px) {
    .adv__wrapper {
        grid-template-columns:1fr
    }
}

.adv__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px;
    border-radius: 12px;
    background: #292929
}

@media (max-width: 576px) {
    .adv__block {
        padding: 24px
    }
}

.adv__block img {
    max-width: 64px
}

.adv__block-title {
    text-align: center;
    margin-top: 16px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .24px;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.adv__block-text {
    opacity: .8;
    text-align: center;
    margin-top: 16px
}

.start {
    background-color: #fff;
    padding: 96px 0
}

@media (max-width: 576px) {
    .start {
        padding: 64px 0
    }
}

.start__title {
    text-align: center;
    color: #000
}

.start__subtitle {
    margin: 32px auto 0;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    color: #525252
}

.start__wrapper {
    margin-top: 32px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 32px
}

@media (max-width: 767px) {
    .start__wrapper {
        grid-template-columns:1fr
    }
}

.start__block {
    padding: 32px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08);
    box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08)
}

.start__block-num {
    padding: 16px 24px;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24px;
    background-color: #292929;
    border-radius: 100%
}

.start__block-num span {
    color: #e4ba63
}

.start__block-name {
    margin-top: 16px;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .24px;
    color: #e4ba63;
    border-radius: 12px;
    background: #292929
}

.start__block-text {
    margin-top: 16px;
    color: #000;
    text-align: center
}

.start__text {
    color: #4b4b4b;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

@media (max-width: 1700px) {
    .start__text {
        font-size: 18px
    }
}

@media (max-width: 576px) {
    .start__text {
        font-size: 16px
    }
}

.about {
    padding: 96px 0;
    background: #292929
}

@media (max-width: 576px) {
    .about {
        padding: 64px 0
    }
}

.about__wrapper {
    max-width: 1195px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 991px) {
    .about__wrapper {
        grid-template-columns:1fr;
        gap: 32px
    }
}

.about__title {
    max-width: 827px;
    margin: 0 auto;
    text-align: center
}

.about img {
    width: 100%
}

.about__block {
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid #3e3e3e;
    background: #292929
}

.about__block:not(:last-child) {
    margin-bottom: 12px
}

.about__block-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.about__block-text {
    margin-top: 12px
}

.comments {
    padding: 96px 0;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%))
}

@media (max-width: 576px) {
    .comments {
        padding: 64px 0
    }
}

.comments__wrapper {
    margin: 32px auto 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px
}

@media (max-width: 991px) {
    .comments__wrapper {
        grid-template-columns:1fr;
        gap: 32px
    }
}

.comments__title {
    text-align: center;
    color: #000
}

.comments img {
    width: 100%
}

.comments__block {
    display: grid;
    grid-template-columns:186px 1fr;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    background: #292929
}

@media (max-width: 576px) {
    .comments__block {
        grid-template-columns:1fr
    }
}

@media (max-width: 576px) {
    .comments__block img {
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        max-width: 186px;
        aspect-ratio: 1/1;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 0 -20px;
        object-position: 0 -20px
    }
}

.comments__block-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .2px;
    text-transform: uppercase;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.comments__block-pos {
    margin-top: 4px;
    color: #d0d0d0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.comments__block-text {
    margin-top: 12px;
    font-style: italic
}

.bottom {
    padding: 96px 0;
    background: url(../images/bottom-bg.jpg) center center/cover no-repeat
}

@media (max-width: 576px) {
    .bottom {
        padding: 64px 0
    }
}

.bottom__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 1199px) {
    .bottom__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.bottom__logo {
    max-width: 160px;
    margin-top: 24px
}

.bottom__left {
    max-width: 704px;
    width: 100%
}

@media (max-width: 1199px) {
    .bottom__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.bottom__left h6 {
    margin-top: 24px;
    color: #fff;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: .48px
}

@media (max-width: 1700px) {
    .bottom__left h2 {
        font-size: 44px
    }
}

@media (max-width: 1199px) {
    .bottom__left h2 {
        text-align: center
    }
}

@media (max-width: 767px) {
    .bottom__left h2 {
        font-size: 40px;
        line-height: normal
    }
}

@media (max-width: 576px) {
    .bottom__left h2 {
        font-size: 36px
    }
}

.bottom__left p {
    margin-top: 24px;
    color: #e9e9e9;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

@media (max-width: 1199px) {
    .bottom__left p {
        text-align: center
    }
}

@media (max-width: 576px) {
    .bottom__left p {
        font-size: 20px
    }
}

.calc {
    padding: 64px 0
}

.calc__wrapper {
    display: grid;
    grid-template-columns:1.4fr 1fr;
    gap: 90px
}

@media (max-width: 1440px) {
    .calc__wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width: 1199px) {
    .calc__wrapper {
        gap: 32px
    }
}

@media (max-width: 991px) {
    .calc__wrapper {
        grid-template-columns:1fr;
        justify-items: center
    }
}

.calc__left {
    padding: 32px;
    border-radius: 20px;
    background: var(--light-colors-white, #FFF);
    -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08);
    box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08)
}

@media (max-width: 991px) {
    .calc__right {
        text-align: center
    }
}

.calc__right-block:last-child {
    margin-top: 32px
}

.calc__right-block-top {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.calc__right-block-bottom {
    color: #000;
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase
}

@media (max-width: 1440px) {
    .calc__right-block-bottom {
        font-size: 68px
    }
}

@media (max-width: 1199px) {
    .calc__right-block-bottom {
        font-size: 56px
    }
}

@media (max-width: 991px) {
    .calc__right-block-bottom {
        font-size: 52px
    }
}

@media (max-width: 767px) {
    .calc__right-block-bottom {
        font-size: 46px
    }
}

.calc__fields {
    margin-top: 32px;
    display: grid;
    gap: 32px;
    grid-template-columns:1fr 1fr
}

@media (max-width: 1440px) {
    .calc__fields {
        grid-template-columns:1fr
    }
}

.calc__fields-title {
    color: #0b1a48;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.calc__fields-field {
    color: #000 !important;
    text-align: center;
    font-size: 64px !important;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 32px !important;
    border-radius: 16px;
    border: none !important;
    background: #f6f6f6
}

.calc__fields-field::-webkit-input-placeholder {
    font-size: 64px;
    color: #000 !important;
    font-weight: 700
}

.calc__fields-field::-moz-placeholder {
    font-size: 64px;
    color: #000 !important;
    font-weight: 700
}

.calc__fields-field:-ms-input-placeholder {
    font-size: 64px;
    color: #000 !important;
    font-weight: 700
}

.calc__fields-field::-ms-input-placeholder {
    font-size: 64px;
    color: #000 !important;
    font-weight: 700
}

.calc__fields-field::placeholder {
    font-size: 64px;
    color: #000 !important;
    font-weight: 700
}

@media (max-width: 767px) {
    .calc__fields-field::-webkit-input-placeholder {
        font-size: 46px
    }

    .calc__fields-field::-moz-placeholder {
        font-size: 46px
    }

    .calc__fields-field:-ms-input-placeholder {
        font-size: 46px
    }

    .calc__fields-field::-ms-input-placeholder {
        font-size: 46px
    }

    .calc__fields-field::placeholder {
        font-size: 46px
    }
}

@media (max-width: 767px) {
    .calc__fields-field {
        font-size: 46px !important
    }
}

.calc__fields-result {
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%))
}

.calc__title {
    color: #000
}

.calc__text {
    margin-top: 16px;
    color: #4a4a4a
}

.company {
    background: #292929;
    padding: 80px 0
}

@media (max-width: 1440px) {
    .company {
        padding: 48px 0
    }
}

.company .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.company img {
    margin-top: 16px;
    max-width: 126px;
    margin-right: 16px
}

.footer {
    padding: 24px 0;
    background-color: #292929
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 767px) {
    .footer .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.footer__copy, .footer__links {
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media (max-width: 576px) {
    .footer__copy, .footer__links {
        font-size: 14px
    }
}

.footer__copy span, .footer__links span {
    font-weight: 700
}

.footer__copy a, .footer__links a {
    font-weight: 400;
    color: #fff
}

.footer__links a:last-child {
    margin-left: 32px
}
.form-mt{
    margin-top: 20px;
}

@media (max-width: 767px) {
    .footer__links {
        margin-top: 24px
    }
    .hero__block{
        display: none !important;
    }
    .hero{
        padding: 10px 0px;
    }
    .hero__text h1{
        font-size: 20px !important;
        margin-top: 0px !important;
    }
    .hero__text{
        padding: 0px !important;
    }
    .hero__text video{
        margin-top: 10px !important;
    }
    .hero__form{
        padding: 5px 25px !important;
        margin-top: 5px !important;
        max-width: 100% !important;
    }
    .form-mt{
        margin-top: 10px;
    }
}

input:not([type=checkbox]) {
    padding: 16px;
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1
}

.checkbox-wrap a {
    color: #111;
    font-weight: 700;
    text-decoration: underline
}

button[type=submit], .page-button {
    font-family: Helvetica;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding: 22px;
    border-radius: 8px;
    background: var(--gold, linear-gradient(72deg, #FFB800 -11.55%, #FFF9C0 52.01%, #C77700 123.37%));
    border: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media (max-width: 576px) {
    button[type=submit], .page-button {
        font-size: 18px
    }
}

button[type=submit]:hover, .page-button:hover {
    background-color: #212240
}


