@charset "UTF-8";
* {
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  color: #242527;
}

html {
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  font-family: "Manrope";
}

.section-title {
  font-size: 34px;
  margin-bottom: 20px;
}
.section-title__inner {
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  .section-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title__inner {
    margin-bottom: 12px;
  }
}

a {
  width: fit-content;
  display: block;
  text-decoration: none;
  color: #242527;
  transition: all 0.3s;
}
a:hover {
  color: #497a9f;
}

ul {
  list-style-type: none;
}

section {
  scroll-margin-top: 120px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  section {
    margin-bottom: 70px;
    scroll-margin-top: 80px;
  }
}
@media screen and (max-width: 640px) {
  section {
    margin-bottom: 50px;
    scroll-margin-top: 70px;
  }
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: none;
  border: none;
  background-color: #497a9f;
  border-radius: 32px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
}
.btn:hover {
  transform: translate(0, -5px);
}
.btn-black {
  background-color: #262f47;
}
.btn-black:hover {
  background-color: #262f47;
}

input {
  border: none;
  background: none;
  background-color: #f3f3f3;
}
input:focus {
  outline: none;
}

header {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  header {
    margin-bottom: 35px;
  }
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  padding-right: 15px;
  background-color: #fefefe;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  header .header-content {
    padding: 12px 15px;
    padding-left: 20px;
  }
}
header .left {
  display: flex;
  gap: 40px;
  align-items: center;
}
header .left .logo {
  max-width: 106px;
}
header .left .logo img {
  width: 100%;
}
header .left ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1280px) {
  header .left ul {
    display: none;
  }
}
header .left ul a {
  font-weight: 500;
}
header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .right .tel-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
header .right .tel-column .tel {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1280px) {
  header .right .tel-column .tel {
    display: none;
  }
}
header .right .tel-column .tel path {
  transition: 0.3s;
}
header .right .tel-column .tel:hover path {
  stroke: #497a9f;
}
header .right .buttons {
  display: flex;
  gap: 10px;
}
header .right .buttons .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  aspect-ratio: 1/1;
  background-color: #262f47;
  border-radius: 12px;
}
@media screen and (max-width: 1280px) {
  header .right .buttons .social {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  header .right .buttons .btn {
    display: none;
  }
}
header .right .buttons .burger-btn {
  display: none;
}
@media screen and (max-width: 1280px) {
  header .right .buttons .burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    aspect-ratio: 1/1;
    background-color: #262f47;
    border-radius: 12px;
  }
}

footer {
  background-color: #242527;
  padding: 30px 0;
}
footer * {
  color: #fff;
}
footer .logo {
  max-width: 106px;
}
footer .logo img {
  width: 100%;
}
footer .col {
  display: flex;
  flex-direction: column;
}
footer .col h5 {
  color: #b9b9b9;
  margin-bottom: 10px;
  font-size: 15px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  footer .top {
    justify-content: baseline;
    flex-wrap: wrap;
    column-gap: 110px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 640px) {
  footer .top {
    justify-content: baseline;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
  }
}
footer .top .col-1 a {
  margin-bottom: 28px;
}
footer .top .col-1 p {
  max-width: 224px;
}
@media screen and (max-width: 640px) {
  footer .top .col-1 p {
    max-width: none;
  }
}
footer .top .col-2 .row {
  display: flex;
  gap: 40px;
}
footer .top .col-2 .row .col {
  gap: 10px;
}
footer .top .col-3 a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
footer .top .col-3 a:hover {
  color: #fff;
}
footer .top .col-4 {
  margin-right: 110px;
}
footer .top .col-4 .socials {
  display: flex;
  gap: 10px;
}
footer .top .col-4 .socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  aspect-ratio: 1/1;
  background-color: #497a9f;
  border-radius: 12px;
}
footer .bottom {
  display: flex;
}
footer .bottom p {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
footer .bottom p a {
  text-decoration: underline;
}
footer .bottom p a:hover {
  color: #fff;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .burger-btn {
    display: block;
  }
}

.burger-overlay {
  position: fixed;
  z-index: 13;
  background: #fff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.burger-overlay .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.burger-overlay header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
  margin-top: 15px;
  padding: 12px 15px 12px 20px;
}
.burger-overlay .logo {
  max-width: 106px;
}
.burger-overlay .logo img {
  max-width: 100%;
}
.burger-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.burger-overlay ul li a {
  font-size: 20px;
  font-weight: 600;
}
.burger-overlay .line {
  width: 100%;
  height: 1px;
  background-color: #f4f4f4;
  margin-bottom: 25px;
}
.burger-overlay .btn {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-bottom: 15px;
  margin-top: auto;
  width: 100%;
}
.burger-overlay .tel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.burger-overlay .tel path {
  transition: 0.3s;
}
.burger-overlay .tel:hover path {
  stroke: #497a9f;
}
.burger-overlay .buttons {
  display: flex;
  gap: 10px;
}
.burger-overlay .buttons .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  aspect-ratio: 1/1;
  background-color: #262f47;
  border-radius: 12px;
}

