@charset "UTF-8";

@font-face {
  font-family: "Albert San";
  src: url("/AlbertSans-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}


textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

html,
body {
  font-family: "Albert San";
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.header {
  font-family: "Albert San";
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  height: max-content;
  width: 100%;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}


.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
  font-size: 16px;
  



}


@media (max-width: 430px) {
  .header__nav {
   gap: 10px;
  }
}

.header__nav__link {
  transition: color 0.3s ease;
}
.header__nav__link:hover {
  color: #4042cc;
}
.header-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.header-logo__text {
  
  color: #000000;
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: bold;
}
.header-logo__img {
  width: 51px;
  height: 55px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container-img {
  margin-left: auto;
}
@media (max-width: 514px) {
  .container-img {
    width: 100%;
    height: auto;
  }
}

.about {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 1040px) {
  .about {
    flex-direction: column;
  }
}
.about__image-container {
  max-width: 40%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}
.about::before, .about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.about::before {
  width: 200px;
  height: 200px;
  background: rgba(0, 123, 255, 0.2);
  top: 20%;
  left: 10%;
  transform: translate(-50%, -50%);
}
.about__image {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.about__image:hover {
  transform: scale(1.05);
}
.about__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.about__title {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.about__text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about__cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #007bff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.about__cta:hover {
  background-color: #0056b3;
}

.features {
  position: relative;
  padding: 4rem 2rem;
  background-color: #fff;
  overflow: hidden;
}
.features__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.features__card {
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.features__card-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 30px;
}
.features__card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.features__card-description {
  font-size: 1rem;
  color: #666;
}

.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 20%, transparent 20%), radial-gradient(circle, rgba(0, 0, 0, 0.1) 20%, transparent 20%), radial-gradient(circle, rgba(0, 0, 0, 0.1) 20%, transparent 20%);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  background-position: 0 0, 50px 50px, 100px 100px;
  z-index: 0;
  animation: backgroundMove 30s infinite alternate;
}

@keyframes backgroundMove {
  0% {
    background-position: 0 0, 50px 50px, 100px 100px;
  }
  100% {
    background-position: 100px 100px, 150px 150px, 200px 200px;
  }
}
.get-app {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}
.get-app__form-container {
  max-width: 600px;
  margin: 0 auto;
}
.get-app__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.get-app__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.get-app__label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.get-app__input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.get-app__submit-button {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.get-app__submit-button:hover {
  background-color: #0056b3;
}
.get-app__submit-button:disabled {
  background-color: #c6c6c6;
  cursor: not-allowed;
}
.get-app__popup-message {
  display: none;
  margin-top: 1.5rem;
  background-color: #e6f7e6;
  border: 1px solid #b3d9b3;
  border-radius: 4px;
  padding: 1rem;
  color: #2e7d32;
  text-align: center;
}
.get-app__popup-message h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
.get-app__popup-message p {
  margin: 0.5rem 0 0;
}

.why-us {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}
.why-us__container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-us__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}
.why-us__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.why-us__card {
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 8px;
  padding: 2rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-us__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.why-us__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
  border-radius: 10px;
}
.why-us__card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.why-us__card-description {
  font-size: 1rem;
  color: #666;
}

.reviews {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}
.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}
.reviews__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.reviews__card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 300px;
  text-align: left;
  position: relative;
  margin-top: 12px;
}
.reviews__card .reviews__avatar {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ddd;
  background-color: #f9f9f9;
}
.reviews__card .reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews__card .reviews__text {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.reviews__card .reviews__author {
  font-size: 1rem;
  color: #666;
  text-align: right;
  margin-bottom: 0.5rem;
}
.reviews__card .reviews__rating {
  display: flex;
  justify-content: flex-end;
  gap: 0.2rem;
}
.reviews__card .reviews__rating .reviews__star {
  color: #f5b301;
  font-size: 1.25rem;
}

.history {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}
.history__container {
  max-width: 1200px;
  margin: 0 auto;
}
.history__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}
.history__timeline {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 15px;
  margin-right: 15px;
}
@media (max-width: 1040px) {
  .history__timeline {
    flex-direction: column;
  }
}
.history__event {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 50%;
  max-width: 50%;
}
@media (max-width: 1040px) {
  .history__event {
    max-width: 100%;
  }
}
.history__event:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.1);
}
.history__event-date {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #007bff;
}
.history__event-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}
.history__event-description {
  font-size: 1rem;
  color: #666;
}

.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f9f9f9;
  padding-bottom: 40px;
  color: #397eac;
}
.footer__disclaimer {
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer__disclaimer-icon {
  border-radius: 18px;
  width: 50px;
  height: auto;
}
.footer__disclaimer-title {
  font-size: 24px;
  margin: 0;
}
.footer__disclaimer-text {
  max-width: 90%;
  font-size: 14px;
  margin: 20px auto;
}
.footer__legal-links {
  text-align: center;
}
.footer__legal-links-title {
  font-size: 24px;
  margin: 20px 0;
}
.footer__legal-links-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.footer__legal-links-item {
  margin: 20px 1110px;
}
.footer__legal-links-link {
  font-size: 14px;
  color: #2e2e42;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer__legal-links-link:hover {
  text-decoration: underline;
}
.footer__bottom {
  margin-top: 40px;
  border-top: 1px solid #f9f9f9;
  padding-top: 20px;
  text-align: center;
}
.footer__bottom-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer__bottom-link {
  font-size: 14px;
  color: #2e2e42;
  text-decoration: none;
}
.footer__bottom-link:hover {
  color: #4042cc;
}

.footer__legal-link {
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}
.footer__legal-link:hover {
  border-bottom: 1px solid #4042cc;
}

.privacy-policy {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2e2e42;
}
.privacy-policy__intro {
  margin-bottom: 1rem;
}
.privacy-policy__strong {
  font-weight: bold;
}
.privacy-policy__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2e2e42;
  margin-bottom: 1rem;
}
.privacy-policy__subheading {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #2e2e42;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #4042cc;
  background-size: cover;
}
@media (max-width: 1040px) {
  .hero-banner {
    flex-direction: column;
    height: auto;
  }
}
@media (max-width: 450px) {
  .hero-banner {
    flex-direction: column;
    height: auto;
  }
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 1040px) {
  .hero-banner__content {
    max-width: 90%;
  }
}
@media (max-width: 450px) {
  .hero-banner__content {
    max-width: 100%;
    padding: 10px;
  }
}
.hero-banner__title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 1040px) {
  .hero-banner__title {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .hero-banner__title {
    font-size: 24px;
  }
}
.hero-banner__subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 1040px) {
  .hero-banner__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .hero-banner__subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.hero-banner__cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4042cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.hero-banner__cta:hover {
  background-color: #2e30ab;
}
@media (max-width: 1040px) {
  .hero-banner__cta {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (max-width: 450px) {
  .hero-banner__cta {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.hero-banner__image-container {
  position: relative;
  z-index: 1;
  max-width: 28%;
}
@media (max-width: 1040px) {
  .hero-banner__image-container {
    max-width: 90%;
    margin-top: 20px;
  }
}
@media (max-width: 450px) {
  .hero-banner__image-container {
    max-width: 100%;
    margin-top: 20px;
  }
}
.hero-banner__image {
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .hero-banner__image {
    width: 60%;
    height: auto;
  }
}

body {
  box-sizing: border-box;
  background-color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  
}

.main {
  flex: 1 1 auto;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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