@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&family=Unbounded:wght@200..900&display=swap");
* {
  font-family: "Mulish", sans-serif;
}

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

section {
  position: relative;
  border-radius: 80px;
  overflow: hidden;
  margin-bottom: 24px;
}

body {
  background: #f1f4fc;
  overflow-x: clip;
}

html, body {
  scroll-behavior: smooth;
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar, body ::-webkit-scrollbar {
  width: 10px;
}
html ::-webkit-scrollbar-track, body ::-webkit-scrollbar-track {
  background: #f2f3f7;
}
html ::-webkit-scrollbar-thumb, body ::-webkit-scrollbar-thumb {
  background-color: #2848D3;
  border-radius: 20px;
}

.pp {
  background: #fff;
  padding: 48px;
}
.pp h1 {
  font-size: 56px;
  text-align: left;
  margin-bottom: 20px;
}
.pp h2 {
  font-size: 32px;
  text-align: left;
}
.pp .p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
}
.pp .p p {
  margin: 0;
}
.pp .p span {
  display: block;
  color: #4772ff;
  font-weight: 700;
  margin-top: 3px;
  font-size: 20px;
}
.pp .p-li {
  font-size: 20px;
  margin: 20px 0;
}
.pp .table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #4772ff;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
}
.pp .table .el {
  padding: 20px;
  border: 1px solid #4772ff;
}

.popup-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(3px);
  background: rgba(26, 36, 45, 0.6);
  z-index: 1002;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.popup-wrapper.show {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}

.popup-container {
  position: relative;
  max-width: 600px;
}
.popup-container h2 {
  font-size: 26px;
  margin: 0;
}
.popup-container p {
  font-size: 16px;
}

.close-popup {
  position: absolute;
  right: -48px;
  top: -48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
}

.form-popup {
  padding: 48px;
  box-sizing: border-box;
  border-radius: 40px;
  background: #e8ecf8;
}
.form-popup p {
  text-align: center;
  margin: 12px 0 16px 0;
}

.ref-popup {
  padding: 48px;
  box-sizing: border-box;
  border-radius: 40px;
  background: #e8ecf8;
}
.ref-popup h2 {
  text-align: left;
}
.ref-popup ul {
  margin: 32px 0 40px 0;
}

.ref-link {
  height: 56px;
  width: 100%;
  background: #fff;
  padding: 16px 24px;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #e9ecf8;
  border-radius: 20px;
  margin-bottom: 32px;
}

.ref-popup-success {
  padding: 48px;
  box-sizing: border-box;
  border-radius: 40px;
  background: #e8ecf8;
}
.ref-popup-success .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 245px;
  margin: auto;
}
.ref-popup-success h2 {
  text-align: left;
}

.form-popup-success {
  padding: 48px;
  box-sizing: border-box;
  border-radius: 40px;
  background: #e8ecf8;
}
.form-popup-success p {
  text-align: center;
}
.form-popup-success .icon {
  text-align: center;
  margin-bottom: 24px;
}

.header {
  max-width: 1680px;
  width: 100%;
  height: 56px;
  margin: 28px auto;
  display: flex;
  justify-content: space-between;
}

nav {
  display: flex;
  gap: 32px;
}
nav a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}
nav a:hover {
  color: #2848D3;
  font-weight: 700;
}

.buttons-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.btn svg {
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: #000;
  color: #fff;
}
.btn:hover svg {
  filter: invert(1);
}
.btn.ref {
  position: relative;
}

.abs {
  position: absolute;
  top: -15px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  background: #ff5a00;
  border-radius: 8px;
  height: 28px;
  padding: 0 8px;
}

.btn.sc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
}

.burger, .mobile {
  display: none;
}

.screen1 {
  background: #e3e7f6 linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 144px 0 64px 96px;
  position: relative;
}

