/*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: "DM Sans", sans-serif;
}

/*header styles*/
.header-bg {
  background-image: url("../img/bg/header-bg.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px 16px 0 0;
}
.header-bg--main{
  background-image: none;
  border-radius: 0;
  backdrop-filter: blur(80px);
  background-color: #2a2428;
}

.header {
  max-width: 670px;
  margin: 1rem auto 0;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  border-radius: 40px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(80px);
  background: rgba(255, 255, 255, 0.04);
}

.logo-block {
  padding: 0 2rem;
}

.header-menu {
  display: grid;
  margin: 0;
  grid-auto-flow: column;
  gap: 1rem;
  justify-content: space-between;
  padding: 0 2rem;
}

.header-link {
  padding: 1.4rem 0;
  display: block;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out all;
  position: relative;
}
.header-link:hover {
  color: #AF6CF6;
  transition: 0.3s ease-in-out all;
}
.header-link:hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(175, 108, 246, 0) 0%, rgb(175, 108, 246) 50%, rgba(175, 108, 246, 0) 100%);
}

.header-social {
  background-color: rgb(56, 53, 56);
  border-radius: 40px;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-right: 0.5rem;
}

.social-icon {
  padding: 1rem;
}

.header-social .social-icon:nth-child(2) {
  border-left: 1px solid #302d30;
  border-right: 1px solid #302d30;
}

.header-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 6.5rem;
  flex-direction: column;
}

.header-banner__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 108%;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 930px;
  margin: 0 auto 2rem;
  letter-spacing: -0.02em;
}
.header-banner__title b {
  font-weight: 700;
}

.header-banner__stick {
  position: absolute;
  z-index: 3;
  right: 45px;
  top: 85px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(190, 94, 245, 0.12);
  border-radius: 2px 12px 12px 12px;
  padding: 12px 16px 14px 16px;
  backdrop-filter: blur(10px);
  background: rgba(190, 94, 245, 0.12);
}

.header-banner__stick a {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #af6cf6;
}

.header-banner__stick a:hover {
  text-decoration: underline;
}

.header-banner__span {
  color: #af6cf6;
  font-weight: 300;
  font-size: 48px;
  line-height: 108%;
  text-align: center;
}

.header-banner__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 4.7rem;
}

.header-section {
  border: 3px solid #ffffff;
}

.btn-violet {
  background: #af6cf6;
  border-radius: 100px;
  padding: 1.6rem 3.6rem;
  margin: 0 auto;
  font-weight: 800;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #292428;
  transition: 0.3s ease-in-out all;
}
.btn-violet:hover {
  background: rgba(190, 94, 245, 0.12);
  color: #af6cf6;
  transition: 0.3s ease-in-out all;
}

.header-wrapper {
  padding-bottom: 6.5rem;
}
.header-bg--main .header-wrapper{
  padding-bottom: 2rem;
}
/*footer styles*/
.footer-wrapper {
  display: grid;
  grid-template-columns: 345px 1fr 345px;
  gap: 2rem;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: grid;
  grid-auto-flow: row;
  gap: 0.5rem;
}

.social-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.footer-social__link {
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid rgba(41, 36, 40, 0.2);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out all;
}
.footer-social__link svg {
  fill: #292428;
}

.footer-social__link:hover {
  background-color: #af6cf6;
  border-color: #af6cf6;
  color: #ffffff;
  transition: 0.3s ease-in-out all;
}
.footer-social__link:hover svg {
  fill: white;
}

.footer-logo {
  justify-self: center;
}

.social-address {
  display: grid;
  grid-auto-flow: row;
  gap: 0.35rem;
}

.social-address__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #292428;
  border-radius: 100px;
  padding: 1.4rem 2rem;
  transition: 0.3s ease-in-out all;
  text-decoration: none;
  background: rgba(41, 36, 40, 0.04);
}
.social-address__link:hover {
  color: #292428;
  transition: 0.3s ease-in-out all;
  text-decoration: underline;
}

.social-address .social-address__link:nth-child(1) {
  position: relative;
}

