* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.test {}

body {
  font-family: Arial, sans-serif;
  background: #222527;
  color: #fff;
  width: 100%;
}

.main-wrapper {
  /* min-width: 1440px; */
  /* max-width: 1440px; */
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  background: rgba(0, 0, 0, 0.9);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 0.25px solid rgba(255, 195, 11, 0.6);
  color: #fff;
  font-family: sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 66px;
  height: 60px;
}

.logo-text {
  color: #ffc30b;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  padding-left: 60px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 45px;
}

.nav-item {
  cursor: pointer;
  color: #aaa;
  font-weight: 800;
  font-size: 18px;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.3s;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-item:hover {
  color: #ffc30b;
}

.nav-item.active {
  color: #ffc30b;
}

/* burger menu  */

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: fixed;
  left: 30px;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffc30b;
  border-radius: 2px;
  transition: 0.3s;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

@media (max-width: 1330px) {
  .container {
    padding: 0 30px;
  }

  .nav-list {
    gap: 20px;
  }
}

@media (max-width: 1030px) {
  .burger {
    display: flex;
  }

  .container {
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border: 0.25px solid #ffc30b;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }
}

.wrapper-top {
  width: 100%;
  position: relative;
}

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

.top-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

@media (max-width: 1860px) {
  .phones {
    width: 600px;
    height: 750px;
  }
  .top-content {
    gap: 30px;
  }
}

@media (max-width: 1700px) {
  .phones {
    width: 700px;
    height: 850px;
  }
  .top-content {
    gap: 30px;
  }
}

.main-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 525px;
  min-width: 525px;
  gap: 15px;
  padding-top: 260px;
}

@media (max-width: 1200px) {
  .top-content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .main-info {
    padding-top: 0px;
  }
}

.text-scaner {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.text-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 195, 11, 1);
  font-size: 72px;
  font-weight: 800;
}

.text-phone {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.81px;
}

.text-descrition {
  color: rgba(255, 195, 11, 1);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}

.btn-try {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  background-color: rgba(255, 195, 11, 1);
  border: 0.42px solid #000;
  width: 335px;
  height: 56px;
  border-radius: 12px;
  font-size: 21px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-try:hover {
  background-color: rgb(31, 31, 31);
  color: rgba(255, 195, 11, 1);
  border: 0.42px solid rgba(255, 195, 11, 1);
}

.cloud-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.cloud-2 {
  position: absolute;
  top: -400px;
  right: 0;
  z-index: -1;
}

.wrapper-tariffs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.title-tariffs-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.title-tariffs {
  font-size: 96px;
  font-weight: 700;
}

.desc-tariffs {
  font-size: 22px;
  font-weight: 400;
  padding-top: 80px;
}

@media (max-width: 1500px) {
  .text-scaner {
    font-size: 46px;
  }
  .text-logo {
    font-size: 74px;
  }
  .text-phone {
    font-size: 52px;
  }
  .text-descrition {
    font-size: 34px;
  }
  .phones {
    width: 600px;
    height: 750px;
    margin-top: 100px;
  }
  .top-content {
    justify-content: center;
  }
}

@media (max-width: 670px) {
  .phones {
    width: 500px;
    height: 650px;
  }

  .main-info {
    min-width: 100%;
  }

  .text-scaner {
    font-size: 40px;
  }
  .text-logo {
    font-size: 50px;
  }
  .text-phone {
    font-size: 52px;
  }
  .text-descrition {
    font-size: 34px;
  }
  .btn-try {
    width: 500px;
    height: 70px;
    font-size: 30px;
    margin-bottom: 100px;
  }
}

@media (max-width: 560px) {
  .phones {
    width: 360px;
    height: 450px;
  }

  .main-info {
    min-width: 100%;
  }

  .text-scaner {
    font-size: 25px;
  }
  .text-logo {
    font-size: 30px;
  }
  .text-phone {
    font-size: 32px;
  }
  .text-descrition {
    font-size: 16px;
  }
  .btn-try {
    width: 350px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 100px;
  }
}

/* .. */

.tariffs {
  width: 100%;
  padding: 40px 20px;
  font-family: sans-serif;
}

.tariffs-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.tariff-card {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  min-width: 400px;
  max-height: 604px;
  min-height: 604px;
  padding: 30px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  text-align: start;
}

.tariff-header {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}

.tariff-header.green {
  color: rgba(54, 219, 46, 1);
  font-size: 32px;
  font-weight: 600;
}

.tariff-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
  width: 100%;
}

