@charset "UTF-8";
/* GLOBAL */ /* здесь используйте глобальные переменные */ /* здесь используйте глобальные селекторы img, body, html и так далее */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
  width: 100%;
  min-width: 390px;
  min-height: 100vh;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #1b1b1b;
  touch-action: manipulation;
  background-color: #ffffff;
  transition: background-color 0.5s ease;
}

body.modal-open {
  overflow: hidden; /* Отключаем скролл на странице */
}

header,
footer {
  flex-shrink: 0;
}

main {
  position: relative;
  flex-grow: 1;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

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

picture {
  flex-shrink: 0;
}

button,
input {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  transition: 0.3s ease;
}

textarea {
  -webkit-appearance: none;
}
textarea::placeholder {
  white-space: pre-line;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
textarea {
  width: 100%;
  height: 42px;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background-color: #ffffff;
  border-bottom: 1px solid #d4d4d8;
  color: #1b1b1b;
  transition: 0.3s ease;
}
input:focus, input:hover,
textarea:focus,
textarea:hover {
  outline: 0;
}
input::placeholder,
textarea::placeholder {
  color: #acacac;
}

textarea {
  min-height: 182px;
  height: 100%;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.input-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

.scroll-lock {
  min-height: 100vh;
  overflow: hidden;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.burger-btn {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  width: 72px;
  height: 72px;
  color: #65a9ea;
  background-color: rgba(0, 0, 0, 0);
}

.link {
  color: #2f80ed;
}
.link:hover {
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.ribbon-background {
  position: fixed;
  top: 0;
  right: 150px;
  width: 100%;
  height: 100%;
  z-index: -1;
  will-change: transform; /* Оптимизация для анимации */
  backface-visibility: hidden;
  transition: transform 0.1s ease-out;
}
.ribbon-background svg {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}
@media (max-width: 1279px) {
  .ribbon-background svg {
    width: 150%;
  }
}
.ribbon-background svg:nth-child(2) {
  margin-top: -7px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #2f80ed;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #2f80ed;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

.section-title {
  font-size: 76px;
  font-weight: 600;
  line-height: 135%;
}
@media (max-width: 1279px) {
  .section-title {
    font-size: 60px;
  }
}
@media (max-width: 743px) {
  .section-title {
    font-size: 40px;
  }
}

/* здесь подключите шрифты */
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Regular.woff2") format("woff2"), url("../../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Medium.woff2") format("woff2"), url("../../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Light.woff2") format("woff2"), url("../../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Bold.woff2") format("woff2"), url("../../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* BLOCKS */
.container {
  max-width: 1920px;
  width: 100%;
  padding: 0 72px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .container {
    padding: 0 32px;
  }
}
@media (max-width: 743px) {
  .container {
    padding: 0 16px;
  }
}

.container-inner {
  padding: 0 124px;
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
}
@media (max-width: 1279px) {
  .container-inner {
    padding: 0 32px;
  }
}
@media (max-width: 743px) {
  .container-inner {
    padding: 0 16px;
  }
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
.page-header__right-side {
  display: flex;
  align-items: center;
  gap: 48px;
}
.page-header__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 743px) {
  .page-header__links {
    display: none;
  }
}
.page-header__logo {
  width: 204px;
  height: 56px;
}
.page-header__tel {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #ffffff;
}
.page-header__email {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.intro .page-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.intro__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 1;
}
.intro__title {
  font-weight: 700;
  font-size: 112px;
  line-height: 135%;
}
@media (max-width: 1279px) {
  .intro__title {
    font-size: 84px;
  }
}
@media (max-width: 743px) {
  .intro__title {
    font-size: 44px;
  }
}
.intro__text {
  font-weight: 600;
  font-size: 76px;
  line-height: 135%;
  background-image: linear-gradient(270deg, #1b1b1b 0%, #4789e2 100%);
  -webkit-background-clip: text; /* применяет фон к тексту */
  color: transparent; /* скрывает обычный цвет текста */
}
@media (max-width: 1279px) {
  .intro__text {
    font-size: 50px;
  }
}
@media (max-width: 743px) {
  .intro__text {
    font-size: 25px;
  }
}
.intro__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 150px;
  display: block;
  height: 100vh;
  width: auto;
}

@keyframes marquee1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.items-wrap {
  display: flex;
  overflow: hidden;
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #fff;
  font-size: 22px;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 743px) {
  .items-wrap {
    padding: 50px 0;
  }
}
.items-wrap--question {
  background-color: #1b1b1b;
}
.items-wrap--question .item {
  background: linear-gradient(270deg, #fff 0%, #4789e2 100%);
  background-clip: text;
  color: transparent;
}

.items {
  flex-shrink: 0;
  display: flex;
  min-width: 100%;
}

.item {
  margin: 0 100px;
  font-weight: 500;
  font-size: 120px;
  line-height: 135%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(270deg, #1b1b1b 0%, #4789e2 100%);
  background-clip: text;
  color: transparent; /* скрывает обычный цвет текста */
}
@media (max-width: 1279px) {
  .item {
    font-size: 80px;
  }
}
@media (max-width: 743px) {
  .item {
    font-size: 52px;
  }
}

.items--1 {
  animation: marquee1 30s infinite linear;
  animation-delay: -20s;
}

.items--2 {
  animation: marquee2 30s infinite linear;
  animation-delay: -10s;
}

.advantages {
  padding-top: 150px;
  background-color: #ffffff;
}
@media (max-width: 1279px) {
  .advantages {
    padding-top: 100px;
  }
}
@media (max-width: 743px) {
  .advantages {
    padding-top: 50px;
  }
}
.advantages__wrap {
  display: flex;
  gap: 155px;
}
@media (max-width: 1279px) {
  .advantages__wrap {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 743px) {
  .advantages__wrap {
    gap: 32px;
  }
}
.advantages__logo {
  width: 100px;
  height: 88px;
}
@media (max-width: 1279px) {
  .advantages__logo {
    width: 75px;
    height: 66px;
  }
}
@media (max-width: 743px) {
  .advantages__logo {
    width: 50px;
    height: 44px;
  }
}
.advantages__title {
  font-weight: 600;
  font-size: 76px;
  line-height: 135%;
}
@media (max-width: 1279px) {
  .advantages__title {
    font-size: 60px;
  }
}
@media (max-width: 743px) {
  .advantages__title {
    font-size: 40px;
  }
}
.advantages__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media (max-width: 1279px) {
  .advantages__title-wrap {
    gap: 24px;
  }
}
@media (max-width: 743px) {
  .advantages__title-wrap {
    gap: 32px;
  }
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 152px;
}
@media (max-width: 1279px) {
  .advantages__list {
    gap: 50px 76px;
  }
}
@media (max-width: 743px) {
  .advantages__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 743px) {
  .advantages__item {
    gap: 16px;
  }
}
.advantages__num {
  font-weight: 600;
  font-size: 12px;
}
.advantages__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
}
.advantages__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.competence {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
@media (max-width: 1279px) {
  .competence {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 743px) {
  .competence {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.competence__wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1279px) {
  .competence__wrap {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 743px) {
  .competence__wrap {
    gap: 16px;
  }
}
.competence__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1279px) {
  .competence__title-wrap {
    gap: 24px;
  }
}
.competence__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 135%;
}
@media (max-width: 1279px) {
  .competence__title {
    font-size: 48px;
  }
}
@media (max-width: 743px) {
  .competence__title {
    font-size: 30px;
  }
}
.competence__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
}
.competence__text--bold {
  font-weight: 700;
}
.competence__img {
  width: 729px;
  height: 515px;
}
@media (max-width: 1279px) {
  .competence__img {
    width: 100%;
    height: auto;
  }
}

.numbers {
  background-color: #1b1b1b;
  color: #ffffff;
  padding: 100px 0;
}
@media (max-width: 743px) {
  .numbers {
    padding: 50px 0;
  }
}
.numbers__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 743px) {
  .numbers__list {
    flex-direction: column;
    gap: 32px;
  }
}
.numbers__num {
  font-size: 120px;
  line-height: 135%;
  text-align: center;
}
@media (max-width: 1279px) {
  .numbers__num {
    font-size: 80px;
  }
}
@media (max-width: 743px) {
  .numbers__num {
    font-size: 52px;
  }
}
.numbers__text {
  font-size: 52px;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 1279px) {
  .numbers__text {
    font-size: 48px;
  }
}
@media (max-width: 743px) {
  .numbers__text {
    font-size: 30px;
  }
}
.numbers__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.page-footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ffffff;
}
@media (max-width: 1279px) {
  .page-footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.page-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1279px) {
  .page-footer__wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 743px) {
  .page-footer__wrap {
    gap: 32px;
  }
}
.page-footer__logo {
  width: 204px;
  height: 56px;
}
.page-footer__copyrights {
  line-height: 150%;
  letter-spacing: 0.02em;
}
.page-footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 743px) {
  .page-footer__col {
    width: 100%;
    gap: 16px;
  }
}
.page-footer__col:first-child {
  gap: 4px;
  order: 1;
}
.page-footer__col:nth-child(2) {
  order: 3;
}
.page-footer__col:last-child div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 743px) {
  .page-footer__col:last-child div {
    align-items: flex-start;
  }
}
@media (max-width: 1279px) {
  .page-footer__col:last-child {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 743px) {
  .page-footer__col:last-child {
    flex-direction: column;
    order: 2;
  }
}
.page-footer__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}
.page-footer__policy {
  letter-spacing: 0.04em;
}
.page-footer__tel {
  font-weight: 600;
  font-size: 24px;
  line-height: 135%;
}
.page-footer__email {
  font-weight: 600;
}
.page-footer__address {
  font-size: 16px;
}

.cases {
  color: #ffffff;
  height: 100vh;
  overflow: hidden;
}
.cases__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  max-width: 1480px;
  padding-left: 124px;
  padding-right: 124px;
}
@media (max-width: 1279px) {
  .cases__wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 743px) {
  .cases__wrap {
    padding-top: 50px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 67px;
  }
}
.cases__title {
  font-weight: 600;
  font-size: 76px;
  line-height: 135%;
}
@media (max-width: 1279px) {
  .cases__title {
    font-size: 60px;
  }
}
@media (max-width: 743px) {
  .cases__title {
    font-size: 40px;
  }
}
.cases__line {
  width: 160px;
  height: 4px;
  background: #fff;
}
.cases__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1;
}
@media (max-width: 743px) {
  .cases__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cases__text {
  max-width: 350px;
}
.cases__bg {
  z-index: 0;
  width: auto;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 303px;
  transform: translateY(-100vh);
  transition: 0.3s ease;
}
.cases__list {
  position: relative;
}
.cases__item {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 700px;
  display: flex;
  gap: 24px;
  padding-top: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  visibility: hidden;
}
@media (max-width: 1279px) {
  .cases__item {
    flex-direction: column;
    max-width: 75%;
  }
}
@media (max-width: 743px) {
  .cases__item {
    padding-top: 24px;
  }
}
.cases__item.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.cases__item:not(.active) {
  visibility: hidden;
}
.cases__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cases__start {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #a8a8a8;
  margin-top: 12px;
}
.cases__subtitle {
  font-weight: 600;
  font-size: 52px;
  line-height: 135%;
}
@media (max-width: 1279px) {
  .cases__subtitle {
    font-size: 48px;
  }
}
@media (max-width: 743px) {
  .cases__subtitle {
    font-size: 30px;
  }
}
.cases__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 43px;
  width: 86px;
  height: 86px;
  margin-left: 117px;
  margin-top: 100px;
  flex-shrink: 0;
}
@media (max-width: 1279px) {
  .cases__arrow {
    width: 64px;
    height: 64px;
    margin-top: 0;
    margin-left: 90px;
  }
}
@media (max-width: 743px) {
  .cases__arrow {
    width: 43px;
    height: 43px;
    margin-left: 60px;
  }
}
@media (max-width: 1279px) {
  .cases__arrow svg {
    width: 11px;
    height: 18px;
  }
}
@media (max-width: 743px) {
  .cases__arrow svg {
    width: 8px;
    height: 12px;
  }
}
.cases__arrow::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 50%;
  width: 162px;
  height: 4px;
  background-color: #ffffff;
  transform: translate(0, -50%);
  scroll-behavior: smooth;
}
@media (max-width: 1279px) {
  .cases__arrow::after {
    width: 121px;
    height: 2px;
    left: -90px;
  }
}
@media (max-width: 743px) {
  .cases__arrow::after {
    width: 81px;
    left: -60px;
  }
}
.cases__nav-wrap {
  max-height: calc(100vh - 310px);
  overflow: auto;
}
.cases__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  max-height: calc(100vh - 310px);
  overflow-y: auto;
  flex-shrink: 0;
  padding-bottom: 200px;
}
.cases__nav::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1279px) {
  .cases__nav {
    width: 182px;
  }
}
@media (max-width: 743px) {
  .cases__nav {
    width: 79px;
  }
}
.cases__nav span {
  width: 100%;
  padding: 16px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  cursor: pointer;
  text-align: center;
  transition: transform 0.5s ease;
}
.cases__nav span.active {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 355px;
  line-height: 1;
  transform: scale(0.9);
}
@media (max-width: 1279px) {
  .cases__nav span.active {
    font-size: 200px;
  }
}
@media (max-width: 743px) {
  .cases__nav span.active {
    font-size: 100px;
  }
}
.cases.luise .cases__bg--luis {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.cases.priority .cases__bg--priority {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.cases #luise .cases__img {
  width: 112px;
  height: 40px;
}
.cases #luise .cases__arrow {
  border: 4px solid rgba(190, 23, 48, 0.5);
}
.cases #priority .cases__img {
  width: 158px;
  height: 38px;
}
.cases #priority .cases__arrow {
  border: 4px solid rgba(188, 93, 30, 0.5);
}