.social-address .social-address__link:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: -9%;
  width: 24px;
  height: 6px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='6' viewBox='0 0 24 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 0C22.3431 0 21 1.34315 21 3C21 4.65685 22.3431 6 24 6H0C1.65685 6 3 4.65685 3 3C3 1.34315 1.65685 0 0 0H24Z' fill='%23292428' fill-opacity='0.04' /%3E%3C/svg%3E");
}

/*main styles*/
.about-wrapper {
  display: flex;
  flex-direction: column;
  padding: 8.5rem 0 0.5rem;
}

.business-wrapper {
  display: flex;
  flex-direction: column;
  padding: 8.5rem 0.5rem;
  background-color: #292428;
  border-radius: 12px;
  position: relative;
  z-index: 3;
}
.business-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  background-image: url("../img/bg/business-bg.png");
  width: 100%;
  height: 100%;
}

.why-wrapper {
  display: flex;
  flex-direction: column;
  padding: 8.5rem 0 9rem;
}

.global-wrapper {
  padding: 0.5rem;
  border-radius: 20px 20px 0 0;
  background-color: #ffffff;
  margin-top: -20px;
  position: relative;
}
.global-wrapper::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 21px;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='21' viewBox='0 0 40 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0.976562C28.913 0.976562 20.2482 10.0919 20 20.9766C20 9.93087 11.0457 0.976562 0 0.976562L20 0L40 0.976562Z' fill='%23292428' /%3E%3C/svg%3E");
}

.social-icon svg {
  fill: white;
  transition: 0.3s ease-in-out all;
}

.social-icon:hover svg {
  fill: #AF6CF6;
  transition: 0.3s ease-in-out all;
}

.section-why {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.section-why::before {
  content: "";
  position: absolute;
  z-index: 4;
  background-image: url("../img/bg/why-bg-3.png");
  width: 100%;
  height: 834px;
  bottom: -30%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.why-bg {
  position: relative;
  z-index: 3;
}
.why-bg::before {
  content: "";
  position: absolute;
  z-index: 2;
  background-image: url("../img/bg/why-bg-1.png");
  width: 335px;
  height: 545px;
  top: 10%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.why-bg::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 386px;
  height: 495px;
  right: 0;
  top: 39%;
  background-image: url("../img/bg/why-bg-2.png");
  background-repeat: no-repeat;
  pointer-events: none;
}

.form-wrapper {
  border-radius: 12px;
  padding: 140px 40px 85px 40px;
  background: #f3ebfe;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.form-wrapper::before {
  content: "";
  z-index: 1;
  right: 0;
  top: 0;
  position: absolute;
  width: 345px;
  height: 440px;
  background-image: url("../img/bg/form-bg-1.png");
  background-repeat: no-repeat;
  pointer-events: none;
}
.form-wrapper::after {
  content: "";
  z-index: 1;
  position: absolute;
  width: 391px;
  height: 385px;
  left: 0;
  bottom: 0;
  background-image: url("../img/bg/form-bg-2.png");
  background-repeat: no-repeat;
  pointer-events: none;
}

.form-ai {
  position: relative;
  z-index: 2;
}

.about-wrapper__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(41, 36, 40, 0.4);
  margin: 0 auto 1rem;
}

.about-wrapper__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 120%;
  margin: 0 auto 5rem;
  letter-spacing: -0.02em;
  text-align: center;
  color: #292428;
}
.about-wrapper__title b {
  font-weight: 700;
}

.why-wrapper__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(41, 36, 40, 0.4);
  margin: 0 auto 1rem;
}

.why-wrapper__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 120%;
  margin: 0 auto 5rem;
  letter-spacing: -0.02em;
  text-align: center;
  color: #292428;
}
.why-wrapper__title b {
  font-weight: 700;
}

.business-wrapper__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #ffffff;
  margin: 0 auto 1rem;
}