.blue-side {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(176deg, rgba(107, 139, 245, 0.6) 0%, #1439ba 100%);
  max-width: 668px;
  height: 100%;
  width: 100%;
}

.cards-image {
  position: absolute;
  right: 0;
}

.circle-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.circle-icons svg {
  border-radius: 50%;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  margin: 0;
  line-height: 114%;
}

p {
  margin: 32px 0;
  font-size: 20px;
  line-height: 140%;
}

.btn.blue {
  background: #2848D3;
  border-color: #2848D3;
  color: #fff;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.btn.blue:hover {
  opacity: 0.85;
}

.features {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 147px;
}

.feature {
  padding: 22px 20px;
  box-sizing: border-box;
  max-width: 334px;
  width: 100%;
  height: 111px;
  border-radius: 32px;
  backdrop-filter: blur(230px);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.3) linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.feature-icon {
  margin-bottom: 8px;
}

.feature-title {
  font-size: 20px;
  font-weight: 500;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 4px 14px 3px rgba(255, 255, 255, 0.25), -20px 94px 144px 0 rgba(155, 168, 186, 0.16);
}

.s1bt {
  width: 464px;
  height: 464px;
  top: -330px;
  left: -50px;
}

.s1bb {
  width: 302px;
  height: 302px;
  bottom: -230px;
  right: 200px;
}

h2 {
  position: relative;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  color: #1c1c1c;
  margin: 0;
  z-index: 2;
}

.screen2 {
  background: #e3e7f6 linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 96px 0;
}

.screen2-grid {
  max-width: 1396px;
  width: 100%;
  margin: 40px auto auto auto;
}
.screen2-grid .col:last-child {
  margin-top: 20px;
}
.screen2-grid .col {
  display: flex;
  gap: 20px;
}
.screen2-grid .col2 {
  display: flex;
  flex-direction: column;
}
.screen2-grid .row {
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.3) linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 32px 24px;
}
.screen2-grid .grid-icons {
  display: flex;
  gap: 12px;
}
.screen2-grid .grid-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  margin: 16px 0 12px 0;
}
.screen2-grid .grid-p {
  font-size: 20px;
  line-height: 140%;
}

.s2btb {
  width: 302px;
  height: 302px;
  top: -140px;
  left: 125px;
}

.s2bts {
  width: 135px;
  height: 135px;
  left: 50px;
  top: 150px;
}

.s2bb {
  width: 173px;
  height: 173px;
  right: 100px;
  bottom: -80px;
}

.screen3 {
  background: #fff;
  padding: 96px;
}
.screen3 .btn {
  box-sizing: border-box;
  max-width: 216px;
  width: 100%;
  margin: auto auto 0 auto;
}

.tariffs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
  max-width: 546px;
  width: 100%;
  border: 1px solid #e9ecf8;
  border-radius: 32px;
  padding: 32px 24px;
  height: 746px;
  background: #f0f2fa;
  box-sizing: border-box;
}

.card-place {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: none;
  position: relative;
  height: 246px;
  background: #fff url("../img/card-pattern.png") no-repeat center/contain;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  margin-bottom: 32px;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
}
.card-title .icon svg {
  border-radius: 50%;
  margin-bottom: -5px;
  margin-left: 6px;
}

.currency-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

.currency {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(176deg, rgba(107, 139, 245, 0.3) 0%, rgba(55, 84, 245, 0.3) 100%);
  font-size: 14px;
  text-transform: uppercase;
}

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

.price {
  font-size: 32px;
  font-weight: 800;
  color: #2848D3;
}

.visa-icon {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
}

.out-bar {
  position: absolute;
  top: -12px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 2px 8px;
  height: 28px;
  box-sizing: border-box;
  font-size: 14px;
  color: #fff;
}

.tab.orange {
  background: #ff5a00;
}

.tab.blue {
  background: #4772ff;
}

.tab.green {
  background: #50b32c;
}

.tab.purple {
  background: #5501e6;
}

ul {
  position: relative;
  margin: 0;
}
ul li {
  list-style-type: none;
  margin-bottom: 12px;
  height: 24px;
}
ul li:before {
  position: absolute;
  left: 0;
  content: "";
  background: url("../img/icons/check.webp") no-repeat center/cover;
  width: 20px;
  height: 18px;
}

.screen4 {
  background: #151515;
  padding: 64px 96px;
}
.screen4 h2 {
  color: #fff;
  text-align: left;
  margin: 24px 0 48px 0;
}

.t-bottom {
  display: flex;
  justify-content: space-between;
}

.t-features {
  display: flex;
  align-items: center;
  gap: 40px;
}

.t-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: #fff;
}

.t-price {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
}
.t-price br {
  display: none;
}
.t-price .s1 {
  font-size: 24px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
}
.t-price .s2 {
  font-size: 20px;
  font-weight: 400;
}

.box {
  position: absolute;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 4px 14px 3px rgba(255, 255, 255, 0.25), -20px 94px 144px 0 rgba(155, 168, 186, 0.16);
}

.s4bt {
  width: 428px;
  height: 259px;
  transform: rotate(-49deg);
  top: -200px;
  right: 200px;
}

.s4bb {
  width: 180px;
  height: 180px;
  transform: rotate(-49deg);
  left: -80px;
  bottom: -80px;
}

.screen5 {
  background: #fff;
  padding: 96px;
}

.card-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.f-card {
  background: #f0f2fa;
  border-radius: 32px;
  border: 1px solid #e9ecf8;
  padding: 32px;
  box-sizing: border-box;
  max-width: 830px;
  width: 100%;
  height: 292px;
}
.f-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(40, 72, 211, 0.1);
}

.f-card-title {
  margin: 32px 0 24px 0;
  font-size: 32px;
  font-weight: 700;
}

