.contacts_info .contacts_list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.contact_form .psevdo_ph {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.contact_form .btn_block button {
  color: inherit;
  display: inline-flex;
  vertical-align: top;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid;
  border-radius: 5px;
  font-family: "manrope-bold", "mardoto-bold";
  font-size: 120%;
  line-height: 16px;
  padding: 0 10px;
  background: transparent;
}
@media screen and (min-width: 960px) {
  .contact_form .btn_block button {
    min-width: 145px;
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .contact_form .btn_block button {
    margin-top: 50px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .contact_form .btn_block button {
    margin-top: 40px;
  }
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .contact_form .btn_block button {
    height: 36px;
    min-width: 130px;
  }
}
@media screen and (min-width: 769px) and (max-width: 959px) {
  .contact_form .btn_block button {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact_form .btn_block button {
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .contact_form .btn_block button {
    height: 32px;
    min-width: 120px;
  }
}

.page_head {
  margin: 60px 8.33% 0;
}
@media screen and (max-width: 1199px) {
  .page_head {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) {
  .page_head {
    margin-top: 40px;
  }
}

.contacts_info {
  margin-top: 60px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 1200px) {
  .contacts_info {
    margin-left: 8.33%;
  }
}
.contacts_info .text_block {
  color: #666666;
}
.contacts_info .contacts_group:not(:first-child) {
  margin-top: 40px;
}
.contacts_info .contacts_list li {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.contacts_info .contacts_list li:before {
  display: block;
  font-size: 2.1rem;
  min-width: 18px;
  margin-right: 14px;
  align-self: flex-start;
}
.contacts_info .contacts_list a {
  color: inherit;
}
.contacts_info .socials_list {
  padding: 0;
  margin: 40px 0 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.contacts_info .socials_list li {
  margin-right: 20px;
}
.contacts_info .socials_list a {
  display: block;
  color: inherit;
  font-size: 0;
  line-height: 0;
}
.contacts_info .socials_list a:before {
  display: block;
  font-size: 2.2rem;
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .contacts_info {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .contacts_info .socials_list a:before {
    font-size: 1.8rem;
  }
  .contacts_info .contacts_list li:before {
    font-size: 1.8rem;
    min-width: 16px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 575px) {
  .contacts_info {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 40px 0 0;
  }
}

.contact_form {
  margin: 60px auto 80px;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 10px;
  padding-right: 10px;
}
.contact_form .form_fields {
  background: #f8f8f8;
  padding: 40px 32px;
}
.contact_form .btn_block {
  padding-top: 16px;
}
.contact_form .btn_block button {
  width: 100%;
  margin-top: 0;
}
.contact_form .field_block {
  padding-top: 18px;
  margin-bottom: 16px;
}
.contact_form .field_block input,
.contact_form .field_block textarea {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
  padding: 4px 0;
  font-size: 130%;
  line-height: 18px;
  color: inherit;
}
.contact_form .field_block input:focus,
.contact_form .field_block textarea:focus {
  border-color: #333333;
}
.contact_form .field_block input:focus ~ .psevdo_ph, .contact_form .field_block input.filled ~ .psevdo_ph,
.contact_form .field_block textarea:focus ~ .psevdo_ph,
.contact_form .field_block textarea.filled ~ .psevdo_ph {
  font-size: 100%;
  line-height: 14px;
  top: 0;
}
.contact_form .field_block .error_hint {
  display: block;
  font-size: 120%;
  line-height: 15px;
  position: absolute;
  right: 0;
  top: 100%;
}
.contact_form .field_block.has-error .psevdo_ph {
  color: #E74545;
}
.contact_form textarea {
  min-height: 108px;
  max-height: 135px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.contact_form .psevdo_ph {
  pointer-events: none;
  position: absolute;
  opacity: 0;
  color: #666666;
  font-size: 140%;
  line-height: 18px;
  left: 0;
  top: 18px;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .contact_form {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-right: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 959px) {
  .contact_form {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 959px) {
  .contact_form {
    margin: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .contact_form .field_block input,
  .contact_form .field_block textarea,
  .contact_form .field_block .psevdo_ph {
    font-size: 120%;
  }
  .contact_form .form_fields {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 575px) {
  .contact_form {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact_form .field_block textarea {
    min-height: 81px;
  }
}

.web textarea {
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}
.web textarea::-webkit-scrollbar {
  width: 3px;
  height: auto;
  border-radius: 0;
  background: transparent;
}
.web textarea::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: transparent;
}
.web textarea:hover::-webkit-scrollbar {
  background: #e5e5e5;
}
.web textarea:hover::-webkit-scrollbar-thumb {
  background: rgba(166, 25, 46, 0.3);
}

.web .contacts_info .contacts_list a, .contacts_info .contacts_list .web a, .web .contacts_info .socials_list a, .contacts_info .socials_list .web a {
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.web .contact_form .btn_block button, .contact_form .btn_block .web button, .contact_form .psevdo_ph {
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.touch .contacts_info .contacts_list a, .contacts_info .contacts_list .touch a, .touch .contacts_info .socials_list a, .contacts_info .socials_list .touch a {
  -o-transition: color 0.15s;
  -ms-transition: color 0.15s;
  -moz-transition: color 0.15s;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.touch .contact_form .btn_block button, .contact_form .btn_block .touch button {
  -o-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.web .contacts_info .contacts_list a:hover, .contacts_info .contacts_list .web a:hover, .web .contacts_info .socials_list a:hover, .contacts_info .socials_list .web a:hover {
  color: #A6192E;
}
.web .contact_form .btn_block button:hover, .contact_form .btn_block .web button:hover {
  background: #000000;
  color: #ffffff;
  border-color: transparent;
}
.touch .contacts_info .contacts_list a:active, .contacts_info .contacts_list .touch a:active, .touch .contacts_info .socials_list a:active, .contacts_info .socials_list .touch a:active {
  color: #A6192E;
}
.touch .contact_form .btn_block button:active, .contact_form .btn_block .touch button:active {
  background: #000000;
  color: #ffffff;
  border-color: transparent;
}

/*# sourceMappingURL=contacts.css.map */