.business-wrapper__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 120%;
  margin: 0 auto 4.5rem;
  letter-spacing: -0.02em;
  text-align: center;
  color: #ffffff;
}
.business-wrapper__title b {
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-item {
  background: rgba(41, 36, 40, 0.04);
  border-radius: 12px 68px 12px 12px;
  padding: 2rem;
  display: grid;
  grid-auto-flow: row;
  position: relative;
  z-index: 2;
}

.about-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 427px;
  height: 427px;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='427' height='424' viewBox='0 0 427 424' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M304.149 302.248C197.567 408.163 70.5068 453.619 20.3509 403.776C-29.8049 353.934 15.9369 227.667 122.518 121.752C229.099 15.8373 356.16 -29.6186 406.316 20.2238C456.472 70.0662 410.73 196.333 304.149 302.248Z' fill='%23F3EBFE' /%3E%3C/svg%3E");
}

.about-item__number {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  text-align: start;
  display: flex;
  align-items: center;
  color: #af6cf6;
  border: 1px solid #af6cf6;
  border-radius: 40px;
  padding: 0px 16px;
  width: 80px;
  height: 40px;
}

.about-img-wrap {
  position: relative;
  z-index: 3;
}

.about-img__img {
  margin-top: -60px;
}

.about-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.about-box__link {
  display: grid;
  grid-template-columns: auto 26px;
  justify-content: start;
  gap: 1rem;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #292428;
}

.about-box__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #292428;
}

.business-grid {
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 0 7.5rem;
  grid-template-areas: "block-1 block-1" "block-2 block-3";
}

.about-box__link svg {
  width: 26px;
  height: 26px;
}

.business-grid .business-item:nth-child(1) {
  grid-area: block-1;
  justify-self: center;
  max-width: 575px;
}

.business-grid .business-item:nth-child(2) {
  grid-area: block-2;
}

.business-grid .business-item:nth-child(3) {
  grid-area: block-3;
}

.business-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  gap: 2.5rem;
  align-items: end;
}

.business-box {
  display: grid;
  grid-auto-flow: row;
  gap: 0.8rem;
}

.business-box__title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.business-box__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-auto-flow: row;
  position: relative;
  z-index: 3;
  gap: 14px;
  justify-content: center;
}

.why-item {
  border-radius: 100px;
  padding: 40px 100px;
  background: #af6cf6;
  display: flex;
  z-index: 1;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.why-item__text {
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
}
.why-item__text b {
  font-weight: 700;
}

.footer-logo svg {
  width: 120px;
}

.why-grid .why-item:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: -12%;
  left: 27%;
  width: 60px;
  z-index: 3;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='16' viewBox='0 0 60 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 1C56.134 1 53 4.13401 53 8C53 11.866 56.134 15 60 15V16H0V15C3.86599 15 7 11.866 7 8C7 4.13401 3.86599 1 0 1V0H60V1Z' fill='%23AF6CF6' /%3E%3C/svg%3E");
}

.why-grid .why-item:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: -12%;
  left: 60%;
  width: 60px;
  z-index: 3;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='16' viewBox='0 0 60 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 1C56.134 1 53 4.13401 53 8C53 11.866 56.134 15 60 15V16H0V15C3.86599 15 7 11.866 7 8C7 4.13401 3.86599 1 0 1V0H60V1Z' fill='%23AF6CF6' /%3E%3C/svg%3E");
}

.form-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5rem;
}

.form-block__title {
  font-weight: 200;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.02em;
  max-width: 540px;
  color: #292428;
}

.form-box__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: rgba(41, 36, 40, 0.4);
  margin: 0;
}

.form-box {
  display: grid;
  grid-auto-flow: row;
  gap: 2rem;
}

.form-badges {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: start;
}

.form-badge {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #292428;
  backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 14px 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-group {
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.form-label {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.7rem;
}

.form-control {
  border: none;
  padding: 5px 12px;
  font-weight: 300;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #292428;
  outline: none;
}

.form-wrap {
  position: relative;
}

.form-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 17px;
  bottom: -10px;
  left: 0;
  background-repeat: no-repeat;
}

.form-wrap--1::before {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 330 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68629 16 6.99999 16H323C326.314 16 329 13.3137 329 10V0' stroke='%23292428' /%3E%3C/svg%3E");
}

.form-wrap--2::before {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 546 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.6863 16 7.00001 16H539C542.314 16 545 13.3137 545 10V0' stroke='%23292428' /%3E%3C/svg%3E");
}

.form-wrap--3::before {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
}

.message{
  padding-top: 1rem;
  padding-left: 1rem;
  font-size: 12px;
  margin: 0 auto;
  width: fit-content;
}

.is-invalid .message-error {
  display: block;
  color: red;
}

.message-error {
  color: red;
  display: none;
  padding-top: 1rem;
  padding-left: 1rem;
  font-size: 12px;
  margin: 0;
}

.form-control:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: #AF6CF6;
}

