@charset "UTF-8";
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat, sans-serif;
  font-display: swap;
  src: url("../../fonts/Montserrat-Regular.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat, sans-serif;
  font-display: swap;
  src: url("../../fonts/Montserrat-Bold.ttf") format("woff2");
  font-weight: 600;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%; /* Делает страницу на всю высоту окна браузера */
}

body {
  display: flex;
  flex-direction: column; /* Устанавливаем направление колонки для flex */
}

.link {
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: #242426;
}
.link:hover {
  color: #44337a;
}
.link_active {
  color: #44337a;
}

.btn {
  cursor: pointer;
  padding: 8px 32px;
  text-align: center;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn_primary {
  background-color: #44337a;
  color: #f6f5f5;
  border-radius: 8px;
}
.btn_secondary {
  border: 1px solid #44337a;
  border-radius: 8px;
  background: transparent;
}
.btn_secondary:hover {
  color: #FFFFFF;
  background: #44337a;
  transition: 0.5s;
}

.text-field {
  width: 100%;
  display: block;
  margin-bottom: 14px;
}
.text-field__error {
  font-size: 12px;
  color: #DA001A;
}
.text-field__textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  border: none;
  flex: none;
  outline: none;
  font-size: 18px;
}
.text-field__label {
  font-size: 14px;
  font-weight: 500;
  color: #2A414F;
}
.text-field__input {
  display: block;
  width: 100%;
  max-width: 800px;
  height: 54px;
  margin-top: 8px;
  padding-left: 10px;
  background: #FFFFFF;
  border-radius: 10px;
  border: none;
  flex: none;
  outline: none;
  font-size: 18px;
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .text-field__input {
    width: 100%;
  }
}
.text-field__input::placeholder {
  color: #212529;
  opacity: 0.4;
}
.text-field__input:disabled,
.text-field__input .text-field__input[readonly] {
  background-color: #f5f5f5;
  opacity: 1;
}