.burger-overlay.visible {
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s;
}

.no-scroll {
  overflow: hidden;
}

.modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 20;
  background: #fefefe;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.modal-overlay .modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 588px;
  padding: 30px;
  border-radius: 28px;
  background-color: #fefefe;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal {
    width: 90%;
    padding: 20px;
  }
}
.modal-overlay .modal .close {
  position: absolute;
  right: 30px;
  top: 30px;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal .close {
    right: 20px;
    top: 20px;
  }
}
.modal-overlay .modal h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal h2 {
    max-width: 95%;
    font-size: 24px;
  }
}
.modal-overlay .modal .under-title {
  margin-bottom: 20px;
}
.modal-overlay .modal form .input__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
  margin-bottom: 20px;
}
.modal-overlay .modal form .input__wrap input {
  width: 48%;
  padding: 15px 20px;
  border-radius: 32px;
  border: none;
  background: none;
  background-color: #f3f3f3;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal form .input__wrap input {
    width: 100%;
  }
}
.modal-overlay .modal form .input__wrap input:focus {
  outline: none;
}
.modal-overlay .modal form .politics {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 20px;
}
.modal-overlay .modal form .politics input {
  accent-color: #151514;
  width: 17px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.modal-overlay .modal form .politics p {
  color: #595959;
}
.modal-overlay .modal form .politics p a {
  display: inline;
  color: #595959;
  text-decoration: underline;
}
.modal-overlay .modal form .btn {
  width: 100%;
  background-color: #497a9f;
  cursor: pointer;
  font-weight: 600;
}
.modal-overlay .modal .bg__wrap {
  width: 100%;
  height: 315px;
  margin-top: 15px;
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal .bg__wrap {
    height: 175px;
  }
}
.modal-overlay .modal .bg__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s;
}

.modal-overlay.visible .modal {
  transform: translateY(0);
  opacity: 1;
}

.no-scroll {
  overflow: hidden;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.ui-select {
  --h: 49px;
  --r: 12px;
  --padX: 15px;
  --border: none;
  --text: #585a5e;
  --textActive: #585a5e;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 100%;
}

.ui-select__btn {
  width: 100%;
  height: var(--h);
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  outline: none;
}

.ui-select__text {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: left;
}

.ui-select.has-value .ui-select__text {
  color: var(--textActive);
}

.ui-select__chev {
  flex: 0 0 auto;
  color: #555;
  transition: transform 0.25s ease;
}

.ui-select.is-open .ui-select__chev {
  transform: rotate(180deg);
}

/* dropdown */
.ui-select__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--h) + 10px);
  z-index: 20;
  background: #f2f2f2;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.99);
  max-height: 0;
  transition: opacity 0.22s ease, transform 0.22s ease, max-height 0.28s ease;
  max-height: var(--dd-h, 0px);
  pointer-events: none;
}

.ui-select.is-open .ui-select__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ui-select__list {
  margin: 0;
  padding: 15px;
  list-style: none;
  outline: none;
}

.ui-select__item {
  padding: 15px;
  font-size: 15px;
  line-height: 1.15;
  color: #5a5a5a;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.ui-select__item:hover, .ui-select__item:focus {
  background: #f3f3f3;
  color: #3f3f3f;
  outline: none;
}
.ui-select__item + .ui-select__item {
  margin-top: 2px;
}

/* просто чтобы увидеть submit */
.submit {
  height: 52px;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.hero {
  background-image: linear-gradient(296.05deg, rgba(0, 0, 0, 0) 10.61%, rgba(0, 0, 0, 0.4) 57.4%), url("../img/hero-bg.png");
  padding-top: 20px;
  padding-bottom: 65px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 15px 0;
    background-position: right;
  }
}
.hero .content h1 {
  font-size: 55px;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero .content h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
.hero .content p {
  max-width: 860px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .hero .content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.hero .content a {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .hero .content a {
    margin-bottom: 15px;
  }
}
.hero .content a:hover {
  color: #fff;
}
.hero .content .cards {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .hero .content .cards {
    flex-direction: column;
    gap: 10px;
  }
}
.hero .content .cards .card {
  width: 384px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 32px;
  background-color: #fefefe;
}
@media screen and (max-width: 768px) {
  .hero .content .cards .card {
    width: 100%;
    border-radius: 20px;
  }
}
.hero .content .cards .card .icon__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 22px;
  background-color: #171819;
}
@media screen and (max-width: 768px) {
  .hero .content .cards .card .icon__wrap {
    width: 71px;
    border-radius: 15px;
  }
}
.hero .content .cards .card .text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .hero .content .cards .card .text {
    gap: 5px;
  }
}
.hero .content .cards .card .text h4 {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .hero .content .cards .card .text h4 {
    font-size: 16px;
  }
}
.hero .content .cards .card .text span {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .hero .content .cards .card .text span {
    font-size: 14px;
  }
}

