

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
/* -- main styles -- */

.nopad {
	padding:0px;
}
.nopadleft {
	padding-left:0px;
}
.nopadright {
	padding-right:0px;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
    object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.submitting button,
.submitting input[type="button"] {
    pointer-events: none;
}
.submitting {
    position: relative;
}
.submitting::before {
    content: '';
    width: 100%; height: 100%;
    background: rgba(68,62,51, 0.8);
    position: absolute;
    top: 0; left: 0;
    z-index: 11;
}
.submitting::after {
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border-top: 2px solid #fff;
    border-right: 2px solid transparent;
    -webkit-animation: formSpinner .6s linear infinite;
    animation: formSpinner .6s linear infinite;
    z-index: 12;
}
@-webkit-keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}


.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.dflex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dflex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.dflex-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.dflex-cbetween {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.grid-container {
	width: 100%;
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    z-index: 10;
}

.title-16 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

header {
    position: fixed;
    padding: 30px 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
}

.intro-pre {
    min-height: 100vh;
    min-height: 100svh;
    background: #443E33;
    position: relative;
    overflow: hidden;
}


.intro-pre-image {
    position: absolute;
    left: 35.8%;
    right: 35.8%;
    left: 25%;
    right: 25%;
    bottom: 40px;
    top: 20%;
    /* bottom: 0; */
    /* top: 40px; */
    overflow: hidden;
    /* left: 50%;
    transform: translateX(-50%);
    width: 24%;
    aspect-ratio: 0.745;
    bottom: 40px; */
    /* cursor: pointer; */
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
    transition: s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 3s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 4.1s cubic-bezier(0.37, 0, 0.63, 1);
    transition: 
    top 3.8s cubic-bezier(0.45, 0, 0.55, 1),
    bottom 3.8s cubic-bezier(0.45, 0, 0.55, 1),
    left 4.8s cubic-bezier(0.45, 0, 0.55, 1),
    right 4.8s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 
    top 3.8s cubic-bezier(0.37, 0, 0.63, 1),
    bottom 3.8s cubic-bezier(0.37, 0, 0.63, 1),
    left 4.8s cubic-bezier(0.37, 0, 0.63, 1),
    right 4.8s cubic-bezier(0.37, 0, 0.63, 1);
    transition: 
    top 2.2s cubic-bezier(0.37, 0, 0.63, 1),
    bottom 2.2s cubic-bezier(0.37, 0, 0.63, 1),
    left 3.2s cubic-bezier(0.37, 0, 0.63, 1),
    right 3.2s cubic-bezier(0.37, 0, 0.63, 1);
    /* transition: 2.6s cubic-bezier(0.33, 1, 0.68, 1); */
}
.intro-pre-image img {
    opacity: 0;
    transition: 1s;
}
.intro-pre-image.loaded img {
    opacity: 1;
}

.intro-pre-image.active {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transform: translateX(0%);
    /* width: 100%;
    height: 100%;
    left: 0%;
    transform: translateX(0%);
    bottom: 0px; */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    cursor: default;
}

.intro-pre:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.5; */
    pointer-events: none;
    transform-origin: bottom center;
    background-image: url(../img/mask-2x.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 6000px 4000px;
    background-size: 350% auto;
    will-change: transform, background-position;
    transition: 3.2s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 5.8s cubic-bezier(0.45, 0, 0.55, 1);
    transition: 5.2s  cubic-bezier(0.32, 0, 0.67, 0);
    transition: 3.2s  cubic-bezier(0.32, 0, 0.67, 0);
    /* transition: 5.2s  cubic-bezier(0.37, 0, 0.63, 1);; */
}
.intro-pre.active:after {
    transform: scale(5);
    background-position: bottom -15px center;
}

.logo {
    margin-right: 5.14vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.logo a svg path {
    transition: 0.8s;
}

.header-left-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
    gap: 4.1vw;
    font-size: 2.083vw;
    font-size: 1.75vw;
    color: #9F8F6A;
    line-height: 1.2;
    transition: color 0.5s;
    position: relative;
}
.header-left-text span {
    padding-right: 41px;
    position: relative;
    cursor: pointer;
}
.header-left-text span:before,
.header-left-text span:after {
    content: '';
    position: absolute;
    width: 27px;
    height: 22px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.header-left.active .header-left-text span:before,
.header-left.active .header-left-text span:after {
    opacity: 1;
}

.header-left-text span:before {
    background: url(../img/sound-off.svg) no-repeat center center / 100% auto;
}
.header-left-text span:after {
    background: url(../img/sound-on.svg) no-repeat center center / 100% auto;
    visibility: hidden;
}
.header-left-text.active span:before {
    visibility: hidden;
}
.header-left-text.active span:after {
    visibility: visible;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.header-right-item {
    color: #161616;
    font-size: 10px;
    font-size: 12px;
    padding-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s 0.4s;
}

.header-right-contacts {
    margin-right: 5.9vw;
}

.header-right-end {
    margin-right: 15px;
}

.logo-nter {
    position: absolute;
    right: 0;
    bottom: 25px;
    bottom: 35px;
    transition: 0.4s;
}

.header-right.active .header-right-item {
    opacity: 1;
    visibility: visible;
}
.header-right.active .logo-nter {
    opacity: 0;
    visibility: hidden;
}
.header-left.active .logo svg path {
    fill: #161616;
}
.header-left.active .header-left-text {
    color: #161616;
}

.form-hold {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 553px;
    background: #443E33;
    padding: 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: 1s;
}
.form-hold.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.form-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    z-index: 5;
}

.form-element {
    margin-bottom: 20px;
}
.form-element input, 
.form-element input:focus {
    outline: none;
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 2px 0;
    height: 21px;
    font-size: 14px;
    color: #9F8F6A;
    background: transparent;
    text-transform: uppercase;
}
.form-element textarea, 
.form-element textarea:focus {
    outline: none;
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 16px 15px;
    height: 135px;
    font-size: 14px;
    color: #9F8F6A;
    background: transparent;
    resize: none;
    text-transform: uppercase;
    border: 1px solid #9F8F6A;
}
.form-element label textarea, 
.form-element label textarea:focus {
    margin-top: 17px;
}

.form-element textarea::-webkit-input-placeholder,
.form-element input::-webkit-input-placeholder {
	color: #9F8F6A;
	opacity: 1;
}
.form-element textarea::-moz-placeholder,
.form-element input::-moz-placeholder {
	color: #9F8F6A;
	opacity: 1;
}
.form-element textarea:-ms-input-placeholder,
.form-element input:-ms-input-placeholder {
	color: #9F8F6A;
	opacity: 1;
}
.form-element textarea:-moz-placeholder,
.form-element input:-moz-placeholder {
	color: #9F8F6A;
	opacity: 1;
}

.form-label-button {
    position: relative;
    margin-top: 150px;
}

.form-element label {
    font-size: 14px;
    line-height: 1.2;
    color: #9D906A;
    text-transform: uppercase;
}

.form-checbox label input {
    display: none;
}
.form-checbox label span {
    position: relative;
    padding-left: 21px;
    font-size: 10px;
    color: #9F8F6A;
    text-transform: uppercase;
    line-height: 1.2;
    cursor: pointer;
}
.form-checbox label span:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #9F8F6A;
}
.form-checbox label span:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #9F8F6A;
    opacity: 0;
}
.form-checbox label input:checked + span:after {
    opacity: 1;
}
.form-checbox label span a {
    color: #9F8F6A;
    text-decoration: underline;
}

