* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #FAFAFA;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
}

.container {
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .container {
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media (max-width: 969px) {
  .container {
    padding: 0 16px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
button {
  outline: none;
  border: none;
  background-color: transparent;
}

.btn {
  padding: 16px 24px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.btn svg {
  margin-right: 5px;
}
.btn:hover {
  transition: all 0.2s ease-in-out;
}

.btn-c {
  background: #080808;
  box-shadow: 0px 4px 12px 0px rgba(8, 8, 8, 0.3019607843);
  transition: all 0.2s ease-in-out;
}
.btn-c:hover {
  background-color: #ffffff;
  color: #080808;
}

.btn-c2 {
  background: #080808;
  box-shadow: 0px 4px 12px 0px rgba(8, 8, 8, 0.3019607843);
  position: relative;
  margin: 8px 10px;
}
.btn-c2::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 16px);
  z-index: 1;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  transition: all 0.2s ease-in-out;
}
.btn-c2:hover::after {
  border-color: #FAB337;
}

.header {
  padding: 24px 0;
}
.header__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header__wrapper .logo {
  position: relative;
  z-index: 2;
}
.header__wrapper .btn {
  position: relative;
  z-index: 2;
}
.header__wrapper .nav {
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
}
.header__wrapper .nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.header__wrapper .nav-list li a {
  text-decoration: none;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  color: #969694;
  transition: all 0.2s ease-in-out;
}
.header__wrapper .nav-list li a:hover {
  color: #FAB337;
}
.header__wrapper .burger {
  display: none;
}
.header .burger__menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  z-index: 1000;
  width: 100vw;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.header .burger__menu.active {
  right: 0;
}
.header .burger__menu__content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -290px;
  box-sizing: border-box;
  width: 284px;
  padding: 28px 20px;
  background: linear-gradient(241.66deg, #F6F7FB 35.75%, #FCF4F1 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(134, 135, 137, 0.25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.header .burger__menu__content.active {
  right: 0;
}
.header .burger__menu__content .btn {
  margin-top: 24px;
  display: flex;
}
.header .burger__menu__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.header .burger__menu__head__title {
  font-family: "Inter";
  font-size: 26px;
  font-weight: 800;
  line-height: 31.47px;
  text-align: left;
  color: #080808;
}
.header .burger__menu__head__close {
  color: #080808;
}
.header .burger__menu__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .burger__menu__nav > li:not(:last-child) {
  margin-bottom: 12px;
}
.header .burger__menu__nav > li a {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #080808;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.header .burger__menu__nav > li a:hover {
  color: #FAB337;
}

@media (max-width: 960px) {
  .header {
    padding: 24px 0;
  }
  .header__wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header__wrapper .logo {
    position: relative;
    z-index: 2;
  }
  .header__wrapper .btn {
    position: relative;
    z-index: 2;
  }
  .header__wrapper .nav {
    display: none;
  }
  .header__wrapper .btn {
    display: none;
  }
  .header__wrapper .burger {
    display: block;
  }
}
.faq {
  margin-top: 120px;
}
.faq__inner {
  background-color: #080808;
  border-radius: 24px;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq__wrapper {
  max-width: 896px;
  width: 100%;
}
.faq__wrapper .title {
  width: 100%;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 60px;
}
.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq__list-item {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px 32px;
}
.faq__list-item__title {
  position: relative;
  font-family: "Inter";
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #080808;
  padding-right: 68px;
  transition: all 0.2s ease-in-out;
}
.faq__list-item__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: url(../../assets/image/plus.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.faq__list-item__title:hover {
  cursor: pointer;
}
.faq__list-item:hover .faq__list-item__title {
  color: #080808;
}
.faq__list-item:hover .faq__list-item__title::before {
  background-color: #FAFAFA;
}
.faq__list-item.active .faq__list-item__title {
  color: #080808;
}
.faq__list-item.active .faq__list-item__title::before {
  transform: translateY(-50%) rotate(45deg);
  background-color: #FAFAFA;
}
.faq__list-item__content {
  display: none;
  margin-top: 16px;
  width: 100%;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #080808;
}
.faq__list-item__content p:not(:last-child) {
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  .faq {
    margin-top: 60px;
    background-color: #080808;
    border-radius: 24px;
    padding-top: 60px;
    padding-bottom: 16px;
  }
  .faq__inner {
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .faq__wrapper {
    max-width: 896px;
    width: 100%;
  }
  .faq__wrapper .title {
    width: 100%;
    font-size: 32px;
    margin-bottom: 30px;
  }
  .faq__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq__list-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
  }
  .faq__list-item__title {
    font-size: 20px;
    padding-right: 68px;
  }
  .faq__list-item__title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    background: url(../../assets/image/plus.svg);
    background-size: 36px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .faq__list-item__title:hover {
    cursor: pointer;
  }
  .faq__list-item.active .faq__list-item__title {
    color: #080808;
  }
  .faq__list-item.active .faq__list-item__title::before {
    transform: translateY(-50%) rotate(45deg);
    background-color: #FAFAFA;
  }
  .faq__list-item__content {
    display: none;
    margin-top: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 140%;
  }
  .faq__list-item__content p:not(:last-child) {
    margin-bottom: 8px;
  }
}
.footer {
  padding: 40px 0;
}
.footer__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer__wrapper .copy {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0%;
  color: #969694;
}
.footer__wrapper .police {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0%;
  color: #969694;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.footer__wrapper .police:hover {
  color: #FAB337;
}

@media (max-width: 960px) {
  .footer {
    padding: 30px 0;
  }
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.cover__wrapper {
  background: linear-gradient(241.66deg, #F6F7FB 35.75%, #FCF4F1 100%);
  border: 2px solid #FFFFFF;
  border-radius: 24px;
  padding: 116px 40px 200px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover__content {
  max-width: 1074px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cover__content .title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: -2%;
  text-align: center;
  color: #080808;
  margin-bottom: 32px;
}
.cover__content .desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
  margin-bottom: 40px;
  max-width: 550px;
}
.cover__tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 999px;
}
.cover__tags a {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
}
.cover__tags a.active {
  background-color: #FAB337;
}

@media (max-width: 960px) {
  .cover__group {
    background: linear-gradient(241.66deg, #F6F7FB 35.75%, #FCF4F1 100%);
    border: 2px solid #FFFFFF;
    border-radius: 24px;
  }
  .cover__wrapper {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 40px 16px 40px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cover__content {
    max-width: 1074px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .cover__content .title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 16px;
  }
  .cover__content .desc {
    font-size: 18px;
    line-height: 145%;
    margin-bottom: 20px;
    max-width: 550px;
  }
  .cover__tags {
    margin-bottom: 12px;
  }
}
.advantages {
  margin-top: -120px;
}
.advantages__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.advantages__list {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  max-width: 1128px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
}
.advantages__list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.advantages__list .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 36px;
  background: linear-gradient(241.66deg, #F6F7FB 35.75%, #FCF4F1 100%);
  border-radius: 999px;
  margin-bottom: 24px;
}
.advantages__list .item .title {
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
  margin-bottom: 10px;
}
.advantages__list .item .desc {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #969694;
}

@media (max-width: 960px) {
  .advantages {
    margin-top: 0px;
  }
  .advantages__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
  }
  .advantages__list {
    padding: 24px 16px;
    max-width: 1128px;
    width: 100%;
    gap: 24px;
    flex-direction: column;
  }
  .advantages__list .item {
    width: 100%;
  }
  .advantages__list .item .icon {
    margin-bottom: 10px;
  }
  .advantages__list .item .title {
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 4px;
  }
  .advantages__list .item .desc {
    font-size: 16px;
    line-height: 125%;
  }
}
.cases {
  margin-top: 120px;
}
.cases__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cases__inner > .title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #080808;
  margin-bottom: 60px;
}
.cases__wrapper {
  max-width: 896px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cases__item {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 20px;
}
.cases__item:hover .head .text .title {
  color: #FAB337;
}
.cases__item .head {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.cases__item .head .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cases__item .head .text .tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.cases__item .head .text .tags .tag {
  background: #FAB337;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #080808;
}
.cases__item .head .text .title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #080808;
  transition: all 0.2s ease-in-out;
}
.cases__item .head .image {
    max-width: 150px;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}
.cases__item .head .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cases__item .content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cases__item .content .desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #080808;
}
.cases__item .content .list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.cases__item .content .list .item {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cases__item .content .list .item .subtitle {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #080808;
}
.cases__item .content .list .item .subdesc {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0%;
  color: #969694;
}

@media (max-width: 960px) {
  .cases {
    margin-top: 60px;
  }
  .cases__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cases__inner > .title {
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 30px;
  }
  .cases__wrapper {
    max-width: 896px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .cases__item {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cases__item .head {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .cases__item .head .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .cases__item .head .text .title {
    font-size: 20px;
    line-height: 130%;
  }
  .cases__item .head .image {
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
  .cases__item .head .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cases__item .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .cases__item .content .desc {
    font-size: 16px;
    line-height: 140%;
  }
  .cases__item .content .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .cases__item .content .list .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .cases__item .content .list .item .subtitle {
    font-size: 28px;
  }
}
.team {
  margin-top: 120px;
}
.team__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team__inner > .title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #080808;
  margin-bottom: 16px;
}
.team__inner > .desc {
  max-width: 550px;
  width: 100%;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
  margin-bottom: 48px;
}
.team__wrapper {
  max-width: 1128px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}
.team .team__item {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  width: calc((100% - 32px) / 2);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.team .team__item .image {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
}
.team .team__item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .team__item .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team .team__item .content .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.team .team__item .content .head .name {
  font-family: "Inter";
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #080808;
}
.team .team__item .content .head .tag {
  background: #FAB337;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #080808;
}
.team .team__item .content .desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #080808;
}
.team .last {
  width: calc((100% - 32px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team .last .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.team .last .content .title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
}
.team .last .content .number {
  background: #FAB337;
  border: 2px solid #FFFFFF;
  border-radius: 999px;
  height: 64px;
  width: 64px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .last .content .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.team .last .content .tags .tag {
  background-color: #F0F0F0;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #646462;
}

@media (max-width: 960px) {
  .team {
    margin-top: 60px;
  }
  .team__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .team__inner > .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .team__inner > .desc {
    max-width: 550px;
    width: 100%;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: center;
    color: #080808;
    margin-bottom: 24px;
  }
  .team__wrapper {
    max-width: 1128px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .team .team__item {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
  .team .team__item .image {
    width: 64px;
    min-width: 64px;
    aspect-ratio: 1/1;
    border-radius: 999px;
    overflow: hidden;
  }
  .team .team__item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team .team__item .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .team .team__item .content .head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .team .team__item .content .head .name {
    font-size: 20px;
    line-height: 130%;
  }
  .team .team__item .content .desc {
    font-size: 16px;
    line-height: 140%;
  }
  .team .last {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team .last .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .team .last .content .title {
    font-family: "Inter";
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #080808;
  }
  .team .last .content .number {
    background: #FAB337;
    border: 2px solid #FFFFFF;
    border-radius: 999px;
    height: 64px;
    width: 64px;
    font-family: "Inter";
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .team .last .content .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .team .last .content .tags .tag {
    background-color: #F0F0F0;
    border-radius: 999px;
    padding: 6px 12px;
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0%;
    color: #646462;
  }
}
.banner {
  margin-top: 120px;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__wrapper {
  max-width: 1128px;
  width: 100%;
  background: linear-gradient(241.66deg, #F6F7FB 35.75%, #FCF4F1 100%);
  border: 2px solid #FFFFFF;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
.banner__content {
  max-width: 785px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner__content .title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #080808;
  margin-bottom: 20px;
}
.banner__content .desc {
  max-width: 530px;
  width: 100%;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #080808;
  margin-bottom: 24px;
}
.banner__content .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.banner__content .buttons .text {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0%;
  color: #969694;
}
.banner__content .buttons .text a {
  color: #E69F23;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.banner__content .buttons .text a:hover {
  color: #FAB337;
}
.banner__number .number {
  display: flex;
  white-space: nowrap;
  align-items: flex-end;
  align-self: flex-start;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
}
.banner__number .number .first {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 140px;
  line-height: 120px;
  letter-spacing: -2%;
  color: #080808;
  text-align: center;
  width: 88px;
}
.banner__number .number .second {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
}

@media (max-width: 960px) {
  .banner {
    margin-top: 60px;
  }
  .banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner__wrapper {
    padding: 60px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .banner__content {
    max-width: 785px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner__content .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .banner__content .desc {
    margin-bottom: 20px;
  }
  .banner__content .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .banner__content .buttons .text {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    letter-spacing: 0%;
    color: #969694;
  }
  .banner__content .buttons .text a {
    color: #E69F23;
    text-decoration: none;
  }
  .banner__number {
    display: none;
  }
}
.steps {
  margin-top: 120px;
  position: relative;
}
.steps__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
}
.steps__side {
  position: relative;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-right: 40px;
  padding-bottom: 90px;
}
.steps__ruler {
  position: absolute;
  left: 0;
  top: 75px;
  bottom: 80px;
  transform: translateX(-50%);
  height: calc(100% - 155px);
  display: flex;
  justify-content: flex-start;
  z-index: 1;
  padding-bottom: 90px;
}
.steps__ruler-line {
  width: 1px;
  height: 100%;
  position: relative;
}
.steps__ruler-line::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  width: 24px;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 11px, #646462 11px, #646462 12px);
}
.steps__progress-number {
  position: sticky;
  width: 200px;
  top: 30vh;
  left: 0;
  color: #080808;
  z-index: 2;
  white-space: nowrap;
  align-items: flex-end;
  align-self: flex-start;
  display: flex;
}
.steps__progress-number::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 48px;
  background-color: #FAB337;
}
.steps__progress-number__first {
  padding-left: 50px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 140px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #080808;
  width: 140px;
  text-align: center;
}
.steps__progress-number__dot {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #080808;
  padding-bottom: 15px;
}
.steps__progress-number__second {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #080808;
  padding-bottom: 15px;
}
.steps__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 690px;
  gap: 80px;
}
.steps__wrapper .steps__item {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.steps__wrapper .steps__item .title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #080808;
}
.steps__wrapper .steps__item .desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #080808;
}
.steps__wrapper .steps__list {
  padding-left: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.steps__wrapper .steps__list-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps__wrapper .steps__list-item .head {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.steps__wrapper .steps__list-item .head .number {
  background: linear-gradient(241.66deg, #F6F7FB 35.75%, #FCF4F1 100%);
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  font-family: "Manrope";
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #080808;
}
.steps__wrapper .steps__list-item .head .text {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #080808;
}
.steps__wrapper .steps__list-item .head .text span {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #080808;
}
.steps__wrapper .steps__list-item .head .text a {
  color: #E69F23;
  transition: all 0.2s ease-in-out;
}
.steps__wrapper .steps__list-item .head .text a:hover {
  color: #FAB337;
}
.steps__wrapper .steps__list-item .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.steps__wrapper .steps__list-item .content .desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0%;
  color: #080808;
}
.steps__wrapper .steps__list-item .content .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.steps__wrapper .steps__list-item .content .tags .tag {
  background-color: #F0F0F0;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #080808;
}

@media (max-width: 960px) {
  .steps {
    margin-top: 60px;
    position: relative;
  }
  .steps__inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
  }
  .steps__side {
    display: none;
  }
  .steps__wrapper {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 60px;
  }
  .steps__wrapper .steps__item {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 16px;
  }
  .steps__wrapper .steps__item .title {
    font-size: 32px;
  }
  .steps__wrapper .steps__item .desc {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #080808;
  }
  .steps__wrapper .steps__list {
    padding-left: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .steps__wrapper .steps__list-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .steps__wrapper .steps__list-item .head {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  .steps__wrapper .steps__list-item .head .number {
    border-radius: 8px;
    padding: 7px;
    height: 32px;
    width: 32px;
    min-width: 32px;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  .steps__wrapper .steps__list-item .head .text {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    flex-wrap: wrap;
    color: #080808;
  }
  .steps__wrapper .steps__list-item .head .text span {
    font-size: 32px;
    line-height: 100%;
  }
  .steps__wrapper .steps__list-item .head .text a {
    width: 100%;
    color: #E69F23;
  }
  .steps__wrapper .steps__list-item .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .steps__wrapper .steps__list-item .content .desc {
    font-size: 16px;
    line-height: 140%;
  }
}
.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 7, 45, 0.35);
  z-index: 1000;
  transition: 0.3s all;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay.active + .modal-wrapper {
  display: block;
}

.modal-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  overflow: hidden auto;
  z-index: 1000;
}

.modal-container {
  padding-top: 30px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
  margin-bottom: 30px;
  position: relative;
  margin: 0 16px;
  width: calc(100% - 32px);
  max-width: 480px;
  box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.2);
  padding: 24px;
  background-color: #FAB337;
  border-radius: 16px;
}
.modal.active {
  display: inline-block;
}
.modal__cross {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  fill: #Ffffff;
  cursor: pointer;
}
.modal__cross path {
  fill: var(--btn-t-cl);
}
.modal__heading {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form .form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.modal__form .form__group label {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: left;
  color: #000000;
  margin-bottom: 8px;
}
.modal__form .form__group input, .modal__form .form__group textarea {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
  color: #5E6278;
  background-color: #F1F1F2;
  border: none;
  border-radius: 10px;
  height: 40px;
  padding: 10px 15px;
}
.modal__form .form__group input:hover, .modal__form .form__group input:active, .modal__form .form__group input:focus, .modal__form .form__group input:focus-visible, .modal__form .form__group textarea:hover, .modal__form .form__group textarea:active, .modal__form .form__group textarea:focus, .modal__form .form__group textarea:focus-visible {
  border: none;
  outline: none;
}
.modal__form .form__group textarea {
  height: auto;
}/*# sourceMappingURL=main.css.map */