.btn {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #2f80ed;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 115%;
  transition: 0.3s ease;
  cursor: pointer;
}

.certificates {
  width: 729px;
  height: 515px;
  flex-shrink: 0;
}
@media (max-width: 743px) {
  .certificates {
    width: 100%;
    height: auto;
  }
}
.certificates img {
  width: 100%;
  height: auto;
}

.packages {
  padding-top: 100px;
  padding-bottom: 200px;
}
@media (max-width: 743px) {
  .packages {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.packages__wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.packages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1279px) {
  .packages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 743px) {
  .packages__list {
    grid-template-columns: 1fr;
  }
}

.package {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #fff;
  border: 1px solid #e4e4e7;
  padding: 24px 20px;
}
.package__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.package__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
}
.package__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
}
.package__price {
  font-weight: 600;
  font-size: 32px;
  line-height: 135%;
}
.package__text {
  letter-spacing: 0.02em;
}
.package__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.package__item {
  position: relative;
  padding-left: 40px;
}
.package__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../icons/checkmark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.package .btn {
  margin-top: auto;
}
.package--start {
  border-top: 3px solid #2f80ed;
}
.package--base {
  border-top: 3px solid #b1de49;
}
.package--base .btn {
  background-color: #adcd62;
}
.package--business {
  border-top: 3px solid #e9a30c;
}
.package--business .btn {
  background-color: #e9a30c;
}
.package--profi {
  border-top: 3px solid #ff7b61;
}
.package--profi .btn {
  background-color: #ff7b61;
}

