@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap");
:root {
  --check-mark-color: #BA4189; /* Цвет галочки в формах */
}

p, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Commissioner", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.bg_section {
  background: linear-gradient(-30deg, rgb(186, 65, 137) 0%, rgb(163, 56, 115) 28.95%, rgb(132, 44, 85) 74.54%, rgb(120, 39, 74) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#BA4189", endColorstr="#78274A", GradientType=1);
  width: 100%;
  min-height: 100vh;
  height: 100%;
  color: #fff;
}
.bg_section h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11em;
}
.bg_section .block_img {
  display: flex;
}
.bg_section .block_img img {
  max-width: 100%;
  height: auto;
}
.bg_section .container_header {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.bg_section .container_header .logo {
  display: flex;
  max-width: 350px;
  height: auto;
}
.bg_section .container_header .logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.bg_section .container_form {
  background: url("./decorac_01.png");
  background-color: #fff;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  height: auto;
  border-radius: 40px;
  color: #2a2730;
}
.bg_section .container_form .wrap_form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}
.bg_section .container_form .wrap_form h2 {
  color: #2a2730;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 300;
}
.bg_section .container_form .wrap_form form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bg_section .container_form .wrap_form form .form_group {
  display: flex;
  flex-direction: column;
  /*.submit_button {
    margin-top: 15px;
    background: linear-gradient(-30deg, rgb(186, 65, 137) 0%, rgb(163, 56, 115) 28.95%, rgb(132, 44, 85) 74.54%, rgb(120, 39, 74) 100%);
    color: #fff;
    border-radius: 20px;
    border: none;
    width: 100%;
    padding: 10px 15px;
    font-size: 24px;

    &:hover {
      background: linear-gradient(330deg, rgb(120, 39, 74) 0%, rgb(132, 44, 85) 25.46%, rgb(163, 56, 115) 71.05%, rgb(186, 65, 137) 100%);
    }
  }*/
}
.bg_section .container_form .wrap_form form .form_group label {
  font-size: 18px;
  margin-bottom: 0;
  font-family: "Commissioner", sans-serif;
  font-weight: 300;
}
.bg_section .container_form .wrap_form form .form_group input {
  border-radius: 10px;
  border: 2px solid #a93c79;
  font-size: 20px;
  padding: 5px 10px;
  outline: none;
  font-family: "Commissioner", sans-serif;
  font-weight: 300;
  width: 100%;
}
.bg_section .container_form .wrap_form form .form_group input:hover {
  box-shadow: 9px -4px 37px 0px rgba(163, 56, 115, 0.2);
}
.bg_section .container_form .wrap_form form .form_group input:focus {
  border-color: #cd6197;
  box-shadow: 9px -4px 37px 0px rgba(163, 56, 115, 0.2);
}
.bg_section .container_form .wrap_form form .form_group .icon-check {
  right: 10px;
}
.bg_section .container_form .wrap_form form .form_group .submit_button {
  margin-top: 15px;
  color: #fff;
  border-radius: 20px;
  border: none;
  width: 100%;
  padding: 10px 15px;
  font-size: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg_section .container_form .wrap_form form .form_group .submit_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-30deg, rgb(186, 65, 137) 0%, rgb(163, 56, 115) 28.95%, rgb(132, 44, 85) 74.54%, rgb(120, 39, 74) 100%);
  z-index: -1;
  transition: opacity 0.5s ease;
}
.bg_section .container_form .wrap_form form .form_group .submit_button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(330deg, rgb(120, 39, 74) 0%, rgb(132, 44, 85) 25.46%, rgb(163, 56, 115) 71.05%, rgb(186, 65, 137) 100%);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.bg_section .container_form .wrap_form form .form_group .submit_button:hover::before {
  opacity: 0;
}
.bg_section .container_form .wrap_form form .form_group .submit_button:hover::after {
  opacity: 1;
}
.bg_section .container_form .wrap_form form .form_group .check_block {
  position: relative;
}
.bg_section .container_form .wrap_form form .form_group .check_block label {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.bg_section .container_form .wrap_form form .form_group .check_block input {
  width: 15px;
  height: 15px;
  margin-top: -2px;
}
.bg_section .container_form .wrap_form form .form_group .check_block a {
  color: #2a2730;
}
.bg_section .container_form .wrap_info {
  display: none;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  padding: 40px;
}
.bg_section .container_form .wrap_info._view {
  display: flex;
}
.bg_section .container_form .wrap_info h2, .bg_section .container_form .wrap_info h3, .bg_section .container_form .wrap_info p {
  font-weight: 300;
}
.bg_section .container_form .wrap_info h2 {
  color: #2a2730;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 300;
}
.bg_section .container_form .wrap_info p {
  color: #2a2730;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
}
.bg_section .container_form .wrap_info .download_data {
  display: block;
}
.bg_section .container_form .wrap_info .content_info {
  display: none;
}
.bg_section .container_form .wrap_info .content_info._view {
  display: block;
}
.bg_section .container_form .wrap_info .result_block {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(42, 39, 48, 0.2);
  background: #fff;
  position: relative;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg_section .container_form .wrap_info .result_block:before {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #a63e75;
  content: "";
  z-index: 2;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #bc6398;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0px 0px 37px 0px rgba(169, 58, 119, 0.68);
}
.bg_section .container_form .wrap_info .result_block span {
  display: none;
}
.bg_section .container_form .wrap_info .result_block._view {
  display: block;
  height: auto;
}
.bg_section .container_form .wrap_info .result_block._view:before {
  display: none;
}
.bg_section .container_form .wrap_info .result_block._view span {
  display: block;
}
.bg_section .container_form .wrap_info .result_block span {
  font-weight: 300;
  color: rgba(42, 39, 48, 0.6117647059);
}
.bg_section .container_form .wrap_info .result_block h2, .bg_section .container_form .wrap_info .result_block h3 {
  margin-top: 0;
}
@media (max-width: 480px) {
  .bg_section .container_form .wrap_info {
    padding: 20px;
  }
  .bg_section .container_form .wrap_info h2 {
    font-size: 26px;
  }
  .bg_section .container_form .wrap_info h3 {
    font-size: 18px;
  }
}
@media (max-width: 780px) {
  .bg_section .container_form {
    margin-left: 20px;
    margin-right: 20px;
    height: auto;
  }
  .bg_section .container_form .wrap_form {
    max-width: 100%;
    width: 100%;
  }
  .bg_section .container_form .wrap_form form {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 780px) {
  .bg_section .container_form .wrap_form {
    padding: 20px;
  }
  .bg_section .container_form .wrap_form h2 {
    font-size: 5.62vw;
  }
  .bg_section .container_form .wrap_form h2 br {
    display: none;
  }
}
@media (max-width: 780px) {
  .bg_section .container_form .wrap_form h2 {
    font-size: 5.62vw;
  }
  .bg_section .container_form .wrap_form h2 br {
    display: none;
    display: none;
  }
  .bg_section .container_form .wrap_form form {
    margin-top: 10px;
  }
  .bg_section .container_form .wrap_form form .form_group label {
    font-size: 3.67vw;
    margin-bottom: 5px;
  }
  .bg_section .container_form .wrap_form form .form_group input {
    font-size: 4.08vw;
  }
  .bg_section .container_form .wrap_form form .form_group .submit_button {
    font-size: 4.9vw;
  }
  .bg_section .container_form .wrap_form form .form_group .check_block label {
    align-items: flex-start;
  }
  .bg_section .container_form .wrap_form form .form_group .check_block label input {
    margin-top: 4px;
  }
}
.bg_section .container_map {
  margin-top: 30px;
  margin-bottom: 30px;
}
.bg_section .container_map h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 15px;
}
.bg_section .container_map .map_block {
  overflow: hidden;
  border-radius: 40px;
}
.bg_section .wrap_link_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}
.bg_section .wrap_link_block a {
  font-size: 16px;
  color: #fff;
  font-family: "Commissioner", sans-serif;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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