.form-wrap--1:has(.form-control:focus)::before {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 330 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68629 16 6.99999 16H323C326.314 16 329 13.3137 329 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
}

.form-wrap--2:has(.form-control:focus)::before {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 546 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.6863 16 7.00001 16H539C542.314 16 545 13.3137 545 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
}

.form-wrap--3:has(.form-control:focus)::before {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
}

.form-control textarea {
  height: 115px;
}

.form-subtitle {
  font-weight: 400;
  display: block;
  margin: 4.5rem auto 2.5rem;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(41, 36, 40, 0.4);
}
.form-subtitle a {
  color: #af6cf6;
}

.button-wrap {
  margin: 0 auto;
  display: flex;
  width: 100%;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-item {
    max-width: 575px;
    margin: 0 auto;
  }
  .business-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "block-1" "block-2" "block-3";
  }
  .business-grid .business-item:nth-child(1) {
    max-width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-wrap--1::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
  }
  .form-wrap--2::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
  }
  .form-wrap--1:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .form-wrap--2:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .form-wrap--3:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header-banner__title {
    font-size: 48px;
    max-width: 655px;
    margin-bottom: 1.5rem;
  }
  .header-banner__subtitle {
    margin-bottom: 3.7rem;
  }
  .about-wrapper {
    padding: 5rem 0 0.5rem;
  }
  .about-wrapper__title {
    margin: 0 auto 2.5rem;
  }
  .header-banner__stick {
    right: -33px;
    top: 133px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .business-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "block-1" "block-2" "block-3";
    padding: 0 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .header-banner {
    margin-top: 5.5rem;
  }
  .form-wrap--1::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
  }
  .form-wrap--2::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
  }
  .form-wrap--1:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .form-wrap--2:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .form-wrap--3:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo {
    display: none;
  }
  .about-item {
    grid-template-columns: 1fr 205px;
    padding-bottom: 0;
    border-radius: 12px 12px 12px 44px;
  }
  .about-item::before {
    left: 0;
    right: auto;
    width: 260px;
    height: 260px;
    background-repeat: no-repeat;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='262' height='260' viewBox='0 0 262 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M186.664 185.341C121.253 250.288 43.272 278.162 12.4899 247.599C-18.2921 217.035 9.7809 139.607 75.1927 74.6595C140.605 9.71153 218.585 -18.1624 249.367 12.4014C280.149 42.9651 252.076 120.393 186.664 185.341Z' fill='%23F3EBFE' /%3E%3C/svg%3E");
  }
  .about-item__number {
    position: relative;
    z-index: 2;
  }
  .about-box {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 5px;
    align-content: start;
  }
  .about-img__img {
    max-width: 260px;
    transform: translateX(55px);
    height: 250px;
  }
  .about-box__link {
    justify-content: center;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .business-wrapper {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }
  .business-grid .business-item:nth-child(1) {
    max-width: 100%;
  }
  .business-wrapper__title {
    margin: 0 auto 2.5rem;
  }
  .business-grid {
    gap: 2.5rem;
  }
  .why-wrapper {
    padding: 5rem 0 5rem;
  }
  .why-wrapper__title {
    margin: 0 auto 2.5rem;
  }
  .why-item__text {
    max-width: 465px;
  }
  .why-item {
    padding: 40px 80px;
  }
  .why-grid .why-item:nth-child(3) {
    padding: 40px 40px;
  }
  .why-grid .why-item:nth-child(2)::before {
    bottom: -9%;
  }
  .why-bg::before {
    width: 373px;
    height: 373px;
    background-image: url("../img/bg/why-bg-1-mobile.png");
  }
  .why-bg::after {
    background-image: url("../img/bg/why-bg-2-mobile.png");
    width: 220px;
    height: 316px;
    top: auto;
    bottom: 0;
  }
  .section-why::before {
    background-image: url("../img/bg/why-bg-3-mobile.png");
    width: 768px;
    height: 307px;
    bottom: 0%;
  }
  .form-block {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  .form-box {
    grid-auto-flow: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
  }
  .form-block__title {
    margin-bottom: 45px;
  }
  .form-wrapper {
    padding: 90px 40px 85px 40px;
    margin-bottom: 2rem;
  }
  .form-wrapper::before {
    width: 196px;
    height: 464px;
    background-image: url("../img/bg/form-bg-1-mobile.png");
  }
  .form-wrapper::after {
    width: 345px;
    height: 440px;
    background-image: url("../img/bg/form-bg-2-mobile.png");
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .header-menu {
    display: none;
  }
  .header-banner__title {
    font-size: 32px;
    max-width: 330px;
    margin-bottom: 1.5rem;
  }
  .header-banner__span {
    font-size: 32px;
  }
  .about-wrapper {
    padding: 5rem 0 0.5rem;
  }
  .about-wrapper__title {
    margin: 0 auto 2.5rem;
  }
  .header-banner__stick {
    right: 35px;
    top: 160px;
    padding: 6px 12px;
    font-size: 14px;
  }
  .header-banner__subtitle {
    font-size: 16px;
    margin-bottom: 2.7rem;
  }
  .btn-violet {
    padding: 20px 40px;
    font-size: 18px;
  }
  .global-wrapper {
    margin-top: -35px;
  }
  .footer-logo svg {
    width: 80px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .business-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "block-1" "block-2" "block-3";
    padding: 0 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .header-banner {
    margin-top: 5rem;
  }
  .form-wrap--1::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
  }
  .form-wrap--2::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23292428' /%3E%3C/svg%3E");
  }
  .form-wrap--1:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .form-wrap--2:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .form-wrap--3:has(.form-control:focus)::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23AF6CF6' /%3E%3C/svg%3E");
  }
  .is-invalid .form-wrap--1::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23FF0000' /%3E%3C/svg%3E");
  }
  .is-invalid .form-wrap--2::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23FF0000' /%3E%3C/svg%3E");
  }
  .is-invalid .form-wrap--3::before {
    background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 1282 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V10C1 13.3137 3.68628 16 6.99998 16H1275C1278.31 16 1281 13.3137 1281 10V0' stroke='%23FF0000' /%3E%3C/svg%3E");
  }
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
  .footer-logo {
    display: grid;
    order: 1;
  }
  .footer-social {
    order: 2;
  }
  .social-address {
    order: 3;
  }
  .about-item {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 8px 28px 8px 8px;
  }
  .about-item__number {
    border: 0.68px solid #af6cf6;
    border-radius: 24px;
    padding: 0px 12px;
    width: 54px;
    font-size: 12px;
    height: 32px;
  }
  .about-item::before {
    right: 0;
    left: auto;
    width: 160px;
    height: 160px;
    background-repeat: no-repeat;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='162' height='160' viewBox='0 0 262 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M186.664 185.341C121.253 250.288 43.272 278.162 12.4899 247.599C-18.2921 217.035 9.7809 139.607 75.1927 74.6595C140.605 9.71153 218.585 -18.1624 249.367 12.4014C280.149 42.9651 252.076 120.393 186.664 185.341Z' fill='%23F3EBFE' /%3E%3C/svg%3E");
  }
  .about-item__number {
    position: relative;
    z-index: 2;
  }
  .about-box {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 5px;
    align-content: start;
  }
  .about-img__img {
    width: 161px;
    height: 146px;
    margin: -45px auto 20px;
  }
  .about-img-wrap {
    display: flex;
  }
  .about-box__link {
    justify-content: center;
    gap: 0.5rem;
    grid-template-columns: 1fr;
    font-size: 18px;
    line-height: 144%;
    letter-spacing: -0.01em;
  }
  .about-box__link svg {
    width: 16px;
    height: 16px;
  }
  .about-box__text {
    max-width: 210px;
    font-size: 18px;
  }
  .business-wrapper {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }
  .business-grid .business-item {
    grid-template-columns: 1fr;
  }
  .business-grid .business-item:nth-child(1) {
    max-width: 100%;
  }
  .business-wrapper__title {
    margin: 0 auto 1.5rem;
  }
  .business-item {
    gap: 2rem;
  }
  .business-grid {
    gap: 1.5rem;
  }
  .why-wrapper {
    padding: 4.5rem 0 4rem;
  }
  .why-wrapper__subtitle {
    font-size: 14px;
  }
  .why-item__text {
    font-size: 20px;
  }
  .why-wrapper__title {
    font-size: 28px;
    margin: 0 auto 1rem;
  }
  .business-wrapper::before {
    background-image: url(../img/bg/business-bg-mobile.png);
    bottom: -10%;
  }
  .why-grid {
    gap: 8px;
  }
  .why-item__text {
    max-width: 465px;
  }
  .why-item {
    padding: 24px 40px;
  }
  .about-wrapper {
    padding: 3.5rem 0 0.5rem;
  }
  .about-wrapper__subtitle {
    font-size: 14px;
    margin: 0 auto 1rem;
  }
  .about-wrapper__title {
    font-size: 28px;
    margin: 0 auto 1.5rem;
  }
  .why-grid .why-item:nth-child(3) {
    padding: 40px 40px;
  }
  .business-wrapper__subtitle {
    font-size: 14px;
  }
  .business-wrapper__title {
    font-size: 28px;
    max-width: 235px;
  }
  .business-img {
    width: 140px;
    height: 120px;
    object-fit: cover;
  }
  .why-grid .why-item:nth-child(2)::before {
    bottom: -9%;
  }
  .why-bg::before {
    width: 149px;
    height: 149px;
    background-image: url("../img/bg/why-bg-1-mobile-short.png");
    top: 28%;
    z-index: 4;
  }
  .why-bg::after {
    background-image: url("../img/bg/why-bg-2-mobile-short.png");
    width: 125px;
    height: 158px;
    top: auto;
    bottom: 0;
  }
  .section-why::before {
    background-image: url("../img/bg/why-bg-3-mobile-short.png");
    width: 360px;
    height: 190px;
    bottom: 5%;
  }
  .form-block {
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
  }
  .form-box {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
  }
  .form-label {
    margin-bottom: 1.1rem;
  }
  .form-block__title {
    margin-bottom: 16px;
    font-size: 60px;
    position: relative;
    z-index: 3;
    max-width: 285px;
  }
  .form-wrapper {
    padding: 60px 16px;
    margin-bottom: 1rem;
  }
  .form-wrapper::before {
    width: 155px;
    height: 265px;
    border-radius: 0 16px 0 0;
    background-image: url("../img/bg/form-bg-1-mobile-short.png");
  }
  .form-control {
    font-size: 24px;
  }
  .form-wrapper::after {
    content: none;
  }
  .form-subtitle {
    margin: 3rem auto 1.5rem;
  }
  .header-menu {
    display: none;
  }
  .header-social {
    display: none;
  }
  .dropdown-menu .header-menu {
    display: grid;
    grid-auto-flow: row;
  }
  .header {
    backdrop-filter: blur(80px);
    background: rgba(255, 255, 255, 0.04);
    grid-template-columns: 1fr 60px;
  }
  .burger-button {
    display: grid;
    justify-content: end;
    padding: 12px 18px;
    border-left: 1px solid #292428;
    transition: 0.3s ease-in-out all;
    border-radius: 0 40px 40px 0;
  }
  .burger-button svg {
    fill: white;
    transition: 0.3s ease-in-out all;
  }
  .burger-button:hover {
    background-color: #AF6CF6;
    transition: 0.3s ease-in-out all;
    border-radius: 0 40px 40px 0;
  }
  .burger-button.show {
    background-color: #AF6CF6;
    transition: 0.3s ease-in-out all;
    border-radius: 0 40px 40px 0;
  }
  .dropdown-menu .header-social {
    display: grid;
    margin-top: 1rem;
  }
  .custom-dropdown .dropdown-menu {
    backdrop-filter: blur(80px);
    background: #302d30;
    border-radius: 20px;
    padding: 16px;
  }
  .custom-dropdown .header-menu {
    padding: 0;
    justify-content: center;
  }
  .header {
    margin: 1rem;
    width: auto;
  }
}
.dropdown-toggle::after {
  content: none;
}

