/*-------------------------- FORMS --------------------------*/
button, input[type="button"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    font-family: var(--header-font)
    transition: .25s ease-in; }
  
  button[disabled], html input[disabled] {
    cursor: default; }
  
  button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0; }
  
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  textarea {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 10px;
    font-family: var(--header-font);
    background-color: #272a31;
    border: 2px solid transparent;
    border-bottom-color: var(--first-color);
    color: #fff;
    font-weight: var(--font-light);
    transition: .25s ease-in; }
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    textarea:focus {
      border-color: #fcbd56; }
  
  textarea {
    padding-top: 10px;
    resize: none;
    height: 184px; }
  
  input::-moz-placeholder {
    color: #fff; }
  
  input::-webkit-input-placeholder {
    color: #fff; }
  
  input:-ms-input-placeholder {
    color: #fff; }
  
  input::-ms-input-placeholder {
    color: #fff; }
  
  input::placeholder {
    color: #fff; }
  
  textarea::-moz-placeholder {
    color: #fff; }
  
  textarea::-webkit-input-placeholder {
    color: #fff; }
  
  textarea:-ms-input-placeholder {
    color: #fff; }
  
  textarea::-ms-input-placeholder {
    color: #fff; }
  
  textarea::placeholder {
    color: #fff; }

/*-------------------- S-CONTACTS --------------------*/
.s-contacts {
    padding: 80px 0 60px 0;
    background-position: center;
    background-repeat: no-repeat; }
  
  .contact-item {
    background-color: var(--dark-color-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px; }
  
  .contact-item-left {
    width: 40%;
    border-right: 2px solid var(--first-color); }
    .contact-item-left h4 {
      text-transform: uppercase;
      margin-top: -8px; }
  .contact-item-left i {
    font-size: var(--ultra-font-size);
  }
  .contact-item-right {
    width: 60%;
    padding: 15px; }
    .contact-item-right li {
      color: #bebebe; }
    .contact-item-right a {
      color: #bebebe; }
      .contact-item-right a:hover {
        color: var(--first-color); }

  .btn-form-cover {
    text-align: right;
  }
        .btn {
          padding: 11px 40px 10px;
          background-color: var(--first-color);
          font-weight: var(--font-extra-bold);
          text-transform: uppercase;
          text-decoration: none;
          text-align: center;
          height: 50px;
          display: inline-block;
          transition: .25s ease-in;
          color: var(--white-color); }
          .btn:hover {
            background-color: var(--dark-color-light); }

/*-------------- SEARCH FORM AND SUBSCRIBE FORM --------------*/
.search-form,
.subscribe-form {
  position: relative;
  display: flex;
  justify-content: space-between; }
  .search-form .inp-form,
  .subscribe-form .inp-form {
    display: block;
    width: calc(100% - 49px);
    background-color: #fff;
    border-radius: 30px 0 0 30px;
    border: none;
    background-color: #fff;
    color: #000;
    height: 40px;
    font-size: 14px;
    padding: 0 20px; }
  .search-form .btn-form,
  .subscribe-form .btn-form {
    border-radius: 0 30px 30px 0;
    width: 49px;
    height: 40px;
    text-align: center;
    color: #fff;
    border: 2px solid var(--first-color);
    flex: 0 0 auto;
    background-color: var(--first-color);
    font-size: 14px; }
    .search-form .btn-form:hover,
    .subscribe-form .btn-form:hover {
      background-color: transparent;
      color: var(--first-color); }
  .search-form .inp-form::-moz-placeholder,
  .subscribe-form .inp-form::-moz-placeholder {
    color: #919191; }
  .search-form .inp-form::-webkit-input-placeholder,
  .subscribe-form .inp-form::-webkit-input-placeholder {
    color: #919191; }
  .search-form .inp-form:-ms-input-placeholder,
  .subscribe-form .inp-form:-ms-input-placeholder {
    color: #919191; }
  .search-form .inp-form::-ms-input-placeholder,
  .subscribe-form .inp-form::-ms-input-placeholder {
    color: #919191; }
  .search-form .inp-form::placeholder,
  .subscribe-form .inp-form::placeholder {
    color: #919191; }

.form-cover label {
  display: block;
  margin-bottom: 8px;
  font-weight: var(--font-regular); }
.form-cover li {
  margin-bottom: 19px; }

.btn-form-cover {
  text-align: right; }

.checkbox-wrap {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 14px; }

.checkbox-cover {
  position: relative;
  display: inline-block; }

.checkbox-cover p {
  position: relative;
  padding-left: 44px;
  color: #bebebe;
  font-family: var(--font-family) }

.checkbox-cover p:before {
  content: '';
  display: inline-block;
  border: 1px solid var(--first-color);
  width: 26px;
  height: 26px;
  line-height: 24px;
  font-family: "FontAwesome";
  font-size: 14px;
  position: absolute;
  top: -2px;
  left: 0;
  text-align: center;
  color: var(--first-color);
  border-radius: 5px; }

.checkbox-cover input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  margin: 0; }

.checkbox-cover input:checked + p:before {
  /*content: '\f00c';*/
  background-color: var(--first-color);
  color: #fff; }

#success_page {
  color: #fff; }

#success_page h3 {
  color: #fcbd56;
  margin-bottom: 5px; }

#message {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  text-align: left;
  color: #fff;
  margin: 15px 0;
  padding: 0 15px; }

#message .error_message {
  color: var(--first-color);
  font-weight: 500;
  font-size: 18px; }