@charset "UTF-8";
@font-face {
  font-family: "inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-display: swap;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  background-color: #ffffff;
  font-family: "inter", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
@media (min-width: 1280px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 20px;
  }
}

a {
  color: #F7B319;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: #333333;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

address {
  font-style: normal;
}

button {
  font-size: 16px;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

input,
textarea,
button {
  font-family: "inter", "Arial", sans-serif;
}

textarea {
  height: 100%;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

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

.lock {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .lock {
    overflow: visible;
  }
}

.progress-area,
.complete-area {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  -webkit-user-select: none;
  user-select: none;
  opacity: 1;
}

.main-btn {
  width: inherit;
  height: inherit;
  opacity: 0.15;
  transition: 250ms;
}

.frame-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 12px;
  background-color: #F7B319;
}

.complete-area {
  display: none;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.container {
  margin: 0 20px;
}
@media (min-width: 1280px) {
  .container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 5px;
    box-sizing: border-box;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1410px;
  }
}

.header {
  border-bottom: 1px solid rgba(25, 25, 25, 0.2);
}
@media (min-width: 1024px) {
  .header {
    border-bottom: none;
  }
}
.header__container {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header__container {
    height: auto;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    margin-left: -440px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    margin-left: 0;
  }
}
.header__logo img {
  height: 20px;
}
@media (min-width: 1280px) {
  .header__logo img {
    height: 38px;
  }
}
.header__menu {
  display: grid;
  gap: 16px;
}
@media (min-width: 1280px) {
  .header__menu {
    display: flex;
    gap: 24px;
  }
}
@media (min-width: 1920px) {
  .header__menu {
    gap: 40px;
  }
}
.header__link {
  color: #333333;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.3s;
}
.header__link:hover {
  color: #F7B319;
}
@media (min-width: 1920px) {
  .header__link {
    font-size: 18px;
  }
}
.header__call {
  display: none;
}
@media (min-width: 1024px) {
  .header__call {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
@media (min-width: 1920px) {
  .header__call {
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .header__promo {
    margin-top: -40px;
  }
}
@media (min-width: 1280px) {
  .header__promo {
    margin-top: 0;
  }
}

.burger {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 7;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .burger {
    display: none;
  }
}
.burger span {
  width: 22px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F7B319;
  border-radius: 2px;
  transition: all 0.5s;
}
.burger span:nth-of-type(2) {
  top: calc(50% - 8px);
}
.burger span:nth-of-type(3) {
  top: calc(50% + 8px);
}
.burger--open span:nth-of-type(1) {
  display: none;
}
.burger--open span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.burger--open span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

@media (max-width: 1279px) {
  .burger-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: all 0.3s;
    box-sizing: border-box;
    overflow-y: scroll;
    z-index: 2;
    padding: 80px 16px 24px;
  }
}
@media (max-width: 1279px) and (min-width: 1024px) {
  .burger-panel {
    width: 270px;
  }
}
@media (max-width: 1279px) {
  .burger-panel.active {
    transform: translateX(0);
    z-index: 3;
  }
}
.legal {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  padding-top: 25px;
  position: relative;
}
@media (min-width: 1280px) {
  .legal {
    display: none;
  }
}
.legal::before {
  content: "";
  background-color: #D9D9D9;
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.legal__item {
  line-height: 1.2;
}
.legal__link {
  color: #333333;
  font-size: 13px;
}

.contact-block {
  margin-top: 100px;
}
.contact-block::after {
  content: "";
  background-image: url(../img/birger-bg.svg);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 222px;
  height: 227px;
  z-index: -1;
}
@media (min-width: 1280px) {
  .contact-block {
    display: none;
  }
}
.contact-block__logo {
  width: 200px;
  margin-top: 40px;
}
.contact-block__list {
  color: #333333;
  display: grid;
  gap: 12px;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .contact-block__list {
    display: none;
  }
}
.contact-block__link {
  color: #333333;
}

.hero {
  background-image: url(../img/bg_form.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 240px;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  .hero {
    background-size: 100% 50%;
    background-position: bottom;
    padding-bottom: 40px;
  }
}
.hero__container {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .hero__container {
    grid-template-columns: 1fr;
    position: relative;
  }
}
@media (min-width: 1024px) {
  .hero__image {
    order: -1;
  }
}
@media (min-width: 1280px) {
  .hero__image {
    width: 720px;
    position: absolute;
    top: -50px;
    left: -170px;
  }
}
.hero__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: right;
  }
}
.hero__title {
  color: #F7B319;
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 30px;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    font-size: 64px;
  }
}
.hero__text {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
}
.hero__text span {
  color: #F7B319;
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 24px;
    line-height: 130%;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .hero__text {
    font-size: 40px;
    max-width: 700px;
    margin-left: auto;
  }
}
.hero__form {
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .hero__form {
    max-width: 62%;
    margin-left: auto;
  }
}
.hero__form fieldset {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .hero__form fieldset {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .hero__form fieldset {
    margin-top: 100px;
  }
}
.hero__file {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.hero__add-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}
.hero__checkbox {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: end;
  margin-top: 24px;
}
.hero__confidentiality {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}
.hero__confidentiality a {
  color: #ffffff;
  text-decoration: underline;
}
.hero__confidentiality--form {
  color: #828282;
}
.hero__confidentiality--form a {
  color: #828282;
}

.logos {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (min-width: 1024px) {
  .logos {
    margin-top: 140px;
    margin-bottom: 140px;
  }
}
.logos__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}
@media (min-width: 1024px) {
  .logos__title {
    font-size: 30px;
  }
}
@media (min-width: 1280px) {
  .logos__title {
    font-size: 40px;
  }
}
.logos__list {
  display: grid;
  gap: 16px;
  grid-auto-flow: column;
  overflow: hidden;
  margin-left: 25px;
  grid-template-rows: 1fr 1fr;
}
@media (min-width: 1024px) {
  .logos__list {
    margin-left: 0;
    width: 100%;
    grid-template-rows: none;
  }
}
@media (min-width: 1280px) {
  .logos__list {
    width: 1260px;
  }
}
@media (min-width: 1920px) {
  .logos__list {
    width: 1410px;
  }
}
.logos__item {
  min-width: 300px;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
}
@media (min-width: 1920px) {
  .logos__item {
    min-width: 338px;
  }
}
.logos__slider {
  position: relative;
}
.logos__next, .logos__prev {
  background-color: #ffffff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  outline: 0;
  position: absolute;
  cursor: pointer;
}
.logos__prev {
  top: 50%;
  left: -50px;
  transform: translate(50%, -50%);
}
.logos__next {
  top: 50%;
  right: -50px;
  transform: translate(-50%, -50%);
}

#clients-wrapper {
  width: 100%;
  position: relative;
}
@media (min-width: 1280px) {
  #clients-wrapper {
    width: 1260px;
  }
}
@media (min-width: 1920px) {
  #clients-wrapper {
    width: 1410px;
  }
}

#carousel {
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#carousel::-webkit-scrollbar {
  height: 0;
}