.form-checbox label span a:hover {
    color: #9F8F6A;
    text-decoration: none;
}

.btn-light-border,
.btn-light-border:focus,
.btn-light-border:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    font-size: 14px;
    line-height: 1.2;
    color: #9D906A;
    text-transform: uppercase;
    border: 1px solid #9D906A;
    padding: 4px 21px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-light-border:hover {
    color: #443E33;
    border: 1px solid #9D906A;
    background: #9D906A;
}

.form-submit {
    position: absolute;
    top: -4px;
    right: 0;
}

.logo-nter-mob {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 20px;
    display: none;
    transition: 0.2s;
}
.logo-nter-mob.active {
    opacity: 0;
    visibility: visible;
}
.form-hold-success {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #161616;
    padding: 30px 30px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.form-hold-success.active {
    opacity: 1;
    visibility: visible;
}

.form-hold-success-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
}

.js-close-success,
.js-close-success:focus,
.js-close-success:active {
    display: block;
    text-align: right;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;;
}
.js-close-success:hover {
    color: #fff;
}
.js-close-success:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: calc(100% - 135px);
    background: url(../img/arrow-form.svg) no-repeat left center / 358px 4px;
}

div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
    border: none !important;
    float: left !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    color: #ef586b !important;
}

div.wpcf7-mail-sent-ok {
    float: left !important;
    border: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
}

span.wpcf7-not-valid-tip {
	display: none !important;
}

span.wpcf7-list-item {
    margin: 0 !important;
}

