/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 6px 0;
  background: #def1ff;
}

.f__header__o__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f__header__o__logo {
  width: 60px;
}

.navigation {
  display: none;
}

.modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg {
  fill: none;
  stroke: black;
  transition: stroke 0.3s ease;
}

.f__navigation__o__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.f__navigation__o__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.f__navigation__o__item:hover,
.f__navigation__o__item:focus {
  color: #0048ff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #def1ff;
  padding: 16px;
  padding-top: 150px;
  transform: translateY(-100%);
  transition: transform 1s ease;
  z-index: 8;
}

.modal-f__navigation__o__list {
  flex-direction: column;
  gap: 40px;
}

.modal-click {
  transform: translateY(0);
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 5px 0;
  }

  .f__header__o__logo {
    width: 99px;
  }

  .navigation {
    display: block;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 107px;
  padding-bottom: 18px;
}

.f__home__o__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

.f__home__o__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}

.f__home__o__link-wrap {
  display: flex;
  gap: 11px;
  margin-bottom: 30px;
}

.f__home__o__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #0048ff;
  border: 1px solid #0048ff;
  border-radius: 10px;
  padding: 6px 19px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.f__home__o__link:hover {
  background: #0048ff;
  color: #fff;
}

.f__home__o__image {
  width: 296px;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .f__home__o__image {
    width: 396px;
  }
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 148px;
    padding-bottom: 70px;
  }

  .f__home__o__container {
    display: flex;
    align-items: center;
    padding: 0 72px;
  }

  .f__home__o__title {
    font-size: 50px;
  }

  .f__home__o__text {
    max-width: 571px;
    font-size: 24px;
    margin-bottom: 50px;
  }

  .f__home__o__image {
    width: auto;
    flex-shrink: 0;
    margin: 0;
    transform: translateX(72px);
  }

  .f__home__o__link {
    font-size: 20px;
    padding: 13px 60px;
  }

  .f__home__o__link-wrap {
    margin: 0;
    gap: 20px;
  }
}

/* why */

.f__why__o__list {
  width: 370px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  img {
    width: 20px;
    flex-shrink: 0;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    color: #000;
  }
}

@media screen and (min-width: 1437px) {
  .f__why__o__list {
    gap: 31px;
    width: 570px;

    li {
      gap: 50px;
      font-size: 24px;
    }

    img {
      width: 40px;
    }
  }
}

/* start */

.f__start__o__content {
  display: flex;
  align-items: center;
  gap: 19px;
}

.swiper-btn {
  width: 34px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.swiper-btn:hover {
  transform: scale(1.2);
}

.f__start__o__slide {
  border-radius: 10px;
  box-shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.14);
  background: #fff;

  h5 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
  }

  p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 11px;
    color: #848484;
  }

  h6 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 11px;
    color: #fff;
    padding: 4px 15px;
    border-radius: 10px;
    background: #0048ff;
    transition: background-color 0.3s ease;
  }

  h6:hover {
    background: #416fe3;
  }
}

.f__start__o__bottom {
  padding: 5px 8px;
}

.f__start__o__use {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f__start__o__list {
  display: none;
}

@media screen and (min-width: 1437px) {
  .f__start__o__list {
    display: flex;
    justify-content: center;
    align-items: normal;
    flex-wrap: wrap;
    gap: 30px 50px;
  }

  .f__start__o__bottom {
    min-height: 192px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .f__start__o__content {
    display: none;
  }

  .f__start__o__slide {
    width: calc((100% - 100px) / 3);

    h5 {
      font-size: 22px;
    }

    p {
      font-size: 16px;
    }

    span {
      font-size: 15px;
    }

    h6 {
      font-size: 17px;
    }
  }
}

/* tools */

.f__tools__o__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  a {
    transition: transform 0.3s ease;
  }

  a:hover {
    transform: scale(1.2);
  }
}

@media screen and (min-width: 1437px) {
  #tools {
    padding-bottom: 100px;
  }
  .f__tools__o__list {
    gap: 100px;
  }
}

/* results */

.f__results__o__list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  li {
    border-radius: 10px;
    box-shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.14);
    background: #fff;
  }

  img {
    width: 100%;
  }

  div {
    padding: 6px 54px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
  }

  span {
    display: block;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
  }
}

@media screen and (min-width: 768px) {
  .f__results__o__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    li {
      width: calc((100% - 10px) / 2);
    }
  }
}

@media screen and (min-width: 1437px) {
  .f__results__o__list {
    gap: 50px;

    li {
      width: calc((100% - 100px) / 3);
    }

    p {
      font-size: 22px;
    }

    span {
      font-size: 16px;
    }

    div {
      padding: 5px 34px;
    }
  }
}

/* plans */

