*,*:before,*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 14px;
}
body{
    margin:0;
    padding:0;
    background: #F9F6F7;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
img{
    max-width: 100%;
}
#loader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F6EDE8;
    z-index: 99999;
    -webkit-animation-duration:.8s;
  -moz-animation-duration:.8s;
  -o-animation-duration:.8s;
  animation-duration:.8s;
  -webkit-animation-fill-mode:both;
  -moz-animation-fill-mode:both;
  -o-animation-fill-mode:both;
  animation-fill-mode:both;
}
#loader .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    width: 8rem;
    height: 8rem;
    margin: -4rem 0 0 -4rem;
    border: 2px solid #2D160E;
    border-radius: 50%;
    border-top: 2px solid #C49C7E;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.container{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.wrap{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.overflow-hidden{
    overflow: hidden;
    touch-action: none;
-ms-touch-action: none;
-webkit-overflow-scrolling: touch;
height: 100%;
}
/* Form */
form{
    margin-bottom: 2rem;
}
form small{
    margin: 0 0 0.714rem;
    display: block;
}
label{
    display: none;
}
input, textarea {
    padding: 0.8rem 1rem;
    -webkit-border-radius: 4rem;
    -moz-border-radius: 4rem;
    border-radius: 4rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #FFFFFF;
    display: block;
    margin: 0 0 1.286rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1rem;
    color: #2D160E;
    border: 1px solid #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
textarea {
    resize: none; /* or vertical */
    min-height: 7rem;
    -webkit-border-radius: 1.4rem;
    -moz-border-radius: 1.4rem;
    border-radius: 1.4rem;
    width: 100%;
}
input[type=text]::-ms-clear {
    display: none;
    width : 0;
    height: 0;
}
input[type=text]::-ms-reveal {
    display: none;
    width : 0;
    height: 0;
}
input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
    display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; 
}
input[type=number] {
    -moz-appearance:textfield;
}
input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #fff !important;
    box-shadow: inset 0 0 0 50px #fff !important;
}
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.5rem;
    }
  .checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5rem;
    width: 1.5rem;
    background-color: transparent;
    border: 2px solid #2D160E;
    border-radius:2px;
  }
  .checkcontainer:hover input ~ .checkmark {
    background-color: transparent;
    border: 2px solid #2D160E;
    border-radius: 2px;
  }
  .checkcontainer input:checked ~ .checkmark {
    background-color: transparent;
    border: 2px solid #C49C7E;
    border-radius: 2px;
  }
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .checkcontainer input:checked ~ .checkmark:after, .checkcontainer label {
    display: block;
  }
  .checkcontainer .checkmark:after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid #C49C7E;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.radiocontainer {
    display: block;
    position: relative;
    padding-left: 2.2rem;
    margin: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.5rem;
}
.radiocontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.radiocheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5rem;
    width: 1.5rem;
    background-color: transparent;
    border: 2px solid #2D160E;
    border-radius:2px;
}
.radiocontainer:hover input ~ .radiocheckmark, .radiocontainer input:checked ~ .radiocheckmark  {
    border: 2px solid #C49C7E;
}
.radiocheckmark:after {
    content: "";
    position: absolute;
    display: none;
}
.radiocontainer input:checked ~ .radiocheckmark:after {
    display: block;
}
.radiocontainer .radiocheckmark:after {
    top: 2px;
    left: 2px;
    width: calc(1rem - 1px);
    height: calc(1rem - 1px);
    border-radius: 2px;
    background: #C49C7E;
}
.radiocontainer:hover{
    color: #C49C7E;
}
::-webkit-input-placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-moz-placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::-moz-placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-ms-input-placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-ms-input-placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::-ms-input-placeholder {
    color: #2D160E;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
button, .btn{
    font-size: 1rem;
    line-height: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #C49C7E;
    background: #2D160E;
    padding: 1rem 1.6rem;
    -webkit-border-radius:4rem;
       -moz-border-radius:4rem;
            border-radius:4rem;
    text-decoration: none;
    border: none;
    font-family: 'Montserrat-Medium';
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    cursor: pointer;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
/* Captcha */
.grecaptcha-badge, .ymaps-2-1-79-copyright__wrap, .ymaps-2-1-79-gototech {
    visibility: hidden; 
}