.header-wrap {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: fadeInDown 0.5s ease both;
  background: #302d30;
  padding-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

@media (min-width: 1441px) {
  .section-why::before {
    content: none;
  }
}
.message-success {
  color: green;
  font-size: 16px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
}

.message-fault {
  color: red;
  font-size: 16px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-BlackItalic.eot");
  src: url("../fonts/DMSans-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-BlackItalic.woff2") format("woff2"), url("../fonts/DMSans-BlackItalic.woff") format("woff"), url("../fonts/DMSans-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-ExtraBold.eot");
  src: url("../fonts/DMSans-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-ExtraBold.woff2") format("woff2"), url("../fonts/DMSans-ExtraBold.woff") format("woff"), url("../fonts/DMSans-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Black.eot");
  src: url("../fonts/DMSans-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Black.woff2") format("woff2"), url("../fonts/DMSans-Black.woff") format("woff"), url("../fonts/DMSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-ExtraLightItalic.eot");
  src: url("../fonts/DMSans-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-ExtraLightItalic.woff2") format("woff2"), url("../fonts/DMSans-ExtraLightItalic.woff") format("woff"), url("../fonts/DMSans-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-BoldItalic.eot");
  src: url("../fonts/DMSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-BoldItalic.woff2") format("woff2"), url("../fonts/DMSans-BoldItalic.woff") format("woff"), url("../fonts/DMSans-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-ExtraLight.eot");
  src: url("../fonts/DMSans-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-ExtraLight.woff2") format("woff2"), url("../fonts/DMSans-ExtraLight.woff") format("woff"), url("../fonts/DMSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Bold.eot");
  src: url("../fonts/DMSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Bold.woff2") format("woff2"), url("../fonts/DMSans-Bold.woff") format("woff"), url("../fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-ExtraBoldItalic.eot");
  src: url("../fonts/DMSans-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/DMSans-ExtraBoldItalic.woff") format("woff"), url("../fonts/DMSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic.eot");
  src: url("../fonts/DMSans-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Italic.woff2") format("woff2"), url("../fonts/DMSans-Italic.woff") format("woff"), url("../fonts/DMSans-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-SemiBold.eot");
  src: url("../fonts/DMSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-SemiBold.woff2") format("woff2"), url("../fonts/DMSans-SemiBold.woff") format("woff"), url("../fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-LightItalic.eot");
  src: url("../fonts/DMSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-LightItalic.woff2") format("woff2"), url("../fonts/DMSans-LightItalic.woff") format("woff"), url("../fonts/DMSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Light.eot");
  src: url("../fonts/DMSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Light.woff2") format("woff2"), url("../fonts/DMSans-Light.woff") format("woff"), url("../fonts/DMSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Regular.eot");
  src: url("../fonts/DMSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Regular.woff2") format("woff2"), url("../fonts/DMSans-Regular.woff") format("woff"), url("../fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Medium.eot");
  src: url("../fonts/DMSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff"), url("../fonts/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-ThinItalic.eot");
  src: url("../fonts/DMSans-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-ThinItalic.woff2") format("woff2"), url("../fonts/DMSans-ThinItalic.woff") format("woff"), url("../fonts/DMSans-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-MediumItalic.eot");
  src: url("../fonts/DMSans-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-MediumItalic.woff2") format("woff2"), url("../fonts/DMSans-MediumItalic.woff") format("woff"), url("../fonts/DMSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Thin.eot");
  src: url("../fonts/DMSans-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-Thin.woff2") format("woff2"), url("../fonts/DMSans-Thin.woff") format("woff"), url("../fonts/DMSans-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-SemiBoldItalic.eot");
  src: url("../fonts/DMSans-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DMSans-SemiBoldItalic.woff2") format("woff2"), url("../fonts/DMSans-SemiBoldItalic.woff") format("woff"), url("../fonts/DMSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

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