/* ### START BANNER ### */
.banner.container {
  padding: 0 !important;
}

.banner {
  background: linear-gradient(
    120deg,
    rgba(26, 54, 54, 1) 0%,
    rgba(96, 147, 93, 1) 70%,
    rgba(214, 255, 64, 1) 100%
  );
  width: 100%;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
}

.banner .text {
  width: 575px;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.banner h4 {
  font-size: 45px;
  /* background-color: var(--color-accent); */
  font-weight: 800;
  color: #323232;
  margin: 0;
  position: relative;
  z-index: 999;
}

.banner h4::before {
  content: "";
  position: absolute;
  background-color: var(--color-accent);
  /* width: 486px; */
  top: 5px;
  width: 97%;
  height: 73%;
  z-index: -1;
}

.banner h3 {
  font-size: 43px;
  font-weight: 800px;
  margin: 0;
  margin-top: 12px;
}

.banner p {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.banner .btn-container {
  display: flex;
  gap: 35px;
}

.banner .main-btn {
  padding: 15px 0px;
  color: var(--color-black);
  background-color: var(--color-accent);
  border-radius: 10px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  font-size: 20px;
  width: 270px;
}

.banner .secondary-btn {
  padding: 15px 0px;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  color: var(--color-white);
  text-decoration: none;
  background: none;
  font-size: 20px;
  font-weight: 400;
  width: 270px;
}

.banner img {
  width: 995px;
}

@media (max-width: 768px) {
  .banner .text {
    padding: 67px 40px;
    width: 100%;
  }

  .banner h4 {
    font-size: 32px;
    width: fit-content;
  }

  .banner h4::before {
    width: 105%;
  }

  .banner h3 {
    font-size: 32px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner img {
    display: none;
  }

  .banner .btn-container {
    width: 100%;
  }

  .banner .btn-container button {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .banner .text {
    padding: 47px 20px;
  }

  .banner h4 {
    font-size: 22px;
  }

  .banner h3 {
    font-size: 22px;
  }

  .banner .btn-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ### // END BANNER ### */

/* ### START TARIFF ### */

.tariff {
  margin-top: var(--margin-top);
  position: relative;
}

.tariff .tariff-header {
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: 500px;
}

.tariff-container {
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
  padding: 15px;
}

.tariff-card {
  border: 1px solid var(--color-white);
  box-shadow: 0px 0px 23.1px 0px #d6ff4066;
  border-radius: 15px;
  padding: 40px;
  flex: 0 0 100%;
  box-sizing: border-box;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tariff-card:nth-child(2) {
  transform: scale(1.03);
  box-shadow: 0px 0px 11.1px 0px #d6ff40, 0px 0px 39.7px 0px #d6ff4080 inset;
}

.tariff-card .card-header {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
}

.tariff-card .head-info {
  padding: 5px 28px 5px 8px;
  background-color: var(--color-accent);
  width: fit-content;
  color: var(--color-black-light);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.tariff-card ul {
  padding: 0px;
  list-style: none;
  margin: 0;
}

.tariff-card li {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 32px;
}

.tariff-card li img {
  width: 34px;
  margin-right: 25px;
  display: block;
}

.price {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.old-price {
  font-weight: 600;
  font-size: 24px;
  text-decoration: line-through;
  /* color: gray; */
  margin: 0;
}

.new-price {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 30px;
}

.price .days {
  font-size: 14px;
  font-weight: 600;
}

.tariff-card .btn {
  width: 100%;
  background: var(--color-white);
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  font-size: 20px;
  padding: 15px 45px;
}

.tariff-card:nth-child(2) .btn {
  background-color: var(--color-accent);
}

.arrow {
  width: 90px;
  height: 16px;
  position: absolute;
  top: 10px;
  font-size: 30px;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.arrow.left {
  left: 443px;
}

.arrow.right {
  right: 19px;
}

.progress-wrapper {
  width: 100%;
  height: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background-color: transparent;
  margin: 20px 0;
  overflow: hidden;
  display: none;
}

.progress-bar {
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 10px;
  transition: width 0.3s ease;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tariff-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .arrow {
    display: block;
  }

  .progress-wrapper {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .tariff-card {
    flex: 0 0 calc(33.333% - 13.33px);
    max-width: calc(33.333% - 13.33px);
  }

  .arrow {
    display: block;
  }

  .progress-wrapper {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .arrow {
    display: none !important;
  }

  .progress-wrapper {
    display: block;
  }
}

@media (max-width: 768px) {
  .tariff-card {
    padding: 30px 20px;
    gap: 30px;
  }

  .tariff-card:nth-child(2) {
    order: -1;
  }

  .tariff-card .card-header {
    font-size: 20px;
  }

  .tariff-card .head-info {
    font-size: 12px;
  }

  .tariff-card li {
    font-size: 16px;
  }

  .tariff-card li img {
    width: 30px;
  }

  .old-price {
    font-size: 22px;
  }

  .price .days {
    font-size: 12px;
  }
}

/* ### // END TARIFF ### */

/* ### START CONNECT ###  */

.connect {
  margin-top: var(--margin-top);
}

.connect .connect-header {
  font-size: 35px;
  font-weight: 500;
}

.connect .connect-cards {
  display: flex;
  gap: 20px;
}

.connect .card-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 36px;
}

.connect .card {
  max-width: 520px;
  padding: 26px 30px;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
}

.card p {
  font-size: 18px;
}

.card-header img {
  width: 66px;
}

.card-header p {
  font-size: 25px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .connect .connect-header {
    font-size: 22px;
    line-height: 32px;
  }

  .connect .connect-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .connect .card {
    width: 100%;
    max-width: 100%;
  }

  .card-header p {
    font-size: 22px;
  }

  .card p {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .card-header img {
    display: none;
  }
}

/* ### END CONNECT ### */

/* ### STRAT ADVANTAGES ### */

.advant {
  margin-top: var(--margin-top);
}

.advant-header {
  font-size: 35px;
  font-weight: 500;
}

.advant-cards {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advant-cards-top {
  display: flex;
  gap: 10px;
}

.advant-cards-bottom {
  display: flex;
  gap: 10px;
}

.ad-card {
  width: 100%;
  padding: 16px 30px;
  background-color: var(--color-black-light);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ad-card .ad-text {
  display: flex;
  gap: 41px;
}

.ad-card .ad-text p {
  font-size: 22px;
  font-size: 500;
}

@media (max-width: 768px) {
  .advant-cards-top {
    flex-wrap: wrap;
  }

  .advant-cards-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .ad-card .ad-text img {
    width: 46px;
  }

  .ad-card .ad-text p {
    font-size: 16px;
  }
}

/* ### // END ADVANTAGES ### */

/* ### START FAQ ### */

.faq-container {
  margin-top: var(--margin-top);
}

.faq-container .faq-header {
  font-size: 36px;
  font-weight: 500;
}

.faq {
  border-bottom: 1px white solid;
  margin-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.faq .faq-q {
  font-size: 24px;
  font-weight: 500;
}

.faq .icon {
  font-size: 30px;
  padding: 0 10px;
  margin: 0;
  border: 1px white solid;
  border-radius: 50%;
}

.faq .icon:hover {
  cursor: pointer;
}

.minus-icon {
  display: none;
}

.faq-answer {
  display: none;
}

.faq-answer p {
  font-size: 22px;
  font-weight: 400;
}

/* to  open when click */
.faq.open .minus-icon {
  display: block;
}
.faq.open .plus-icon {
  display: none;
}
.faq.open .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .faq-container .faq-header {
    font-size: 32px;
  }

  .faq .faq-q {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .faq-container .faq-header {
    font-size: 22px;
  }

  .faq .faq-q {
    font-size: 20px;
  }

  .faq .icon {
    font-size: 20px;
    padding: 0 7px;
  }
}

/* ### // END FAQ ### */

/* ### START DEVICES ### */

.devices {
  margin-top: var(--margin-top);
}

.devices-header {
  font-size: 35px;
  font-weight: 500;
}

.devices .description {
  font-size: 22px;
  font-weight: 400;
  /* line-height: 32px; */
  padding: 0;
  margin: 0;
}

.devices .des-container {
  width: 20vw;
  height: 20vw;
  max-width: 385px;
  max-height: 385px;
  display: flex;
  align-items: flex-end;
}

.devices .description.for-mobile {
  display: none;
}

.con-devices {
}
.devices .circles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.circles .circle {
  width: 20vw; /* Размер круга зависит от ширины экрана */
  height: 20vw;
  max-width: 385px;
  max-height: 385px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: var(--color-accent) 1px solid;
  transition: width 0.3s ease, height 0.3s ease;
}

.circle img {
  height: auto;
}

@media (max-width: 1440px) {
  .devices .description {
    font-weight: 400;
    font-size: 14px;
  }

  .circle img {
    width: 35%;
  }

  .devices .des-container {
    width: 23%;
  }
}

@media (max-width: 768px) {
  .devices-header {
    font-size: 32px;
  }
  .devices .des-container {
    display: none;
  }

  .devices .description.for-mobile {
    display: block;
  }

  .circle.none {
    display: none;
  }

  .circle img {
    width: 50%;
  }

  .circles .circle {
    width: 96px;
    height: 96px;
  }

  .devices .circles {
    margin-top: 30px;
    gap: 30px;
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .devices-header {
    font-size: 22px;
  }

  .devices .description {
    line-height: 32px;
  }

  .devices .circles {
    margin-top: 24px;
    gap: 21px;
  }

  .circles .circle {
    width: 48px;
    height: 48px;
  }
}

/* ### // END DEVICES ### */

/* ### START CONNECT FORM ### */

.connect-form {
  position: relative;
  margin-top: var(--margin-top);
  background-color: var(--color-black-light);
  display: flex;
  justify-content: flex-end;
  padding: 50px 100px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: var(--margin-top);
}

.connect-form .bg {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  left: 0;
  top: 0;
  z-index: 1;
}

.form-container {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  width: 100%;
  max-width: 655px;
  z-index: 9999;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  color: black;
  text-align: center;
}

.form-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: black;
  text-align: center;
  letter-spacing: 0%;
  margin-bottom: 32px;
  line-height: 100%;
}

.form-subtitle a {
  color: #007bff;
  text-decoration: none;
}

.form-subtitle a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  background-color: #d9d9d9;
  font-size: 16px;
  color: black;
  transition: background-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  background-color: #dee2e6;
}

.form-input::placeholder {
  color: black;
}

.form-select {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  background-color: #d9d9d9;
  font-size: 16px;
  color: black;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
  transition: background-color 0.2s ease;
}

.form-select:focus {
  outline: none;
  background-color: #d9d9d9;
}

.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  background-color: #d9d9d9;
  font-size: 16px;
  color: black;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  background-color: #d9d9d9;
}

.form-textarea::placeholder {
  color: black;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: black;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 229, 56, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #007bff;
}

.checkbox-label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.checkbox-label a {
  color: #666;
  /* text-decoration: none; */
}

.checkbox-label a:hover {
  text-decoration: underline;
}



@media (max-width: 768px) {
  .connect-form {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
  }
  .connect-form .bg {
    display: none;
  }

  .form-container {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .connect-form {
    max-width: 95%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .form-container {

    padding: 20px;
  }

  .form-title {
    font-size: 22px;
  }

  .form-input,
  .form-select,
  .form-textarea,
  .submit-btn {
    padding: 14px 10px;
    font-size: 16px;
  }
}

/* ### // END CONNECT FORM ### */