.f__plans__o__content {
  display: flex;
  align-items: center;
  gap: 3px;
}

.f__plans__o__wrapper {
  padding-bottom: 20px;
}

.f__plans__o__slide {
  border-radius: 10px;
  box-shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.14);
  background: #fff;
  padding: 10px 15px;

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
  }

  span {
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
  }

  button {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    padding: 5px;
    display: block;
    width: 166px;
    margin: 0 auto;
    border-radius: 10px;
    background: #0048ff;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #557cdf;
  }
}

.plan-slide-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;

  img {
    width: 49px;
    flex-shrink: 0;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 17px;
    color: #000;
  }

  button {
    font-size: 20px;
    width: 236px;
  }
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;

  li {
    display: flex;
    align-items: center;
    gap: 20px;

    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    color: #000;
  }

  img {
    width: 29px;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1437px) {
  .plan-slide-title {
    img {
      width: 60px;
    }

    h5 {
      font-size: 22px;
    }
  }

  .f__plans__o__slide {
    p {
      font-size: 22px;
      margin-bottom: 20px;
    }

    sapn {
      font-size: 16px;
    }
  }

  .plan-list {
    gap: 5px;
    margin-bottom: 30px;

    li {
      font-size: 16px;
    }
  }
}

/* data */

@media screen and (min-width: 1437px) {
  .data-list {
    p {
      font-size: 20px;
    }
  }
}

/* contact  */

.help-wrapper {
  padding-bottom: 22px;
}

.help-slide {
  border-radius: 10px;
  box-shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.14);
  background: #fff;
  padding: 5px 10px;
  min-height: 308px;
  transition: background-color 0.3s ease;

  img {
    width: 60px;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #000;
    margin-bottom: 5px;
    transition: color 0.3s ease;
  }

  h6 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
  }

  li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    color: #000;
    transition: color 0.3s ease;
  }

  span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  a {
    display: block;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    color: #0048ff;
    text-align: center;
  }

  a:hover {
    text-decoration: underline;
  }

  button {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-align: center;

    display: block;
    border-radius: 10px;
    background: #0048ff;
    padding: 5px;
    width: 176px;
    margin: 0 auto;
    margin-top: 30px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
}

.help-slide:hover {
  background: #0048ff;

  h5,
  h6,
  p,
  a,
  span {
    color: #fff;
    border-color: #fff;
  }

  button {
    background-color: #fff;
    color: #0048ff;
  }
}

@media screen and (min-width: 1437px) {
  .help-slide {
    padding: 20px 10px;
    min-height: 390px;

    h5 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    h6 {
      font-size: 16px;
      margin-bottom: 30px;
    }

    p,
    span {
      font-size: 16px;
    }

    a {
      font-size: 20px;
    }

    button {
      font-size: 20px;
      padding: 6px;
      width: 236px;
    }
  }
}

/* footer */

.footer {
  padding: 18px 0;
}

.f__footer_o__list {
  display: flex;
  gap: 1px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #000;

  a {
    transition: color 0.3s ease;
  }

  a:hover {
    color: #0048ff;
  }
}

.f__footer_o__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}

.f__footer_o__mail {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: end;
  color: #000;
  display: block;
  transition: color 0.3s ease;
}

.f__footer_o__mail:hover {
  color: #0048ff;
}

@media screen and (min-width: 1437px) {
  .footer {
    padding: 28px 0;
  }

  .f__footer_o__list {
    flex-direction: row;
    gap: 5px;
    font-size: 24px;
    margin-bottom: 30px;
  }

  .f__footer_o__description {
    font-size: 24px;
    margin: 0;
  }

  .f__footer_o__mail {
    font-size: 24px;
  }

  .f__footer_o__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 30px 30px 0 0;
  background: #dbe6ff;
  padding: 26px 14px;
  transition: transform 0.5s ease;
}

.popup-img {
  position: absolute;
  width: 74px;
  top: 14px;
  left: 16px;
}

.popup-text {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #0048ff;
  margin-bottom: 25px;
  padding-left: 100px;
}

.popup-btn {
  border: 2px solid #0048ff;
  border-radius: 30px;
  padding: 8px;
  width: 267px;
  max-width: 100%;

  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #0048ff;
  text-transform: uppercase;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  color: #fff;
  background: #0048ff;
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.popup-click {
  transform: translateY(100%);
}

@media screen and (min-width: 1437px) {
  .popup {
    padding: 115px 91px;
  }
  .popup-img {
    width: auto;
  }

  .popup-container {
    display: flex;
    align-items: center;
    gap: 90px;
  }
  .popup-text {
    font-size: 34px;
    padding: 0;
    margin: 0;
  }

  .popup-btn {
    font-size: 24px;
  }

  .popup-wrap {
    gap: 50px;
  }
}
