@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

@font-face {
    font-family: 'geomanistregular';
    src: url('../font/geomanist-medium-webfont.eot');
    src: url('../font/geomanist-medium-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/geomanist-medium-webfont.woff2') format('woff2'),
    url('../font/geomanist-medium-webfont.woff') format('woff'),
    url('../font/geomanist-medium-webfont.ttf') format('truetype'),
    url('../font/geomanist-medium-webfont.svg#geomanistregular') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'geomanistregular';
    src: url('../font/geomanist-book-webfont.eot');
    src: url('../font/geomanist-book-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/geomanist-book-webfont.woff2') format('woff2'),
    url('../font/geomanist-book-webfont.woff') format('woff'),
    url('../font/geomanist-book-webfont.ttf') format('truetype'),
    url('../font/geomanist-book-webfont.svg#geomanistregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

:root {
    --c-main: #2A2A2A;
    --c-second: #c4924c;
    --c-second-h: #c48127;
    --c-bg: #fff;
    --c-bg-head: #000;
    --c-soft: #707070;
    --c-softer: #bfbfbf;
    --c-err: #C60F0F;
    --c-ok: #0FC60F;

    --time: .3s;
}

:root {
    scroll-behavior: auto;
}

body {
    color: var(--c-main);
    font-family: 'Roboto', sans-serif;
    padding: 0;
}

.pop-on {
    overflow: hidden;
}

.wrap {
    margin: 0 auto;
    max-width: 70rem;
    padding: 0 1em;
    width: 100%;
}

.link {
    color: var(--c-second);
    font-size: .75em;
    text-transform: uppercase;
    transition: opacity var(--time);
}

.link:hover {
    color: var(--c-second);
    opacity: .7;
}

.btn {
    background: var(--c-second);
    color: var(--c-bg);
    font-size: .85em;
    padding: .75em 1em;
    text-transform: uppercase;
    transition: background var(--time);
}

.btn:hover {
    background: var(--c-second-h);
    color: var(--c-bg);
}

.hid {
    display: none;
}

.head {
    background: var(--c-bg-head);
    /*padding-bottom: 4em;*/
    padding-bottom: 250px;
}

.head-top {
    border-bottom: 1px solid var(--c-second);
    text-align: center;
    padding: 1.5em 1em;
    margin-bottom: 2em;
}

.head h1 {
    align-items: center;
    color: var(--c-bg);
    display: flex;
    font-size: 2.5em;
    font-weight: normal;
    flex-direction: column;
    margin-bottom: 2rem;
    font-family: 'geomanistregular';
}

.head h1 span {
    color: var(--c-second);
    margin-bottom: 1rem;
}

.head h1 strong {
    font-weight: normal;
    font-size: .8em;
    margin-top: 1rem;
    line-height: 1.5;
}

.head img {
    max-width: 100%;
    width: 310px;
}

.head-top img {
    width: 235px;
}

.head h2 {
    color: var(--c-second);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 1em;
}

.head-frame {
    background: var(--c-bg);
    padding: 5em 3em 4em 4em;
}

.head-frame-r {
    margin-top: 2em;
}

.head-frame-r h2 {
    color: var(--c-main);
}

.head-frame-btn {
    margin: 0 -.5rem;
}

.head-frame-btn a {
    margin: .5rem;
}

.head p {
    line-height: 1.75;
}

.head p strong {
    font-size: 1.1em;
    font-weight: bold;
}

.head em {
    font-size: .8em;
    font-style: italic;
}

.main {
    background: var(--c-bg);
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.main-in {
    padding: 5em;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.main-wr {
    margin: auto;
}

.form-cl {
    position: absolute;
    right: 1em;
    top: 1em;
    height: 40px;
    width: 40px;
    transition: opacity var(--time);
}

.form-cl:hover {
    opacity: .6;
}

.form-cl::before, .form-cl::after {
    background: var(--c-main);
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    width: 100%;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
    z-index: 2;
}

.form-cl::after {
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.form-top {
    max-width: 600px;
    margin-bottom: 2em;
}

.form-top h2 {
    color: var(--c-second);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 1em;
}

.form-top strong {
    font-size: 1.1em;
}

.form-top em {
    color: var(--c-soft);
    margin-top: .5rem;
    font-size: .65em;
}

.form {
    margin: 0 auto;
    max-width: 736px;
}

.form-tit {
    align-items: center;
    display: flex;
    font-size: 1.8em;
    font-weight: 300;
    margin: 0 0 1em;
    text-transform: uppercase;
}

.form-tit::after {
    background: var(--c-soft);
    content: '';
    height: 1px;
    margin-left: 1em;
    width: 100%;
}

.form-tit span {
    flex-shrink: 0;
}

.toggle {
    color: inherit !important;
    font-size: .9em;
    text-decoration: none;
}

.toggle span {
    margin-right: .75em;
    text-decoration: underline;
}

input, select {
    border: 1px solid var(--c-soft);
    border-radius: 5px;
    font-size: .9em;
    margin: 1rem 0;
    padding: .5em 1.5em;
    width: 100%;
}

select:required:invalid {
    color: var(--c-softer);
}

option[value=""][disabled] {
    display: none;
}

option {
    color: initial;
}

::placeholder {
    opacity: .5;
}

.checkbox {
    color: var(--c-softer);
    position: relative;
}

.checkbox p {
    font-size: .8em;
}

.checkbox span {
    border: 1px solid var(--c-soft);
    border-radius: 5px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 1em;
    position: relative;
    width: 30px;
}

input[type=checkbox]:checked + span::after {
    background: var(--c-soft);
    border-radius: inherit;
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
}

input[type=checkbox] {
    appearance: none;
    height: 34px;
    opacity: 0;
    padding: 0;
    position: absolute;
    width: 34px;
}

button {
    appearance: none;
    background: var(--c-main);
    border: none;
    border-radius: 5px;
    color: var(--c-bg);
    font-size: .9em;
    margin: 1.5em 0;
    outline: none;
    padding: .75em 1.5em;
    text-transform: uppercase;
    transition: opacity var(--time);
}

button:hover, button:focus {
    opacity: .7;
}

.err {
    color: var(--c-err);
}

.ok {
    color: var(--c-ok);
}

.pre-foot img {
    display: table;
    margin: 0 auto;
    max-width: 100%;
    transform: translate3d(0, -50%, 0);
}

.pre-foot {
    font-size: 1.35em;
}

.pre-foot h3 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 1.5em;
    text-transform: uppercase;
}

.foot {
    background: var(--c-main);
    color: var(--c-bg);
    margin-top: 6em;
    padding: 6em 0 1em;
    position: relative;
}

.foot > .btn {
    font-size: 1em;
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
}

.foot img {
    max-width: 237px;
    width: 100%;
}

.foot .wrap a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--time);
}

.foot .col-md-1 {
    position: relative;
}

.foot .col-md-1::before {
    background: var(--c-soft);
    content: '';
    position: absolute;
    left: 50%;
    top: .25em;
    bottom: .25em;
    width: 2px;
}

.foot .wrap a:hover, .foot .wrap a:focus {
    opacity: .7;
}

.foot-bot {
    font-size: .9em;
}

.coo {
    align-items: center;
    background: var(--c-main);
    color: var(--c-bg);
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ui-autocomplete {
    max-height: 210px;
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 1280px) {
}

@media (min-width: 768px) {
    .head-frame-r {
        margin-top: 12em;
    }

    .row-pad .col-md-6:first-child {
        padding-right: 1.75em;
    }

    .row-pad .col-md-6:last-child {
        padding-left: 1.75em;
    }
}

@media (max-width: 767.98px) {
    h2, .head h2 {
        font-size: 1.5em;
    }

    .head h1 {
        font-size: 1.4em;
    }

    .main-in {
        padding: 2em;
    }

    .foot .col-md-1 {
        height: 1.5em;
    }

    .foot .col-md-1::before {
        content: none;
    }

    .pre-foot > img {
        max-width: none;
        width: 200vw;
        transform: translate3d(-50vw, -50%, 0);
    }

    .pre-foot {
        font-size: 1.05em;
    }
}