.screen6 {
  background: #e3e7f6 url("../img/screen6-bg.png") repeat center/cover;
  background-attachment: fixed;
  padding: 96px 379px;
  transition: 0.3s ease-in-out;
}

.accordion-wrapper {
  margin-top: 40px;
  transition: 0.3s ease-in-out;
}

.accordion {
  margin-bottom: 16px;
  transition: 0.3s ease-in-out;
}

.accordion-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-radius: 32px;
  border: 1px solid #e9ecf8;
  background: #fff;
  font-weight: 700;
  font-size: 24px;
  padding: 24px 32px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.accordion-header svg {
  transition: 0.3s ease-in-out;
}
.accordion-header svg path {
  transition: 0.3s ease-in-out;
}

.accordion-header.active {
  border-radius: 32px 32px 0 0;
  background: #2848D3;
  color: #fff;
  border-color: #2848D3;
}
.accordion-header.active svg {
  transform: rotate(45deg);
}
.accordion-header.active svg path {
  stroke: #fff;
}

.accordion-body {
  background: #2848D3;
  border-radius: 0 0 32px 32px;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  max-height: 0;
  height: 0;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transform: translateY(-50px);
}

.accordion-body.open {
  max-height: 300px;
  height: 100%;
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
  padding: 0 32px 24px 32px;
  transform: translateY(0);
}

.screen7 {
  background: #fff;
  padding: 96px;
  position: relative;
}
.screen7 h2 {
  margin-bottom: 32px;
}
.screen7 .btn {
  max-width: 160px;
  justify-content: center;
  margin: 40px auto auto auto;
}

.article-card {
  max-width: 546px;
  box-sizing: border-box;
  width: 100%;
}
.article-card * {
  text-decoration: none;
}

.article-card-image {
  position: relative;
  height: 280px;
  margin-bottom: -25px;
  z-index: 1;
}

.article-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f0f2fa;
  padding: 32px;
  height: 322px;
  box-sizing: border-box;
  border-radius: 32px;
  z-index: 2;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.article-card-body:hover .article-card-title {
  color: #2848D3;
}

.article-card-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  transition: 0.3s ease-in-out;
  color: #000;
}

.article-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.article-card-bottom .views {
  display: flex;
  align-items: center;
  gap: 6px;
}

.next-btn, .prev-btn {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #000;
  border-radius: 24px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
}
.next-btn svg, .prev-btn svg {
  transition: 0.3s ease-in-out;
}
.next-btn:hover, .prev-btn:hover {
  background: #000;
}
.next-btn:hover svg, .prev-btn:hover svg {
  filter: invert(1);
}

.next-btn {
  right: 20px;
}

.prev-btn {
  left: 20px;
  transform: rotate(180deg);
}

.prev-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.prev-btn.swiper-button-disabled:hover {
  background: #fff;
}
.prev-btn.swiper-button-disabled:hover svg {
  filter: invert(0);
}

.next-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.next-btn.swiper-button-disabled:hover {
  background: #fff;
}
.next-btn.swiper-button-disabled:hover svg {
  filter: invert(0);
}

.screen8 {
  position: relative;
  background: #e3e7f6 linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 96px 379px 96px 0;
  height: 864px;
  box-sizing: border-box;
}

.contact-form {
  max-width: 550px;
  width: 100%;
  margin-left: auto;
}
.contact-form p {
  text-align: center;
  margin: 24px 0 40px 0;
}