.tariff-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(41, 45, 48, 0.7);
  margin-bottom: 16px;
  line-height: 120%;
}

.tariff-price {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #000;
  width: 100%;
}

.tariff-price span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-weight: 400;
  padding-right: 8px;
}

.tariff-period {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: #000;
  margin-bottom: 16px;
  width: 100%;
}

.tariff-possibilities {
  color: #000;
  font-size: 20px;
  width: 100%;
}

.features {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.features img {
  margin-right: 10px;
}

.features li {
  margin-bottom: 8px;
  gap: 8px;
  color: #000;
  width: 100%;
}

.btn-start {
  display: inline-block;
  background-color: rgba(29, 31, 33, 1);
  color: rgba(250, 211, 0, 1);
  width: 340px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  border: 0.5px solid rgba(255, 195, 11, 0.3);
  font-size: 21px;
  font-weight: 600;
}

.btn-start:hover {
  background-color: #333;
}

@media (max-width: 1400px) {
  .title-tariffs-block {
    flex-direction: column;
  }

  .tariffs-container {
    flex-direction: column;
    padding: 0 200px;
  }
  .tariff-card {
    min-width: none;
    max-width: none;
    align-items: center;
    justify-content: center;
  }
  .tariff-header {
    font-size: 40px;
  }

  .desc-tariffs {
    padding-top: 50px;
  }
}

@media (max-width: 1200px) {
  .tariffs-container {
    padding: 0 180px;
  }
}

@media (max-width: 860px) {
  .tariffs-container {
    padding: 0;
  }
  .tariff-card {
    width: 460px;
  }
}

@media (max-width: 1080px) {
  .title-tariffs {
    margin-top: 100px;
  }
}

@media (max-width: 670px) {
  .title-tariffs {
    margin-top: 50px;
  }

  .tariffs-container {
    flex-direction: column;
    gap: 100px;
  }

  .title-tariffs-block {
    flex-direction: column;
  }

  .desc-tariffs {
    padding-top: 20px;
    font-size: 32px;
    text-align: center;
  }

  .tariff-card {
    min-width: 460px;

    max-height: 100%;
    padding: 40px;
  }

  .tariff-header.green {
    font-size: 42px;
  }

  .tariff-subtitle {
    font-size: 30px;
  }

  .tariff-desc {
    font-size: 25px;
  }

  .tariff-price {
    font-size: 48px;
  }

  .tariff-price span {
    font-size: 30px;
  }

  .tariff-period {
    font-size: 26px;
  }

  .tariff-possibilities {
    font-size: 30px;
  }
  .features li {
    font-size: 20px;
  }

  .btn-start {
    width: 350px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  .title-tariffs {
    margin-top: 30px;
  }

  .tariffs-container {
    gap: 60px;
  }

  .title-tariffs {
    font-size: 60px;
  }

  .tariff-card {
    min-width: 430px;
    max-width: 430px;
    max-height: 100%;
    padding: 30px;
  }

  .tariff-header.green {
    font-size: 32px;
  }

  .tariff-subtitle {
    font-size: 25px;
  }

  .tariff-desc {
    font-size: 20px;
  }

  .tariff-price {
    font-size: 38px;
  }

  .tariff-price span {
    font-size: 25px;
  }

  .tariff-period {
    font-size: 20px;
  }

  .tariff-possibilities {
    font-size: 25px;
    padding-bottom: 10px;
  }
  .features li {
    font-size: 18px;
  }

  .btn-start {
    width: 350px;
    height: 50px;
  }
}

@media (max-width: 488px) {
  .title-tariffs {
    margin-top: 30px;
  }

  .tariffs-container {
    gap: 60px;
  }

  .title-tariffs {
    font-size: 50px;
  }

  .desc-tariffs {
    font-size: 20px;
  }

  .tariff-card {
    min-width: 400px;
    max-width: 400px;
    max-height: 100%;
    padding: 30px;
  }
}

@media (max-width: 448px) {
  .title-tariffs {
    margin-top: 30px;
  }

  .tariffs-container {
    gap: 60px;
  }

  .title-tariffs {
    font-size: 50px;
  }

  .desc-tariffs {
    font-size: 20px;
  }

  .tariff-card {
    min-width: 360px;
    max-width: 360px;
    max-height: 100%;
    padding: 30px;
  }

  .btn-start {
    width: 300px;
    height: 50px;
  }
}

@media (max-width: 395px) {
  .title-tariffs {
    margin-top: 30px;
  }

  .tariffs-container {
    gap: 60px;
  }

  .title-tariffs {
    font-size: 50px;
  }

  .desc-tariffs {
    font-size: 20px;
  }

  .tariff-card {
    min-width: 340px;
    max-width: 340px;
    max-height: 100%;
    padding: 30px;
  }

  .btn-start {
    width: 300px;
    height: 50px;
  }
}

.wrapper-cases {
  width: 100%;
  position: relative;
  padding-top: 80px;
}

.cloud-3 {
  position: absolute;
  left: 0;
  top: -500px;
  z-index: -1;
}

.cloud-4 {
  position: absolute;
  left: 0;
  top: 350px;
  z-index: -1;
}

.cloud-5 {
  position: absolute;
  right: 0;
  top: 450px;
  z-index: -1;
}

.cloud-6 {
  position: absolute;
  left: 0;
  bottom: -600px;
  z-index: -1;
}

.fruct-1 {
  position: absolute;
  top: 0;
  left: 50%;
}

.fruct-2 {
  position: absolute;
  top: 100px;
  right: 104px;
}

.fruct-3 {
  position: absolute;
  top: 450px;
  left: 0;
}

.fruct-4 {
  position: absolute;
  top: 700px;
  left: 40%;
}

.fruct-5 {
  position: absolute;
  bottom: 800px;
  right: 50px;
}

.fruct-6 {
  position: absolute;
  bottom: 450px;
  right: 45%;
}

.fruct-7 {
  position: absolute;
  bottom: 450px;
  left: 40px;
}

.top-case {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.case-text-block {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.case-title {
  background: linear-gradient(90deg, #ffd700, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 54px;
  font-weight: 800;
  line-height: 75px;
}

.case-desc {
  font-size: 36px;
  font-weight: 600;
}

.middle-case {
  display: flex;
  align-items: flex-end;
  padding-top: 52px;
}

.footer-case {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 126px;
  position: relative;
}

.fruct-8 {
  position: absolute;
  top: 0px;
  left: 35%;
  z-index: -1;
}

.cloud-7 {
  position: absolute;
  right: 0;
  bottom: -500px;
  z-index: -1;
}

@media (max-width: 1400px) {
}

/* ////// FOOTER */

.footer-tariffs {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: linear-gradient(-180deg, #ffd700, #ff7a00);
  padding-bottom: 42px;
}

.footer-tariffs-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  padding-top: 70px;
}

.footer-tariffs-desc {
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  padding-bottom: 50px;
  padding-top: 30px;
}

/* /////FOOTER */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 60px 0;
  min-height: 182px;
  width: 100%;
  height: 100%;
}

.footer-left-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 52px;
  margin: 0;
}

.logo-footer span {
  font-size: 32px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}

.footer-title-info {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  width: 100%;
  text-align: start;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 20px;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #aaa;
}

.footer-info div {
  width: 100%;
  text-align: start;
}

.footer-info span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.nav-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 36px;
}

.nav-footer span {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-align: start;
  width: 100%;
  cursor: pointer;
}

.logo-footer-mobile {
  display: none;
}

@media (max-width: 1400px) {
  .top-case {
    flex-direction: column-reverse;
  }

  .case-text-block {
    max-width: 70%;
    text-align: center;
  }

  .case-1 {
    width: 700px;
    height: 1200px;
  }
  .case-title {
    font-size: 62px;
  }

  .case-desc {
    font-size: 36px;
  }

  .fruct-1 {
    display: none;
  }

  .fruct-2 {
    display: none;
  }

  .fruct-4 {
    display: none;
  }

  .fruct-5 {
    display: none;
  }

  .fruct-7 {
    display: none;
  }

  .middle-case {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .case-2 {
    width: 640px;
    height: 950px;
    margin-top: 100px;
  }

  .fruct-6 {
    display: none;
  }

  .footer-case {
    flex-direction: column-reverse;
  }

  .fruct-3 {
    display: none;
  }

  .fruct-8 {
    display: none;
  }

  .case-3 {
    margin-top: 100px;
  }

  .footer-tariffs-title {
    font-size: 58px;
  }

  .footer-tariffs-desc {
    font-size: 34px;
  }
}

@media (max-width: 1000px) {
  .case-text-block {
    max-width: 80%;
    text-align: center;
  }

  .case-1 {
    width: 500px;
    height: 800px;
  }

  .case-3 {
    width: 700px;
    height: 600px;
  }

  .case-title {
    font-size: 42px;
    line-height: 100%;
  }

  .case-desc {
    font-size: 36px;
  }

  .middle-case {
    margin-top: 50px;
  }

  .case-2 {
    width: 500px;
    height: 700px;
    margin-top: 100px;
  }

  .footer-case {
    flex-direction: column-reverse;
  }

  .case-3 {
    margin-top: 100px;
  }

  .footer-tariffs-title {
    font-size: 38px;
  }

  .footer-tariffs-desc {
    font-size: 28px;
  }

  .cloud-4 {
    display: none;
  }
}

@media (max-width: 780px) {
  .cloud-6 {
    display: none;
  }

  .case-3 {
    width: 570px;
    height: 600px;
  }
}

@media (max-width: 570px) {
  .case-text-block {
    max-width: 80%;
    text-align: center;
  }

  .case-1 {
    width: 400px;
    height: 600px;
  }

  .case-3 {
    width: 440px;
    height: 500px;
  }

  .case-title {
    font-size: 32px;
    line-height: 100%;
  }

  .case-desc {
    font-size: 26px;
  }

  .middle-case {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .case-2 {
    width: 400px;
    height: 600px;
    margin-top: 100px;
  }

  .footer-case {
    flex-direction: column-reverse;
  }

  .case-3 {
    margin-top: 100px;
  }

  .footer-tariffs-title {
    font-size: 28px;
  }

  .footer-tariffs-desc {
    font-size: 24px;
  }
}

@media (max-width: 580px) {
  .cloud-3 {
    display: none;
  }

  .case-2 {
    margin-top: 20px;
  }
}

@media (max-width: 440px) {
  .case-1 {
    width: 340px;
    height: 600px;
  }

  .case-2 {
    width: 340px;
    height: 600px;
  }

  .case-3 {
    width: 320px;
    height: 400px;
  }
}

@media (max-width: 1440px) {
  .footer-tariffs-title {
    text-align: center;
    width: 80%;
  }

  .footer-tariffs-desc {
    text-align: center;
    width: 80%;
  }
}

@media (max-width: 1000px) {
  .footer {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .footer-left-block {
    text-align: center;
  }

  .logo-footer-mobile {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  .logo-footer {
    display: none;
  }

  .logo-footer-mobile span {
    font-size: 30px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-title-info {
    font-size: 30px;
    text-align: center;
  }

  .footer-info {
    font-size: 20px;
  }

  .footer-info div {
    width: 100%;
    text-align: center;
  }

  .nav-footer {
    gap: 20px;
  }

  .nav-footer span {
    text-align: center;
    font-size: 20px;
  }
}

.payment-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding-top: 100px;
}

.success-message {
  font-size: 24px;
  font-weight: bold;
  color: #4caf50;
  background: rgba(0, 0, 0, 0.501);
  padding: 24px 48px;
  border-radius: 12px;
}

.fail-message {
  font-size: 24px;
  font-weight: bold;
  color: rgb(255, 48, 48);
  background: rgba(0, 0, 0, 0.501);
  padding: 24px 48px;
  border-radius: 12px;
}
