@tailwind base;
@tailwind components;
@tailwind utilities;

body,
html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Open Sans, Helvetica Neue, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Osmanya, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thai, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

p {
  margin: 0;
}

button,
input {
  border: none;
}

input:focus {
  border: transparent;
  outline: none;
}

.svg-icons {
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  visibility: hidden;
  overflow: hidden;
  z-index: -999;
  width: 0;
  height: 0;
  opacity: 0;
}

.app-select {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 20rem;
  padding: .9375rem 1.25rem;
  border: .0625rem solid #d6d9dd;
  border-radius: .5rem;
  font-size: 1.125rem;
  font-style: normal;
  line-height: 1.5rem;
  color: #6d7585;
  align-items: center;
  box-sizing: border-box;
  justify-content: space-between;
}

.app-select .app-select__arrow {
  transition: .3s;
}

.app-select__dropdown {
  position: absolute;
  bottom: -10.625rem;
  left: 0;
  display: none;
  z-index: 9999;
  width: 100%;
  border: .0625rem solid #eeeef0;
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0 .25rem .375rem -.125rem rgba(16, 24, 40, .03), 0 .75rem 1rem -.25rem rgba(16, 24, 40, .08);
  transition: .3s;
}

.app-select__item {
  display: flex;
  padding: .9375rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #3b4554;
  align-items: center;
  justify-content: space-between;
}

.app-select__item__icon {
  display: none;
}

.app-select__item_active {
  background: #eff8ff;
}

.app-select__item_active .app-select__item__icon {
  display: block;
}

@media(max-width:1200px) {
  .app-select {
    width: 100%;
    max-width: none;
  }
}

.app-select:focus {
  transition: .3s;
}

.app-select:focus .app-select__arrow {
  transform: rotate(-180deg);
  transition: .3s;
}

.app-select:focus .app-select__dropdown {
  display: block;
  transition: .3s;
}

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: #fff;
}

@media screen and (min-width:600px)and (max-width:768px) {
  .app-header__container {
    padding: 0 2.5rem !important;
  }
}

.app-header__inner {
  display: flex;
  min-height: 6.5rem;
  padding: 1rem 0;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-header__inner {
    min-height: 5rem;
    padding: .5rem 0;
  }
}

.app-header__logo {
  width: 4.5rem;
  height: 4.5rem;
}

@media(max-width:1200px) {
  .app-header__logo {
    width: 4rem;
    height: 4rem;
  }

  .app-header__body {
    position: absolute;
    top: 5rem;
    left: 0;
    display: flex;
    overflow-y: auto;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 5rem);
    padding: 2rem 1rem 5rem;
    background: #fff;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: all .2s ease-in-out;
  }
}

.app-header__body_active {
  transform: translateX(0);
}

@media(min-width:1200px) {
  .app-header__body_active {
    display: none;
  }
}

.app-header__menu-wrapper {
  margin: 0 .625rem;
}

@media(max-width:1200px) {
  .app-header__menu-wrapper {
    margin: 0 0 .75rem;
  }

  .app-header__menu_center {
    text-align: center;
  }
}

.app-header__menu-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media(max-width:1200px) {
  .app-header__menu-list {
    flex-direction: column;
    justify-content: center;
  }
}

.app-header__menu-list .menu-item {
  transition: all .3s;
}

.app-header__menu-list .menu-item a {
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  font-family: Inter;
  line-height: 125%;
  color: #000;
  letter-spacing: -.0125rem;
}

.app-header__body-content-mobile {
  display: none;
}

@media(max-width:600px) {
  .app-header__body-content-mobile {
    display: block;
  }
}

.app-header__button {
  display: flex;
  padding: 1rem 1.5rem;
  border-radius: .5rem;
  border-radius: 1rem;
  background: #0d21a1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.app-header__button:hover {
  background: #112cd9;
  transform: scale(1.05);
}

.app-header__button-link {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5rem;
  color: #fcfcfd;
}

@media(max-width:1200px) {
  .app-header__button-link {
    font-size: .75rem;
    line-height: 1rem;
  }
}

.app-header__right {
  position: relative;
  display: flex;
  align-items: center;
}

.app-header__right-content {
  align-items: center;
}

.app-header__right-content_desktop {
  display: flex;
}

@media(max-width:1200px) {
  .app-header__right-content_desktop {
    display: none;
  }
}

.app-header__right-content_mobile {
  display: none;
}

.app-header__right-content .app-header__button,
.app-header__right-content .app-header__button-icon,
.app-header__right-content .app-header__phone {
  margin-right: 1.25rem;
}

.app-header__right-content .app-header__button-icon:last-child,
.app-header__right-content .app-header__button:last-child,
.app-header__right-content .app-header__phone:last-child {
  margin: 0;
}

.app-header__button-icon {
  position: relative;
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  border: .0625rem solid #1570ef;
  border-radius: 50%;
  cursor: pointer;
}

.app-header__button-icon-badge {
  position: absolute;
  top: .8125rem;
  right: .8125rem;
  z-index: 2;
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: #f97066;
}

.app-header__button-icon-ico {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%);
}

.app-header__phone {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.75rem;
  color: #242d39;
}

.app-header__burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: 1rem;
  border: .07313rem solid #0d21a1;
  border-radius: 1rem;
  cursor: pointer;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-header__burger {
    display: flex;
    width: 3rem;
    height: 3rem;
  }
}

.app-header__burger_sircle {
  border-radius: 50%;
  background: #1570ef;
}

.app-header__burger_sircle .app-header__burger-line {
  background: #fff;
}

.app-header__burger_active .app-header__burger-line:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.app-header__burger_active .app-header__burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) scale(0);
}

.app-header__burger_active .app-header__burger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

.app-header__burger-lines {
  position: relative;
  width: 1.04188rem;
  height: .625rem;
}

.app-header__burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 14%;
  background: #0d21a1;
  transition: all .2s ease-in-out;
}

.app-header__burger-line_white {
  background: #fcfcfd;
}

.app-header__burger-line:first-child {
  top: 0;
}

.app-header__burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) scale(1);
}

.app-header__burger-line:nth-child(3) {
  bottom: 0;
}

.menu-item {
  margin-right: 2rem;
  white-space: nowrap;
  text-wrap: nowrap;
}

@media(max-width:1680px) {
  .menu-item {
    margin-right: 1.25rem;
  }
}

.menu-item:last-child {
  margin: 0;
}

.menu-item__link {
  font-weight: 500;
  font-style: normal;
  line-height: 1.375rem;
  color: #242d39;
  letter-spacing: -.0125rem;
}

