html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "GothamPro";
  src: url("fonts/gothampro.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GothamPro";
  src: url("fonts/gothampro_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --font-family: "Gotham Pro", sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding-left: 25px;
  padding-right: 25px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 49px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-link {
  font-weight: 400;
  font-size: 20px;
  color: #54616c;
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid hsla(199, 83%, 72%, 0);
  transition: all ease 0.3s;
  padding-bottom: 3px;
}

.header__nav-link:hover {
  text-shadow: 1px 0 0 currentColor;
  border-bottom: 2px solid #7ccef3;
}

.header__lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.hero__image {
  width: 100%;
}

.hero__inner {
  display: flex;
  align-items: center;
}

.hero__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  color: #54616c;
  margin-bottom: 40px;
}

.hero__text {
  font-weight: 400;
  font-size: 30px;
  line-height: 117%;
  color: #54616c;
  margin-bottom: 80px;
}

.hero__button {
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #7ccef3;
  padding: 26px 167px;
  border: none;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.advantages__title,
.pricing__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 113%;
  text-align: center;
  color: #54616c;
  margin-bottom: 50px;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 50px 25px;
}

.advantages__item {
  padding-left: 29px;
  padding-right: 29px;
}

.advantages__list > :not(:last-child) {
  border-right: 1px dashed #54616c;
}

.advantages {
  margin-top: 32px;
  padding-bottom: 90px;
}

.advantages__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 139%;
  text-align: center;
  color: #54616c;
  margin-top: 22px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__card-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 150%;
  text-transform: uppercase;
  color: #54616c;
  margin-bottom: 20px;
}

.pricing__feature-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 139%;
  color: #54616c;
}

.pricing__price {
  font-weight: 700;
  font-size: 30px;
  line-height: 150%;
  color: #54616c;
  margin-bottom: 40px;
}

.pricing__button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #7ccef3;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
}

.pricing__list {
  display: flex;
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 42px;
}

.pricing {
  background: #eef0f381;
  padding-top: 90px;
  padding-bottom: 90px;
}

.pricing__list > :first-child {
  border-right: 1px dashed #54616c;
  padding-right: 50px;
}

.pricing__list > :nth-child(2) {
  padding-left: 50px;
  padding-right: 50px;
}

.pricing__card-footer {
  margin-top: 40px;
}

.pricing__list > :last-child .pricing__button {
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #fd4e48;
}

.pricing__list > :last-child .pricing__card-title,
.pricing__list > :last-child .pricing__price {
  color: #fd4e48;
}

.team__photo {
  width: 100%;
  max-width: 216px;
  margin-bottom: 30px;
}

.team__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 113%;
  text-align: center;
  color: #54616c;
  margin-bottom: 50px;
}

.team {
  padding-top: 90px;
  padding-bottom: 90px;
}

.team__name {
  font-weight: 700;
  font-size: 30px;
  line-height: 150%;
  text-align: center;
  color: #54616c;
}

.team__1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 225%;
  text-align: center;
  color: #54616c;
  margin-bottom: 15px;
}

.team__person {
  border-bottom: 1px dashed #54616c;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__bio {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  text-align: center;
  color: #54616c;
}

.team__swiper {
  overflow-x: hidden;
}

.achievements__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 113%;
  text-align: center;
  color: #54616c;
  margin-bottom: 50px;
}

.achievements {
  padding-top: 90px;
  padding-bottom: 180px;
}

.achievements__list {
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  max-width: 880px;
  margin: 0 auto;
  padding: 50px;
}

.achievements__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: #54616c;
}

.achievements__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.achievements__list > :not(:last-child) {
  border-bottom: 1px dashed #54616c;
  padding-bottom: 25px;
}

.achievements__list > :not(:first-child) {
  padding-top: 25px;
}

.contacts {
  padding-bottom: 88px;
}

.contacts__image {
  width: 100%;
  max-width: 575px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.contacts__inner {
  display: flex;
  border: 6px solid #fff;
  position: relative;
}

.contacts__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 113%;
  color: #54616c;
  margin-bottom: 15px;
}

.contacts__text {
  font-weight: 400;
  font-size: 25px;
  line-height: 120%;
  color: #54616c;
  margin-bottom: 30px;
}

.contacts__form {
  display: flex;
  flex-direction: column;
}