.form-element input.wpcf7-not-valid,
.form-element input.wpcf7-not-valid:focus,
.form-element textarea.wpcf7-not-valid,
.form-element textarea.wpcf7-not-valid:focus {
    /* border: solid 1px #ef586b; */
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.form-checbox .wpcf7-not-valid label span:before {
    border-color: #C05555;
}


.form-element input.wpcf7-not-valid::-webkit-input-placeholder {
	color: #C05555;
	opacity: 1;
}
.form-element input.wpcf7-not-valid::-moz-placeholder {
	color: #C05555;
	opacity: 1;
}
.form-element input.wpcf7-not-valid:-ms-input-placeholder {
	color: #C05555;
	opacity: 1;
}
.form-element input.wpcf7-not-valid:-moz-placeholder {
	color: #C05555;
	opacity: 1;
}

.text-page-section {
    padding: 96px 0;
    background: #A09064;
}
.text-page-section .grid-container {
    padding-left: 6.66vw;
    padding-right: 6.66vw;
}

.page-left {
    width: 50%;
    padding-right: 20px;
}
.page-right {
    width: 50%;
    padding-left: 11.1%;
}

.page-left .logo {
    width: 100%;
    margin-right: 0;
}
.page-left .logo a {
    width: 100%;
}
.page-left .logo svg {
    width: 100%;
    height: auto;
}
.page-left .logo {
    margin-bottom: 32px;
}

.text-page-subtitle {
    font-size: 24px;
    line-height: 1;
    text-align: right;
}

.toc-list {
    margin-top: 64px;
    border-top: 1px solid #272218;
    padding-top: 64px;

    position: sticky;
    top: 0px;
}
.toc-list ul li {
    line-height: 1.3;
    margin-bottom: 24px;
}
.toc-list ul li:last-child {
    margin-bottom: 0px;
}
.toc-list ul li a {
    font-size: 16px;
    line-height: 1.3;
    color: #272218;
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
.toc-list ul li a:before {
    content: '→';
    position: absolute;
    top: -1px;
    left: 0;
    font-weight: 700;
    
}
.toc-list ul li.active a {
    font-weight: 600;
    text-decoration: underline;
}
.toc-list ul li a:hover {
    text-decoration: underline;
}



.entry {
    font-size: 14px;
    line-height: 1.3;
    color: #272218;
}
.entry p {
    margin-bottom: 1.3em;
}

.entry h3:not(:first-child) {
    margin-top: 32px;
}
.entry h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.entry a {
    color: #272218;
    text-decoration: underline;
}
.entry a:hover {
    color: #272218;
    text-decoration: none;
}

.entry ul li {
    position: relative;
    padding-left: 22px;
}
.entry ul li:before {
    content: '•';
    position: absolute;
    left: 7px;
    top: 0;
}

.page-right .title-16 {
    text-transform: uppercase;
    margin-bottom: 32px;
}

.header-right-logo {
    margin-left: 48px;
    padding-bottom: 20px;
}

.intro-pre-disclaimer {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 10px;
    color: #9F8F6A;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0;
    transition: 0.2s;
}
.intro-pre-disclaimer.active {
    opacity: 1;
}

/* Medias */

@media only screen and (max-height: 700px) and (min-width: 1024px) {
    .form-label-button {
        margin-top: 100px;
    }
}
@media only screen and (max-height: 640px) and (min-width: 1024px) {
    .form-label-button {
        margin-top: 50px;
    }
}
@media only screen and (max-height: 570px) and (min-width: 1024px) {
   .form-element textarea, .form-element textarea:focus {
        height: 100px;
    }
    .form-label-button {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 1600px) {
    .form-checbox label span {
        font-size: 12px;
    }
    .form-checbox label span:before {
        top: 0px;
    }
    .form-checbox label span:after {
        top: 3px;
    }
    .header-right-item {
        font-size: 12px;
    }
    .header-right-end {
        margin-right: 2vw;
    }
} 

@media only screen and (min-width: 1921px) {
    .header-left-text {
        font-size: 34px;
        gap: 80px;
    }
    .header-right-item {
        font-size: 14px;
    }
    .logo {
        margin-right: 100px;
    }
    .header-right-contacts {
        margin-right: 110px;
    }
    .header-right-end {
        margin-right: 50px;
    }
} 


@media only screen and (max-width: 1440px) {
    .logo svg {
        width: 22.57vw;
        height: auto;
    }
    .header-left-text {
        padding-bottom: 1.4vw;
    }
    .header-right-item {
        padding-bottom: calc(1.4vw + 2px);
    }
} 

@media only screen and (max-width: 1400px) {
    .text-page-section .grid-container {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .page-right {
        padding-left: 8%;
    }
}

@media only screen and (max-width: 1300px) {
    .text-page-section .grid-container {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .page-right {
        padding-left: 6%;
    }
}

@media only screen and (max-width: 1199px) {
    .header-right-logo {
        margin-left: 32px;
    }
    .page-right {
        padding-left: 4%;
    }
    .text-page-subtitle {
        font-size: 20px;
    }
    .text-page-section .grid-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .grid-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .form-hold {
        right: 20px;
        bottom: 20px;
    }
    .header-right-contacts {
        margin-right: 20px;
    }
} 

@media only screen and (max-width: 1023px) {
    .intro-pre-disclaimer {
        width: 180px;
    }
    .form-hold {
        width: 460px;
    }
    .toc-list {
        margin-top: 48px;
        border-top: 1px solid #272218;
        padding-top: 48px;
        position: relative;
        top: auto;
    }
    .page-left .logo {
        max-width: 325px;
    }
    .page-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }
    .page-right {
        width: 100%;
        padding-left: 0;
    }
    .intro-pre:after {
        background-image: url(../img/mask-2x-mob.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: 850% auto;
        transform-origin: center center;
    }
    .intro-pre.active:after {
        transform: scale(3);
        background-position: 50% 50%;
    }
    .logo-nter-mob {
        display: block;
    }
    .header-right {
        margin-top: 20px;
        width: 100%;
    }
    .logo-nter {
        display: none;
    }
    .logo svg {
        width: 240px;
        height: auto;
    }
    .header-left-text {
        padding-bottom: 1.8vw;
        font-size: 3.5vw;
    }
    .intro-pre-image {
        position: absolute;
        left: 19%;
        right: 19%;
        bottom: 25%;
        top: 25%;
        bottom: 15%;
        top: 15%;
        overflow: hidden;
        /* border-top-left-radius: 31vw;
        border-top-right-radius: 31vw; */
    }

} 

@media screen and (max-width:639px) {
    .form-hold {
        bottom: 28px;
    }
    .intro-pre-disclaimer {
        width: calc(100% - 40px);
        bottom: 10px;
    }
    .entry {
        font-size: 12px;
    }
    .page-right .title-16 {
        margin-bottom: 24px;
    }
    .entry h3:not(:first-child) {
        margin-top: 24px;
    }
    .entry h3 {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .toc-list ul li {
        margin-bottom: 8px;
    }
    .toc-list ul li a {
        font-size: 12px;
    }
    .text-page-subtitle {
        font-size: 18px;
    }
    .page-left .logo {
        max-width: 184px;
    }
    .text-page-section {
        padding: 64px 0;
        background: #A09064;
    }
    .header-right-contacts {
        margin-right: 0;
    }
    .header-right-end {
        margin-right: 0;
    }
    .js-close-success:before {
        width: calc(100% - 78px);
        width: calc(100% - 90px);
    }
    .js-close-success, .js-close-success:focus, .js-close-success:active {
        font-size: 10px;
    }
    .form-hold-success {
        padding: 12px 14px;
    }
    .form-hold-success-top {
        font-size: 10px;
    }
    .form-checbox {
        margin-top: 5px;
    }
    .form-checbox label span:after {
        top: 2px;
        left: 2px;
        width: 7px;
        height: 7px;
    }
    .form-checbox label span:before {
        top: 0px;
        width: 11px;
        height: 11px;
    }
    .form-checbox label span {
        font-size: 10px;
        padding-left: 17px;
    }
    .form-element label textarea, .form-element label textarea:focus {
        margin-top: 12px;
    }
    .form-submit {
        top: -10px;
    }
    .btn-light-border, .btn-light-border:focus, .btn-light-border:active {
    font-size: 10px;
    padding: 4px 14px;
}
    .form-element label {
        font-size: 10px;
    }
    .form-element input, .form-element input:focus {
        font-size: 10px;
        height: 20px;
        height: 24px;
    }
    .form-element textarea, .form-element textarea:focus {
        height: 96px;
        height: 80px;
        padding: 12px 12px;
        padding: 6px 12px;
        font-size: 10px;
    }
    .form-element {
        margin-bottom: 0px;
    }
    .form-logo {
        top: 15px;
        right: 14px;
    }
    .form-logo img {
        max-width: 48px;
    }
    .logo-nter-mob img {
        max-width: 48px;
    }
    .header-right-end {
        max-width: 80px;
    }
    .header-right {
        margin-top: 34px;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .header-right-item {
        font-size: 10px;
    }
    .logo svg {
        width: 184px;
        height: auto;
    }
    header {
        padding: 20px 0;
    }
    .header-left-text {
        gap: 45px;
        padding-bottom: 0;
        font-size: 18px;
        width: 100%;
        margin-top: 15px;
    }
    .form-label-button {
        margin-top: 30px;
    }
    .form-hold {
        width: calc(100% - 40px);
        padding: 10px 14px 10px;
        z-index: 50;
    }
    .intro-pre-image {
        position: absolute;
        left: 19%;
        right: 19%;
        bottom: 28%;
        top: 28%;
        bottom: 20%;
        top: 20%;
        overflow: hidden;
        /* border-top-left-radius: 31vw;
        border-top-right-radius: 31vw; */
    }
	.entry iframe {
		max-width: 100%;
	}

} 