@media(max-width:1200px) {
  .menu-item {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.app-footer-7 {
  padding: 3.75rem .25rem;
  background: #313131;
  color: #fff;
}

@media(max-width:1200px) {
  .app-footer-7__container {
    display: flex;
    flex-direction: column;
  }

  .app-footer-7 {
    padding: 2.5rem 0 1.25rem;
  }

  .app-footer-7__doc,
  .app-footer-7__politic,
  .app-footer-7__year {
    margin-right: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.125rem;
  }
}

.app-footer-7 a {
  color: #fff;
}

.app-footer-7__wrapper {
  display: flex;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-footer-7__wrapper {
    align-items: center;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .app-footer-7__wrapper .app-footer-7__list {
    display: none;
    width: 100%;
    margin-top: 1.75rem;
    text-align: center;
    order: 3;
  }

  .app-footer-7__wrapper .app-footer-7__list:nth-child(3) {
    margin-top: 1.5rem;
    padding-bottom: 1.75rem;
    border-bottom: .0625rem solid #505967;
  }
}

.app-footer-7__link {
  display: grid;
  width: 63%;
  row-gap: 1.5625rem;
}

@media(max-width:1200px) {
  .app-footer-7__link {
    width: auto;
    row-gap: 1.5rem;
  }
}

.app-footer-7__link .nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-footer-7__link .nav-item:last-child svg {
  min-width: 1.125rem;
  min-height: 1.375rem;
}

.app-footer-7__container-nav {
  display: flex;
  flex-direction: column;
}

.app-footer-7__container-nav_mobile {
  display: none;
}

@media(max-width:1200px) {

  .app-footer-7__container-nav,
  .app-footer-7__container-nav .app-footer-7__social {
    display: none;
  }

  .app-footer-7__container-nav_mobile {
    display: flex;
    order: 1;
  }
}

@media(max-width:1200px)and (max-width:600px) {
  .app-footer-7__container-nav_mobile {
    order: 3;
  }
}

.app-footer-7__holder {
  display: grid;
  row-gap: 1.25rem;
}

@media(max-width:1200px) {
  .app-footer-7__holder {
    display: flex;
    width: 100%;
    margin-bottom: 2.625rem;
    align-items: center;
    justify-content: flex-start;
    order: 1;
  }

  .app-footer-7__holder .app-footer-7__social {
    display: none;
  }
}

.app-footer-7__holder .app-footer-7__link {
  display: flex;
  flex-direction: column;
}

@media(max-width:1200px) {
  .app-footer-7__holder .app-footer-7__link {
    display: none;
    margin-bottom: 1.75rem;
    order: 1;
    row-gap: 0;
  }

  .app-footer-7__newsletter {
    display: grid;
    width: 100%;
    padding: 1.75rem .25rem;
    border-top: .0625rem solid #505967;
    border-bottom: .0625rem solid #505967;
    order: 2;
    place-items: center;
  }
}

.app-footer-7__newsletter-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
}

@media(max-width:1200px) {
  .app-footer-7__newsletter-title {
    width: 100%;
    text-align: center;
  }
}

.app-footer-7__form {
  display: flex;
  margin-top: 2rem;
  align-items: center;
}

@media(max-width:1200px) {
  .app-footer-7__form {
    display: grid;
    margin-top: 1.25rem;
    row-gap: 1.25rem;
  }
}

.app-footer-7__input {
  width: 100%;
  max-width: 20rem;
  min-width: 20rem;
  margin-right: .75rem;
  padding: .9375rem 1.25rem;
  border: .0625rem solid #505967;
  border-radius: .5rem;
  background: #505967;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #fff;
  letter-spacing: -.0125rem;
}

@media(max-width:1200px) {
  .app-footer-7__input {
    min-width: 6.25rem;
    margin-right: 0;
  }
}

.app-footer-7__input::placeholder {
  color: #fff;
}

.app-footer-7__input:focus {
  border: .0625rem solid #1570ef;
}

.app-footer-7__form-button {
  width: 100%;
  max-width: 20rem;
  padding: .9375rem 2rem;
  border-radius: .5rem;
  background: #1570ef;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #fff;
  cursor: pointer;
  letter-spacing: -.0125rem;
  transition: all .3s;
}

.app-footer-7__form-button:hover {
  transform: scale(1.05);
}

.app-footer-7__social {
  display: flex;
  margin-top: 4rem;
  align-items: center;
  justify-content: flex-end;
}

@media(max-width:1200px) {
  .app-footer-7__social {
    width: 100%;
    margin-top: 1rem;
    justify-content: flex-start;
  }
}

.app-footer-7__social-link {
  margin-right: 1.5rem;
  transition: all .3s;
}

.app-footer-7__social-link:hover {
  transform: scale(1.05);
}

.app-footer-7__social-link:last-child {
  margin-right: 0;
}

.app-footer-7__info {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-footer-7__info {
    display: flex;
    margin-top: 1.75rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: normal;
    place-items: center;
    align-items: flex-start;
    justify-content: space-between;
    order: 4;
    row-gap: 1.75rem;
  }
}

.app-footer-7__info-links {
  display: flex;
  color: #626262;
  align-items: center;
  gap: .5rem;
}

@media(max-width:1200px) {
  .app-footer-7__info-links {
    display: flex;
    order: 2;
    place-items: center;
    row-gap: 1.75rem;
  }
}

.app-footer-7__doc,
.app-footer-7__politic {
  font-size: .75rem;
  font-weight: 600;
  font-family: Inter;
  line-height: 120%;
  text-align: center;
  color: #626262 !important;
  letter-spacing: .00313rem;
}

.app-footer-7__year {
  font-size: .875rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #626262;
  letter-spacing: -.01875rem;
}

.app-footer-7__contacts_mobile {
  display: none;
  padding: 1.75rem 0;
}

@media(max-width:1200px) {
  .app-footer-7__contacts_mobile {
    display: grid;
    order: 3;
    place-items: center;
    row-gap: 1.75rem;
  }

  .app-footer-7__contacts_mobile .app-footer-7__link {
    row-gap: 1.75rem;
  }
}

.app-footer-7__link-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

@media(max-width:1200px) {
  .app-footer-7__link-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media(max-width:600px) {
  .app-footer-7__link-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

.app-footer-7__link-nav .menu-item {
  margin: 0;
  transition: all .3s;
  text-wrap: nowrap;
}

.app-footer-7__link-nav .menu-item a {
  font-size: 1rem;
  font-weight: 600;
  font-family: Inter;
  line-height: 125%;
  text-align: left;
  color: #fff;
  letter-spacing: -.0125rem;
}

.app-footer-7__link-nav .menu-item:hover a {
  color: #1570ef;
}

.app-hero-3 {
  display: flex;
  overflow: hidden;
  width: 100%;
  background: #fafafa;
}

.app-hero-3__container {
  width: 100%;
  padding: 0 !important;
}

.app-hero-3__inner {
  display: flex;
  margin: 0 -.625rem;
}

@media(max-width:1200px) {
  .app-hero-3__inner {
    padding: 3.5rem 0;
    align-items: center;
    flex-direction: column;
    gap: 3.75rem;
  }
}

@media(max-width:600px) {
  .app-hero-3__inner {
    padding: 3.25rem 0;
    gap: 2.5rem;
  }
}

.app-hero-3__inner-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.app-hero-3__box {
  position: relative;
  flex: 1 1 100%;
}

@media(max-width:1200px) {
  .app-hero-3__box {
    width: 100%;
  }
}

@media(max-width:600px) {
  .app-hero-3__box {
    width: 100%;
    max-width: 23.4375rem;
    flex: none;
  }
}

.app-hero-3__box_left {
  display: flex;
  padding: 0 5rem;
  flex-direction: column;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-hero-3__box_left {
    padding: 0 2.5rem;
  }
}

@media(max-width:600px) {
  .app-hero-3__box_left {
    padding: 0 1.25rem;
  }
}

.app-hero-3__image {
  position: relative;
  overflow: hidden;
  height: 48.75rem;
  border-radius: 5rem 0 0 5rem;
  user-select: none;
}

@media(max-width:1200px) {
  .app-hero-3__image {
    width: 100%;
    height: 48rem;
    border-radius: 5rem;
  }
}

@media(max-width:600px) {
  .app-hero-3__image {
    height: 23.4375rem;
    border-radius: 1.875rem;
  }
}

.app-hero-3__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-hero-3__text {
  margin-bottom: 3.25rem;
}

@media(max-width:600px) {
  .app-hero-3__text {
    margin-bottom: 1.5rem;
  }
}

.app-hero-3__title {
  margin-bottom: 1.5rem;
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern", Courier;
  line-height: 3.625rem;
  color: #0b5d1e;
}

@media(max-width:1200px) {
  .app-hero-3__title {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}

@media(max-width:600px) {
  .app-hero-3__title {
    margin: 0 0 .75rem;
    font-size: 3rem;
    line-height: 3.3rem;
    letter-spacing: -2%;
  }
}

.app-hero-3__description {
  margin-bottom: 3.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.8rem;
  color: #000;
}

@media(max-width:600px) {
  .app-hero-3__description {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.2rem;
    letter-spacing: -.0375rem;
  }
}

.app-hero-3__button {
  width: fit-content;
  padding: 1.125rem 1.5rem;
  border-radius: 1rem;
  background: #0d21a1;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}

@media(max-width:600px) {
  .app-hero-3__button {
    width: 100%;
  }
}

.app-hero-3__button:hover {
  background: #112cd9;
  transform: scale(1.1);
}

.app-hero-3__button-text {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.25rem;
  color: #fff;
  letter-spacing: -.0125rem;
}

.app-catalog {
  padding: 5rem 0;
  background: #fafafa;
}

@media(max-width:600px) {
  .app-catalog {
    padding: 2.5rem 0;
  }
}

.app-catalog__header {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:600px) {
  .app-catalog__header {
    margin-bottom: 1.75rem;
    align-items: start;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.app-catalog__title {
  margin-bottom: 1rem;
  font-size: 3.625rem;
  font-weight: 700;
  font-family: Libra Serif Modern Italic;
  line-height: 100%;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

@media(max-width:600px) {
  .app-catalog__title {
    margin-bottom: .75rem;
    font-size: 2rem;
    line-height: 110%;
    letter-spacing: -.09375rem;
  }
}

.app-catalog__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  color: #242d39;
  word-wrap: break-word;
}

.app-catalog__holder {
  position: relative;
  display: flex;
  margin-bottom: 2.5rem;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

@media(max-width:1200px) {
  .app-catalog__holder {
    margin-bottom: 1.75rem;
  }
}

.app-catalog__categories {
  display: flex;
  overflow: scroll;
  margin-bottom: 2.5rem;
  align-items: center;
  row-gap: .625rem;
  -ms-overflow-style: none;
  scrollbar-color: transparent;
  scrollbar-width: none;
}

.app-catalog__categories::-webkit-scrollbar {
  width: 0;
}

.app-catalog__btn-right {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: .9375rem;
  border-radius: .75rem;
  background: #0d21a1;
  cursor: pointer;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}

.app-catalog__btn-right:hover {
  background: #112cd9;
  transition: all .3s;
}

.app-catalog__item-categorie {
  margin-right: 1.25rem;
  padding: .5rem .75rem;
  border: .0625rem solid #0d21a1;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #0d21a1;
  letter-spacing: -.03125rem;
  white-space: nowrap;
}

@media(max-width:1200px) {
  .app-catalog__item-categorie {
    width: 100%;
  }
}

.app-catalog__item-categorie:last-child {
  margin-right: 0;
}

.app-catalog__item-categorie_active {
  background: #0d21a1;
  color: #fff;
}

.app-catalog__item-categorie:hover {
  border: .0625rem solid #eceaf6;
  background: var(--Primary5, #eceaf6);
  transition: all .3s;
}

.app-catalog__filter {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.app-catalog__filter-content {
  display: inline-flex;
  width: 14.375rem;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.app-catalog__filter-item {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: .9375rem 1.25rem;
  border: .0625rem solid #0d21a1;
  border-radius: .75rem;
  cursor: pointer;
  align-self: stretch;
  flex-direction: column;
}

.app-catalog__filter-item span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #0d21a1;
  flex: 1 1 0;
  word-wrap: break-word;
  letter-spacing: -.03125rem;
}

.app-catalog__filter-icon {
  position: absolute;
  top: .9375rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
}

.app-catalog__filter-lists {
  display: flex;
  flex-direction: column;
  transition: all .3s;
}

.app-catalog__filter-lists a {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #0d21a1;
  letter-spacing: -.03125rem;
}

.app-catalog__main {
  display: flex;
  flex-direction: column;
}

.app-catalog__list {
  display: grid;
  width: 100%;
  margin-bottom: 2.5rem;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}

@media(max-width:1200px) {
  .app-catalog__list {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .app-catalog__list {
    gap: 1.25rem;
  }
}

.app-catalog__item {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.app-catalog__item .app-catalog__item-image {
  width: 100%;
  height: 19.0625rem;
  flex-shrink: 0;
}

@media(max-width:700px) {
  .app-catalog__item .app-catalog__item-image {
    height: 12.5rem;
  }
}

@media(max-width:600px) {
  .app-catalog__item .app-catalog__item-image {
    height: 9.8125rem;
  }
}

@media(max-width:1200px) {
  .app-catalog__item {
    max-width: none;
  }
}

.app-catalog__imgas {
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.app-catalog__content {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 1.25rem;
  align-items: flex-start;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
}

@media(max-width:600px) {
  .app-catalog__content {
    padding-top: .75rem;
  }
}

.app-catalog__text {
  height: auto;
  height: 100%;
  flex: 1;
  flex-direction: column;
  gap: .75rem;
}

.app-catalog__header-text,
.app-catalog__text {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  justify-content: flex-start;
}

.app-catalog__header-text {
  height: auto;
  margin-bottom: .125rem;
  flex-direction: column;
  gap: .125rem;
}

.app-catalog__title-item {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: #000;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  letter-spacing: -.0325rem;
  text-overflow: ellipsis;
}

@media(max-width:600px) {
  .app-catalog__title-item {
    font-size: 1.125rem;
    line-height: 120%;
    letter-spacing: -.04375rem;
  }
}

.app-catalog__title-art {
  font-size: .625rem;
  font-weight: 400;
  line-height: .75rem;
  color: #637381;
}

@media(max-width:600px) {
  .app-catalog__title-art {
    font-size: .5rem;
    line-height: .625rem;
  }
}

.app-catalog__desc {
  display: -webkit-box;
  overflow: hidden;
  height: auto;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1rem;
  color: #637381;
  align-self: stretch;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media(max-width:1200px) {
  .app-catalog__desc {
    display: none;
  }
}

.app-catalog__footer-item {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:600px) {
  .app-catalog__footer-item {
    flex-direction: row-reverse;
  }
}

.app-catalog__price {
  display: inline-flex;
  margin-right: .75rem;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.app-catalog__price-new {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  color: #000;
  letter-spacing: -.0875rem;
}

@media(max-width:600px) {
  .app-catalog__price-new {
    font-size: 1.125rem;
    letter-spacing: -.04375rem;
  }
}

.app-catalog__price-old {
  font-size: .75rem;
  font-weight: 500;
  line-height: 1rem;
  color: #a5aab3;
  align-self: stretch;
  word-wrap: break-word;
}

@media(max-width:600px) {
  .app-catalog__price-old {
    font-size: .625rem;
    line-height: .75rem;
  }
}

.app-catalog__btn-item {
  display: flex;
  width: fit-content;
  padding: 1.125rem 1.5rem;
  border-radius: 1rem;
  background: #0d21a1;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  transition: all .3s;
}

.app-catalog__btn-item:hover {
  background: #112cd9;
  transform: scale(1.1);
}

@media(max-width:700px) {
  .app-catalog__btn-item {
    max-width: 2.75rem;
    padding: .75rem;
    border-radius: 6.25rem;
  }

  .app-catalog__btn-item span {
    display: none;
  }

  .app-catalog__btn-item svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.app-catalog__btn-item span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 125%;
  color: #fff;
  letter-spacing: -.0125rem;
}

.app-catalog__footer {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 2.5rem;
  align-items: center;
  justify-content: center;
}

.app-catalog__back,
.app-catalog__next {
  display: flex;
  overflow: hidden;
  border-radius: .5rem;
  align-items: center;
  justify-content: center;
}

@media(max-width:600px) {

  .app-catalog__back span,
  .app-catalog__next span {
    display: none;
  }
}

.app-catalog__back span,
.app-catalog__next span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-align: center;
  color: #a5aab3;
  word-wrap: break-word;
}

.app-catalog__footer-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .25rem;
}

.app-catalog__pagination {
  display: flex;
  margin-right: .125rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.app-catalog__pagination:last-child {
  margin-right: 0;
}

.app-catalog__pagination-item {
  display: flex;
  overflow: hidden;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  align-items: center;
  justify-content: center;
}

.app-catalog__pagination-item span {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
  color: #6d7585;
  word-wrap: break-word;
}

.app-catalog__pagination-item_active {
  background: #eff8ff;
}

.app-catalog__pagination-item_active span {
  color: #1570ef;
}

.app-catalog__pagination-number {
  display: inline-flex;
  padding: .75rem;
  border-radius: .5rem;
  align-items: center;
  align-self: stretch;
  flex: 1 1 0;
  justify-content: center;
}

.app-catalog .page-numbers {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 .0625rem;
  padding: .75rem;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 140%;
  text-align: center;
  color: #000;
  align-items: center;
  justify-content: center;
  letter-spacing: -.03125rem;
}

@media(max-width:1200px) {
  .app-catalog .page-numbers {
    width: 2.25rem;
    height: 2.25rem;
    padding: .25rem;
  }

  .app-catalog .page-numbers p {
    display: none;
  }
}

.app-catalog .next,
.app-catalog .prev {
  display: flex;
  width: auto;
  margin: 0;
  background: hsla(0, 0%, 100%, 0);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.375rem;
  text-align: center;
  color: var(--gray-400, #a5aab3);
  align-items: center;
  font-feature-settings: "clig" off, "liga" off;
  justify-content: center;
  letter-spacing: -.0125rem;
}

.app-catalog .next.page-numbers svg {
  margin-left: .25rem;
}

.app-catalog .next.page-numbers svg path {
  fill: #0d21a1;
}

.app-catalog .next.page-numbers p {
  color: #0d21a1;
}

.app-catalog .prev.page-numbers svg {
  margin-right: .25rem;
}

.app-catalog .next.page-numbers {
  position: absolute;
  top: 0;
  right: 0;
}

.app-catalog .next.page-numbers svg {
  transform: rotate(180deg);
}

.app-catalog .prev.page-numbers {
  position: absolute;
  top: 0;
  left: 0;
}

.app-catalog .page-numbers.current {
  padding: .5rem .9375rem;
  border: .0625rem solid #0d21a1;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 140%;
  text-align: center;
  color: #0d21a1;
  letter-spacing: -.03125rem;
}

.app-catalog-4 {
  padding: 5rem 0;
  background: #fafafa;
}

@media(max-width:600px) {
  .app-catalog-4 {
    padding: 2.5rem 0;
  }
}

.app-catalog-4__head {
  display: flex;
  margin: 0 0 2.5rem;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-catalog-4__head {
    margin: 0 0 1.75rem;
  }
}

@media(max-width:700px) {
  .app-catalog-4__head {
    align-items: start;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.app-catalog-4__breadcrumbs {
  margin: 0 0 .75rem;
}

.app-catalog-4__title {
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 100%;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

@media(max-width:1200px) {
  .app-catalog-4__title {
    margin-bottom: .75rem;
  }
}

@media(max-width:600px) {
  .app-catalog-4__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 110%;
    color: #0b5d1e;
    letter-spacing: -.09375rem;
  }
}

.app-catalog-4__btn {
  display: flex;
  width: fit-content;
  padding: 1.125rem 1.5rem;
  border: .0625rem solid #0d21a1;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 125%;
  color: var(--Blue_1, #0d21a1);
  align-items: center;
  gap: .5rem;
  letter-spacing: -.0125rem;
  transition: all .3s;
}

.app-catalog-4__btn:hover {
  border: .0625rem solid #eceaf6;
  border-radius: 1rem;
  background: var(--Primary5, #eceaf6);
  transform: scale(1.1);
}

@media(max-width:600px) {
  .app-catalog-4__btn {
    display: none;
  }
}

.app-catalog-4__main {
  position: relative;
}

.app-catalog-4__filter {
  position: relative;
  display: flex;
  overflow: scroll;
  width: 100%;
  margin-bottom: 2.5rem;
  row-gap: .625rem;
  -ms-overflow-style: none;
  scrollbar-color: transparent;
  scrollbar-width: none;
}

.app-catalog-4__filter::-webkit-scrollbar {
  width: 0;
}

.app-catalog-4__sort {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.app-catalog-4__sort-content {
  display: inline-flex;
  width: 15.625rem;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

@media(max-width:600px) {
  .app-catalog-4__sort-content {
    width: auto;
  }
}

.app-catalog-4__sort-item {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 1rem;
  border: .0625rem solid #0d21a1;
  border-radius: .75rem;
  cursor: pointer;
  align-self: stretch;
  flex-direction: column;
}

.app-catalog-4__sort-item span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #0d21a1;
  flex: 1 1 0;
  word-wrap: break-word;
  letter-spacing: -.03125rem;
}

.app-catalog-4__sort-icon {
  position: absolute;
  top: .9375rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
}

.app-catalog-4__sort-lists {
  display: flex;
  flex-direction: column;
  transition: all .3s;
}

.app-catalog-4__sort-lists a {
  margin-top: 1.25rem;
}

.app-catalog-4__category,
.app-catalog-4__sort-lists a {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #0d21a1;
  letter-spacing: -.03125rem;
}

.app-catalog-4__category {
  display: flex;
  margin-right: 1.25rem;
  padding: .5rem .75rem;
  border: .0625rem solid #0d21a1;
  border-radius: .75rem;
  text-wrap: none;
  align-items: center;
  white-space: nowrap;
}

@media(max-width:1200px) {
  .app-catalog-4__category {
    margin-right: 1.25rem;
  }
}

.app-catalog-4__category_active {
  background: #0d21a1;
  color: #fff;
}

.app-catalog-4__category:hover {
  border: .0625rem solid #eceaf6;
  background: var(--Primary5, #eceaf6);
  transition: all .3s;
}

.app-catalog-4__list {
  width: 100%;
}

.app-catalog-4__item {
  display: grid;
  width: 100%;
  margin-top: 2rem;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media(max-width:1200px) {
  .app-catalog-4__item {
    grid-template-columns: repeat(1, 1fr);
  }
}

.app-catalog-4__btn-right {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: .9375rem;
  border-radius: .75rem;
  background: #0d21a1;
  cursor: pointer;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}

.app-catalog-4__btn-right:hover {
  background: #112cd9;
  transition: all .3s;
}

.app-catalog-4__footer {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 2.5rem;
  align-items: center;
  justify-content: center;
}

.app-catalog-4__back,
.app-catalog-4__next {
  display: flex;
  overflow: hidden;
  border-radius: .5rem;
  align-items: center;
  justify-content: center;
}

@media(max-width:600px) {

  .app-catalog-4__back span,
  .app-catalog-4__next span {
    display: none;
  }
}

.app-catalog-4__back span,
.app-catalog-4__next span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-align: center;
  color: #a5aab3;
  word-wrap: break-word;
}

.app-catalog-4__footer-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .25rem;
}

.app-catalog-4__pagination {
  display: flex;
  margin-right: .125rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.app-catalog-4__pagination:last-child {
  margin-right: 0;
}

.app-catalog-4__pagination-item {
  display: flex;
  overflow: hidden;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  align-items: center;
  justify-content: center;
}

.app-catalog-4__pagination-item span {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
  color: #6d7585;
  word-wrap: break-word;
}

.app-catalog-4__pagination-item_active {
  background: #eff8ff;
}

.app-catalog-4__pagination-item_active span {
  color: #1570ef;
}

.app-catalog-4__pagination-number {
  display: inline-flex;
  padding: .75rem;
  border-radius: .5rem;
  align-items: center;
  align-self: stretch;
  flex: 1 1 0;
  justify-content: center;
}

.app-catalog-4 .page-numbers {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 .0625rem;
  padding: .75rem;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 140%;
  text-align: center;
  color: #000;
  align-items: center;
  justify-content: center;
  letter-spacing: -.03125rem;
}

@media(max-width:1200px) {
  .app-catalog-4 .page-numbers {
    width: 2.25rem;
    height: 2.25rem;
    padding: .25rem;
  }

  .app-catalog-4 .page-numbers p {
    display: none;
  }
}

.app-catalog-4 .next,
.app-catalog-4 .prev {
  display: flex;
  width: auto;
  margin: 0;
  background: hsla(0, 0%, 100%, 0);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.375rem;
  text-align: center;
  color: var(--gray-400, #a5aab3);
  align-items: center;
  font-feature-settings: "clig" off, "liga" off;
  justify-content: center;
  letter-spacing: -.0125rem;
}

.app-catalog-4 .next.page-numbers svg {
  margin-left: .25rem;
}

.app-catalog-4 .next.page-numbers svg path {
  fill: #0d21a1;
}

.app-catalog-4 .next.page-numbers p {
  color: #0d21a1;
}

.app-catalog-4 .prev.page-numbers svg {
  margin-right: .25rem;
}

.app-catalog-4 .next.page-numbers {
  position: absolute;
  top: 0;
  right: 0;
}

.app-catalog-4 .next.page-numbers svg {
  transform: rotate(180deg);
}

.app-catalog-4 .prev.page-numbers {
  position: absolute;
  top: 0;
  left: 0;
}

.app-catalog-4 .page-numbers.current {
  padding: .5rem .9375rem;
  border: .0625rem solid #0d21a1;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 140%;
  text-align: center;
  color: #0d21a1;
  letter-spacing: -.03125rem;
}

.app-catalog-4__product {
  display: flex;
  width: 100%;
  height: 16.5rem;
  max-width: 48.25rem;
  border: .0625rem solid #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .02);
}

.app-catalog-4__product .product-card__image {
  overflow: hidden;
  width: 16.5rem;
  height: 100%;
  border-radius: 1.5rem 0 0 1.5rem;
  background: #637381;
  flex-shrink: 0;
}

@media(max-width:700px) {
  .app-catalog-4__product .product-card__image {
    width: 100%;
    height: 36.25rem;
    border-radius: 1.5rem 1.5rem 0 0;
    flex-shrink: 1;
  }
}

@media(max-width:600px) {
  .app-catalog-4__product .product-card__image {
    height: 20.9375rem;
  }
}

.app-catalog-4__product .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-catalog-4__product .product-card__content {
  display: flex;
  height: 100%;
  padding: 1.25rem;
  border-radius: 0 1.5rem 1.5rem 0;
  background: #fff;
  flex-direction: column;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-catalog-4__product .product-card__content {
    width: 100%;
  }
}

@media(max-width:700px) {
  .app-catalog-4__product .product-card__content {
    height: auto;
  }
}

.app-catalog-4__product .product-card__content__text {
  display: flex;
  font-size: .875rem;
  font-weight: 400;
  color: #637381;
  flex-direction: column;
}

.app-catalog-4__product .product-card__content__text__title {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: #000;
  letter-spacing: -.0325rem;
}

@media(max-width:600px) {
  .app-catalog-4__product .product-card__content__text__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 120%;
    color: #000;
    letter-spacing: -.0875rem;
  }
}

.app-catalog-4__product .product-card__content__text__description {
  display: -webkit-box;
  overflow: hidden;
  margin-top: .5rem;
  line-height: 1.125rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.app-catalog-4__product .product-card__content__text .product-card__content__tags {
  display: flex;
  margin-top: .75rem;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.app-catalog-4__product .product-card__content__text .product-card__content__tags .product-card__content__tag__text {
  padding: .25rem .75rem;
  border-radius: .75rem;
  background: var(--Grey5, linear-gradient(0deg, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, .05) 100%), #fff);
  font-size: .75rem;
  font-weight: 400;
  line-height: 150%;
  color: #313131;
  letter-spacing: -.00938rem;
}

.app-catalog-4__product .product-card__content__text__duration {
  margin-top: .25rem;
}

.app-catalog-4__product .product-card__content__text__format {
  overflow: hidden;
  margin-top: .25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media(max-width:1200px) {
  .app-catalog-4__product {
    width: 100%;
    height: 16.5rem;
    max-width: none;
  }
}

@media(max-width:700px) {
  .app-catalog-4__product {
    height: auto;
    flex-direction: column;
  }
}

.app-catalog-4__product .product-card__footer {
  display: flex;
  margin-top: .75rem;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:600px) {
  .app-catalog-4__product .product-card__footer {
    gap: .75rem;
    justify-content: start;
  }
}

.app-catalog-4__product .product-card__footer__price {
  display: flex;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5rem;
}

.app-catalog-4__product .product-card__footer__price>div {
  display: flex;
  margin-right: 1rem;
  flex-direction: column;
  white-space: nowrap;
}

.app-catalog-4__product .product-card__footer__price>div:last-child {
  margin-right: .3125rem;
}

.app-catalog-4__product .product-card__footer__price_main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  color: #000;
  letter-spacing: -.0875rem;
}

@media(max-width:600px) {
  .app-catalog-4__product .product-card__footer__price_main {
    font-size: 1.125rem;
    letter-spacing: -.04375rem;
  }
}

.app-catalog-4__product .product-card__footer__price_description {
  font-size: .75rem;
  font-weight: 500;
  line-height: 1rem;
  color: #6d7585;
}

.app-catalog-4__product .product-card__footer__btn {
  display: flex;
  width: fit-content;
  padding: 1.125rem 1.5rem;
  border-radius: 1rem;
  background: #0d21a1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 125%;
  color: #fff;
  align-items: center;
  gap: .5rem;
  letter-spacing: -.0125rem;
  transition: all .3s;
}

.app-catalog-4__product .product-card__footer__btn:hover {
  background: #112cd9;
  transform: scale(1.1);
}

@media(max-width:600px) {
  .app-catalog-4__product .product-card__footer__btn {
    font-size: .75rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: .00313rem;
  }
}

.app-catalog-4__list__sorting {
  margin-bottom: 2rem;
}

.app-catalog-4__wrap__btn-mobile {
  display: none;
}

@media(max-width:600px) {
  .app-catalog-4__wrap__btn-mobile {
    display: block;
    margin-top: 2.5rem;
  }
}

.app-catalog-4__wrap__btn-mobile .app-catalog-4__btn-mobile {
  display: flex;
  width: 100%;
  padding: 1.125rem 1.5rem;
  border: .0625rem solid #0d21a1;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 125%;
  color: var(--Blue_1, #0d21a1);
  align-items: center;
  gap: .5rem;
  justify-content: center;
  letter-spacing: -.0125rem;
  transition: all .3s;
}

.app-catalog-4__wrap__btn-mobile .app-catalog-4__btn-mobile:hover {
  transform: scale(1.1);
}

.app-feedback-15 {
  padding: 5rem .25rem;
  background: #fafafa;
  color: #fff;
}

@media(max-width:600px) {
  .app-feedback-15 {
    padding: 2.5rem 0;
  }
}

.app-feedback-15__heading {
  margin-bottom: 2.5rem;
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 100%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

.app-feedback-15__wrapper {
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr 30.5rem;
}

@media(max-width:1200px) {
  .app-feedback-15__wrapper {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}

.app-feedback-15__img {
  position: relative;
  display: flex;
  border-radius: 2.5rem;
  background: #f3f4f6;
  flex-direction: column;
  justify-content: center;
}

@media(max-width:600px) {
  .app-feedback-15__img {
    height: 32.125rem;
  }
}

.app-feedback-15__img img {
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  object-fit: cover;
}

.app-feedback-15__form {
  width: 100%;
  border-bottom-right-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  box-sizing: border-box;
  place-self: center;
}

@media(max-width:1200px) {
  .app-feedback-15__form {
    width: 100%;
    max-width: none;
    padding: 0 6.25rem;
    border-bottom-left-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    border-top-right-radius: 0;
  }
}

@media(max-width:600px) {
  .app-feedback-15__form {
    padding: 0;
  }
}

.app-feedback-15__text {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  max-width: 17.5rem;
  padding: 1.5rem;
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0 .25rem .375rem -.125rem rgba(17, 24, 39, .05), 0 .75rem 1rem -.25rem rgba(17, 24, 39, .1);
  flex-direction: column;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-feedback-15__text {
    padding: 2rem 1.5rem;
  }
}

.app-feedback-15__link-list {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.app-feedback-15__link {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.app-feedback-15__link:last-child {
  align-items: flex-start;
}

.app-feedback-15__link:last-child svg {
  min-width: 1.5rem;
  min-height: 1.5rem;
}

.app-feedback-15__title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 110%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.09375rem;
}

@media(max-width:1200px) {
  .app-feedback-15__title {
    max-width: none;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 110%;
    text-align: left;
    color: #0b5d1e;
    letter-spacing: -.09375rem;
  }
}

@media(max-width:600px) {
  .app-feedback-15__title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.app-feedback-15__subtitle {
  max-width: 43.75rem;
  font-size: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  font-family: Inter;
  line-height: 2.5rem;
  line-height: 1.75rem;
  color: #4b5563;
  font-feature-settings: "liga" off;
}

@media(max-width:1200px) {
  .app-feedback-15__subtitle {
    max-width: none;
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

@media(max-width:600px) {
  .app-feedback-15__subtitle {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}

.app-feedback-15__box-contact {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  gap: 2rem;
}

@media(max-width:600px) {
  .app-feedback-15__box-contact {
    margin-top: 2rem;
  }
}

.app-feedback-15__contact {
  display: flex;
  color: #fff;
  align-items: center;
}

.app-feedback-15__contact svg {
  margin-right: .75rem;
}

.app-feedback-15__form__wrapper {
  display: grid;
  row-gap: 1.25rem;
}

.app-feedback-15__box-input {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

@media(max-width:600px) {
  .app-feedback-15__box-input {
    flex-direction: column;
  }
}

.app-feedback-15__label {
  display: grid;
  width: 100%;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  row-gap: .25rem;
}

.app-feedback-15__input {
  width: 100%;
  padding: .75rem;
  border: .0625rem solid #d1d5db;
  border-radius: .375rem;
  background: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: Inter;
  color: #6b7280;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
  resize: none;
}

.app-feedback-15__input_error {
  border-color: red;
}

.app-feedback-15__input:focus {
  border: .0625rem solid var(--Primary30, #bbacf9);
  border-radius: .375rem;
  background: var(--Primary5, #eceaf6);
}

.app-feedback-15__input:hover {
  border: .0625rem solid var(--Blue_1, #0d21a1);
  background: #fff;
}

.app-feedback-15__input::placeholder {
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 1.5rem;
  color: #6b7280;
  font-feature-settings: "liga" off;
}

.app-feedback-15__button {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: #0d21a1;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: all .3s;
}

.app-feedback-15__button:hover {
  background: #112cd9;
  transform: scale(1.05);
}

.app-feedback-15__checkbox-input {
  display: none;
}

.app-feedback-15__checkbox-input:checked+.app-feedback-15__checkbox-label:before {
  background: #9c9c9c;
}

.app-feedback-15__checkbox-input:checked+.app-feedback-15__checkbox-label:after {
  position: absolute;
  top: .125rem;
  left: .3125rem;
  width: .3125rem;
  height: .5625rem;
  border: solid #fff;
  border-radius: .125rem;
  content: "";
  border-width: 0 .125rem .125rem 0;
  transform: rotate(45deg);
}

@media(max-width:1200px) {
  .app-feedback-15__checkbox-input:checked+.app-feedback-15__checkbox-label:after {
    top: .125rem;
  }
}

@media(max-width:600px) {
  .app-feedback-15__checkbox-input:checked+.app-feedback-15__checkbox-label:after {
    top: .875rem;
  }
}

.app-feedback-15__checkbox-label {
  position: relative;
  padding-left: 1.875rem;
  font-size: .75rem;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  color: #9c9c9c;
  cursor: pointer;
  letter-spacing: -.00938rem;
}

.app-feedback-15__checkbox-label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: .875rem;
  height: .875rem;
  border: .125rem solid #9c9c9c;
  border-radius: .1875rem;
  background: none;
  content: "";
}

@media(max-width:1200px) {
  .app-feedback-15__checkbox-label:before {
    top: 0;
  }
}

.app-feedback-15__checkbox-label.Error {
  color: red;
}

.app-feedback-15__checkbox {
  display: flex;
  font-size: .875rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 1.125rem;
  color: #6b7280;
  align-items: center;
}

.app-feedback-15__checkbox_error .app-feedback__checkbox-label {
  color: red;
}

.app-feedback-15__checkbox_error .app-feedback__checkbox-label:before {
  border-color: red;
}

.app-about-company-7 {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background: #fafafa;
}

@media(max-width:600px) {
  .app-about-company-7 {
    padding: 2.5rem 0;
  }
}

.app-about-company-7__block-top {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-about-company-7__block-top {
    display: block;
  }
}

@media(max-width:600px) {
  .app-about-company-7__block-top {
    margin-bottom: 1.75rem;
  }
}

.app-about-company-7__wrap-content {
  width: calc(50% - 1.25rem);
}

.app-about-company-7__wrap-content_image {
  overflow: hidden;
  height: 100%;
  min-height: 30rem;
  border-radius: 2rem;
}

.app-about-company-7__wrap-content_image img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}

@media(max-width:600px) {
  .app-about-company-7__wrap-content_image {
    min-height: 12.5rem;
  }
}

@media(max-width:1200px) {
  .app-about-company-7__wrap-content {
    width: 100%;
  }
}

.app-about-company-7__title {
  margin-bottom: 1.25rem;
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 100%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

@media(max-width:600px) {
  .app-about-company-7__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 110%;
    text-align: left;
    color: #0b5d1e;
    letter-spacing: -.09375rem;
  }
}

.app-about-company-7__button-learn {
  display: block;
  width: 100%;
  max-width: fit-content;
  margin-top: 2.5rem;
  padding: 1.125rem 2.5rem;
  border-radius: .5rem;
  background-color: #1570ef;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  color: #fcfcfd;
  transition: all .3s;
  white-space: nowrap;
}

.app-about-company-7__button-learn:hover {
  transform: scale(1.1);
}

@media(max-width:1200px) {
  .app-about-company-7__button-learn {
    margin-bottom: 1.75rem;
  }
}

.app-about-company-7__button-learn_mobile {
  display: none;
}

@media(max-width:1200px) {
  .app-about-company-7__button-learn_mobile {
    display: block;
  }
}

@media(max-width:600px) {
  .app-about-company-7__button-learn_mobile {
    max-width: 100%;
    padding: .9375rem 2rem;
    font-size: 1rem;
    line-height: 137.5%;
  }
}

@media(max-width:1200px) {
  .app-about-company-7__button-learn_desktop {
    display: none;
  }

  .app-about-company-7__button-learn {
    margin-top: 1.75rem;
  }
}

.app-about-company-7__text {
  margin-bottom: 3.75rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #000;
  letter-spacing: -.03125rem;
}

.app-about-company-7__text_mobile-hidden {
  margin-bottom: 0;
}

@media(max-width:1200px) {
  .app-about-company-7__text_mobile-hidden {
    margin-bottom: 1.75rem;
  }
}

@media(max-width:600px) {
  .app-about-company-7__text_mobile-hidden {
    display: none;
  }

  .app-about-company-7__text {
    margin-bottom: 1.75rem;
    font-size: 1rem;
    line-height: 137.5%;
  }
}

.app-about-company-7__fichs_home {
  display: none;
}

.app-about-company-7__fichs-title {
  margin-bottom: .75rem;
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 100%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

@media(max-width:600px) {
  .app-about-company-7__fichs-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 110%;
    text-align: left;
    color: #0b5d1e;
    letter-spacing: -.09375rem;
  }
}

.app-about-company-7__fichs-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #000;
  letter-spacing: -.04375rem;
}

@media(max-width:600px) {
  .app-about-company-7__fichs-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: Inter;
    line-height: 140%;
    text-align: left;
    color: #000;
    letter-spacing: -.04375rem;
  }
}

.app-about-company-7__block-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

@media(max-width:1200px) {
  .app-about-company-7__block-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1.125rem;
    grid-row-gap: 1.125rem;
  }
}

@media(max-width:700px) {
  .app-about-company-7__block-grid {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}

@media(max-width:1200px) {
  .app-about-company-7__advantage {
    text-align: center;
  }
}

@media(max-width:700px) {
  .app-about-company-7__advantage {
    margin-bottom: 1rem;
  }

  .app-about-company-7__advantage:last-child {
    margin-bottom: 0;
  }
}

.app-about-company-7__advantage_1 {
  grid-area: 1/1/2/3;
}

.app-about-company-7__advantage_2 {
  grid-area: 1/3/2/5;
}

.app-about-company-7__advantage_3 {
  grid-area: 1/5/2/7;
}

@media(max-width:1200px) {
  .app-about-company-7__advantage_3 {
    grid-area: 2/1/3/3;
  }
}

.app-about-company-7__advantage_4 {
  grid-area: 2/1/3/4;
}

@media(max-width:1200px) {
  .app-about-company-7__advantage_4 {
    grid-area: 2/3/3/5;
  }
}

.app-about-company-7__advantage_5 {
  grid-area: 2/4/3/7;
}

@media(max-width:1200px) {
  .app-about-company-7__advantage_5 {
    grid-area: 3/1/4/5;
  }
}

.app-about-company-7__advantage-icon {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 4.5rem;
  max-height: 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  margin-bottom: 1rem;
  border: .0625rem solid #0d21a1;
  border-radius: 100%;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}

.app-about-company-7__advantage-title {
  margin-bottom: .75rem;
  font-size: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  font-weight: 700;
  font-family: Libra Serif Modern Bold;
  line-height: 133%;
  line-height: 120%;
  text-align: left;
  color: #000;
  letter-spacing: -.04375rem;
}

@media(max-width:1200px) {
  .app-about-company-7__advantage-title {
    font-size: 1.625rem;
  }
}

@media(max-width:600px) {
  .app-about-company-7__advantage-title {
    margin-bottom: .5rem;
    font-size: 1.25rem;
    line-height: 140%;
  }
}

.app-about-company-7__advantage-text {
  font-size: .875rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #000;
  letter-spacing: -.01875rem;
}

@media(max-width:1200px) {
  .app-about-company-7__advantage-text {
    font-size: 1rem;
  }
}

@media(max-width:600px) {
  .app-about-company-7__advantage-text {
    font-size: .875rem;
    line-height: 128%;
  }
}

.app-news-4 {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background: #fafafa;
}

@media(max-width:600px) {
  .app-news-4 {
    padding: 2.5rem 0;
  }
}

.app-news-4__wrapper {
  position: relative;
}

.app-news-4__list-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 1rem 1.5rem;
  border: .0625rem solid #0d21a1;
  border-radius: 1rem;
  border-radius: 16px;
  background: #fafafa;
  font-size: 1rem;
  font-family: Inter;
  line-height: 125%;
  text-align: left;
  color: #0d21a1;
  cursor: pointer;
  align-items: center;
  box-sizing: border-box;
  gap: .625rem;
  letter-spacing: -.0125rem;
  letter-spacing: -.2px;
  transition: all .3s;
  white-space: nowrap;
}

.app-news-4__list-btn:hover {
  border: .0625rem solid #eceaf6;
  border-radius: 1rem;
  background: var(--Primary5, #eceaf6);
  transform: scale(1.05);
}

@media(max-width:600px) {
  .app-news-4__list-btn {
    position: relative;
    display: flex;
    width: fit-content;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
  }
}

.app-news-4__text {
  margin-bottom: 2.5rem;
}

.app-news-4__title {
  margin-bottom: .75rem;
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 100%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

@media(max-width:600px) {
  .app-news-4__title {
    margin-bottom: .75rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 110%;
    text-align: left;
    color: #0b5d1e;
    letter-spacing: -.09375rem;
  }
}

.app-news-4__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #000;
  letter-spacing: -.04375rem;
}

@media(max-width:600px) {
  .app-news-4__subtitle {
    margin-bottom: 1.75rem;
    font-size: 1rem;
    font-weight: 400;
    font-family: Inter;
    line-height: 140%;
    text-align: left;
    color: #000;
    letter-spacing: -.03125rem;
  }
}

.app-news-4__list-news {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  justify-content: flex-start;
}

.app-news-4__pagination {
  margin-top: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.app-news-4__pagination-pages {
  display: flex;
}

.app-news-4__pagination-page {
  display: flex;
  width: 3rem;
  height: 3rem;
  margin: 0 .0625rem;
  padding: .75rem 0;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 142%;
  text-align: center;
  color: #6d7585;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media(max-width:600px) {
  .app-news-4__pagination-page {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.app-news-4 .active-page {
  background-color: #eff8ff;
  color: #1570ef;
}

.app-news-4__pagination-button {
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  line-height: 137.5%;
  text-align: center;
  color: #a5aab3;
  align-items: center;
  letter-spacing: -.0125rem;
}

@media(max-width:600px) {
  .app-news-4__pagination-button {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
  }

  .app-news-4__pagination-button p {
    display: none;
  }

  .app-news-4__pagination-button img {
    margin-left: 0;
  }
}

.app-news-4__pagination-button_prev img {
  transform: rotate(180deg);
}

.app-news-4__pagination-button img {
  margin-left: .25rem;
  opacity: .5;
}

.app-news-4__footer {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}

.app-news-4__footer_home {
  display: none;
}

.app-news-4__back,
.app-news-4__next {
  display: flex;
  overflow: hidden;
  border-radius: .5rem;
  align-items: center;
  justify-content: center;
}

@media(max-width:600px) {

  .app-news-4__back span,
  .app-news-4__next span {
    display: none;
  }
}

.app-news-4__back span,
.app-news-4__next span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-align: center;
  color: #a5aab3;
  word-wrap: break-word;
}

.app-news-4__footer-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .25rem;
}

.app-news-4__pagination {
  display: flex;
  margin-right: .125rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.app-news-4__pagination:last-child {
  margin-right: 0;
}

.app-news-4__pagination-item {
  display: flex;
  overflow: hidden;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  align-items: center;
  justify-content: center;
}

.app-news-4__pagination-item span {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
  color: #6d7585;
  word-wrap: break-word;
}

.app-news-4__pagination-item_active {
  background: #eff8ff;
}

.app-news-4__pagination-item_active span {
  color: #1570ef;
}

.app-news-4__pagination-number {
  display: inline-flex;
  padding: .75rem;
  border-radius: .5rem;
  align-items: center;
  align-self: stretch;
  flex: 1 1 0;
  justify-content: center;
}

.app-news-4 .page-numbers {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 .0625rem;
  padding: .75rem;
  font-size: .875rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 1.25rem;
  text-align: center;
  color: #6d7585;
  align-items: center;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-news-4 .page-numbers {
    width: 2.25rem;
    height: 2.25rem;
    padding: .25rem;
  }

  .app-news-4 .page-numbers p {
    display: none;
  }
}

.app-news-4 .next,
.app-news-4 .prev {
  display: flex;
  width: auto;
  margin: 0;
  background: hsla(0, 0%, 100%, 0);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.375rem;
  text-align: center;
  color: var(--gray-400, #a5aab3);
  align-items: center;
  font-feature-settings: "clig" off, "liga" off;
  justify-content: center;
  letter-spacing: -.0125rem;
}

.app-news-4 .next.page-numbers svg {
  margin-left: .25rem;
}

.app-news-4 .prev.page-numbers svg {
  margin-right: .25rem;
}

.app-news-4 .next.page-numbers {
  position: absolute;
  top: 0;
  right: 0;
}

.app-news-4 .next.page-numbers svg {
  transform: rotate(180deg);
}

.app-news-4 .prev.page-numbers {
  position: absolute;
  top: 0;
  left: 0;
}

.app-news-4 .page-numbers.current {
  border-radius: .5rem;
  background: #e2e2e2;
  font-size: .875rem;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  line-height: 1.25rem;
  text-align: center;
  color: #131007;
}

.app-card-news-4 {
  display: flex;
  width: calc(33.33333% - .83333rem);
  height: auto;
  min-height: 20.875rem;
  padding: 2rem;
  border: .0625rem solid rgba(0, 0, 0, .05);
  border-radius: 1.5rem;
  background: #fff;
  align-items: stretch;
  box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .02);
}

@media(max-width:1200px) {
  .app-card-news-4 {
    width: 100%;
  }
}

@media(max-width:600px) {
  .app-card-news-4 {
    min-height: auto;
    padding: 1.25rem;
  }
}

.app-card-news-4__news {
  display: flex;
  overflow: visible;
  width: 100%;
  height: auto;
  cursor: pointer;
  flex-direction: column;
}

@media(max-width:1200px) {
  .app-card-news-4__news {
    margin-top: 1.125rem;
  }
}

@media(max-width:700px) {
  .app-card-news-4__news {
    width: 100%;
    margin-top: .75rem;
  }
}

.app-card-news-4__news-image {
  width: 100%;
  height: 100%;
}

@media(max-width:1200px) {
  .app-card-news-4__news-image {
    height: auto;
    max-width: 100%;
  }
}

.app-card-news-4__news-content {
  width: 100%;
  height: 100%;
}

@media(max-width:1680px) {
  .app-card-news-4__news-content {
    max-width: 21.875rem;
  }
}

@media(max-width:1200px) {
  .app-card-news-4__news-content {
    position: relative;
    height: auto;
    max-width: 100%;
    margin-top: -1.25rem;
  }
}

.app-card-news-4__news-title {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: .5rem;
  font-size: 1.625rem;
  font-weight: 600;
  font-family: Inter;
  line-height: 110%;
  text-align: left;
  color: #000;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

@media(max-width:600px) {
  .app-card-news-4__news-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Inter;
    line-height: 120%;
    text-align: left;
    color: #000;
    letter-spacing: -.0875rem;
  }
}

.app-card-news-4__tags {
  display: flex;
  margin-bottom: .75rem;
  align-items: center;
  gap: .5rem;
}

.app-card-news-4__news-date {
  border: .0625rem solid #eceaf6;
  box-sizing: border-box;
}

.app-card-news-4__news-date,
.app-card-news-4__tag-news {
  padding: .25rem .75rem;
  border-radius: .75rem;
  font-size: .75rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 150%;
  text-align: left;
  color: #313131;
  letter-spacing: -.00938rem;
}

.app-card-news-4__tag-news {
  background: #eceaf6;
}

.app-card-news-4__container-news-text {
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
}

.app-card-news-4__news-text {
  display: -webkit-box;
  overflow: hidden;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 137.5%;
  line-height: 140%;
  text-align: left;
  color: #626262;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  letter-spacing: -.03125rem;
  text-overflow: ellipsis;
}

@media(max-width:600px) {
  .app-card-news-4__news-text {
    font-size: .875rem;
    font-weight: 400;
    font-family: Inter;
    line-height: 140%;
    text-align: left;
    color: #313131;
    letter-spacing: -.01875rem;
  }
}

.app-card-news-4__news-btn {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 1rem 1.5rem;
  border: .0625rem solid #0d21a1;
  border-radius: 1rem;
  background: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: Inter;
  line-height: 125%;
  text-align: left;
  color: #0d21a1;
  cursor: pointer;
  align-items: center;
  box-sizing: border-box;
  gap: .625rem;
  justify-content: center;
  letter-spacing: .00313rem;
  letter-spacing: -.0125rem;
  transition: all .3s;
}

.app-card-news-4__news-btn:hover {
  border: .0625rem solid #eceaf6;
  border-radius: 1rem;
  background: var(--Primary5, #eceaf6);
  transform: scale(1.05);
}

@media(max-width:1200px) {
  .app-card-news-4__news-btn {
    width: fit-content;
  }
}

@media(max-width:600px) {
  .app-card-news-4__news-btn {
    width: 100%;
  }
}

.app-single-services__title {
  font-style: italic;
  font-family: "Libra Serif Modern";
}

.app-single-services__btn:hover {
  background: #112cd9;
}

.app-single-services {
  padding: 5rem 0;
  background: #fafafa;
}

@media(max-width:1200px) {
  .app-single-services {
    padding: 2.5rem 0;
  }
}

.app-single-services__container {
  display: flex;
  justify-content: space-between;
}

@media(max-width:1024px) {
  .app-single-services__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.app-single-services__image {
  width: 100%;
  height: 27.5rem;
  max-width: 37.5rem;
  margin-right: 4rem;
  border-radius: 1rem;
  object-fit: cover;
}

@media(max-width:1024px) {
  .app-single-services__image {
    max-width: 100%;
    margin: 0;
  }
}

@media(max-width:600px) {
  .app-single-services__image {
    height: 13.75rem;
    border-radius: 1.5rem;
  }
}

.app-single-services__wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-single-services__wrapper {
    width: 100%;
  }
}

.app-single-services__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Libra Serif Modern Italic;
  line-height: 110%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.09375rem;
}

@media(max-width:600px) {
  .app-single-services__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 110%;
    color: #0b5d1e;
    font-feature-settings: "clig" off, "liga" off;
  }
}

.app-single-services__art {
  margin-top: .5rem;
  font-size: .75rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 150%;
  text-align: left;
  color: #a5aab3;
  letter-spacing: -.00938rem;
}

.app-single-services__description {
  margin: 1.75rem 0;
  font-size: 1rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #505967;
  letter-spacing: -.03125rem;
}

@media(max-width:600px) {
  .app-single-services__description {
    margin-top: .75rem;
    font-size: 1rem;
    letter-spacing: -.03125rem;
  }
}

.app-single-services__short-description {
  display: flex;
  margin-bottom: 1.75rem;
  padding: .75rem 0;
  border-radius: 1rem;
  background: #fff;
  font-size: .875rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: center;
  color: #fff;
  color: #505967;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  letter-spacing: -.01875rem;
  letter-spacing: -.3px;
}

@media(max-width:600px) {
  .app-single-services__short-description {
    padding: .75rem;
    text-align: left;
  }
}

.app-single-services__head-compount {
  font-size: .75rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 150%;
  text-align: left;
  color: #a5aab3;
  letter-spacing: -.00938rem;
}

.app-single-services__compount-lists li {
  position: relative;
  margin: .75rem 0 0 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  letter-spacing: -.03125rem;
  list-style-position: inside;
}

@media(max-width:1200px) {
  .app-single-services__compount-lists li {
    font-size: .875rem;
  }

  .app-single-services__compount-lists li:before {
    top: .4375rem;
    left: -.75rem;
    width: .375rem;
    height: .375rem;
  }
}

.app-single-services__compount-lists li:before {
  position: absolute;
  top: .375rem;
  left: -1.5rem;
  display: block;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: #0b5d1e;
  content: "";
}

.app-single-services__price-wrapper {
  display: flex;
  margin: 1.75rem 0;
}

@media(max-width:1200px) {
  .app-single-services__price-wrapper {
    margin-top: 1rem;
  }
}

.app-single-services__price-minwrapper {
  margin-right: 1rem;
}

.app-single-services__price {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  color: #000;
  letter-spacing: -.0875rem;
}

.app-single-services__price-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: #a5aab3;
  letter-spacing: -.03125rem;
}

@media(max-width:600px) {
  .app-single-services__price-text {
    font-size: .875rem;
    letter-spacing: -.01875rem;
  }
}

.app-single-services__btn {
  display: flex;
  width: fit-content;
  margin-top: .75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: #0d21a1;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 133.3%;
  text-align: center;
  color: #fcfcfd;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  letter-spacing: -.0375rem;
  transition: all .3s;
}

@media(max-width:600px) {
  .app-single-services__btn {
    width: 100%;
  }
}

.app-single-services__btn:hover {
  transform: scale(1.05);
}

.app-single-services-2 {
  padding: 5rem 0;
}

@media(max-width:1200px) {
  .app-single-services-2 {
    padding: 2.5rem 0;
  }
}

.app-single-services-2__container {
  display: flex;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-single-services-2__container {
    flex-direction: column-reverse;
  }
}

.app-single-services-2__image {
  width: 100%;
  height: 27.5rem;
  max-width: 37.5rem;
  margin-left: 4rem;
  border-radius: 1rem;
  object-fit: cover;
}

@media(max-width:1200px) {
  .app-single-services-2__image {
    height: 13.75rem;
    max-width: 100%;
    margin-left: 0;
  }
}

.app-single-services-2__wrapper {
  display: flex;
  flex: 0 2 100%;
  flex-direction: column;
  justify-content: center;
}

.app-single-services-2__title {
  font-size: 3rem;
  font-weight: 500;
  font-style: normal;
  line-height: 3.375rem;
  color: #242d39;
}

@media(max-width:1200px) {
  .app-single-services-2__title {
    margin-top: 1rem;
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

.app-single-services-2__description {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.625rem;
  color: #637381;
}

@media(max-width:1200px) {
  .app-single-services-2__description {
    margin-top: .75rem;
    font-size: .875rem;
    line-height: 1.125rem;
  }
}

.app-single-services-2__price-wrapper {
  display: flex;
  margin-top: 2rem;
}

@media(max-width:1200px) {
  .app-single-services-2__price-wrapper {
    margin-top: 1rem;
  }
}

.app-single-services-2__price-minwrapper {
  margin-right: 1rem;
}

.app-single-services-2__price,
.app-single-services-2__price-next {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: normal;
  line-height: 2rem;
  color: #1570ef;
  letter-spacing: -.0375rem;
}

.app-single-services-2__price-next {
  color: #1d2939;
}

.app-single-services-2__price-text {
  font-size: .875rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.125rem;
  color: #a5aab3;
}

.app-single-services-2__btn {
  display: flex;
  width: fit-content;
  margin-top: .75rem;
  padding: 1.125rem 2.5rem;
  border-radius: .5rem;
  background: #1570ef;
  font-size: 1.25rem;
  font-weight: 500;
  font-style: normal;
  line-height: 140%;
  text-align: center;
  color: #fcfcfd;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.app-single-services-2__btn:hover {
  transform: scale(1.05);
}

@media(max-width:1200px) {
  .app-single-services-2__btn {
    width: 100%;
  }
}

.app-single-services-3 {
  background: #fafafa;
}

@media(max-width:1200px) {
  .app-single-services-3 {
    padding: 3.75rem 0 0;
  }
}

@media(max-width:600px) {
  .app-single-services-3 {
    padding: 2.5rem 0 0;
  }
}

.app-single-services-3__container {
  display: flex;
  padding-right: 0 !important;
  justify-content: space-between;
}

@media(max-width:1200px) {
  .app-single-services-3__container {
    padding-left: 0 !important;
    flex-direction: column;
  }
}

.app-single-services-3__image {
  width: 50%;
  height: 48.75rem;
  max-width: 45rem;
  border-bottom-left-radius: 5rem;
  border-top-left-radius: 5rem;
  object-fit: cover;
}

@media(max-width:1200px) {
  .app-single-services-3__image {
    width: 100%;
    height: 48rem;
    max-width: 100%;
    max-height: 48rem;
    border-radius: 0;
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
  }
}

@media(max-width:600px) {
  .app-single-services-3__image {
    height: 23.4375rem;
    max-height: 23.4375rem;
  }
}

.app-single-services-3__wrapper {
  display: flex;
  padding: 3.75rem 3.75rem 3.75rem 1.25rem;
  flex: 0 2 100%;
  flex-direction: column;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-single-services-3__wrapper {
    padding: 0 2.5rem 3.75rem;
    padding: 0 1.25rem 2.5rem;
  }
}

.app-single-services-3__title {
  width: 94%;
  font-size: 3.625rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Libra Serif Modern";
  line-height: 100%;
  text-align: left;
  color: #0b5d1e;
  letter-spacing: -.1rem;
}

@media(max-width:1200px) {
  .app-single-services-3__title {
    margin-top: 1rem;
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

.app-single-services-3__description {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: left;
  color: #000;
  letter-spacing: -.03125rem;
}

.app-single-services-3__description li,
.app-single-services-3__description ul {
  list-style: inside;
}

.app-single-services-3__description a {
  text-decoration: underline;
  color: -webkit-link;
}

@media(max-width:1200px) {
  .app-single-services-3__description {
    margin-top: .75rem;
    font-size: .875rem;
    line-height: 1.125rem;
  }
}

.app-single-services-3__price-wrapper {
  display: flex;
  margin-top: 2rem;
}

@media(max-width:1200px) {
  .app-single-services-3__price-wrapper {
    margin-top: 1rem;
  }
}

.app-single-services-3__price-minwrapper {
  margin-right: 1rem;
}

.app-single-services-3__price,
.app-single-services-3__price-next {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: normal;
  line-height: 2rem;
  color: #1570ef;
  letter-spacing: -.0375rem;
}

.app-single-services-3__price-next {
  color: #1d2939;
}

.app-single-services-3__price-text {
  font-size: .875rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.125rem;
  color: #a5aab3;
}

.app-single-services-3__btn {
  display: flex;
  width: fit-content;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-radius: .5rem;
  border-radius: 1rem;
  background: #0d21a1;
  font-size: 1.25rem;
  font-weight: 500;
  font-style: normal;
  line-height: 140%;
  text-align: center;
  color: #fcfcfd;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  transition: all .3s;
}

.app-single-services-3__btn:hover {
  background: #112cd9;
  transform: scale(1.05);
}

@media(max-width:1200px) {
  .app-single-services-3__btn {
    font-size: 1rem;
    font-weight: 600;
    font-family: Inter;
    line-height: 125%;
    text-align: left;
    color: #fff;
    letter-spacing: -.0125rem;
  }
}

@media(max-width:600px) {
  .app-single-services-3__btn {
    font-size: 1rem;
    font-weight: 600;
    font-family: Inter;
    line-height: 125%;
    text-align: left;
    color: #fff;
    letter-spacing: -.0125rem;
  }
}

.app-popup {
  display: none;
}

@media(max-width:1200px) {
  .app-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
  }
}

.app-popup_open {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  align-items: center;
  justify-content: center;
}

.app-popup__container {
  display: flex;
  width: 50rem;
  margin: auto 0;
  padding: 2.5rem 2.5rem 4rem;
  border-radius: 2rem;
  background: #f9fafb;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
}

@media(max-width:1200px) {
  .app-popup__container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    padding: 5rem 1rem;
    text-align: center;
    justify-content: center;
    transform: translate(-50%, -50%);
  }
}

@media(max-width:600px) {
  .app-popup__container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    padding: 5rem 1rem;
    text-align: center;
    justify-content: center;
    transform: translate(-50%, -50%);
  }
}

.app-popup__close {
  display: inline-flex;
  overflow: hidden;
  padding: .75rem;
  border: .0625rem solid #0d21a1;
  border-radius: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-popup__close {
    position: absolute;
    top: 10%;
    right: 5%;
  }
}

.app-popup__icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

.app-popup__content {
  align-items: flex-end;
}

.app-popup__content,
.app-popup__header {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

.app-popup__header {
  margin-bottom: 2rem;
  align-items: flex-start;
}

@media(max-width:1200px) {
  .app-popup__header {
    margin-bottom: 2.5rem;
  }
}

.app-popup__title {
  display: flex;
  margin-bottom: .75rem;
  font-size: 2.5rem;
  font-size: 40px;
  font-weight: 500;
  font-weight: 700;
  font-family: Inter;
  line-height: 3rem;
  line-height: 110%;
  text-align: center;
  color: #242d39;
  color: #000;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  word-wrap: break-word;
  letter-spacing: -.09375rem;
}

@media(max-width:1200px) {
  .app-popup__title {
    font-size: 1.75rem;
    font-style: normal;
    line-height: 2.25rem;
  }
}

.app-popup__text {
  display: flex;
  font-size: 1.125rem;
  font-size: 18px;
  font-weight: 400;
  font-family: Inter;
  line-height: 1.625rem;
  line-height: 140%;
  text-align: center;
  color: #637381;
  color: #000;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  word-wrap: break-word;
  letter-spacing: -.04375rem;
}

@media(max-width:1200px) {
  .app-popup__text {
    font-size: .875rem;
    font-style: normal;
    line-height: 1.125rem;
  }
}

@media(max-width:600px) {
  .app-popup__text {
    width: 80%;
    margin: auto;
  }
}

.app-popup__footer {
  display: inline-flex;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
}

.app-popup__back {
  display: flex;
  overflow: hidden;
  width: 8.625rem;
  margin-right: 1.25rem;
  padding: 1rem 1.5rem;
  border: .0625rem solid #0d21a1;
  border-radius: .5rem;
  border-radius: 1rem;
  background: #fff;
  font-size: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  font-weight: 600;
  font-family: Inter;
  line-height: 1.75rem;
  line-height: 125%;
  text-align: center;
  text-align: left;
  color: #1570ef;
  color: #0d21a1;
  cursor: pointer;
  align-items: center;
  gap: .25rem;
  justify-content: center;
  word-wrap: break-word;
  box-sizing: border-box;
  letter-spacing: -.0125rem;
}

@media(max-width:1200px) {
  .app-popup__back {
    padding: .9375rem 1rem;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.375rem;
    letter-spacing: -.0125rem;
  }
}

.app-popup__back:hover {
  border: .0625rem solid #eceaf6;
  background: var(--Primary5, #eceaf6);
  transition: all .3s;
}

.app-popup__home {
  display: flex;
  overflow: hidden;
  width: 8.625rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: .5rem;
  border-radius: 1rem;
  background: #1570ef;
  background: #0d21a1;
  font-size: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  font-weight: 600;
  font-family: Inter;
  line-height: 1.75rem;
  line-height: 125%;
  text-align: center;
  text-align: left;
  color: #fcfcfd;
  color: #fff;
  cursor: pointer;
  align-items: center;
  gap: .25rem;
  justify-content: center;
  word-wrap: break-word;
  letter-spacing: -.0125rem;
  text-wrap: nowrap;
}

@media(max-width:1200px) {
  .app-popup__home {
    padding: .9375rem 2rem;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.375rem;
    letter-spacing: -.0125rem;
  }
}

.app-popup__home:hover {
  background: #112cd9;
  transition: all .3s;
}

.app-popup-form {
  display: none;
}

@media(max-width:1200px) {
  .app-popup-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
  }
}

.app-popup-form_open {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  align-items: center;
  justify-content: center;
}

.app-popup-form__container {
  display: flex;
  width: 50rem;
  margin: auto 0;
  padding: 2.5rem 2.5rem 4rem;
  border-radius: 2rem;
  background: #fff;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
}

@media(max-width:1200px) {
  .app-popup-form__container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    padding: 5rem 1rem;
    border-radius: 0;
    background: #fff;
    text-align: center;
    justify-content: center;
    transform: translate(-50%, -50%);
  }
}

.app-popup-form__close {
  display: inline-flex;
  overflow: hidden;
  padding: .75rem;
  border: .0625rem solid #0d21a1;
  border-radius: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-popup-form__close {
    position: absolute;
    top: 7%;
    right: 5%;
  }
}

.app-popup-form__icon {
  position: relative;
  display: flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
}

.app-popup-form__content {
  display: flex;
  padding: 0 4.625rem;
  align-items: flex-end;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

@media(max-width:1200px) {
  .app-popup-form__content {
    padding: 0 1.5rem;
  }
}

@media(max-width:600px) {
  .app-popup-form__content {
    padding: 0;
  }
}

.app-popup-form__header {
  align-items: flex-start;
}

.app-popup-form__header,
.app-popup-form__title {
  display: flex;
  margin-bottom: 1.5rem;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

.app-popup-form__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Inter;
  line-height: 110%;
  text-align: center;
  color: #000;
  align-items: center;
  letter-spacing: -.09375rem;
}

@media(max-width:600px) {
  .app-popup-form__title {
    margin-bottom: .75rem;
    font-size: 2rem;
  }
}

.app-popup-form__text {
  display: flex;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: Inter;
  line-height: 140%;
  text-align: center;
  color: var(--Black, var(--Black, #000));
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  letter-spacing: -.04375rem;
}

@media(max-width:600px) {
  .app-popup-form__text {
    font-size: 1rem;
    letter-spacing: -.03125rem;
  }
}

.app-popup-form__form {
  display: grid;
  width: 100%;
  row-gap: .75rem;
}

.app-popup-form__politic {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.125rem;
  text-align: center;
  color: #a5aab3;
}

.app-popup-form__form__wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.app-popup-form__label {
  width: 100%;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.125rem;
  text-align: left;
  color: #242d39;
}

@media(max-width:1200px) {
  .app-popup-form__label {
    max-width: none;
    margin-right: 0;
  }
}

.app-popup-form__input {
  width: 100%;
  height: 3.375rem;
  padding: .75rem;
  border: .0625rem solid rgba(0, 0, 0, .102);
  border-radius: .375rem;
  background: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  box-sizing: border-box;
}

.app-popup-form__input:hover {
  border: .0625rem solid var(--Blue_1, #0d21a1);
  border-radius: .375rem;
  background: #fff;
  transition: all .3s;
}

.app-popup-form__input:focus {
  border: .0625rem solid var(--Primary30, #bbacf9);
  border-radius: .375rem;
  background: var(--Primary5, #eceaf6);
  transition: all .3s;
}

.app-popup-form__textarea {
  height: 8.5rem;
  resize: none;
}

@media(max-width:600px) {
  .app-popup-form__textarea {
    height: 3rem;
  }
}

.app-popup-form__input::placeholder {
  font-size: 1rem;
  font-weight: 500;
  font-family: Inter;
  line-height: 1.5rem;
  color: #626262;
  font-feature-settings: "liga" off;
}

.app-popup-form__button {
  width: 100%;
  padding: 1.125rem;
  border-radius: 1rem;
  background: #0d21a1;
  font-size: 1rem;
  font-weight: 600;
  font-family: Inter;
  line-height: 125%;
  color: #fff;
  cursor: pointer;
  letter-spacing: -.0125rem;
}

@media(max-width:600px) {
  .app-popup-form__button {
    padding: .9375rem;
    font-size: .75rem;
    line-height: 120%;
    letter-spacing: .00313rem;
  }
}

.app-popup-form__button:hover {
  background: #112cd9;
  transition: all .3s;
}

.app-popup-form__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:1200px) {
  .app-popup-form__checkbox {
    max-width: none;
  }
}

.app-popup-form__checkbox__input {
  display: none;
}

.app-popup-form__checkbox__label {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 1.4375rem;
  padding-left: 2.375rem;
  font-size: .75rem;
  font-weight: 400;
  font-style: normal;
  font-family: Inter;
  line-height: 150%;
  text-align: left;
  color: #9c9c9c;
  cursor: pointer;
  align-items: center;
  letter-spacing: -.00938rem;
}

.app-popup-form__checkbox__label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border: .125rem solid #9c9c9c;
  border-radius: .3125rem;
  background: none;
  background: #fff;
  content: "";
}

.app-popup-form__checkbox__label.Error {
  color: red;
}

.app-popup-form__checkbox__input:checked+.app-popup-form__checkbox__label:before {
  background: #fff;
}

.app-popup-form__checkbox__input:checked+.app-popup-form__checkbox__label:after {
  position: absolute;
  top: .125rem;
  left: .375rem;
  width: .3125rem;
  height: .6875rem;
  border: solid #0d21a1;
  border-radius: .125rem;
  content: "";
  border-width: 0 .1875rem .1875rem 0;
  transform: rotate(45deg);
}

html {
  height: 100%;
}

button {
  border: none;
}

textarea,
textarea:focus {
  outline: none;
}

textarea {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  resize: none;
}

body {
  position: relative;
  padding-top: 6.5rem;
}

@media(max-width:1200px) {
  body {
    padding-top: 5rem;
  }
}

body {
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  color: #130f1a;
  box-sizing: content-box;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body .swiper {
  z-index: 0;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  /* padding: 7.125rem 0 0; */
  flex: 1 0 auto;
}

@media(max-width:600px) {
  .wrapper {
    /* padding: 4.25rem 0 0; */
  }
}

.container-new {
  width: 100%;
  max-width: 81rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media(max-width:600px) {
  .container-new {
    padding: 0 1.25rem;
  }
}

.container {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding-right: .25rem;
  padding-left: .25rem;
}

@media(max-width:1680px) {
  .container {
    padding: 0 2.75rem;
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 1rem;
  }
}

a {
  text-decoration: none;
  color: #130f1a;
}

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

.preoload-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 100%, .5);
}

.preoload-wrapper_active {
  display: block;
}

.preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border: .3125rem solid #f3f3f3;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  border-top-color: #3498db;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.df-right{
  display: flex !important;
  justify-content:flex-end !important;
}