#clients-content {
  display: grid;
  grid-gap: 16px;
  grid-auto-flow: column;
  margin: auto;
  box-sizing: border-box;
  grid-template-rows: 1fr 1fr;
}
@media (min-width: 1024px) {
  #clients-content {
    grid-template-rows: none;
  }
}

#clients-content .item {
  width: 340px;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: white;
  border-radius: 12px;
  border: 1px #D9D9D9 solid;
}

.contacts {
  color: #ffffff;
  padding: 50px 0;
  background-image: url(../img/bg_form.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.contacts__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}
.contacts__title span {
  color: #F7B319;
}
@media (min-width: 1024px) {
  .contacts__title {
    font-size: 30px;
  }
}
@media (min-width: 1280px) {
  .contacts__title {
    font-size: 40px;
  }
}
.contacts__list {
  display: grid;
  gap: 16px;
}
@media (min-width: 1024px) {
  .contacts__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contacts__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contacts__item a:hover {
  color: #F7B319;
}
.contacts__text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 1920px) {
  .contacts__text {
    font-size: 24px;
  }
}

.footer {
  font-size: 13px;
  background-color: #333333;
  color: #ffffff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer p {
  margin: 0;
}
@media (min-width: 1024px) {
  .footer {
    font-size: 16px;
    height: 70px;
  }
}
@media (min-width: 1920px) {
  .footer {
    font-size: 17px;
  }
}

.action {
  background-image: url(../img/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 120px;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  .action {
    background-position: 0 0;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
@media (min-width: 1280px) {
  .action {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .action__container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    position: relative;
  }
}
@media (min-width: 1280px) {
  .action__container {
    grid-template-columns: 1fr 1fr;
  }
}
.action__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  text-align: center;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .action__title {
    font-size: 30px;
    text-align: right;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .action__title {
    font-size: 40px;
  }
}
.action__text {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .action__text {
    max-width: 100%;
    text-align: right;
    font-size: 24px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  .action__text {
    font-size: 32px;
  }
}
.action__fields {
  margin-top: 20px;
  margin-bottom: 10px;
  display: grid;
  gap: 10px;
}
.action__checkbox {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: end;
}
.action__confidentiality {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}
.action__confidentiality a {
  color: #333333;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .action__fields {
    display: flex;
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .action__image {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .action__image {
    left: 0;
    width: 600px;
    top: -150px;
  }
}

.about {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.about__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .about__title {
    font-size: 40px;
  }
}
.about__subtitle {
  color: #ffffff;
  background-color: #F7B319;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}
.about__subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  width: 40px;
  height: 120%;
  background-color: #ffffff;
  z-index: 0;
  transform: rotate(15deg);
}
@media (min-width: 1280px) {
  .about__subtitle {
    font-size: 32px;
    line-height: 1.3;
    padding: 15px 30px;
    margin-left: -30px;
  }
}
.about__text {
  color: #828282;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .about__text {
    margin-top: 0;
  }
}
@media (min-width: 1920px) {
  .about__text {
    font-size: 24px;
  }
}
.about__box {
  display: grid;
  gap: 20px;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .about__box {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1280px) {
  .about__box {
    margin-right: 20%;
  }
}
@media (min-width: 1024px) {
  .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
}
@media (min-width: 1280px) {
  .about__content {
    grid-template-columns: 1fr;
    max-width: 580px;
  }
}
@media (min-width: 1280px) {
  .about__image {
    position: absolute;
    right: 0;
    top: 100px;
    max-width: 1000px;
    width: 760px;
  }
}
@media (min-width: 1920px) {
  .about__image {
    width: 100%;
    top: 30px;
  }
}

.advantages {
  padding-top: 100px;
  padding-bottom: 100px;
}
.advantages__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 1024px) {
  .advantages__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .advantages__title {
    font-size: 40px;
  }
}
.advantages__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .advantages__list {
    grid-template-columns: 1fr 1fr;
  }
}
.advantages__item {
  color: #ffffff;
  background-color: #333333;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}
@media (min-width: 1024px) {
  .advantages__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 30px;
    padding: 40px;
  }
}
.advantages__item p {
  margin: 0;
}
.advantages__item::before {
  content: "";
  width: 74px;
  height: 74px;
  background: var(--icon);
  background-size: contain;
  display: block;
}
.advantages__item--yellow {
  color: #333333;
  background-color: #F7B319;
}
.advantages__content {
  max-width: 400px;
}
.advantages__name {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 30px;
}
@media (min-width: 1024px) {
  .advantages__name {
    padding-top: 0;
  }
}
@media (min-width: 1920px) {
  .advantages__name {
    font-size: 24px;
  }
}

.reviews {
  padding-top: 100px;
  padding-bottom: 100px;
}
.reviews__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  text-align: center;
  margin-bottom: 40px;
}
.reviews__title span {
  color: #F7B319;
}
@media (min-width: 1024px) {
  .reviews__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .reviews__title {
    font-size: 40px;
  }
}
.reviews__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .reviews__list {
    grid-template-columns: 1fr 1fr;
  }
}
.reviews__item {
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .reviews__item {
    padding: 50px;
  }
}
.reviews__header {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 10px;
}
.reviews__name {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}
.reviews__status {
  color: #828282;
  font-size: 14px;
  margin: 0;
  line-height: 1;
}
.reviews__important {
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.4;
  position: relative;
}
@media (min-width: 1024px) {
  .reviews__important {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1280px) {
  .reviews__important {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 36px;
    min-height: 100px;
  }
}
.reviews__important::before, .reviews__important::after {
  content: "“";
  position: absolute;
  z-index: -1;
  color: #d9d9d9;
  font-size: 220px;
  font-weight: 600;
  height: 90px;
  line-height: 1;
}
@media (min-width: 1280px) {
  .reviews__important::before, .reviews__important::after {
    font-size: 300px;
    height: 130px;
  }
}
.reviews__important::before {
  top: 5px;
  right: -20px;
  transform: rotate(180deg);
}
@media (min-width: 1280px) {
  .reviews__important::before {
    right: -45px;
  }
}
.reviews__important::after {
  top: -10px;
  left: -20px;
}
@media (min-width: 1280px) {
  .reviews__important::after {
    top: -30px;
    left: -40px;
  }
}
.reviews__description {
  font-size: 16px;
  line-height: 1.4;
  height: 100px;
  overflow: hidden;
  margin: 0;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1280px) {
  .reviews__description {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .reviews__description {
    font-size: 20px;
  }
}
.reviews__more {
  color: #828282;
  font-size: 16px;
  text-decoration: underline;
  margin: 0;
  margin-top: 5px;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .reviews__more {
    font-size: 20px;
    text-decoration: none;
    margin-top: 24px;
  }
}

.services__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .services__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .services__title {
    font-size: 40px;
  }
}

.tab__nav {
  display: none;
  gap: 20px;
  overflow: scroll;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .tab__nav {
    display: flex;
    overflow: hidden;
  }
}
@media (min-width: 1280px) {
  .tab__nav {
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 0;
  }
}
.tab__section {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s, visibility 0.5s, max-height 0.5s ease-in-out;
}
@media (min-width: 1024px) {
  .tab__section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.tab__section.active {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
}
@media (min-width: 1024px) {
  .tab__section.active {
    max-height: 540px;
  }
}
.tab__section--full {
  display: flex;
}
.tab__button {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  height: 55px;
  padding: 0 30px;
  box-sizing: border-box;
}
.tab__button.active {
  border: 1px solid #F7B319;
  background-color: rgba(247, 179, 25, 0.3);
}
.tab__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.tab__item p {
  margin: 0;
}
@media (min-width: 1280px) {
  .tab__item {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .tab__select {
    display: none;
  }
}

.tab__select {
    height: 55px;
    width: 100%;
    border-radius: 12px;
    border-color: rgba(247, 179, 25, 1);
    background: rgba(247, 179, 25, 0.3);
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 18.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.input {
  width: 100%;
  max-width: 400px;
  height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  color: #828282;
  font-size: 16px;
  line-height: normal;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .input {
    height: 56px;
  }
}
@media (min-width: 1280px) {
  .input {
    height: 64px;
  }
}

.button {
  color: #ffffff;
  background-color: #333333;
  width: 100%;
  max-width: 400px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .button {
    height: 56px;
  }
}
@media (min-width: 1280px) {
  .button {
    height: 64px;
  }
}
.button:hover {
  color: #ffffff;
  background-color: rgba(51, 51, 51, 0.9);
}
.button--file {
  background-color: #84C35A;
  justify-content: space-between;
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
}
.button--hero {
  background-color: #F7B319;
  position: relative;
}

.dialog-shade {
  visibility: hidden;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog {
  width: 100%;
  max-width: 1334px;
  padding: 40px 20px;
  margin: 20px;
  background-color: #ffffff;
  box-sizing: border-box;
  overflow-y: scroll;
  height: 100%;
}
@media (min-width: 1024px) {
  .dialog {
    border-radius: 12px;
    padding: 50px;
    overflow-y: hidden;
  }
}
@media (min-width: 1280px) {
  .dialog {
    padding: 70px;
    height: auto;
  }
}
.dialog__form {
  display: grid;
  gap: 16px;
}
@media (min-width: 1280px) {
  .dialog__form {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.dialog-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dialog-close p {
  margin: 0;
  font-size: 20px;
}
@media (min-width: 1024px) {
  .dialog-close p {
    font-size: 32px;
  }
}
.dialog-close img {
  cursor: pointer;
  width: 40px;
  height: 40px;
}
@media (min-width: 1024px) {
  .dialog-close img {
    width: 60px;
    height: 60px;
  }
}

.dialog-twrapper {
  margin-top: 30px;
}

.dialog-twrapper .table-wrapper .table-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid #F7B319;
}
@media (min-width: 1280px) {
  .dialog-twrapper .table-wrapper .table-header {
    padding: 0 30px;
  }
}
.dialog-twrapper .table-wrapper .table-header p {
  font-size: 14px;
  font-weight: 500;
}

.table-btnAdd {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 50px;
  padding-top: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.table-btnAdd p {
  font-size: 14px;
  margin: 0;
  color: #828282;
}
@media (min-width: 1280px) {
  .table-btnAdd {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.table-item {
  color: #828282;
  font-size: 14px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
}
@media (min-width: 1280px) {
  .table-item {
    padding: 0 30px;
  }
}

.table-item p:first-child {
  word-break: break-all;
}

.table-item p:last-child {
  min-width: 70px;
  text-align: right;
}

.none-stroke {
  stroke: none;
  fill: none;
}

.btn-submit {
  position: relative;
  width: 100%;
  height: 50px;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .btn-submit {
    height: 64px;
  }
}

.btn-submit:hover .main-btn {
  opacity: 0.25;
}

.btn-submit .main-btn {
  width: inherit;
  height: inherit;
  opacity: 0.15;
  transition: 250ms;
}

.btn-submit .main-btn rect {
  width: 274px;
  height: 62px;
  transition: 250ms;
}

.btn-submit .progress-area,
.btn-submit .complete-area {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  -webkit-user-select: none;
  user-select: none;
  opacity: 1;
}

.btn-submit .progress-area .area-left,
.btn-submit .complete-area .area-left {
  display: flex;
}

.btn-submit .progress-area .area-left svg,
.btn-submit .complete-area .area-left svg {
  margin-right: 1rem;
  opacity: 0;
}

.btn-submit .progress-area .area-left span,
.btn-submit .complete-area .area-left span {
  width: 50px;
  text-align: right;
}

.btn-submit .complete-area {
  justify-content: space-around;
  display: none;
}

.btn-submit .complete-area svg {
  width: 40px;
  height: 20px;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-submit .complete-area svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6px;
  opacity: 0;
}

.btn-submit .complete-area span {
  color: rgba(255, 255, 255, 0.8666666667);
  padding-bottom: 1px;
  opacity: 0;
}

.btn-submit .frame-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 12px;
  background-color: #F7B319;
}

.btn-submit .frame-btn rect {
  width: 274px;
  height: 62px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  color: white;
}

.steps__title {
  text-transform: uppercase;
  font-family: "inter", "Arial", sans-serif;
  font-weight: 500;
  line-height: 115%;
  font-size: 20px;
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 1024px) {
  .steps__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .steps__title {
    font-size: 40px;
    display: grid;
    text-align: right;
    position: relative;
    max-width: 620px;
    margin-left: auto;
    margin-bottom: -120px;
  }
}
.steps__yellow {
  color: #F7B319;
}
@media (min-width: 1280px) {
  .steps__yellow {
    margin-top: -20px;
  }
}
@media (min-width: 1280px) {
  .steps__line {
    display: grid;
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .steps__number {
    font-size: 150px;
    font-weight: 600;
  }
}
.steps__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .steps__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .steps__list {
    grid-template-columns: 24% 1fr 24%;
    gap: 0 40px;
    align-items: start;
  }
}
@media (min-width: 1920px) {
  .steps__list {
    grid-template-columns: 25% 1fr 25%;
  }
}
.steps__item {
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: #828282;
}
@media (min-width: 1920px) {
  .steps__item {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .steps__item:first-child {
    grid-area: 1/1/2/2;
  }
}
@media (min-width: 1280px) {
  .steps__item:nth-child(2) {
    grid-area: 1/3/2/4;
    margin-top: 160px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .steps__item:nth-child(3) {
    grid-area: 1/2/3/3;
  }
}
@media (min-width: 1280px) {
  .steps__item:nth-child(4) {
    grid-area: 2/1/3/2;
    margin-top: -120px;
  }
}
@media (min-width: 1280px) {
  .steps__item:nth-child(5) {
    grid-area: 2/3/3/4;
  }
}
@media (min-width: 1280px) {
  .steps__item--left {
    text-align: right;
  }
  .steps__item--left img {
    margin-left: auto;
  }
}
.steps__item--full {
  display: none;
}
@media (min-width: 1280px) {
  .steps__item--full {
    display: block;
    margin-top: 80px;
  }
}
.steps__name {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .steps__name {
    max-width: 200px;
  }
}
@media (min-width: 1280px) {
  .steps__name {
    max-width: none;
  }
}
@media (min-width: 1920px) {
  .steps__name {
    font-size: 24px;
  }
}
.steps__button {
  background-color: #84C35A;
  margin: 0 auto;
  margin-top: 40px;
}
@media (min-width: 1280px) {
  .steps__button {
    margin-top: -55px;
    margin-left: 18%;
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 1920px) {
  .steps__button {
    margin-left: 20%;
    margin-top: -80px;
  }
}

