@charset "UTF-8";
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-MediumItalic.woff2") format("woff2"), url("../fonts/Ubuntu-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Italic.woff2") format("woff2"), url("../fonts/Ubuntu-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Regular.woff2") format("woff2"), url("../fonts/Ubuntu-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Light.woff2") format("woff2"), url("../fonts/Ubuntu-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-LightItalic.woff2") format("woff2"), url("../fonts/Ubuntu-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Medium.woff2") format("woff2"), url("../fonts/Ubuntu-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Bold.woff2") format("woff2"), url("../fonts/Ubuntu-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-BoldItalic.woff2") format("woff2"), url("../fonts/Ubuntu-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
/*reset styles*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input, textarea, button {
  border: none;
  outline: none;
  font: inherit;
  background: none;
}

body, button, input, textarea, select {
  font-family: inherit;
  font-style: normal;
}

:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
  background-color: #fff;
  color: #000;
  font-family: "Ubuntu", Arial, sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

.header-menu-bg {
  background-color: #001529;
  padding: 1rem 0;
  box-shadow: 0 8px 20px rgba(0, 21, 41, 0.6);
}

.header-menu-bg.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-wrap {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-wrap .button-modal {
    display: none;
  }
}

.header-logo__img {
  max-width: 180px;
}

.header-menu {
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-menu {
    display: none;
  }
}

.header-menu-item__link {
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.button-modal {
  font-weight: 500;
  border-radius: 30px;
  padding: 1rem;
  color: #fff;
  background-color: #1890ff;
  width: fit-content;
  opacity: 1;
  transition: 0.3s ease-in-out all;
}
.button-modal--center {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.button-modal:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out all;
}

.header-bg {
  background-color: #001529;
  padding: 6rem 0;
  position: relative;
  height: calc(100vh - 135px);
  overflow: hidden;
}
@media (max-width: 1023px) {
  .header-bg {
    padding: 4rem 0;
    height: calc(100vh - 115px);
  }
}
.header-bg::after {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  width: 820px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  right: 0;
  z-index: 1;
  filter: blur(60px);
}

.header-banner {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
  justify-content: start;
  max-width: 580px;
  position: relative;
}

.header-banner__title {
  font-size: 46px;
  color: #fff;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1023px) {
  .header-banner__title {
    font-size: 1.5rem;
  }
}
.header-banner__title span {
  font-weight: 700;
  color: rgb(24, 144, 255);
}

.header-banner__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}

.header-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .header-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.header-img__img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  border-radius: 1rem;
  background-color: #ffffff;
}
@media (max-width: 1023px) {
  .header-img__img {
    max-height: 250px;
    object-fit: contain;
  }
}

.header-bg-after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.t796__shape-border {
  position: absolute;
  left: 0;
  font-size: 0;
  bottom: -1px;
  width: 100%;
  overflow: hidden;
  display: block;
  pointer-events: none;
}

.t796__svg {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 101%;
  fill: #fff;
  bottom: -1px;
}

.advantages-wrapper {
  padding: 4rem 0;
}
@media (max-width: 1023px) {
  .advantages-wrapper {
    padding: 2rem 0;
  }
}

.t796__svg path {
  stroke: none;
}

.common-title {
  font-size: 42px;
  text-align: center;
  margin: 0 auto;
  max-width: 960px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1023px) {
  .common-title {
    font-size: 1.5rem;
  }
}
.common-title span {
  color: rgb(24, 144, 255);
}

.burger {
  top: 20px;
  left: 20px;
  width: 30px;
  height: 25px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1023px) {
  .burger {
    display: none;
  }
}

.burger span {
  display: block;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Меню */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #001529;
  color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
}

.menu.active {
  transform: translateX(0);
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  margin: 20px 0;
}