.сomparison {
  padding-top: 100px;
  padding-bottom: 200px;
  overflow: hidden;
}
@media (max-width: 743px) {
  .сomparison {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.сomparison__wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.сomparison__table {
  overflow: auto;
}
.сomparison table {
  width: 100%;
  min-width: 1200px;
}
.сomparison tr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #d4d4d8;
}
.сomparison tr td:first-child {
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}
.сomparison thead tr {
  border: none;
}
.сomparison td {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.modal {
  position: fixed;
  top: 0;
  right: -30%; /* Начальное положение справа за пределами экрана */
  bottom: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  opacity: 0; /* Начальная непрозрачность 0 */
  visibility: hidden; /* Начальная видимость скрыта */
  transition: 0.3s ease;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 27, 27, 0.5);
  z-index: -1; /* Оверлей находится под контентом */
}
.modal__content {
  position: relative;
  width: 640px;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  padding: 32px;
  overflow: auto;
}
.modal__close-btn {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  position: absolute;
  top: 32px;
  right: 32px;
  width: 72px;
  height: 72px;
  background-image: url("../../icons/cross.svg");
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
  cursor: pointer;
}
.modal.modal--open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.modal__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 135%;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
}
.menu__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #1b1b1b;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 24px;
}
.form > div {
  width: 100%;
}
.form__note {
  font-size: 12px;
  line-height: 135%;
  color: #18181b;
}
.form__note a {
  color: #2f80ed;
}

.file-upload {
  position: relative;
  width: 100%;
  height: 42px;
  padding: 12px 0;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background-color: #ffffff;
  border-bottom: 1px solid #d4d4d8;
  color: #1b1b1b;
  transition: 0.3s ease;
  cursor: pointer;
  text-transform: none;
}
.file-upload::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url("../../new_site/icons/paperclip.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.file-upload__input {
  display: none;
}
.file-upload__name {
  color: #acacac;
  pointer-events: none;
}

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