.header {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0 1px 14px rgba(42, 65, 79, 0.1);
  z-index: 999;
}
.header__logo {
  max-width: 200px;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 150px;
  }
}
.header__link {
  font-size: 16px;
}
@media (max-width: 768px) {
  .header__link {
    font-size: 18px;
  }
}
.header__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  align-items: center;
}
@media (min-width: 1440px) {
  .header__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .header__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .header__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .header__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .header__wrapper {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.header__menu_desktop {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .header__menu_desktop {
    display: none;
  }
}
.header__menu-button {
  display: none;
}
@media (max-width: 768px) {
  .header__menu-button {
    display: flex;
    justify-content: flex-end;
  }
}
.header__buttons_desktop {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .header__buttons_desktop {
    display: none;
  }
}
.header__menu_mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.header__buttons_mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.header__mobile {
  position: absolute;
  display: none;
  padding: 16px;
}
@media (min-width: 1440px) {
  .header__mobile {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .header__mobile {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__mobile {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .header__mobile {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .header__mobile {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .header__mobile_active {
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 250px;
    z-index: 999;
    gap: 32px;
    background-color: white;
  }
}

.cover-main {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.cover-main__wrapper {
  position: relative;
  margin-top: 150px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1440px) {
  .cover-main__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .cover-main__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cover-main__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .cover-main__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .cover-main__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cover-main__info {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.cover-main__info h1 {
  font-size: 64px;
  font-weight: 600;
  color: #2a414f;
}
@media (max-width: 768px) {
  .cover-main__info h1 {
    font-size: 36px;
  }
}
.cover-main__description {
  font-size: 16px;
  width: 80%;
}
.cover-main__image {
  position: absolute;
  width: calc(100% - 100px);
  height: 350px;
  left: calc(100% - 150px);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.cover-main__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

@media (max-width: 768px) {
  .cover-main__wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
  }
  .cover-main__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .cover-main__info h1 {
    font-size: 36px;
  }
  .cover-main__description {
    width: 100%;
    font-size: 18px;
  }
  .cover-main__image {
    margin-top: 32px;
    position: initial;
    width: 100%;
    height: auto;
    transform: none;
  }
}
.steps {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 85px;
}
.steps__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1440px) {
  .steps__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .steps__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .steps__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .steps__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .steps__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.steps__title {
  font-size: 36px;
  font-weight: 600;
  color: #242426;
}
.steps__cards {
  margin-top: 32px;
  margin-bottom: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.steps__card:nth-child(odd) {
  align-self: flex-start;
}
.steps__card:nth-child(even) {
  align-self: flex-end;
}

@media (max-width: 768px) {
  .steps__wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .steps__title {
    font-size: 24px;
  }
}
.card {
  max-width: 50%;
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  background-color: #f6f5f5;
}
.card__image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.card__image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__title {
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.card__description {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .card {
    max-width: 100%;
  }
}
.form-block {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background: rgba(68, 51, 122, 0.2);
  display: flex;
  justify-content: center;
}
@media (min-width: 1440px) {
  .form-block__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .form-block__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .form-block__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .form-block__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .form-block__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.form-block__form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.form-block__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #242426;
}
@media (max-width: 576px) {
  .form-block__title {
    font-size: 24px;
  }
}
.form-block__description {
  font-size: 16px;
  text-align: center;
  margin-bottom: 32px;
}

.form__text {
  color: #242426;
  font-size: 12px;
  margin-bottom: 26px;
}
.form__text a {
  color: #44337a;
}

.calculator {
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: rgba(68, 51, 122, 0.2);
  margin-top: 85px;
}
.calculator__cards {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
}
.calculator-card {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calculator-card__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calculator-card__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.calculator-card__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.calculator-card__text {
  font-size: 16px;
}
.calculator-card__text_small {
  font-size: 12px;
}
.calculator__range {
  width: 100%;
}
.calculator-interface__ranges {
  width: 100%;
}
.calculator__btn {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 540px) {
  .calculator__btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.calculator-interface {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.calculator-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calculator-left__text {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.11px;
}
@media (max-width: 540px) {
  .calculator-left__text {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
  }
}
.calculator-left__text_restricted {
  max-width: 350px;
}
@media (max-width: 540px) {
  .calculator-left__text_restricted {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-weight: 400;
  }
}
.calculator-economy {
  display: flex;
  align-items: center;
  margin-top: 31px;
  gap: 30px;
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .calculator-economy {
    margin-top: 0;
    margin-top: 30px;
  }
}
.calculator-economy__text {
  font-size: 22px;
  color: #2a414f;
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .calculator-economy__text {
    text-align: left;
  }
}
.calculator-economy__price {
  width: 150px;
  font-size: 40px;
  font-weight: 600;
  color: #2a414f;
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .calculator-economy__price {
    font-size: 28px;
  }
}
.calculator-info__price {
  font-size: 86px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #2a414f;
}
@media (max-width: 540px) {
  .calculator-info__price {
    font-size: 42px;
    text-align: center;
  }
}
@media (min-width: 1440px) {
  .calculator-wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .calculator-wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .calculator-wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .calculator-wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .calculator-wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.calculator-wrapper h2 {
  text-align: center;
}
@media (max-width: 540px) {
  .calculator-wrapper {
    flex-direction: column;
  }
}
.calculator-wrapper__header {
  text-align: center;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  border-radius: 15px;
  height: 7px;
  background-color: #9197b3;
}

input[type=range]::-webkit-slider-thumb {
  background: #44337a;
  border-radius: 15px;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
}

input[type=range]::-moz-range-track {
  border-radius: 15px;
  height: 5px;
  background-color: #fff;
}

input[type=range]::-moz-range-thumb {
  background: #44337a;
  border-radius: 15px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .calculator__cards {
    gap: 32px;
  }
}
.freelancers-advantages {
  margin-top: 85px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  background: rgba(68, 51, 122, 0.2);
}
.freelancers-advantages__wrapper {
  margin-top: 60px;
  width: 100%;
}
@media (min-width: 1440px) {
  .freelancers-advantages__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .freelancers-advantages__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .freelancers-advantages__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .freelancers-advantages__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .freelancers-advantages__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.freelancers-advantages__title {
  font-size: 36px;
  font-weight: 600;
}
.freelancers-advantages__cards {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.freelancers-advantages__card {
  text-align: left;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 30px;
}
.freelancers-advantages__card-title {
  font-size: 22px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.freelancers-advantages__card-text {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 768px) {
  .freelancers-advantages__cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .freelancers-advantages__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .freelancers-advantages__title {
    font-size: 24px;
  }
}
.cookie {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #44337a;
}
.cookie__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1440px) {
  .cookie__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .cookie__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cookie__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .cookie__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .cookie__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cookie__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.cookie__title {
  font-size: 32px;
  font-weight: 600;
  color: #2a414f;
}
.cookie__text {
  width: 100%;
  font-size: 16px;
  max-width: calc(100% - 100px);
}
.cookie__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  width: 100%;
  height: 200px;
  background-color: rgba(68, 51, 122, 0.2);
  display: flex;
  padding-top: 32px;
  padding-bottom: 32px;
  justify-content: center;
}
.footer__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1440px) {
  .footer__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .footer__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .footer__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .footer__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo {
  width: 200px;
}
.footer__copyright {
  margin-top: 8px;
  padding-left: 8px;
}
.footer__links {
  padding-left: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__cards {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__cards .masterCard {
  width: 25%;
}
.footer__cards .visa {
  width: 30%;
}
.footer__contacts {
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 576px) {
  .footer__contacts {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .footer {
    height: auto;
  }
  .footer__wrapper {
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
  }
  .footer__links {
    flex-direction: column;
  }
  .footer__contacts {
    text-align: center;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__logo {
    margin-left: 35px;
  }
  .footer__cards {
    width: 100%;
    justify-content: center;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}

tr:nth-child(odd) {
  background-color: rgba(68, 51, 122, 0.1);
}

tr:nth-child(even) {
  background-color: rgba(68, 51, 122, 0.2);
}

td, th {
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

td:first-child, th:first-child {
  width: 70%;
}

td:last-child, th:last-child {
  width: 30%;
  text-align: right;
}

.price {
  margin-top: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 85px;
}
@media (min-width: 1440px) {
  .price__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .price__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .price__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .price__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .price__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.price__title {
  font-size: 36px;
  font-weight: 600;
  color: #2a414f;
  margin-bottom: 32px;
}
.price__subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #2a414f;
  margin-bottom: 16px;
  margin-top: 32px;
}
.price__points {
  padding: 0 0 0 10px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.price__cards {
  margin-top: 85px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.price__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 470px;
  height: 440px;
  max-height: 470px;
  padding: 32px 20px;
  background: rgba(68, 51, 122, 0.2);
}
.price__client {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.price__list {
  padding: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 50px;
}
.price__withdrawal {
  display: flex;
  align-items: center;
  gap: 18px;
}
.price__number {
  margin: 0;
  font-size: 64px;
  font-weight: 500;
  color: #2a414f;
}
.price__description {
  font-size: 24px;
  font-weight: 400;
  color: #2a414f;
}
.price__list {
  margin-top: 32px;
  padding: 0;
}

.point {
  display: flex;
  align-items: center;
  gap: 16px;
}
.point__circle {
  display: flex;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #44337a;
}
.point__text {
  font-size: 16px;
  font-weight: 400;
}
.point__text_bold {
  font-weight: 600;
}

@media (max-width: 768px) {
  .price__title {
    font-size: 24px;
  }
}
.tasks-section {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 85px;
}
.tasks-section-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services {
  margin-top: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 85px;
  padding-top: 45px;
  padding-bottom: 45px;
  background: rgba(68, 51, 122, 0.2);
}
.services__block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
}
@media (min-width: 1440px) {
  .services__block {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .services__block {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services__block {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .services__block {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .services__block {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .services__block {
    flex-direction: column;
  }
}
.services__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #242426;
}
.services__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
}
.services__info {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
@media (max-width: 768px) {
  .services__info {
    align-items: center;
    text-align: center;
  }
}
.services__start-price {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}
.services details {
  position: relative;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  width: 300px;
  max-width: 350px;
}
.services details ul {
  text-decoration: none;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.services details span, .services details a {
  display: block;
  margin-top: 12px;
}
.services summary {
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
}
.services summary:hover {
  color: #44337a;
}
.services details[open] {
  position: relative;
  border-color: rgba(68, 51, 122, 0.2);
}
.services .details-content {
  width: 100%;
  left: 0;
  background: #FFFFFF;
  position: absolute;
  max-height: 350px;
  margin-top: 10px;
  padding: 12px;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.matches {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.matches h1 {
  font-size: 42px;
  font-weight: 600;
  color: #2a414f;
}
@media (max-width: 768px) {
  .matches h1 {
    font-size: 36px;
    text-align: center;
  }
}
.matches__title {
  font-size: 36px;
  font-weight: 600;
  color: #242426;
}
@media (max-width: 568px) {
  .matches__title {
    text-align: center;
  }
}
.matches__subtitle {
  max-width: 80%;
}
.matches__subtitle_bold {
  font-weight: 700;
}
@media (max-width: 568px) {
  .matches__subtitle {
    text-align: center;
    max-width: 100%;
  }
}

.matches__image_desktop {
  width: 50%;
}
.matches__image_desktop img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 568px) {
  .matches__image_desktop {
    display: none;
  }
}

.matches__image_mobile {
  display: none;
  width: 100%;
}
.matches__image_mobile img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 568px) {
  .matches__image_mobile {
    display: block;
  }
}

.matches__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  align-items: flex-start;
}
@media (max-width: 568px) {
  .matches__info {
    align-items: center;
  }
}

.matches__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1440px) {
  .matches__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .matches__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .matches__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .matches__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .matches__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 568px) {
  .matches__wrapper {
    flex-direction: column;
    gap: 54px;
  }
}

.tasks-card {
  background: rgba(68, 51, 122, 0.2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tasks-card__title {
  font-size: 24px;
  font-weight: 600;
}
.tasks-card__description {
  font-size: 18px;
}
.tasks-card__price {
  font-size: 22px;
}
.tasks-card__price_bolded {
  font-weight: 700;
  font-size: 28px;
}

.reviews {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .reviews__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .reviews__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .reviews__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .reviews__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .reviews__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.reviews__title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #242426;
  margin-bottom: 36px;
}

.swiper {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 568px) {
  .swiper {
    width: 100%;
    height: 250px;
  }
}

.swiper-slide {
  cursor: grab;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}
@media (max-width: 568px) {
  .swiper-slide {
    width: 400px;
  }
}

.stars {
  font-size: 20px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.review-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.author {
  font-weight: bold;
  color: #333;
}

.swiper-button-next {
  color: #44337a !important;
}

.swiper-button-prev {
  color: #44337a !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #44337a !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background-color: #44337a !important;
  opacity: 1 !important;
}

.target {
  margin-top: 32px;
  margin-bottom: 32px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 568px) {
  .target {
    margin-bottom: 60px;
  }
}
.target__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
@media (min-width: 1440px) {
  .target__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .target__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .target__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .target__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .target__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 568px) {
  .target__wrapper_reversed {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 568px) {
  .target__wrapper {
    height: 400px;
    flex-direction: column;
    gap: 16px;
  }
}
.target__text {
  max-width: 400px;
}
@media (max-width: 568px) {
  .target__text {
    text-align: center;
  }
}
.target__info {
  text-align: left;
}
.target__image {
  justify-self: center;
  width: 350px;
  height: 200px;
  object-fit: cover;
}
.target__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.target__title_right {
  text-align: right;
}
.target__title_left {
  text-align: left;
}
@media (max-width: 568px) {
  .target__title {
    text-align: center;
  }
}
.target a {
  margin-top: 32px;
  display: flex;
  align-self: center;
  justify-self: center;
}

.customer-advantages {
  margin-top: 60px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  background: rgba(68, 51, 122, 0.2);
}
.customer-advantages__wrapper {
  margin-top: 60px;
  width: 100%;
}
@media (min-width: 1440px) {
  .customer-advantages__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .customer-advantages__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .customer-advantages__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .customer-advantages__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .customer-advantages__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.customer-advantages__title {
  font-size: 36px;
  font-weight: 600;
}
.customer-advantages__cards {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 568px) {
  .customer-advantages__cards {
    grid-template-columns: 1fr;
  }
}
.customer-advantages__card {
  text-align: left;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 30px;
}
.customer-advantages__card-title {
  font-size: 22px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.customer-advantages__card-text {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 768px) {
  .freelancers-advantages__cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .freelancers-advantages__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .freelancers-advantages__title {
    font-size: 24px;
  }
}
.get-started {
  margin-top: 32px;
  margin-bottom: 32px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.get-started__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}
@media (min-width: 1440px) {
  .get-started__wrapper {
    width: 1200px;
    max-width: 1200px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .get-started__wrapper {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .get-started__wrapper {
    width: 980px;
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 992.98px) {
  .get-started__wrapper {
    min-width: 754px;
    width: 800px;
    max-width: 980px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .get-started__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
/*# sourceMappingURL=main.min.css.map */