.contacts__input,
.contacts__textarea {
  background: #fff;
  outline: none;
  padding: 13px 15px;
  border: none;
}

.contacts__input,
.contacts__input::placeholder,
.contacts__textarea,
.contacts__textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #a6abb1;
}

.contacts__textarea {
  resize: none;
  height: 182px;
  margin-top: 15px;
  margin-bottom: 30px;
}

input[type="email"] {
  margin-top: 15px;
}

.contacts__button {
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #7ccef3;
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border: none;
}

.contacts__content {
  padding: 60px 0 60px 60px;
  max-width: 465px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.footer {
  padding-top: 49px;
  padding-bottom: 49px;
}

.footer__info {
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #54616c;
}

.footer__contact,
.footer__contact a {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  text-decoration-skip-ink: none;
  color: #54616c;
}

.footer__contact {
  margin-top: 30px;
}

.footer__copyright {
  font-weight: 400;
  font-size: 16px;
  color: #54616c;
}

.bg {
  background: #eef0f381;
}

.bg-all {
  background-image: url("./images/all-bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

b {
  font-weight: 600;
}

.pricing__features {
  list-style: disc;
  padding-left: 20px;
}

.header {
  padding-top: 40px;
}

@media screen and (max-width: 1204px) {
  .header__logo-img {
    max-width: 300px;
  }
}

@media screen and (max-width: 1057px) {
  .header__nav-link {
    font-size: 16px;
  }

  .header__logo-img {
    max-width: 200px;
  }
}

.burger {
  display: none;
}

@media screen and (max-width: 870px) {
  .header__nav,
  .header__controls {
    display: none;
  }

  .burger {
    display: block;
    border: none;
    background: none;
    cursor: pointer;
  }

  .header__logo-img {
    max-width: 234px;
  }
}

@media screen and (max-width: 1176px) {
  .hero__title {
    font-size: 40px;
  }

  .hero__text {
    font-size: 27px;
  }

  .hero__inner > :first-child {
    flex: 1.2;
  }

  .hero__inner > :last-child {
    flex: 1;
  }
}

@media screen and (max-width: 924px) {
  .hero__inner {
    flex-direction: column;
  }

  .hero__inner > :first-child {
    flex: 1;
  }

  .hero {
    padding-top: 55px;
  }

  .hero__button {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .hero__text {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .hero__button {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 981px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0px;
  }

  .advantages__list > :nth-child(2) {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .advantages__list {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .advantages__item {
    border-right: none !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .advantages__list > :not(:last-child) {
    border-bottom: 1px dashed #54616c;
  }

  .advantages__title,
  .pricing__title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .advantages__list {
    padding-top: 0;
  }
}

.pricing__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 1027px) {
  .pricing__list > :nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing__list > :first-child {
    padding-right: 20px;
  }

  .pricing__list {
    padding: 30px;
  }
}

@media screen and (max-width: 875px) {
  .pricing__list {
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
  }

  .pricing__card {
    padding-left: 0;
    padding-right: 0;
    border-right: none !important;
  }

  .pricing {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing__list > :nth-child(2) {
    margin-bottom: 50px;
  }

  .pricing__list > :first-child {
    border-bottom: 1px dashed #54616c;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .pricing__list {
    box-shadow: none;
  }
}

@media screen and (max-width: 767px) {
  .team__title,
  .achievements__title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .achievements__item {
    flex-direction: column;
  }

  .achievements__text {
    text-align: center;
  }

  .achievements__list {
    padding: 40px 20px;
  }

  .achievements {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .team {
    padding-top: 50px;
    background: linear-gradient(129deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .pricing {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 1120px) {
  .contacts__image {
    max-width: 500px;
  }
}

@media screen and (max-width: 1032px) {
  .contacts__image {
    max-width: 400px;
  }
}

@media screen and (max-width: 952px) {
  .contacts__image {
    display: none;
  }

  .contacts__content {
    max-width: 100%;
    flex: 1;
    padding: 0;
  }

  .contacts__inner {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .contacts__title {
    text-align: center;
    font-size: 30px;
  }

  .contacts__text {
    text-align: center;
    font-size: 20px;
  }

  .contacts__button {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .pricing__button {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .advantages,
  .pricing {
    background: #eef0f3;
  }

  body {
    background: #eef0f3;
  }

  .bg-all {
    background-image: url("./images/bg-mob.png");
  }

  .advantages {
    background: transparent;
  }
}

@media screen and (max-width: 916px) {
  .footer__inner {
    flex-direction: column;
  }

  .footer__link {
    text-align: center;
  }

  .footer {
    padding-top: 28px;
    padding-bottom: 39px;
  }

  .footer__copyright-wrapper {
    order: 3;
  }
}

/* 









 */

body.lock {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #7ccef3;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 38px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 30px;
}

.popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__close {
  background: transparent;
  border: none;
  cursor: pointer;
}

.popup__content a {
  display: inline-block;
  font-weight: 700;
  font-size: 25px;
  line-height: 300%;
  color: #fff;
  text-decoration: none;
}

.popup__content nav {
  display: flex;
  flex-direction: column;
}

.popup__content .header__controls {
  margin-top: 30px;
  display: block !important;
}

.popup__content .header__lang {
  width: 100%;
}

.popup__content .header__lang-btn {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
}

.popup__content .header__lang-text {
  color: #000;
}

.popup__content .header__lang.active {
  background-color: transparent;
}

.popup__content .header__lang.active .header__lang-btn {
  border-radius: 12px 12px 0 0;
}

.p0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 











 */

.header__lang {
  position: relative;
  display: inline-block;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
  z-index: 100;
  min-width: 110px;
}

.header__lang.active {
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header__lang-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
}

.header__lang-text {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-right: auto;
}

.header__lang-flag {
  height: auto;
  border-radius: 2px;
  display: block;
}

.header__lang-arrow {
  width: 10px;
  height: auto;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.header__lang.active .header__lang-arrow {
  transform: rotate(180deg);
}

.header__lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  list-style: none;
  padding: 0 0 8px 0;
  margin: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 99;
}

.header__lang.active .header__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.header__lang-item:hover {
  background-color: #f3f4f6;
}

.header__lang-item.selected {
  display: none;
}

.team__slider-wrapper {
  position: relative;
}

.prev,
.next {
  position: absolute;
  top: 20%;
  z-index: 1000;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

@media screen and (min-width: 500px) {
  .prev,
  .next {
    display: none;
  }
}

.install-app__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 138%;
  text-align: center;
  color: #54616c;
  margin-bottom: 20px;
}

.install-app__text {
  font-weight: 400;
  font-size: 25px;
  line-height: 120%;
  text-align: center;
  color: #54616c;
  max-width: 603px;
}

.install-app__button {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #7ccef3;
  padding: 26px 84px;
  text-decoration: none;
  margin-top: 50px;
  display: inline-block;
}

.install-app__list-item {
  font-weight: 400;
  font-size: 25px;
  line-height: 120%;
  text-align: center;
  color: #54616c;
}

.install-app,
.install-app__content,
.install-app__guide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.install-app__description {
  font-weight: 700;
  font-size: 30px;
  line-height: 117%;
  text-align: center;
  color: #54616c;
  margin-bottom: 40px;
  margin-top: 60px;
  max-width: 603px;
}

.install-app {
  background-color: #eef0f3;
  background-image: url("./images/bg-123.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
  padding-top: 76px;
  padding-bottom: 150px;
}

.install-app__guide--iphone {
  margin-top: 150px;
}

.install-app__list {
  max-width: 603px;
}

.install-app__tabs {
  display: flex;
  gap: 31px;
  margin-bottom: 65px;
}

.install-app__tab {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #54616c;
  transition: all ease 0.3s;
  text-decoration: none;
}

.install-app__tab:hover {
  font-weight: 700;
  font-size: 20px;
  color: #54616c;
  border-bottom: 2px solid #7ccef3;
}

body,
html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 600px) {
  .install-app__logo {
    width: 300px;
  }

  .install-app__tabs {
    margin-bottom: 50px;
  }

  .install-app__description {
    margin-top: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .install-app__title {
    font-size: 30px;
  }

  .install-app__text {
    font-size: 20px;
    text-align: left;
  }

  .install-app__button {
    font-size: 16px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    margin-top: 50px;
  }

  .install-app__list-item {
    font-size: 20px;
    text-align: left;
  }

  .install-app__guide--iphone {
    margin-top: 50px;
  }

  .install-app {
    padding-bottom: 83px;
    padding-top: 50px;
  }

  .install-app__description {
    max-width: 335px;
  }
}

textarea, textarea::placeholder {
    font-family: var(--font-family);
}