.contacts .content {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 1280px) {
  .contacts .content {
    flex-direction: column;
  }
}
.contacts .content .text {
  width: 100%;
  position: relative;
  padding: 10px 0;
  padding-left: 10px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text {
    padding: 0;
  }
}
.contacts .content .text h2 {
  margin-bottom: 10px;
}
.contacts .content .text p {
  color: #585a5e;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text p {
    max-width: 80%;
  }
}
.contacts .content .text .line {
  display: flex;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text .line {
    flex-direction: column;
  }
}
.contacts .content .text .tel {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 30px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text .tel {
    margin-right: 0;
  }
}
.contacts .content .text .tel path {
  transition: 0.3s;
}
.contacts .content .text .tel:hover path {
  stroke: #497a9f;
}
.contacts .content .text .socials {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text .socials {
    margin-left: 0;
    margin-top: 20px;
    gap: 7px;
  }
}
.contacts .content .text .socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background-color: #242527;
}
.contacts .content .text h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.contacts .content .text form .input__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text form .input__wrap {
    column-gap: 2%;
  }
}
.contacts .content .text form .input__wrap input {
  width: 361px;
  padding: 15px 20px;
  border-radius: 32px;
  border: none;
  background: none;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text form .input__wrap input {
    width: 49%;
  }
}
@media screen and (max-width: 640px) {
  .contacts .content .text form .input__wrap input {
    width: 100%;
  }
}
.contacts .content .text form .input__wrap input:focus {
  outline: none;
}
.contacts .content .text form .politics {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 8px;
}
@media screen and (max-width: 640px) {
  .contacts .content .text form .politics {
    flex-wrap: wrap;
  }
}
.contacts .content .text form .politics input {
  accent-color: #151514;
  width: 17px;
  flex-shrink: 0;
}
.contacts .content .text form .politics p {
  color: #595959;
  margin-bottom: 0;
}
.contacts .content .text form .politics p a {
  color: #595959;
  text-decoration: underline;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text form .politics p a {
    display: inline;
  }
}
.contacts .content .text form .politics .btn {
  width: 120px;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0 !important;
}
@media screen and (max-width: 640px) {
  .contacts .content .text form .politics .btn {
    width: 100%;
  }
}
.contacts .content .bg {
  width: 388px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .contacts .content .bg {
    width: 100%;
    height: 256px;
  }
}
.contacts .content .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .content {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .about .content {
    flex-direction: column;
  }
}
.about .content .left {
  display: flex;
  flex-direction: column;
}
.about .content .left .btn {
  width: fit-content;
  margin-top: auto;
}
@media screen and (max-width: 1280px) {
  .about .content .left .btn {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
  }
}
.about .content .right {
  flex-shrink: 0;
  width: 384px;
  height: 291px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .about .content .right {
    max-height: 280px;
    width: 100%;
  }
}
.about .content .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .advantages .content {
    gap: 15px;
  }
}
.advantages .content .top {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .advantages .content .top {
    flex-direction: column;
    gap: 15px;
  }
}
.advantages .content .top .img__wrap {
  min-width: 588px;
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .advantages .content .top .img__wrap {
    min-width: 100%;
    height: 130px;
  }
}
.advantages .content .top .img__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advantages .content .bottom {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .advantages .content .bottom {
    flex-direction: column;
    gap: 12px;
  }
}
.advantages .content .bottom .card {
  display: flex;
  flex-direction: column;
  width: 282px;
  height: 109px;
  border-radius: 32px;
  padding: 22px;
}
@media screen and (max-width: 1280px) {
  .advantages .content .bottom .card {
    width: 100%;
  }
}
.advantages .content .bottom .card svg {
  margin-bottom: 11px;
}
.advantages .content .bottom .card span {
  font-size: 18px;
  font-weight: 600;
}
.advantages .content .bottom .card:nth-child(1) {
  border: 2px solid #efefef;
}
.advantages .content .bottom .card:nth-child(2) {
  background-color: #f2f2f2;
}
.advantages .content .bottom .card:nth-child(3) {
  background-color: #497a9f;
}
.advantages .content .bottom .card:nth-child(3) span {
  color: #fff;
}
.advantages .content .bottom .card:nth-child(4) {
  background-color: #242527;
}
.advantages .content .bottom .card:nth-child(4) span {
  color: #fff;
}

/* Corner modal */
.corner-modal {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(360px, 100vw - 40px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  padding: 16px 16px 14px;
  z-index: 9999;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.corner-modal.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.corner-modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 22px;
  line-height: 34px;
  cursor: pointer;
  opacity: 0.6;
}

.corner-modal__close:hover {
  opacity: 1;
}

.corner-modal__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.corner-modal__text {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.corner-modal__fields {
  display: grid;
  gap: 10px;
}

.corner-modal__fields input {
  width: 100%;
  padding: 10px 15px;
}

.corner-modal__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.8;
}

.corner-modal__consent input {
  margin-top: 2px;
}

.corner-modal__btn {
  width: 100%;
  margin-top: 12px;
}

.corner-modal__status {
  margin-top: 10px;
}

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