/* Анимация иконки */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(14px) translateX(5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.footer-bg {
  background-color: #001529;
  padding: 4rem 0;
}
@media (max-width: 1023px) {
  .footer-bg {
    padding: 2rem 0;
  }
}

.footer-wrapper {
  display: grid;
  grid-auto-flow: column;
  width: 100%;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 1023px) {
  .footer-wrapper {
    grid-auto-flow: row;
  }
}

.footer-logo__img {
  max-width: 180px;
  margin-bottom: 1rem;
}

.header-menu__title {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contacts {
  display: grid;
  grid-auto-flow: row;
}

.footer-menu {
  display: grid;
  gap: 0.5rem;
  grid-auto-flow: column;
}

.contacts ul li {
  color: #fff;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.5rem;
  line-height: 140%;
  max-width: 315px;
  align-items: center;
}

.contacts ul li a:hover {
  text-decoration: underline;
}

.contacts ul {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.footer-block__text {
  font-size: 16px;
  color: #fff;
  max-width: 350px;
  line-height: 140%;
}

.tabs {
  margin: 20px auto;
}

.tabs__nav {
  display: grid;
  width: 100%;
  grid-auto-flow: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .tabs__nav {
    grid-auto-flow: row;
    width: 100%;
    gap: 1rem;
    justify-content: stretch;
  }
}

.tabs__btn {
  color: #001529;
  font-size: 16px;
  line-height: 1.54;
  font-weight: 400;
  border-width: 2px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: rgb(242, 247, 253);
  transition: 0.3s ease-in-out-all;
}
@media (max-width: 1023px) {
  .tabs__btn {
    width: 100%;
  }
}

.advantages-grid {
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  .advantages-grid {
    margin-top: 2rem;
  }
}

.tabs__btn:hover {
  background: #e5e5e5;
}

.tabs__btn.active {
  background-color: #40a9ff;
  transition: 0.3s ease-in-out-all;
  color: #ffffff;
}

.tabs__content {
  display: none;
  padding: 15px;
  background: #fff;
  border-top: none;
}

.tabs__content.active {
  display: block;
}

.tabs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabs-list__item {
  color: #001529;
  font-size: 18px;
  line-height: 28px;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .tabs-list__item {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
}
.tabs-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/tab-icon.svg") no-repeat center/contain;
}

.tabs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .tabs-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about-wrapper .common-title {
  max-width: 435px;
}

.about-grid {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .about-grid {
    margin: 2rem 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about-item {
  background-color: #011a38;
  padding: 2rem;
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  border-radius: 1rem;
}
@media (max-width: 1023px) {
  .about-item {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
  }
}

.about-box__title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .about-box__title {
    font-size: 18px;
  }
}

.about-box__text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.55;
  max-width: 380px;
}
@media (max-width: 1023px) {
  .about-box__text {
    font-size: 16px;
  }
}

.benefit-wrapper {
  display: grid;
  grid-auto-flow: column;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 767px) {
  .benefit-wrapper {
    grid-auto-flow: row;
    gap: 1rem;
  }
}

.benefit-bg {
  position: relative;
}

.benefit-wrap-bg {
  padding: 6rem 0;
  background-color: #f9fbff;
  position: relative;
  z-index: 3;
}
.benefit-wrap-bg::before {
  content: "";
  background-image: url("../img/benefit-img.svg");
  width: 240px;
  height: 240px;
  background-repeat: no-repeat;
  position: absolute;
  pointer-events: none;
  z-index: 1;
  right: 30%;
  top: 15%;
}
@media (max-width: 767px) {
  .benefit-wrap-bg::before {
    right: 0;
    top: 10%;
  }
}

.common-subtitle {
  color: #1890ff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 3px;
}

.benefit-box .common-title {
  text-align: left;
  font-size: 30px;
  max-width: 650px;
  margin: 2rem 0 0;
}
@media (max-width: 1023px) {
  .benefit-box .common-title {
    font-size: 1.5rem;
    max-width: 450px;
  }
}

.t796__shape-border_bottom-flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  bottom: -1px;
}

.t796__shape-border_bottom-reverse {
  -webkit-transform: scaleX(-1) rotate(180deg);
  transform: scaleX(-1) rotate(180deg);
  bottom: -1px;
}
@media (max-width: 767px) {
  .t796__shape-border_bottom-reverse {
    display: none !important;
  }
}

.benefit-wrapper {
  position: relative;
  z-index: 3;
}

.keys-bg {
  padding: 6rem 0;
  background-color: #001529;
  position: relative;
}
@media (max-width: 1023px) {
  .keys-bg {
    padding: 2rem 0;
  }
}

.keys-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .keys-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.keys-container {
  position: relative;
  padding-bottom: 3.3rem;
}

@media (max-width: 1440px) {
  .keys-container {
    padding-bottom: 2.3rem;
  }
}
@media (min-width: 1023px) and (max-width: 1200px) {
  .keys-container {
    padding-bottom: 1.3rem;
  }
}
@media (max-width: 1023px) {
  .keys-container {
    padding-bottom: 1.3rem;
  }
}
.keys-wrapper__img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-width: 500px;
  margin-top: -5rem;
}
@media (max-width: 1023px) {
  .keys-wrapper__img {
    margin: 0 auto;
  }
}

.keys-block__title {
  color: #1890ff;
  font-size: 42px;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .keys-block__title {
    font-size: 18px;
  }
}

.keys-block__subtitle {
  margin-bottom: 2rem;
  font-size: 16px;
  color: #ffffff;
  line-height: 160%;
}
@media (max-width: 1023px) {
  .keys-block__subtitle {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

.button-modal-outline {
  background-color: transparent;
  border: 1px solid #1890ff;
  padding: 1rem 2rem;
  color: #1890ff;
  transition: 0.3s ease-in-out all;
}
.button-modal-outline:hover {
  background-color: #1890ff;
  color: #fff;
  transition: 0.3s ease-in-out all;
}

.clients-wrapper {
  padding: 4rem 0;
}
@media (max-width: 1023px) {
  .clients-wrapper {
    padding: 2rem 0;
  }
}

.clients-wrapper .common-title {
  max-width: 625px;
  margin: 0 auto;
}

.clients-grid {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
}

.clients-item {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: 100px auto auto;
  gap: 2rem;
  padding: 1rem;
}
@media (max-width: 1023px) {
  .clients-item {
    gap: 1rem;
  }
}

.clients-item__img {
  margin: 0 auto;
  object-fit: cover;
}

.clients-item__title {
  font-size: 28px;
  line-height: 1.17;
  font-weight: 700;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .clients-item__title {
    font-size: 18px;
  }
}

.clients-item__text {
  font-size: 16px;
  line-height: 1.55;
  color: rgb(0, 21, 41);
  text-align: center;
}

.analysis-wrapper {
  background-image: url("../img/analysis-bg.svg");
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr auto;
}
@media (max-width: 1023px) {
  .analysis-wrapper {
    grid-template-columns: 1fr;
    min-height: 500px;
  }
}

.analysis-box__subtitle {
  color: #1890ff;
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.analysis-box__text {
  color: #ffffff;
  font-size: 30px;
  line-height: 37px;
  max-width: 540px;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .analysis-box__text {
    font-size: 1.5rem;
  }
}

@media (max-width: 1023px) {
  .analysis-wrap {
    margin: 0 auto;
  }
}
.analysis-wrap__img {
  width: 100%;
}

.users-wrapper {
  margin: 4rem 0;
}

.users-wrapper .common-title {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.users-grid {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .users-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
}

.users-item {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: 150px 1fr;
}
@media (max-width: 1440px) {
  .users-item {
    grid-template-rows: 120px 1fr;
  }
}

.users-item__img {
  width: 100%;
}
@media (max-width: 1023px) {
  .users-item__img {
    height: 100%;
    background-color: #f9fbff;
  }
}

.users-wrap {
  padding: 2rem;
  background-color: #f9fbff;
  justify-content: center;
}

.users-item__title {
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .users-item__title {
    font-size: 18px;
  }
}

.users-list {
  list-style: disc;
  padding: 0;
  padding-left: 1rem;
  margin: 0;
}

.users-list__item {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 1023px) {
  .users-list__item {
    font-size: 16px;
  }
}

.users-wrapper__info {
  display: flex;
  justify-content: center;
  color: rgb(24, 144, 255);
  font-size: 20px;
}
@media (max-width: 1023px) {
  .users-wrapper__info {
    font-size: 18px;
  }
}

.lang-wrapper {
  margin: 4rem 0;
}
@media (max-width: 1023px) {
  .lang-wrapper {
    margin: 2rem 0;
  }
}

.lang-wrapper .common-title {
  max-width: 500px;
}

.lang-grid {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1200px) {
  .lang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .lang-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 2rem 0;
    gap: 1rem;
  }
}

.lang-item {
  display: grid;
  grid-template-columns: 90px auto;
  gap: 1rem;
  align-items: center;
}
.lang-item__img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  height: 55px;
  border: 0.5px solid rgba(74, 74, 74, 0.1098039216);
}
.lang-item__text {
  color: #4a4a4a;
  font-size: 18px;
  margin: 0;
}
@media (max-width: 1023px) {
  .lang-item__text {
    font-size: 14px;
  }
}

.tabs-img__img {
  width: 100%;
  object-fit: cover;
  max-width: 400px;
}
@media (max-width: 1023px) {
  .tabs-img__img {
    object-fit: contain;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-card {
  border-radius: 16px;
  padding: 24px;
  background-color: #0d2134;
  border: 1px solid #182C3E;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.price-wrap {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
}

.price-box {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
}

.price-card-header {
  font-size: 16px;
  color: rgb(24, 144, 255);
}

.price-card-title {
  font-size: 14px;
  color: #f3f3f3;
  font-weight: bold;
}

.price-card-subtitle {
  font-size: 24px;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 1023px) {
  .price-card-subtitle {
    font-size: 18px;
  }
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.price-card ul li {
  margin: 8px 0;
  font-size: 16px;
  color: #fff;
}

.price-card ul li:before {
  content: "✔";
  color: rgb(24, 144, 255);
  margin-right: 1rem;
}

.price-card .price {
  font-size: 22px;
  font-weight: bold;
  margin: 12px 0;
}

.price-card.ceo {
  border: 2px solid rgb(24, 144, 255);
}

.price-box .price {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.price-box__subtitle {
  font-size: 16px;
  color: #fff;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.price-wrapper .common-title {
  max-width: 500px;
  color: #fff;
}

.price-grid {
  margin: 4rem 0;
}
@media (max-width: 1023px) {
  .price-grid {
    margin: 2rem 0;
  }
}

.price-bg {
  padding: 4rem 0;
  background-color: #001528;
}
@media (max-width: 1023px) {
  .price-bg {
    padding: 2rem 0;
  }
}

.button-link {
  display: flex;
  margin: 0 auto;
}

.certificate-wrap__img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.price-block .common-title {
  color: #fff;
  text-align: left;
  margin-bottom: 2rem;
}

.price-block__subtitle {
  font-size: 16px;
  margin-bottom: 1rem;
  line-height: 140%;
  color: #fff;
}

.price-block .button-modal {
  display: block;
  margin-top: 2rem;
}

.form-wrapper {
  margin: 4rem 0;
}
@media (max-width: 1023px) {
  .form-wrapper {
    margin: 2rem 0;
  }
}

.form-wrapper .common-title {
  text-align: left;
  max-width: 600px;
  color: #1890ff;
  margin: 0;
  font-size: 32px;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-about {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
}

.form-input {
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
}

.form-area {
  height: 200px;
  resize: none;
}

.form-block__img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.form-submit {
  font-weight: 500;
  border-radius: 30px;
  padding: 1.5rem 1rem;
  color: #fff;
  background-color: #1890ff;
  width: 100%;
  opacity: 1;
  transition: 0.3s ease-in-out all;
}
.form-submit:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out all;
}

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