.blue-form-side {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 649px;
  width: 100%;
  height: 100%;
  background: linear-gradient(176deg, rgba(107, 139, 245, 0.6) 0%, #1439ba 100%);
}
.blue-form-side .cards-image {
  right: unset;
  left: 0;
}

.s8bt {
  top: -120px;
  left: 400px;
  width: 180px;
  height: 180px;
  transform: rotate(-49deg);
  z-index: 1;
}

.s8but {
  top: -200px;
  right: 90px;
  width: 329px;
  height: 329px;
}

.s8bb {
  bottom: -100px;
  left: 800px;
  width: 180px;
  height: 180px;
  transform: rotate(-49deg);
}

form {
  width: 100%;
  box-sizing: border-box;
}
form button {
  margin: 32px auto auto auto;
}

.input-wrapper {
  position: relative;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}

.input-wrapper.error:before {
  position: absolute;
  z-index: 3;
  content: "Поле заполнено некорректно";
  background: #fff;
  font-size: 12px;
  color: #F50F0F;
  left: 20px;
  top: -5px;
  border-radius: 5px;
}
.input-wrapper.error input {
  border: 1px solid #F50F0F;
  outline-color: #F50F0F;
}

.select {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.select-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  width: 100%;
  border: 1px solid #e9ecf8;
  background: #fff;
  border-radius: 20px;
  height: 56px;
  box-sizing: border-box;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.select-header svg {
  transition: 0.3s ease-in-out;
}

.select-header[aria-expanded=true] svg {
  transform: rotate(-180deg);
}

.select-list {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  right: 0;
  height: fit-content;
  box-sizing: border-box;
  width: 100%;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 16px 24px;
  margin: 3px 0 0;
  border: 1px solid #e9ecf8;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.select-list[hidden] {
  display: none;
}

.select-option {
  cursor: pointer;
  margin-bottom: 16px;
}
.select-option:last-child {
  margin-bottom: 0;
}
.select-option:hover {
  color: #2848D3;
  font-weight: 700;
}

.select.is-open .select-list {
  animation: dropdown-in 0.18s ease-out both;
}

.select:not(.is-open) .select-list {
  animation: dropdown-out 0.14s ease-in both;
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dropdown-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}
input {
  width: 100%;
  box-sizing: border-box;
  height: 56px;
  border: 1px solid #e9ecf8;
  border-radius: 20px;
  padding-left: 24px;
  outline-color: #4772ff;
  transition: 0.3s ease-in-out;
}
input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.pp-accept {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pp-accept p {
  margin: 0;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.pp-accept a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  transition: 0.3s ease-in-out;
}
.pp-accept a:hover {
  color: #2848D3;
  font-weight: 700;
}

.cb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #e9ecf8;
  border-radius: 8px;
  background: #fff;
  flex: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.cb svg path {
  stroke: #fff;
  transition: 0.3s ease-in-out;
}

.cb.active {
  border-color: #2848D3;
}
.cb.active svg path {
  stroke: #2848D3;
}

footer {
  margin-bottom: 24px;
}

.footer-container {
  background: #151515;
  padding: 96px;
  border-radius: 80px;
  overflow: hidden;
  max-width: 1872px;
  margin: auto;
  box-sizing: border-box;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
  padding-bottom: 64px;
}
.footer-top nav {
  flex-direction: column;
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.socials .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #fff;
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  padding: 0;
  transition: 0.3s ease-in-out;
}
.socials .btn svg {
  filter: invert(1);
  transition: 0.3s ease-in-out;
}
.socials .btn:hover {
  background: #fff;
}
.socials .btn:hover svg {
  filter: invert(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.copyright {
  width: 50%;
}

.req {
  width: 50%;
}
.req .top {
  display: flex;
  align-items: center;
  gap: 48px;
}
.req .top a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease-in-out;
}
.req .top a:hover {
  color: rgb(255, 255, 255);
}
.req .bot {
  margin-top: 32px;
}

.medium, .blue-side-m, .mobile-menu {
  display: none;
}

.articles {
  max-width: 1872px;
  margin: 24px auto;
  background: #fff;
  border-radius: 80px;
  padding: 96px;
  box-sizing: border-box;
}
.articles h1 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 56px;
}

.articles-grid {
  max-width: 1687px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

article {
  max-width: 1872px;
  margin: 24px auto;
  background: #fff;
  border-radius: 80px;
  padding: 96px;
  box-sizing: border-box;
}
article ul li {
  margin-bottom: 24px;
}
article h1 {
  font-size: 56px;
  margin: 32px 0 64px 0;
}
article h2 {
  font-size: 32px;
  text-align: left;
  margin: 32px 0;
}

.article-image {
  width: 100%;
  height: 524px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 64px;
  border-radius: 80px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
}

.article-header, .article-body {
  max-width: 1113px;
  margin: auto;
}

.article-info {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 1780px) {
  .container {
    margin: 0 8px;
  }
  .article-image {
    height: 350px;
  }
  .articles, article {
    max-width: 1392px;
    padding: 48px;
  }
  .articles-grid {
    max-width: fit-content;
  }
  .main-container {
    max-width: 1392px;
  }
  .header {
    max-width: 1312px;
  }
  .screen1 {
    padding: 144px 0 64px 40px;
  }
  .blue-side {
    max-width: 464px;
  }
  .cards-image {
    top: 100px;
    right: -60px;
  }
  .cards-image img {
    max-width: 805px;
  }
  h1 {
    font-size: 64px;
    line-height: 112%;
  }
  .features {
    margin-top: 177px;
  }
  .feature {
    max-width: 264px;
  }
  .s1bt {
    width: 313px;
    height: 313px;
    top: -200px;
    left: -20px;
  }
  .s1bb {
    bottom: -230px;
    right: 100px;
  }
  h2 {
    font-size: 48px;
    line-height: 117%;
  }
  .screen2 {
    padding: 72px 40px;
  }
  .screen2-grid {
    max-width: 1312px;
  }
  .s2btb {
    top: -200px;
  }
  .s2bts {
    top: 80px;
  }
  .s2bb {
    right: 0;
    bottom: -120px;
  }
  .screen3 {
    padding: 72px 40px;
  }
  .tariffs {
    padding-bottom: 20px;
  }
  .tariff-card {
    max-width: 424px;
    padding: 24px 15px;
    height: 700px;
  }
  .card-place {
    padding: 20px 16px;
    height: 246px;
  }
  .screen4 {
    padding: 64px 40px;
  }
  .t-features {
    gap: 32px;
  }
  .t-price {
    font-size: 48px;
    line-height: 70%;
  }
  .t-price br {
    display: block;
  }
  .s4bt {
    width: 187px;
    height: 308px;
    transform: rotate(49deg);
    top: -180px;
    right: 200px;
  }
  .s4bb {
    width: 105px;
    height: 105px;
    left: -20px;
    bottom: -50px;
    border-radius: 20px;
  }
  .screen5 {
    padding: 72px 40px;
  }
  .f-card {
    max-width: 646px;
    height: 316px;
    box-sizing: border-box;
  }
  .f-card ul li {
    height: 48px;
  }
  .f-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(40, 72, 211, 0.1);
  }
  .screen6 {
    padding: 72px 152px;
  }
  .screen7 {
    padding: 72px 40px;
  }
  .article-card {
    max-width: 424px;
  }
  .article-card-image {
    height: fit-content;
  }
  .article-card-image img {
    width: 100%;
  }
  .article-card-body {
    padding: 24px;
    height: 256px;
  }
  .article-card-title {
    font-size: 24px;
    line-height: 133%;
  }
  .prev-btn, .next-btn {
    position: static;
  }
  .control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
  }
  .screen8 {
    padding: 72px 151px 80px 0;
    height: 816px;
  }
  .contact-form {
    max-width: 535px;
  }
  .blue-form-side {
    max-width: 464px;
  }
  .blue-form-side .cards-image {
    left: -50px;
    top: 10px;
  }
  .s8bt {
    top: -140px;
    left: 240px;
    border-radius: 50px;
  }
  .s8but {
    display: none;
  }
  .s8bb {
    bottom: -70px;
    left: 150px;
    width: 128px;
    height: 128px;
  }
  .footer-container {
    padding: 72px 40px;
    max-width: 1392px;
  }
  .footer-top {
    padding-bottom: 40px;
  }
  .footer-bottom {
    padding-top: 24px;
  }
  .copyright {
    width: 50%;
  }
  .req {
    width: 50%;
  }
  .req .top {
    gap: 32px;
  }
}
@media screen and (max-width: 1380px) {
  .pp {
    padding: 32px;
  }
  .pp h1 {
    font-size: 42px;
  }
  .pp h2 {
    font-size: 26px;
  }
  .pp .p span {
    font-size: 16px;
  }
  .pp .p-li {
    font-size: 16px;
  }
  .articles, article {
    max-width: 976px;
  }
  .articles h1, article h1 {
    font-size: 32px;
  }
  article h2 {
    font-size: 24px;
  }
  .article-image {
    height: 250px;
    border-radius: 40px;
  }
  .header {
    max-width: 928px;
  }
  .header .logo {
    position: relative;
    z-index: 1001;
    max-width: 157px;
  }
  .header .logo img {
    width: 100%;
  }
  .header nav {
    display: none;
  }
  .burger {
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .burger span {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #000;
    transition: 0.3s ease-in-out;
  }
  .burger.is-active span:nth-child(1) {
    transform-origin: left;
    transform: rotate(42deg) translateY(-4px);
  }
  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .burger.is-active span:nth-child(3) {
    transform-origin: left;
    transform: rotate(-42deg) translateY(4px);
  }
  .no-scroll {
    overflow: hidden;
  }
  .btn.sc {
    height: 48px;
    width: 48px;
  }
  .btn {
    height: 48px;
    box-sizing: border-box;
  }
  section {
    border-radius: 60px;
  }
  .main-container {
    max-width: 976px;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    z-index: 1000;
    box-sizing: border-box;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transform: translateY(-100%);
    transition: 0.3s ease-in-out;
    padding: 24px 48px 48px 48px;
  }
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 120px;
  }
  .mobile-menu nav a {
    font-size: 32px;
    font-weight: 800;
  }
  .mobile-menu .buttons-bar {
    margin-top: auto;
  }
  .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu.open {
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
    transform: translateY(0);
  }
  .screen1 {
    padding: 64px 0 40px 24px;
  }
  .screen1 .buttons-bar {
    max-width: 500px;
    flex-wrap: wrap;
  }
  .blue-side {
    max-width: 320px;
  }
  .cards-image {
    top: 0;
    right: -60;
  }
  .cards-image img {
    max-width: 600px;
  }
  h1 {
    font-size: 48px;
    line-height: 117%;
  }
  p {
    margin: 24px 0;
    font-size: 16px;
  }
  .features {
    margin-top: 72px;
    gap: 16px;
  }
  .feature {
    position: relative;
    z-index: 2;
    max-width: 217px;
    height: 104px;
    padding: 20px 16px;
  }
  .full {
    display: none;
  }
  .medium {
    display: block;
  }
  .feature-title {
    font-size: 16px;
    line-height: 150%;
  }
  .feature-icon {
    width: 26px;
    height: 26px;
  }
  .feature-icon svg {
    width: 100%;
  }
  .s1bt {
    width: 194px;
    height: 194px;
    top: -140px;
    left: 20px;
  }
  .s1bb {
    width: 206px;
    height: 206px;
    bottom: -160px;
    right: 60px;
  }
  h2 {
    font-size: 32px;
    line-height: 125%;
  }
  .screen2 {
    padding: 56px 24px;
  }
  .screen2-grid {
    max-width: 929px;
    margin-top: 32px;
  }
  .screen2-grid .row {
    padding: 20px 16px;
  }
  .screen2-grid .grid-title {
    font-size: 20px;
    line-height: 140%;
  }
  .screen2-grid .grid-p {
    font-size: 16px;
    line-height: 150%;
  }
  .vertical-card {
    position: relative;
    z-index: 2;
  }
  .vertical-card img {
    height: 550px;
  }
  .s2bb {
    display: none;
  }
  .card-title {
    font-size: 24px;
  }
  .price {
    font-size: 24px;
  }
  .visa-icon svg {
    max-width: 72px;
  }
  ul li {
    height: auto;
  }
  .tariffs {
    width: 900px;
    overflow-x: scroll;
  }
  .tariff-card {
    flex: none;
  }
  .screen4 {
    padding: 64px 24px;
  }
  .screen4 h2 {
    margin: 24px 0 40px 0;
  }
  .t-features {
    flex-wrap: wrap;
  }
  .t-feature {
    font-size: 16px;
  }
  .t-price {
    flex: none;
    font-size: 32px;
    line-height: 125%;
  }
  .t-price .s1 {
    font-size: 16px;
  }
  .t-price .s2 {
    font-size: 16px;
  }
  .t-price br {
    display: none;
  }
  .s4bt {
    width: 143px;
    height: 236px;
    transform: rotate(49deg);
    top: -180px;
    right: 130px;
  }
  .s4bb {
    left: 30px;
    bottom: -75px;
    border-radius: 20px;
  }
  .screen5 {
    padding: 56px 24px;
  }
  .card-grid {
    margin-top: 32px;
  }
  .f-card {
    padding: 24px;
    max-width: 454px;
    height: 300px;
  }
  .f-card ul li {
    height: auto;
  }
  .f-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(40, 72, 211, 0.1);
  }
  .f-card-title {
    font-size: 24px;
  }
  .accordion-header {
    font-size: 20px;
  }
  .article-card-title {
    font-size: 20px;
  }
  .article-card {
    max-width: 296px;
  }
  .article-card-body {
    height: 232px;
    padding: 16px;
  }
  .article-card-bottom {
    font-size: 16px;
  }
  .next-btn, .prev-btn {
    height: 48px;
    width: 48px;
    border-radius: 20px;
  }
  .btn {
    font-size: 16px;
  }
  .screen8 {
    padding: 56px 103px 80px 0;
    height: 720px;
  }
  .contact-form {
    max-width: 454px;
  }
  .blue-form-side {
    max-width: 320px;
  }
  .blue-form-side .cards-image {
    left: -10px;
    top: 0;
  }
  .s8bt {
    top: -100px;
    left: 150px;
    width: 136px;
    height: 136px;
    border-radius: 20px;
  }
  .s8bb {
    bottom: -120px;
    left: 0;
    width: 188px;
    height: 188px;
    border-radius: 50%;
  }
  .footer-container {
    max-width: 976px;
    border-radius: 60px;
  }
  footer .logo {
    max-width: 146px;
  }
  footer .logo img {
    width: 100%;
  }
  nav a {
    font-size: 16px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .socials .btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .socials .btn svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-height: 820px) {
  .ref-popup {
    padding: 25px;
  }
  .ref-popup .pp-accept p, .ref-popup .pp-accept a {
    font-size: 14px !important;
  }
  .ref-popup button {
    margin-top: 10px;
  }
  .ref-popup input {
    height: 40px;
  }
  .ref-popup .select-header {
    height: 40px;
  }
  .ref-popup ul {
    margin: 16px 0 22px 0;
  }
  .ref-popup ul li {
    height: auto;
  }
  .close-popup {
    right: -55px;
    top: 0;
  }
}
@media screen and (max-height: 623px) {
  .popup-container {
    max-width: 700px;
  }
  .ref-popup {
    border-radius: 25px;
    padding: 15px;
  }
  .ref-popup h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 970px) {
  .pp {
    padding: 16px;
  }
  .pp h1 {
    font-size: 22px;
  }
  .pp h2 {
    font-size: 18px;
  }
  .pp ul li {
    font-size: 14px;
  }
  .pp .p span {
    font-size: 14px;
  }
  .pp .p-li {
    font-size: 14px;
  }
  .pp .table .el {
    padding: 10px;
    font-size: 14px;
  }
  .articles, article {
    max-width: 425px;
    border-radius: 32px;
    margin: 8px auto;
    padding: 24px 8px;
  }
  article h1 {
    margin: 16px 0 24px 0;
    font-size: 24px;
  }
  article h2 {
    font-size: 18px;
    margin: 24px 0 16px 0;
  }
  .article-info {
    font-size: 14pxz;
  }
  .article-image {
    height: 258px;
    margin-bottom: 24px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  body {
    padding-top: 80px;
  }
  header {
    position: fixed;
    top: 0;
    max-width: 425px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out;
    z-index: 100;
    background: #f1f4fc;
  }
  header.header-scrolled {
    top: 0;
    width: 100%;
    border-bottom: 1px solid #2848D3;
  }
  .header .buttons-bar {
    padding-right: 16px;
  }
  .header .buttons-bar .btn {
    display: none;
  }
  .header {
    height: 32px;
    margin: 24px 0;
  }
  .header .logo {
    max-width: 125px;
    padding-left: 16px;
  }
  section {
    border-radius: 32px;
    margin: 0 8px 8px 8px;
  }
  .main-container {
    max-width: 425px;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .mobile-menu {
    padding: 0 16px 16px 16px;
  }
  .mobile-menu nav {
    max-width: 390px;
    width: 100%;
    margin: 112px auto auto auto;
  }
  .mobile-menu .buttons-bar {
    max-width: 360px;
    width: 100%;
    flex-wrap: wrap;
    margin: auto auto 80px auto;
  }
  .mobile-menu nav a {
    font-size: 20px;
  }
  .screen1 {
    padding: 24px 8px 8px 8px;
  }
  .screen1 .buttons-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .blue-side {
    display: none;
  }
  h1 {
    font-size: 24px;
    line-height: 133%;
  }
  p {
    font-size: 14px;
    line-height: 143%;
    margin: 16px 0 24px 0;
  }
  .blue-side-m {
    display: block;
    position: relative;
    background: linear-gradient(176deg, rgba(107, 139, 245, 0.6) 0%, #1439ba 100%);
    height: 385px;
    margin: 40px 0;
    border-radius: 32px;
    max-width: 425px;
    width: 100%;
  }
  .blue-side-m img {
    width: 100%;
    position: absolute;
    top: -70px;
    user-select: none;
    pointer-events: none;
  }
  .box1 {
    position: absolute;
    background: url("../img/b1.png") no-repeat center/cover;
    width: 90px;
    height: 40px;
    right: 12px;
    top: 0;
  }
  .bubble1 {
    position: absolute;
    background: url("../img/bu1.png") no-repeat center/cover;
    width: 110px;
    height: 23px;
    bottom: 0;
    left: 30px;
  }
  .s1bt, .s1bb {
    display: none;
  }
  .features {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature {
    border-radius: 24px;
    padding: 16px;
  }
  h2 {
    font-size: 24px;
    line-height: 133%;
  }
  .horizontal-card img {
    width: 100%;
  }
  .screen2 {
    padding: 24px 8px 8px 8px;
  }
  .screen2 h2 {
    font-size: 20px;
    line-height: 140%;
  }
  .vertical-card {
    display: none;
  }
  .screen2-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }
  .screen2-grid .grid-title {
    font-size: 18px;
    line-height: 133%;
  }
  .screen2-grid .grid-p {
    font-size: 14px;
    line-height: 143%;
  }
  .screen2-grid .icon {
    width: 40px;
    height: 40px;
  }
  .screen2-grid .icon img {
    width: 100%;
  }
  .screen2-grid .row {
    padding: 16px;
  }
  .screen2-grid .col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .screen2-grid .col:last-child {
    margin-top: 0;
  }
  .screen2-grid .col2 {
    gap: 8px;
  }
  .s2btb {
    width: 225px;
    height: 225px;
    top: -170px;
    left: 60px;
  }
  .s2bts {
    width: 79px;
    height: 79px;
    top: 40px;
    left: 20px;
  }
  .screen3 {
    padding: 24px 8px 8px 8px;
  }
  .screen3 .btn {
    display: flex;
    justify-content: center;
  }
  .tariffs {
    flex-direction: column;
    width: auto;
    overflow: clip;
  }
  .card-title {
    font-size: 20px;
  }
  .tab {
    font-size: 12px;
    border-radius: 6px;
    height: 20px;
    padding: 0px 6px 4px;
  }
  .currency {
    font-size: 12px;
    width: 37px;
    height: 20px;
    border-radius: 6px;
  }
  .price {
    font-size: 20px;
  }
  .visa-icon {
    font-size: 12px;
  }
  .visa-icon svg {
    max-width: 58px;
  }
  .card-place {
    height: 180px;
    padding: 12px;
  }
  .tariff-card {
    padding: 12px 8px;
    height: auto;
  }
  .tariff-card .btn {
    margin-top: 20px;
  }
  ul li {
    font-size: 14px;
  }
  .btn {
    border-radius: 16px;
  }
  .screen4 {
    padding: 24px 16px 40px 16px;
  }
  .screen4 h2 {
    margin: 24px 0;
    font-size: 24px;
    line-height: 133%;
  }
  .t-icon {
    width: 40px;
    height: 40px;
  }
  .t-icon svg {
    width: 100%;
  }
  .t-bottom {
    flex-direction: column;
  }
  .t-price {
    order: -1;
    margin-bottom: 24px;
    font-size: 20px;
  }
  .t-price .s1 {
    font-size: 18px;
  }
  .t-price .s2 {
    font-size: 14px;
  }
  .t-features {
    gap: 12px;
  }
  .t-feature {
    font-size: 14px;
  }
  .s4bt {
    width: 100px;
    height: 165px;
    top: -110px;
    right: 30px;
    border-radius: 10px;
  }
  .s4bb {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    left: 20px;
    bottom: -25px;
  }
  .screen5 {
    padding: 24px 8px 8px 8px;
  }
  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
  .f-card {
    padding: 16px;
    height: auto;
  }
  .f-card .icon {
    width: 40px;
    height: 40px;
  }
  .f-card .f-card-title {
    font-size: 18px;
    margin: 16px 0 12px 0;
  }
  .screen6 {
    padding: 24px 8px 8px 8px;
  }
  .accordion-wrapper {
    margin-top: 16px;
  }
  .accordion-header {
    font-size: 16px;
    padding: 16px;
  }
  .accordion-header svg {
    width: 24px;
    height: 24px;
    flex: none;
  }
  .accordion-body {
    font-size: 14px;
  }
  .accordion-body.open {
    padding: 0 16px 16px 16px;
  }
  .screen7 {
    padding: 24px 8px;
  }
  .article-card {
    max-width: 100%;
  }
  .screen8 {
    height: auto;
    padding: 24px 8px;
  }
  .contact-form p {
    margin: 12px 0 16px 0;
  }
  .blue-form-side {
    display: none;
  }
  input {
    height: 52px;
  }
  .pp-accept p {
    font-size: 14px;
    margin-top: 0;
  }
  .pp-accept a {
    font-size: 14px;
  }
  .cb {
    width: 24px;
    height: 24px;
  }
  form button {
    position: relative;
    z-index: 2;
    margin: 24px auto auto auto;
  }
  .bluside .blue-side-m {
    overflow: hidden;
    height: 323px;
    margin: 8px 0;
  }
  .bluside .blue-side-m img {
    top: 0;
  }
  .s8bb {
    width: 104px;
    height: 104px;
    bottom: -50px;
    left: 30px;
  }
  .footer-top {
    position: relative;
    flex-direction: column;
    padding-bottom: 24px;
  }
  .footer-top nav {
    margin-top: 24px;
    gap: 12px;
  }
  .socials {
    position: absolute;
    right: 8px;
  }
  footer {
    margin: 0 8px;
    margin-bottom: 8px;
  }
  footer .logo {
    max-width: 125px;
  }
  .footer-container {
    padding: 24px 8px;
    border-radius: 32px;
    max-width: 425px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .copyright {
    width: auto;
  }
  .req {
    width: auto;
  }
  .req .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .popup-container {
    position: relative;
    max-width: 400px;
  }
  .popup-container h2 {
    font-size: 24px;
  }
  .popup-container p {
    font-size: 14px;
  }
  .close-popup {
    right: 8px;
    top: -48px;
    width: 40px;
    height: 40px;
    border-radius: 18px;
  }
  .form-popup {
    margin: 0 8px;
    padding: 24px 8px;
    border-radius: 32px;
  }
  .ref-popup {
    margin: 0 8px;
    padding: 24px 8px;
    border-radius: 32px;
  }
  .ref-popup ul {
    margin: 16px 0 24px 0;
  }
  .ref-link {
    height: auto;
    padding: 16px;
    font-size: 14px;
    margin-bottom: 24px;
  }
  .ref-popup-success {
    margin: 0 8px;
    padding: 32px 15px;
    border-radius: 32px;
  }
  .ref-popup-success .btn {
    max-width: 205px;
  }
  .form-popup-success {
    margin: 0 8px;
    padding: 32px 12px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 970px) and (max-height: 820px) {
  .close-popup {
    right: 8px;
    top: -48px;
    width: 40px;
    height: 40px;
    border-radius: 18px;
  }
}

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