@charset "UTF-8";

@font-face {
  font-family: "InterTight";
  src: url(../font/InterTight-Light.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
}

@font-face {
  font-family: "InterTight";
  src: url(../font/InterTight-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}

@font-face {
  font-family: "InterTight";
  src: url(../font/InterTight-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
}

@font-face {
  font-family: "InterTight";
  src: url(../font/InterTight-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
}

@font-face {
  font-family: "InterTight";
  src: url(../font/InterTight-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "InterTight", sans-serif;
  font-feature-settings: "onum" off, "pnum" off, "lnum" on, "tnum" on;
  -moz-font-feature-settings: "onum=0, pnum=0, lnum=1, tnum=1";
  /* Firefox */
  -webkit-font-feature-settings: "onum" off, "pnum" off, "lnum" on, "tnum" on;
  /* WebKit */
  -o-font-feature-settings: "onum" off, "pnum" off, "lnum" on, "tnum" on;
  line-height: 100%;
  color: #000;
}

.bodyStopScroll {
  overflow: hidden;
  height: 100vh;
}

button {
  outline: none;
  border: none;
  padding: 0;
  font-family: "InterTight", sans-serif;
  transition: 0.3s all;
}

button:hover {
  cursor: pointer;
}

input,
textarea,
select,
button {
  border: none;
  outline: none;
  font-family: "InterTight", sans-serif;
  transition: 0.3s all;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  transition: 0.3s all;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s all;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  line-height: 100%;
}

.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.align-start {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.text-center {
  text-align: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

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

.show {
  display: flex !important;
}

.w-full {
  width: 100%;
}

.m-0 {
  margin: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.relative {
  position: relative;
}

.select {
  width: 100%;
  position: relative;
  white-space: nowrap;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}

.select-head {
  width: 100%;
  height: 58px;
  border-radius: 8px;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  cursor: pointer;
  padding: 0 16px;
  transition: 0.3s all;
}

.select-head span {
  margin-right: 4px;
  display: inline-block;
}

.select .options {
  position: absolute;
  top: 115%;
  right: 0;
  width: 100%;
  background: #F9F9F9;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  z-index: 5;
  display: none;
  padding: 12px 0 2px;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.09);
  overflow-y: scroll;
  max-height: 200px;
}

.select .options::-webkit-scrollbar {
  width: 4px;
  border-radius: 5px;
  background: #F5F5F5;
}

.select .options::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #ccc;
}

.select .options li {
  padding: 10px 22px;
  text-align-last: left;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.select .options li img {
  margin-right: 5px;
}

.select .options li:hover {
  color: #0C42D1;
}

.check-box {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.check-box input {
  appearance: none;
  min-width: 20px;
  height: 20px;
  background-image: url(../img/svg/noCheck.svg);
  background-repeat: no-repeat;
  border-radius: 4px;
  margin-right: 12px;
  cursor: pointer;
}

.check-box label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #515151;
  cursor: pointer;
}

.check-box a {
  text-decoration: underline;
}

.check-box input:checked {
  background-image: url(../img/svg/checked.svg);
}

.input-box {
  width: 100%;
  margin-bottom: 26px;
  position: relative;
}

.input-box small {
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  color: #f94242;
}

.input-box label {
  font-size: 20px;
  line-height: 100%;
  color: #929AA9;
  margin-bottom: 8px;
  display: block;
}

.input-box input {
  width: 100%;
  height: 58px;
  border-radius: 20px;
  border: 1px solid #F9F9F9;
  background: #F9F9F9;
  padding: 0 22px;
  font-size: 16px;
  color: #000;
}

.input-box input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.input-box input:focus {
  border-color: #00106f;
}

.input-box textarea {
  width: 100%;
  height: 109px;
  border-radius: 30px;
  background: #fff;
  color: #313132;
  font-size: 12px;
  line-height: 20px;
  border: 2px solid #F7F7F5;
  padding: 28px 22px 7px;
  resize: none;
}

.showSelect .select-head svg {
  transform: rotate(180deg);
}

.showSelect .options {
  display: block;
}

.submit-btn {
  width: 100%;
  height: 55px;
  border-radius: 30px;
  background-color: #0033B8;
  border: 1px solid #0033B8;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  transition: 0.3s all;
}

.submit-btn:hover {
  background-color: #fff;
  color: #0033B8;
}

.title-text {
  font-size: 52px;
  line-height: 108%;
  font-weight: 500;
  color: #000;
}

.header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.header .container {
  position: relative;
  z-index: 100;
}

.header .logo {
  display: inline-block;
  margin-right: 20px;
}

.header .logo img {
  width: 114px;
}

.header .logo img:first-child {
  display: block;
}

.header .logo img:last-child {
  display: none;
}

.header-nav li {
  margin-right: 6px;
}

.header-nav li a {
  width: 100%;
  height: 40px;
  padding: 0 11px;
  border-radius: 32px;
  background: #f8f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  transition: 0.3s all;
  white-space: nowrap;
}

.header-nav li a:hover {
  background: #0C42D1;
  color: #fff;
}

.header .select {
  margin-right: 6px;
  width: auto;
}

.header .select-head {
  height: 40px;
  border-radius: 32px;
}

.header .select:hover .select-head {
  background: #0033b8;
  color: #fff;
}

.header .select:hover .select-head svg path {
  fill: #fff;
}

.header .select .options {
  overflow-y: visible;
  padding: 0;
}

.header .select-lang .select-head {
  font-weight: 500;
  color: #0033b8;
}

.header .select-country .select-head span {
  margin: 0 6px;
}

.header .download-app {
  width: 233px;
  min-height: 40px;
  border-radius: 30px;
  background: #0033b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin-right: 6px;
  border: 1px solid #0C42D1;
}

.header .download-app svg {
  margin-right: 10px;
}

.header .download-app:hover {
  background: #fff;
  color: #0c42d1;
}

.header .download-app:hover svg path {
  stroke: #0c42d1;
}

.header .login,
.header .menu-btn {
  width: 64px;
  min-height: 40px;
  border-radius: 30px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}

.header .login:hover,
.header .menu-btn:hover {
  background: #0C42D1;
}

.header .login:hover svg path,
.header .menu-btn:hover svg path {
  stroke: #fff;
}

.header .menu-btn {
  width: 64px;
  display: none;
}

.header .menu-btn svg:last-child {
  display: none;
}

.header .clickedBtn svg:first-child {
  display: none;
}

.header .clickedBtn svg:last-child {
  display: block;
}

.header .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  display: flex;
  justify-content: end;
}

.header .menu-content {
  width: 300px;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 20px;
  animation: showMenuAnim 0.3s linear;
}

.header .menu-list {
  width: 100%;
  overflow-y: scroll;
}

.header .menu .header-nav {
  flex-direction: column;
  width: 100%;
}

.header .menu .header-nav li {
  margin: 0 0 6px 0;
}

.header .menu .select {
  display: none;
  margin: 0 0 6px 0;
}

.header .menu .download-app {
  display: none;
  width: 100%;
  margin: 0 0 6px 0;
}

.header .menu .login {
  display: none;
  width: 100%;
  border-radius: 30px !important;
}

@keyframes showMenuAnim {
  from {
    margin-right: -100%;
  }

  to {
    margin-right: 0;
  }
}

.header_white .logo img:first-child {
  display: none;
}

.header_white .logo img:last-child {
  display: block;
}

.header_white .download-app {
  background: transparent;
  border-color: #fff;
}

.header_white .select-country {
  display: none;
}

.header_white .menu-btn {
  background: #f8f7fb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header_white .menu-btn svg path {
  stroke: #000;
}

.header_white .header-nav li {
  width: 140px;
}

.header_white .select-lang .select-head {
  color: #000;
}

.header_white .select-lang:hover .select-head {
  color: #fff;
}

.header_white .menu .download-app {
  background: #0c42d1;
}

.header_white .menu .download-app:hover {
  background: #0c42d1;
  color: #fff;
}

.header_white .menu .download-app:hover svg path {
  stroke: #fff;
}

.top-text {
  font-size: 18px;
  line-height: 122%;
  font-weight: 500;
  color: #fff;
}

.main .block1 {
  background-image: url(../img/png/gradient.png);
  background-size: 110% 110%;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

.main .block1-box {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.main .block1 .container {
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.main .block1-info {
  padding-bottom: 62px;
}

.main .block1-info .info {
  width: 100px;
  height: 100px;
  background: #000;
}

.main .block1-info .title-text {
  font-size: 46px;
  margin: 19px 0;
}

.main .block1-info .info-supText {
  font-size: 18px;
  line-height: 122%;
  font-weight: 500;
  color: #0033b8;
}

.main .block1-info .info-subText {
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  color: #000;
}

.main .block1-info .download {
  width: 113px;
  height: 40px;
  border-radius: 30px;
  background: #0033b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  margin-right: 6px;
  border: 1px solid #0C42D1;
  margin-top: 19px;
}

.main .block1-info .download svg {
  margin-right: 10px;
}

.main .block1-info .download:hover {
  background: #fff;
  color: #0c42d1;
}

.main .block1-info .download:hover svg path {
  stroke: #0c42d1;
}

.main .block1-img {
  height: 570px;
  margin-right: -50px;
  position: relative;
  z-index: 3;
  object-fit: contain;
}

.main .block1-img:last-child {
  display: none;
}

.main .block1 .phone-sim {
  position: relative;
  display: inline-block;
}

.main .block1 .phone-sim .anim-sim {
  width: 151px;
  position: absolute;
  top: 210px;
  left: 55px;
  z-index: 1;
  transition: 1.2s ease-out;
}

.main .block1 .phone-sim .animSim {
  left: 194px;
}

.main .block2 {
  position: relative;
  z-index: 3;
  padding: 40px 0 34px;
}

.main .block2-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main .block2 .container {
  position: relative;
  z-index: 3;
}

.main .block2-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.main .block2-top .title-text {
  color: #fff;
  max-width: 892px;
}

.main .block2-box {
  margin-top: 64px;
}

.main .block2-box .box-item {
  width: 100%;
  height: 526px;
  padding: 40px 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1333333333);
}

.main .block2-box .box-item .item {
  padding: 0 20px;
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.1333333333);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.main .block2-box .box-item .item-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 108%;
  color: #fff;
}

.main .block2-box .box-item .item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 122%;
  color: rgba(255, 255, 255, 0.6980392157);
}

.main .block2-box .box-item:nth-child(1) {
  padding-top: 40px;
}

.main .block2-box .box-item:nth-child(2) {
  display: flex;
  align-items: end;
  padding-bottom: 100px;
}

.main .block2-box .box-item:nth-child(3) {
  padding-top: 120px;
}

.main .block2-box .box-item:nth-child(4) {
  display: flex;
  align-items: end;
  padding-bottom: 100px;
  border-right: 2px solid rgba(255, 255, 255, 0.1333333333);
}

.main .block3 {
  padding: 45px 0 111px;
  position: relative;
  overflow: hidden;
}

.main .block3 .ellipse {
  position: absolute;
}

.main .block3 .ellipse:first-child {
  top: -70%;
  right: 0;
}

.main .block3 .ellipse:last-child {
  left: 0;
  bottom: -80%;
}

.main .block3 .top-text {
  color: rgba(0, 0, 0, 0.4666666667);
}

.main .block3-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 42px;
  position: relative;
  z-index: 3;
}

.main .block3-box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main .block3-box .item-text {
  font-size: 22px;
  line-height: 100%;
  font-weight: 500;
  color: #000;
}

.main .block3-box .item:nth-child(1) .item-text {
  margin-top: 123px;
}

.main .block3-box .item:nth-child(3) .item-text {
  margin-top: 97px;
}

.main .block3-box .item:nth-child(5) .item-text {
  margin-top: 20px;
}

.main .block3-box .plus {
  margin-bottom: 180px;
}

.main .block3-box .equal {
  margin-bottom: 192px;
}

.main .block4 {
  position: relative;
  padding: 64px 0 45px;
  overflow: hidden;
}

.main .block4 .title-text {
  color: #fff;
}

.main .block4-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .block4 .container {
  position: relative;
  z-index: 2;
}

.main .block4-box {
  margin-top: 35px;
  justify-content: end;
}

.main .block4-box .item {
  width: 375px;
  border-radius: 10px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px);
  margin-right: 20px;
  color: #000;
}

.main .block4-box .item-title {
  font-size: 22px;
  font-weight: 500;
}

.main .block4-box .item-subtitle {
  font-size: 14px;
  line-height: 132%;
  color: rgba(0, 0, 0, 0.5019607843);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.main .block4-box .item .status-title {
  font-size: 32px;
  line-height: 102%;
  font-weight: 500;
  margin: 28px 0;
}

.main .block4-box .item-linkBtn {
  width: 100%;
  height: 40px;
  border-radius: 50px;
  background: #0033b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s all;
}

.main .block4-box .item-linkBtn:hover {
  background: #fff;
  color: #0033b8;
}

.main .block4-box .item-list li {
  font-size: 14px;
  line-height: 132%;
  margin-top: 20px;
}

.main .block4-box .item-list li:first-child {
  margin-top: 28px;
}

.main .block4-box .item:last-child {
  margin: 0;
  background: #242427;
  color: #fff;
}

.main .block4-box .item:last-child .item-subtitle {
  color: rgba(255, 255, 255, 0.5019607843);
  border-color: rgba(255, 255, 255, 0.2);
}

.main .block4-box .item:last-child .item-linkBtn {
  background: #fff;
  color: #0033b8;
}

.main .block4-box .item:last-child .item-linkBtn:hover {
  background: #0033b8;
  color: #fff;
}

.main .block5 {
  background-image: linear-gradient(to right, #0033b8, #042aa5, #042192, #031880, #00106f);
  color: #fff;
  padding: 32px 0 128px;
}

.main .block5 .title-text {
  color: #fff;
  margin: 40px 0 115px;
}

.main .block5-box {
  display: flex;
  justify-content: space-between;
}

.main .block5-box .item {
  width: 30%;
  position: relative;
}

.main .block5-box .item-num {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.main .block5-box .item-info {
  width: 100%;
  margin-top: 22px;
  padding: 20px;
  min-height: 182px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  background: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(30px);
  border-radius: 10px;
  position: relative;
}

.main .block5-box .item-title {
  font-size: 32px;
  font-weight: 500;
}

.main .block5-box .item-text {
  font-size: 14px;
  line-height: 122%;
  font-weight: 500;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6980392157);
}

.main .block5-box .item:nth-child(1) {
  position: relative;
  z-index: 3;
}

.main .block5-box .item:nth-child(2) {
  margin-top: 40px;
}

.main .block5-box .item:nth-child(2) .item-info {
  min-height: 218px;
  position: relative;
  z-index: 1000000 !important;
}

.main .block5-box .item:nth-child(2) .circle {
  position: absolute;
}

.main .block5-box .item:nth-child(2) .circle:first-child {
  top: -40%;
  right: 55%;
}

.main .block5-box .item:nth-child(2) .circle:last-child {
  top: -25%;
  left: 45%;
}

.main .block5-box .item:nth-child(3) .item-info {
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}

.main .block5-box .item:nth-child(3) .circle {
  position: absolute;
  bottom: -25%;
  right: 60%;
  z-index: -1;
  display: none;
}

.main .block6 {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}

.main .block6::after {
  content: url(../img/png/ellipse3.png);
  position: absolute;
  top: 0;
  right: 0;
}

.main .block6-info {
  position: relative;
  z-index: 10;
}

.main .block6 .title-text {
  margin: 20px 0;
}

.main .block6 .title-text br {
  display: none;
}

.main .block6 .title-subtext {
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 20px;
}

.main .block6 .download {
  width: 197px;
  height: 40px;
  border-radius: 30px;
  background: #0033b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #0C42D1;
  margin-left: 12px;
}

.main .block6 .download svg {
  margin-right: 10px;
}

.main .block6 .download:hover {
  background: #fff;
  color: #0c42d1;
}

.main .block6 .download:hover svg path {
  stroke: #0c42d1;
}

.main .block6 .phone-img {
  position: relative;
  z-index: 5;
  width: 375px;
  margin-top: 25px;
}

.main .block7 {
  margin-top: -330px;
  padding-bottom: 80px;
  position: relative;
  z-index: 5;
}

.main .block7 .title-text {
  margin: 24px 0 0;
}

.main .block7-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 18px;
  margin-top: 18px;
}

.main .block7-box:first-child {
  margin-top: 28px;
}

.main .block7-box .all-link {
  padding: 10.5px 21.5px;
  border-radius: 50px;
  background: #0033b8;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #0033b8;
  display: inline-block;
}

.main .block7-box .all-link:hover {
  background: #fff;
  color: #0033b8;
}

.main .block7-box .item {
  background: #f8f7fb;
  border-radius: 30px;
  padding: 24px;
}

.main .block7-box .item-img {
  width: 100%;
  height: 118px;
  border-radius: 10px;
  object-fit: cover;
}

.main .block7-box .item-title {
  display: inline-block;
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  color: #000;
  margin: 48px 0 16px;
}

.main .block7-box .item-title:hover {
  color: #0C42D1;
}

.main .block7-box .item-text {
  font-size: 16px;
  line-height: 122%;
  color: rgba(0, 0, 0, 0.5019607843);
}

.main .block8 {
  background-image: linear-gradient(to left, #0033b8, #002c9e, #002584, #001e6a, #001752);
  color: #fff;
  padding: 56px 0 79px;
}

.main .block8 .title-text {
  color: #fff;
  margin-top: 20px;
}

.main .block8 .all-link {
  padding: 10.5px 21.5px;
  border-radius: 50px;
  background: #fff;
  color: #0033B8;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #0033b8;
  display: inline-block;
}

.main .block8 .all-link:hover {
  border-color: #fff;
  background: #0033b8;
  color: #fff;
}

.main .faqs {
  margin-top: 40px;
}

.main .faqs .faq {
  background: rgba(255, 255, 255, 0.0509803922);
  backdrop-filter: blur(30px);
  border-radius: 4px;
  margin-bottom: 8px;
  transition: 0.3s all;
  max-height: 64px;
  overflow: hidden;
}

.main .faqs .faq-head {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.main .faqs .faq-head svg {
  transition: 0.3s all;
}

.main .faqs .faq-title {
  font-size: 22px;
  font-weight: 500;
  max-width: 90%;
}

.main .faqs .faq-body {
  padding: 0 20px 16px;
}

.main .faqs .faq-body .faq-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 122%;
  color: rgba(255, 255, 255, 0.6980392157);
}

.main .faqs .showFaq {
  max-height: 1000px;
}

.main .faqs .showFaq .faq-head svg {
  transform: rotate(180deg);
}

.main .faqs-box {
  margin-top: 40px;
}

.main .faqs-box .faq {
  background: #0c42d1;
  border-radius: 12px;
}

.main .faqs-box .faq-title {
  color: #fff;
}

.main .faqs__page {
  margin-top: 80px;
}

.main .block9 {
  position: relative;
  padding: 79px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .block9-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .block9 .logo {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.main .block10 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: end;
  padding-bottom: 46px;
}

.main .block10-box {
  width: 100%;
}

.main .block10 .title-text {
  width: 100%;
  color: #fff;
  margin: 20px 0;
}

.main .block10 .info-text {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.main .block10-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .block10 .container {
  position: relative;
  z-index: 2;
}

.main .block11 {
  padding-top: 64px;
}

.main .block11-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.main .block11-box .item {
  height: 407px;
  border-radius: 10px;
  background: #f8f7fb;
  padding: 20px 24px;
  display: flex;
  align-items: end;
  position: relative;
}

.main .block11-box .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main .block11-box .item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0033B8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: 0.3s all;
}

.main .block11-box .item-title {
  font-size: 24px;
  line-height: 100%;
  font-weight: 500;
  color: #000;
  position: relative;
  z-index: 3;
}

.main .block11-box .item-text {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-top: 20px;
  max-width: 340px;
  position: relative;
}

.main .block11-box .item:hover .icon {
  background: #fff;
}

.main .block11-box .item:hover .icon svg path {
  fill: #0033B8;
}

.main .login-form {
  width: 1066px;
  margin-top: 26px;
}

.main .filter-box {
  margin: 64px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main .filter-box .sort {
  position: relative;
}

.main .filter-box .sort .sort-btn {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0033B8;
  display: none;
  align-items: center;
  justify-content: center;
}

.main .filter-box .sort-btns {
  display: flex;
}

.main .filter-box .sort-btns .sortBtn {
  margin-right: 12px;
}

.main .filter-box .sort-btns .sortBtn input {
  display: none;
}

.main .filter-box .sort-btns .sortBtn span {
  display: block;
  padding: 16px 32px;
  border-radius: 30px;
  background: #f8f7fb;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
}

.main .filter-box .sort-btns .sortBtn input:checked~span {
  background: #0033b8;
  color: #fff;
}

.main .filter-box .search {
  position: relative;
}

.main .filter-box .search-inp {
  width: 416px;
  height: 51px;
  border-radius: 30px;
  background: #f8f7fb;
  font-size: 16px;
  font-weight: 500;
  color: #616161;
  padding: 0 16px 0 56px;
  border: 1px solid #f8f7fb;
}

.main .filter-box .search-inp:focus {
  border-color: #0033B8;
}

.main .filter-box .search svg {
  position: absolute;
  top: 16px;
  left: 30px;
  cursor: pointer;
}

.main .filter-box .search svg:hover path {
  stroke: #0033B8;
}

.main .block12 .countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.main .block12 .countries .country {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background: #f8f7fb;
  position: relative;
  font-size: 20px;
  line-height: 100%;
  padding-left: 20px;
  padding-right: 10px;
}

.main .block12 .countries .country a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.main .block12 .countries .country .flag {
  height: 15px;
  margin-right: 8px;
  transform: translateY(3px);
}

.main .block12 .countries .country .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7fb;
  transition: 0.3s all;
}

.main .block12 .countries .country:hover .arrow {
  background: #0033b8;
}

.main .block12 .countries .country:hover .arrow svg path {
  stroke: #fff;
}

.main .block12 .loadMore {
  width: 100%;
  height: 52px;
  border-radius: 50px;
  background: #0033b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #0C42D1;
  margin-top: 20px;
}

.main .block12 .loadMore:hover {
  background: #fff;
  color: #0c42d1;
}

.main .block13 .counter-head {
  width: 100%;
  height: 72px;
  border-radius: 30px;
  background: #f8f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.main .block13 .counter-head img {
  height: 12px;
  margin-right: 5px;
}

.main .block13 .tariffs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 35px;
  margin-top: 47px;
}

.main .block13 .tariffs .tariff {
  border-radius: 30px;
  padding: 24px 20px;
  background: #f8f7fb;
  position: relative;
}

.main .block13 .tariffs .tariff .logo {
  position: absolute;
  top: -15px;
  right: 20px;
  z-index: 2;
  width: 119px;
  height: 68px;
  border-radius: 10px;
  background: #0033B8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .block13 .tariffs .tariff .logo img {
  width: 79px;
  object-fit: contain;
}

.main .block13 .tariffs .tariff-title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.main .block13 .tariffs .tariff-item {
  margin: 40px 0;
}

.main .block13 .tariffs .tariff-item .item {
  padding: 24px 0 16px;
  border-top: 1px solid #D6D6D6;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .block13 .tariffs .tariff-item .item img {
  margin-right: 8px;
}

.main .block13 .tariffs .tariff .buy-btn {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  background: #0033b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #0C42D1;
}

.main .block13 .tariffs .tariff .buy-btn:hover {
  background: #fff;
  color: #0c42d1;
}

.main .privacyPolicy {
  padding: 150px 0 80px;
}

.main .privacyPolicy .title-text {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 80px;
}

.main .privacyPolicy .title-text br {
  display: none;
}

.main .privacyPolicy__item {
  margin-bottom: 32px;
  color: #000;
}

.main .privacyPolicy__item .item-title {
  font-size: 46px;
  line-height: 108%;
  font-weight: 400;
  margin-bottom: 20px;
}

.main .privacyPolicy__item .item-subtitle {
  font-size: 32px;
  line-height: 108%;
  font-weight: 400;
  margin-bottom: 20px;
}

.main .privacyPolicy__item .item-text {
  font-size: 22px;
  line-height: 100%;
  font-weight: 500;
}

.main .privacyPolicy__item .item-list {
  padding-left: 10px;
}

.main .privacyPolicy__item .item-list li {
  font-size: 22px;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: start;
}

.main .privacyPolicy__item .item-list li a {
  border-bottom: 1px solid #000;
}

.main .privacyPolicy__item .item-list li::before {
  content: "•";
  margin-right: 6px;
}

.main .block-photo {
  margin-top: 102px;
}

.main .block-photo .photo {
  width: 100%;
  height: 113px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.main .block-photo .photo:last-child {
  display: none;
}

.main .noFound {
  margin-top: 50px;
  margin-bottom: -100px;
}

.main .noFound .title-text {
  font-size: 200px;
  line-height: 200px;
  font-weight: 500;
  color: #000;
}

.main .noFound .back-home {
  width: 201px;
  height: 40px;
  border-radius: 30px;
  background-color: #0033B8;
  border: 1px solid #0033B8;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}

.main .noFound .back-home:hover {
  background-color: #fff;
  color: #0033B8;
}

.main .noFound-text {
  font-size: 32px;
  line-height: 108%;
  font-weight: 500;
  color: #000;
  margin-top: 75px;
}

.main .sample {
  margin: 40px 0;
}

.main .sample .title-text {
  font-size: 64px;
  font-weight: 500;
}

.main .sample .title-text br {
  display: none;
}

.main .sample-text {
  font-size: 22px;
  line-height: 100%;
  font-weight: 400;
  color: #000;
  margin-top: 32px;
}

.main .sample-img {
  width: 100%;
  height: 394px;
  border-radius: 20px;
  object-fit: cover;
  margin-top: 40px;
}

.main .sample-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main .sample-images .sample-img {
  width: 49.5%;
}

.main .sample-title {
  font-size: 46px;
  line-height: 108%;
  font-weight: 400;
  color: #000;
  margin-top: 40px;
}

.main .sample-subtitle {
  font-size: 32px;
  line-height: 108%;
  font-weight: 500;
  color: #000;
  margin-top: 32px;
}

.main .devices .title-text {
  font-size: 32px;
  line-height: 108%;
  margin-top: 32px;
}

.main .devices-btns {
  margin: 64px 0 20px;
}

.main .devices-btns .devices-btn {
  height: 40px;
  border-radius: 32px;
  background: #f8f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  cursor: pointer;
  margin: 0 12px 12px 0;
  transition: 0.3s all;
}

.main .devices-btns .devices-btn:hover {
  background: #f2f2f2;
}

.main .devices-btns .active {
  background: #0c42d1;
  color: #fff;
}

.main .devices-btns .active:hover {
  background: #0c42d1;
}

.main .devices-btns .show-more {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  height: 40px;
  border-radius: 32px;
  border: 1px solid #0C42D1;
}

.main .devices-btns .show-more span {
  font-size: 14px;
  font-weight: 400;
  color: #0c42d1;
}

.main .devices-btns .show-more span::after {
  content: "•";
  margin-left: 6px;
}

.main .devices-btns .show-more:hover {
  background: #0C42D1;
}

.main .devices-btns .show-more:hover span {
  color: #fff;
}

.main .devices-search {
  position: relative;
}

.main .devices-search .search {
  width: 100%;
  height: 51px;
  border-radius: 30px;
  background: #f8f7fb;
  padding: 0 10px 0 58px;
  font-size: 16px;
  font-weight: 500;
  color: #616161;
  border: 1px solid #f8f7fb;
}

.main .devices-search .search:focus {
  border-color: #0C42D1;
}

.main .devices-search svg {
  position: absolute;
  top: 16px;
  left: 25px;
}

.main .devices-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
  margin-top: 20px;
}

.main .devices-list .devices-card {
  width: 100%;
  border-radius: 12px;
  padding: 20px;
  background: #f8f7fb;
  position: relative;
}

.main .devices-list .devices-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main .devices-list .devices-card .card-photo {
  width: 100%;
  height: 244px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .devices-list .devices-card .card-photo .photo {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.main .devices-list .devices-card .card-name {
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  color: #616161;
  margin: 20px 0 6px;
}

.main .devices-list .devices-card .card-text {
  font-size: 14px;
  line-height: 132%;
  color: #616161;
}

.main .devices-list .load-more {
  margin-top: 32px;
}

.main .page-info {
  font-size: 14px;
  line-height: 108%;
  color: #ccc;
  font-weight: 400;
}

.main .page-info span,
.main .page-info a {
  white-space: nowrap;
}

.main .page-info .active {
  color: #0c42d1;
}

.main .devicesIn {
  margin: 90px 0 50px;
}

.main .devicesIn-info {
  position: relative;
}

.main .devicesIn-info .gradient {
  position: absolute;
  left: 0;
  top: 20%;
}

.main .devicesIn-info .title-text {
  position: relative;
  z-index: 2;
}

.main .devicesIn-info .info-list {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  color: #4d4d4d;
  margin-top: 20px;
}

.main .devicesIn-info .devices-photo {
  height: 474px;
  object-fit: contain;
}

.main .devicesIn-middle {
  position: relative;
  z-index: 3;
  margin: 64px 0 20px;
}

.main .devicesIn-middle .middle-info {
  display: flex;
  justify-content: space-between;
  background: #0c42d1;
  color: #fff;
  border-radius: 20px;
  padding: 20px;
}

.main .devicesIn-middle .middle-info .info-head {
  font-size: 18px;
  line-height: 122%;
  font-weight: 500;
}

.main .devicesIn-middle .middle-info .info-title {
  font-size: 52px;
  line-height: 55px;
  font-weight: 500;
  margin: 58px 0 10px;
}

.main .devicesIn-middle .middle-info .info-subtitle {
  font-size: 20px;
  font-weight: 400;
}

.main .devicesIn-box {
  background: #f8f7fb;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  z-index: 3;
}

.main .devicesIn-box .item {
  display: flex;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 32px;
}

.main .devicesIn-box .item:last-child {
  margin-bottom: 0;
}

.main .devicesIn-box .item-title {
  font-size: 32px;
  line-height: 108%;
  font-weight: 500;
  color: #0c42d1;
  min-width: 200px;
}

.main .devicesIn-box .item-list {
  color: #333;
}

.main .devicesIn-box .item-list li {
  display: flex;
  align-items: start;
  margin-bottom: 6px;
}

.main .devicesIn-box .item-list li:last-child {
  margin-bottom: 0;
}

.main .devicesIn-box .item-list li strong {
  min-width: 200px;
  font-size: 22px;
  line-height: 100%;
  font-weight: 500;
}

.main .devicesIn-box .item-list li p {
  font-size: 16px;
  line-height: 122%;
  display: flex;
  flex-direction: column;
}

.main .swiper-btns .prev-btn,
.main .swiper-btns .next-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  transition: 0.3s all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main .swiper-btns .prev-btn:hover,
.main .swiper-btns .next-btn:hover {
  background: #0033B8;
}

.main .swiper-btns .prev-btn:hover svg path,
.main .swiper-btns .next-btn:hover svg path {
  fill: #fff;
}

.main .swiper-btns .prev-btn {
  left: 0;
}

.main .swiper-btns .next-btn {
  right: 0;
}

.main .cardIn {
  margin-top: 90px;
}

.main .cardIn-info {
  margin-top: 60px;
}

.main .cardIn-info .top {
  margin-bottom: 32px;
}

.main .cardIn-info .info-text {
  font-size: 18px;
  font-weight: 500;
}

.main .cardIn-info .info {
  width: 58%;
  border-radius: 30px;
  background: #f8f7fb;
  padding: 24px 20px;
}

.main .cardIn-info .info .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #000;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D6D6D6;
}

.main .cardIn-info .info .item:last-child {
  margin-bottom: 20px;
  padding-bottom: 0;
  border: none;
}

.main .cardIn-info .info .item img {
  margin-right: 8px;
}

.main .cardIn-info .info .addInfo-btn {
  margin: 0;
  height: 40px;
  font-size: 14px;
}

.main .cardIn-info .eSim-img {
  width: 40%;
  height: 336px;
  border-radius: 20px;
  object-fit: cover;
}

.main .cardIn .packages-title {
  margin: 40px 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 108%;
}

.main .cardIn .packages .package {
  width: 100%;
  border-radius: 30px;
  background: #f8f7fb;
  padding: 24px 20px;
}

.main .cardIn .packages .package-title {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D6D6D6;
  font-size: 18px;
  font-weight: 500;
}

.main .cardIn .packages .package .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #000;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D6D6D6;
}

.main .cardIn .packages .package .item strong {
  font-weight: 400;
  color: #0c42d1;
}

.main .cardIn .packages .package .item svg {
  margin-right: 8px;
}

.main .cardIn .packages .slider {
  position: relative;
  padding: 0 42px;
}

.main .cardIn .cardIn-box .box-item {
  width: 49%;
  margin-top: 40px;
}

.main .cardIn .cardIn-box .box-item .item-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 108%;
  margin-bottom: 32px;
}

.main .cardIn .cardIn-box .box-item .item {
  background: #f8f7fb;
  border-radius: 20px;
  padding: 20px;
  height: 495px;
}

.main .cardIn .cardIn-box .box-item .item .country {
  width: 100%;
  height: 83px;
  border-radius: 30px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 500;
  background: #fff;
}

.main .cardIn .cardIn-box .box-item .item .country img {
  width: 32px;
}

.main .cardIn .cardIn-box .box-item .item .item-info {
  border-radius: 20px;
  padding: 20px 0 20px 20px;
  background: #fff;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-title {
  padding-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list {
  padding-right: 20px;
  max-height: 380px;
  overflow-y: scroll;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list::-webkit-scrollbar {
  width: 5px;
  background: #fff;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list::-webkit-scrollbar-thumb {
  width: 5px;
  background: #929AA9;
  border-radius: 4px;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li {
  padding: 12px 0;
  border-top: 1px solid #929AA9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li small {
  font-size: 10px;
  font-weight: 500;
  color: #929aa9;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li p {
  font-size: 14px;
  line-height: 132%;
  margin-top: 8px;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li .info {
  position: relative;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li .info img {
  cursor: pointer;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li .info-box {
  position: absolute;
  top: 110%;
  right: 0;
  width: 200px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  z-index: 5;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 132%;
  margin: 0;
  display: none;
}

.main .cardIn .cardIn-box .box-item .item .item-info .info-list li .info:hover .info-box {
  display: block;
}

.main .cardIn .cardIn-box .box-item .by-btn {
  width: 200px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  margin: 42px 0 0 auto;
}

.main .cardIn .cardIn-box .box-item .price {
  font-size: 32px;
  font-weight: 500;
  margin-top: 42px;
}

.main .cardIn .cardIn-box .box-item .price-item {
  display: none;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  margin-top: 17px;
}

.footer {
  padding-top: 260px;
  position: relative;
}

.footer .circle {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-box {
  background-image: linear-gradient(to right, #0033b8, #042aa5, #042192, #031880, #00106f);
  color: #fff;
  padding: 32px;
  border-radius: 12px 12px 0 0;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-item .logo img {
  width: 172px;
}

.footer-item .copyRight {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.footer-item .copyRight svg {
  margin-right: 5px;
}

.footer-item .item-title {
  font-size: 24px;
  font-weight: 500;
}

.footer-item .item-list li {
  margin-top: 16px;
}

.footer-item .item-list li a {
  font-size: 18px;
  line-height: 122%;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6980392157);
}

.footer-item .item-list li a:hover {
  color: #fff;
}

.footer-item:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer_noCircle {
  padding-top: 0 !important;
}

.footer_noCircle .circle {
  display: none;
}

@keyframes menu-anim {
  from {
    margin-left: -100%;
  }

  to {
    margin-left: 0;
  }
}

@keyframes heart-anim {
  from {
    transform: scale(1.5);
  }

  to {
    transform: scale(1);
  }
}

@media (min-width: 1900px) {
  .main .block1 .container {
    height: 600px;
  }

  .main .block1-img {
    height: auto;
    width: 568px;
  }

  .main .block1 .phone-sim .anim-sim {
    top: 190px;
    left: 55px;
    width: 120px;
  }

  .main .block1 .phone-sim .animSim {
    left: 166px;
  }

  .main .block10 {
    height: 573px;
  }
}

@media (max-width: 1400px) {
  .main .block1-img {
    height: 80vh;
  }

  .main .block1 .phone-sim .anim-sim {
    top: 190px;
    left: 55px;
    width: 120px;
  }

  .main .block1 .phone-sim .animSim {
    left: 166px;
  }
}

@media (max-width: 1280px) {
  .header-nav li a {
    padding: 0 5px;
  }

  .header .download-app {
    width: 200px;
  }

  .header_white .header-nav li {
    width: auto;
  }

  .main .block1 {
    background-image: none;
  }

  .main .block2-top {
    display: none;
  }

  .main .block2-box {
    margin: 0;
  }

  .main .block4 {
    padding: 60px 0 54px;
  }

  .main .block4-box .item {
    width: 336px;
  }

  .main .block6 .title-text br {
    display: block;
  }

  .main .block6 .title-subtext {
    max-width: 593px;
  }

  .main .block6 .title-subtext br {
    display: none;
  }

  .main .filter-box .sort-btns .sortBtn span {
    padding: 16px;
  }

  .main .filter-box .search-inp {
    width: 350px;
  }

  .main .block12 .countries .country {
    font-size: 16px;
  }

  .footer {
    padding-top: 200px;
  }

  .footer .circle {
    width: 60%;
  }

  .footer-item .item-list li a {
    font-size: 16px;
  }

  .footer-item:nth-child(2) {
    width: 206px;
  }

  .footer-item:nth-child(3) {
    width: 196px;
  }

  .footer-item:nth-child(4) {
    width: 173px;
  }
}

@media (max-width: 1124px) {
  .title-text {
    font-size: 32px;
    line-height: 108%;
  }

  .header-nav {
    display: none;
  }

  .header .download-app {
    width: 233px;
  }

  .header .login {
    margin-right: 6px;
  }

  .header .menu-btn {
    display: flex;
  }

  .header .menu .header-nav {
    display: flex;
  }

  .header .menu .login {
    margin-right: 6px;
  }

  .header .menu .menu-btn {
    display: flex;
  }

  .main .block1 {
    flex-direction: column;
    padding-top: 135px;
  }

  .main .block1-box {
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
  }

  .main .block1 .container {
    height: auto;
  }

  .main .block1-info .title-text {
    white-space: nowrap;
  }

  .main .block1 .phone-sim {
    display: flex;
    justify-content: end;
    margin-left: auto;
    margin-top: -100px;
    margin-right: -50px;
  }

  .main .block1 .phone-sim .anim-sim {
    top: 210px;
    left: 70px;
    width: 150px;
  }

  .main .block1 .phone-sim .animSim {
    left: 208px;
  }

  .main .block1-img {
    height: auto;
    width: 776px;
    margin-right: 0;
  }

  .main .block2-box .box-item {
    border: none !important;
    padding: 0;
    position: relative;
  }

  .main .block2-box .box-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1333333333);
  }

  .main .block4 {
    padding: 40px 0;
  }

  .main .block4-box {
    margin-top: 20px;
  }

  .main .block4-box .item {
    width: 310px;
  }

  .main .block4-box .item .status-title {
    font-size: 22px;
  }

  .main .block5 {
    padding: 40px 0 44px;
  }

  .main .block5 .title-text {
    color: #fff;
    margin: 20px 0 67px;
  }

  .main .block5-box .item {
    width: 30%;
    position: relative;
  }

  .main .block5-box .item-num {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .main .block5-box .item-info {
    margin-top: 12px;
    min-height: 134px;
  }

  .main .block5-box .item-title {
    font-size: 22px;
  }

  .main .block5-box .item:nth-child(1) {
    position: relative;
    z-index: 3;
  }

  .main .block5-box .item:nth-child(2) {
    margin-top: 80px;
    z-index: 2;
  }

  .main .block5-box .item:nth-child(2) .item-info {
    min-height: 205px;
  }

  .main .block5-box .item:nth-child(2) .circle {
    width: 335px;
    position: absolute;
    top: -40%;
    right: 60%;
  }

  .main .block5-box .item:nth-child(2) .circle:last-child {
    display: none;
  }

  .main .block5-box .item:nth-child(3) .circle {
    width: 335px;
    position: absolute;
    bottom: 10%;
    right: 40%;
    display: block;
  }

  .main .block6 {
    padding-top: 40px;
  }

  .main .block6 .phone-img {
    width: 300px;
  }

  .main .block7 {
    margin-top: -200px;
    padding-bottom: 40px;
    position: relative;
  }

  .main .block7 .title-text {
    margin: 24px 0 0;
  }

  .main .block7-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
    margin-top: 12px;
  }

  .main .block7-box:first-child {
    margin-top: 20px;
  }

  .main .block7-box .all-link {
    font-size: 10px;
  }

  .main .block7-box .item {
    border-radius: 20px;
    padding: 16px;
  }

  .main .block7-box .item-img {
    height: 81px;
    border-radius: 7px;
  }

  .main .block7-box .item-title {
    font-size: 14px;
    margin: 32px 0 12px;
  }

  .main .block7-box .item-text {
    font-size: 11.12px;
  }

  .main form {
    width: 100%;
    margin-top: 26px;
  }

  .main .block13 .tariffs {
    grid-template-columns: repeat(3, 1fr);
  }

  .main .devicesIn-middle .middle-info {
    flex-wrap: wrap;
  }

  .main .devicesIn-middle .middle-info .info {
    width: 50%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
  }

  .main .devicesIn-middle .middle-info .info:nth-child(3),
  .main .devicesIn-middle .middle-info .info:nth-child(4) {
    border-bottom: none;
    padding: 0;
    margin: 0;
  }

  .main .devicesIn-info {
    margin-top: 32px;
  }

  .main .devicesIn-info .devices-photo {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .main .block2-box .box-item .item {
    height: 105px;
    font-size: 12px;
  }

  .main .block2-box .box-item .item-title {
    font-size: 20px;
  }

  .main .block3 {
    padding: 32px 0 40px;
  }

  .main .block3 .ellipse {
    position: absolute;
  }

  .main .block3 .ellipse:first-child {
    top: -90%;
    right: 0;
  }

  .main .block3 .ellipse:last-child {
    display: none;
  }

  .main .block3-box {
    margin-top: 20px;
  }

  .main .block3-box .item-text {
    font-size: 22px;
    line-height: 100%;
    font-weight: 500;
    color: #000;
  }

  .main .block3-box .item:nth-child(1) .item-text {
    margin-top: 70px;
    font-size: 14px;
  }

  .main .block3-box .item:nth-child(1) img {
    width: 72px;
  }

  .main .block3-box .item:nth-child(3) .item-text {
    margin-top: 47px;
    font-size: 14px;
  }

  .main .block3-box .item:nth-child(3) img {
    width: 72px;
  }

  .main .block3-box .item:nth-child(5) .item-text {
    margin-top: 12px;
    font-size: 14px;
  }

  .main .block3-box .item:nth-child(5) img {
    width: 260px;
  }

  .main .block3-box .plus {
    margin-bottom: 110px;
    width: 36px;
  }

  .main .block3-box .equal {
    margin-bottom: 125px;
    width: 36px;
  }

  .main .block5 {
    padding: 32px 0 35px;
  }

  .main .block5 .title-text {
    color: #fff;
    margin: 12px 0 57px;
  }

  .main .block5-box .item {
    width: 30%;
    position: relative;
  }

  .main .block5-box .item-num {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .main .block5-box .item-info {
    margin-top: 8px;
    min-height: 99px;
  }

  .main .block5-box .item-title {
    font-size: 16px;
  }

  .main .block5-box .item-text {
    font-size: 10px;
  }

  .main .block5-box .item:nth-child(1) {
    position: relative;
    z-index: 3;
  }

  .main .block5-box .item:nth-child(2) {
    margin-top: 80px;
    z-index: 2;
  }

  .main .block5-box .item:nth-child(2) .item-info {
    min-height: 152px;
  }

  .main .block5-box .item:nth-child(2) .circle {
    width: 280px;
    position: absolute;
    top: -50%;
    right: 60%;
  }

  .main .block5-box .item:nth-child(3) .circle {
    width: 255px;
    position: absolute;
    bottom: 10%;
    right: 40%;
  }

  .main .block6 .title-subtext {
    max-width: 464px;
    font-size: 20px;
    line-height: 100%;
  }

  .main .block6::after {
    display: none;
  }

  .main .block6 .phone-img {
    width: 220px;
    margin-right: 30px;
  }

  .main .block7 {
    margin-top: -70px;
    padding-bottom: 60px;
  }

  .main .block7 .title-text {
    margin: 12px 0 0;
  }

  .main .block7 .container {
    padding-bottom: 80px;
  }

  .main .block7-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
  }

  .main .block7-box:last-child {
    position: relative;
  }

  .main .block7-box:first-child {
    margin-top: 32px;
  }

  .main .block7-box .item-link {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
  }

  .main .block7-box .all-link {
    width: 100%;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main .block7-box .item {
    border-radius: 30px;
    padding: 24px;
  }

  .main .block7-box .item-img {
    height: 118px;
    border-radius: 10px;
  }

  .main .block7-box .item-title {
    font-size: 20px;
    margin: 48px 0 16px;
  }

  .main .block7-box .item-text {
    font-size: 16px;
  }

  .main .block10 {
    height: 760px;
  }

  .main .block11-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .main .filter-box {
    margin: 30px 0 40px;
  }

  .main .filter-box .sort .sort-btn {
    display: flex;
    margin-right: 20px;
  }

  .main .filter-box .sort-btns {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    flex-direction: column;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    display: none;
  }

  .main .filter-box .sort-btns .sortBtn {
    margin-right: 12px;
  }

  .main .filter-box .sort-btns .sortBtn input {
    display: none;
  }

  .main .filter-box .sort-btns .sortBtn span {
    padding: 8px 0;
    background: transparent;
  }

  .main .filter-box .sort-btns .sortBtn input:checked~span {
    background: transparent;
    color: #0033B8;
    font-weight: 600;
  }

  .main .filter-box .showSort {
    display: flex;
  }

  .main .filter-box .search {
    width: 100%;
  }

  .main .filter-box .search-inp {
    width: 100%;
    height: 45px;
    padding: 0 12px 0 40px;
  }

  .main .filter-box .search svg {
    top: 14px;
    left: 10px;
  }

  .main .block12 .countries {
    grid-template-columns: repeat(2, 1fr);
  }

  .main .block13 .tariffs {
    grid-template-columns: repeat(2, 1fr);
  }

  .main .noFound {
    margin-top: 50px;
    margin-bottom: -100px;
  }

  .main .noFound .title-text {
    font-size: 100px;
    line-height: 100px;
  }

  .main .noFound-text {
    font-size: 20px;
    margin-top: 50px;
  }

  .main .devices-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .main .cardIn {
    margin-bottom: 86px;
  }

  .main .cardIn-info {
    margin-top: 32px;
  }

  .main .cardIn-info .container {
    flex-direction: column-reverse;
  }

  .main .cardIn-info .top {
    margin-bottom: 32px;
  }

  .main .cardIn-info .title-text {
    text-align: center;
    width: 100%;
  }

  .main .cardIn-info .info-text {
    display: none;
  }

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

  .main .cardIn-info .eSim-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
  }

  .main .cardIn .packages-title {
    margin: 32px 0 20px;
    font-size: 22px;
    text-align: center;
  }

  .main .cardIn .packages .slider {
    position: relative;
    padding: 0 34px;
  }

  .main .cardIn .cardIn-box .box-item {
    width: 100%;
    margin-top: 32px;
  }

  .main .cardIn .cardIn-box .box-item .item-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }

  .main .cardIn .cardIn-box .box-item .item {
    height: auto;
    min-height: 180px;
    border-radius: 12px;
  }

  .main .cardIn .cardIn-box .box-item .item:last-child {
    padding: 12px;
  }

  .main .cardIn .cardIn-box .box-item .item .country {
    height: 46px;
    font-size: 18px;
  }

  .main .cardIn .cardIn-box .box-item .item .country img {
    width: 22px;
  }

  .main .cardIn .cardIn-box .box-item .item .item-info .info-list {
    max-height: 640px;
  }

  .main .cardIn .cardIn-box .box-item .by-btn {
    width: 100%;
    margin: 12px;
  }

  .main .cardIn .cardIn-box .box-item .price-item {
    display: flex;
  }

  .footer {
    padding-top: 200px;
  }

  .footer .circle {
    width: 60%;
  }

  .footer-item {
    width: 33.33%;
  }

  .footer-item .copyRight {
    transform: translateY(125px);
  }

  .footer-item .item-list li a {
    font-size: 16px;
  }

  .footer-item:nth-child(2) {
    width: 33.33%;
  }

  .footer-item:nth-child(3) {
    width: 33.33%;
  }

  .footer-item:nth-child(4) {
    width: 100%;
    padding-left: 33.33%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .title-text {
    font-size: 32px;
  }

  .header-nav {
    display: none;
  }

  .header .download-app {
    display: none;
  }

  .header .login,
  .header .select {
    display: none;
  }

  .header .menu-btn {
    display: flex;
  }

  .header .menu .select,
  .header .menu .download-app,
  .header .menu .login {
    display: flex;
  }

  .header .menu .select-lang {
    width: 48%;
  }

  .header .menu .select-country {
    width: 48%;
  }

  .main .block1 .phone-sim {
    margin-right: -85px;
  }

  .main .block1 .phone-sim .anim-sim {
    top: 190px;
    left: 55px;
    width: 120px;
  }

  .main .block1 .phone-sim .animSim {
    left: 166px;
  }

  .main .block1-img {
    width: 618px;
  }

  .main .block1 .title-text {
    font-size: 22px;
    margin: 8px 0;
  }

  .main .block1-info .info-supText {
    font-size: 14px;
  }

  .main .block1-info .info-subText {
    font-size: 14px;
  }

  .main .block1-info .download {
    margin-top: 8px;
  }

  .main .block4 {
    padding: 32px 0 50px;
  }

  .main .block4-box {
    margin-top: 20px;
    align-items: stretch;
    justify-content: space-between;
  }

  .main .block4-box .item {
    width: 48%;
    margin: 0;
    padding: 30px 32px;
  }

  .main .block4-box .item .status-title {
    font-size: 22px;
  }

  .main .devicesIn-info {
    margin-top: 80px;
    text-align: center;
  }

  .main .devicesIn-info .gradient {
    display: none;
  }

  .main .devicesIn-info .container {
    flex-direction: column;
    align-items: center;
  }

  .main .devicesIn-info .info-list {
    margin-top: 6px;
  }

  .main .devicesIn-info .devices-photo {
    width: 100%;
    height: 300px;
    margin-top: 33px;
  }

  .main .devicesIn-middle {
    margin-top: 40px;
  }

  .main .devicesIn-middle .middle-info {
    flex-wrap: wrap;
  }

  .main .devicesIn-middle .middle-info .info {
    width: 100%;
  }

  .main .devicesIn-middle .middle-info .info:nth-child(3) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
  }

  .main .devicesIn-box .item {
    flex-direction: column;
  }

  .main .devicesIn-box .item-list li {
    flex-direction: column;
  }

  .main .devicesIn-box .item-list li li {
    margin-top: 4px;
  }

  .footer {
    padding-top: 174px;
  }

  .footer .circle {
    width: 60%;
    top: 60px;
  }

  .footer-box {
    position: relative;
    padding-bottom: 80px;
  }

  .footer-item .copyRight {
    transform: none;
    position: absolute;
    bottom: 32px;
    left: 32px;
  }

  .footer-item .item-list li a {
    font-size: 16px;
  }

  .footer-item:nth-child(1) {
    width: 100%;
  }

  .footer-item:nth-child(2) {
    width: 50%;
    margin-top: 32px;
  }

  .footer-item:nth-child(3) {
    width: 50%;
    margin-top: 32px;
  }

  .footer-item:nth-child(4) {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 624px) {
  .top-text {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }

  .title-text {
    text-align: center;
  }

  .input-box {
    margin-bottom: 20px;
  }

  .input-box small {
    font-size: 10px;
  }

  .input-box label {
    font-size: 16px;
  }

  .input-box input {
    width: 100%;
    height: 50px;
  }

  .submit-btn {
    font-size: 16px;
    height: 50px;
  }

  .main .block1 {
    padding-top: 0;
  }

  .main .block1-box {
    padding-top: 130px;
    justify-content: space-between;
    height: auto;
    align-items: center;
  }

  .main .block1 .phone-sim {
    margin: 21px auto 0;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .main .block1 .phone-sim .anim-sim {
    top: 165px;
    left: 45px;
    width: 73px;
  }

  .main .block1 .phone-sim .animSim {
    left: 111px;
  }

  .main .block1-img {
    width: 454px;
    height: auto;
  }

  .main .block1-img:first-child {
    display: none;
  }

  .main .block1-img:last-child {
    display: block;
  }

  .main .block1 .info-supText {
    font-size: 16px;
  }

  .main .block1 .title-text {
    font-size: 24px;
    margin: 8px 0;
  }

  .main .block1-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  .main .block1-info .download {
    width: 278px;
    height: 40px;
    margin-top: 16px;
  }

  .main .block2 {
    margin: 0;
  }

  .main .block2 {
    padding: 32px 0 40px;
  }

  .main .block2-box {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .main .block2-box .box-item {
    height: auto;
    padding: 0 !important;
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .main .block2-box .box-item::before {
    display: none;
  }

  .main .block2-box .box-item .item {
    height: 105px;
    font-size: 12px;
    text-align: center;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .main .block2-box .box-item .item-title {
    font-size: 22px;
  }

  .main .block2-box .box-item .item-text {
    font-size: 14px;
  }

  .main .block2-box .box-item:last-child {
    margin-bottom: 0;
  }

  .main .block3 {
    position: relative;
  }

  .main .block3 .circle {
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    z-index: 0;
  }

  .main .block3 .ellipse {
    position: absolute;
    width: 100%;
  }

  .main .block3 .ellipse:first-child {
    top: -30%;
    right: 0;
  }

  .main .block3 .ellipse:last-child {
    display: block;
    bottom: -30%;
  }

  .main .block3-box {
    flex-wrap: wrap;
  }

  .main .block3-box .item-text {
    font-size: 12px;
    line-height: 132%;
  }

  .main .block3-box .item:nth-child(1) {
    width: 121px;
    height: 177px;
    border-radius: 12px;
    background: #fff;
  }

  .main .block3-box .item:nth-child(1) .item-text {
    margin-top: 35px;
    font-size: 12px;
  }

  .main .block3-box .item:nth-child(3) {
    width: 121px;
    height: 177px;
    border-radius: 12px;
    background: #fff;
  }

  .main .block3-box .item:nth-child(3) .item-text {
    margin-top: 16px;
    font-size: 12px;
  }

  .main .block3-box .item:nth-child(5) {
    width: 100%;
    margin-top: 56px;
  }

  .main .block3-box .item:nth-child(5) .item-text {
    margin-top: 10px;
    font-size: 12px;
  }

  .main .block3-box .item:nth-child(5) img {
    width: 260px;
  }

  .main .block3-box .plus {
    margin-bottom: 71px;
  }

  .main .block3-box .equal {
    display: none;
  }

  .main .block5 {
    padding: 32px 0 56px;
  }

  .main .block5 .title-text {
    color: #fff;
    margin: 14px 0 20px;
  }

  .main .block5-box {
    flex-direction: column;
  }

  .main .block5-box .item {
    width: 60%;
    position: relative;
  }

  .main .block5-box .item-num {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .main .block5-box .item:nth-child(1) {
    position: relative;
    z-index: 3;
  }

  .main .block5-box .item:nth-child(2) {
    width: 60%;
    margin: 20px 0;
    margin-left: auto;
    align-items: end;
    display: flex;
    flex-direction: column;
  }

  .main .block5-box .item:nth-child(2) .circle {
    width: 250px;
    position: absolute;
    top: -40%;
    right: 25%;
  }

  .main .block5-box .item:nth-child(3) .circle {
    width: 255px;
    position: absolute;
    bottom: 20%;
    right: -55%;
    transform: rotate(100deg);
  }

  .main .block4 {
    padding: 40px 0;
  }

  .main .block4-box {
    margin-top: 28px;
    flex-direction: column;
  }

  .main .block4-box .item {
    width: 100%;
    margin: 0;
    padding: 30px 40px;
  }

  .main .block4-box .item-subtitle {
    padding: 20px 0;
  }

  .main .block4-box .item .status-title {
    margin: 20px 0;
  }

  .main .block4-box .item-list li {
    margin-top: 10px;
  }

  .main .block4-box .item-list li:first-child {
    margin-top: 20px;
  }

  .main .block4-box .item:last-child {
    margin-top: 20px;
  }

  .main .block6 .liner-mob {
    display: block !important;
    width: 100%;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 10%;
  }

  .main .block6 .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .main .block6 .phone-img {
    width: 90%;
    transform: rotate(-6.3deg) translateX(5px);
    margin-top: 40px;
    margin-right: 0;
  }

  .main .block6 .google-play .icon {
    min-width: 40px;
    margin-right: 12px;
  }

  .main .block6 .download {
    width: 100%;
    height: 40px;
  }

  .main .block7 {
    margin-top: 64px;
  }

  .main .block7-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
    margin-top: 12px;
  }

  .main .block7-box:first-child {
    margin-top: 25px;
  }

  .main .block7-box .item {
    border-radius: 20px;
    padding: 20px;
    text-align: left;
  }

  .main .block7-box .item-text {
    font-size: 14px;
  }

  .main .block8 {
    padding: 32px 0 40px;
  }

  .main .block8-top {
    justify-content: center;
  }

  .main .block8 .title-text {
    margin-top: 12px;
  }

  .main .block8 .all-link {
    display: none;
  }

  .main .faqs {
    margin-top: 20px;
  }

  .main .faqs-box {
    margin-top: 32px;
  }

  .main .faqs .faq-title {
    font-size: 16px;
  }

  .main .faqs .faq-body .faq-text {
    font-size: 14px;
    line-height: 132%;
    font-weight: 400;
  }

  .main .faqs__page {
    margin: 40px 0 80px;
  }

  .main .faqs__page .title-text {
    font-size: 22px;
  }

  .main .block9 {
    padding: 40px 0;
    margin-bottom: 70px;
  }

  .main .block9 .logo img {
    width: 106px;
  }

  .main .block10 {
    height: 500px;
    text-align: center;
  }

  .main .block10 .title-text br {
    display: none;
  }

  .main .block10 .info-text br {
    display: none;
  }

  .main .block11 {
    padding-top: 32px;
    margin-bottom: 70px;
  }

  .main .block11-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 8px;
  }

  .main .block11-box .item {
    height: 250px;
  }

  .main .block11-box .item-title {
    font-size: 18px;
  }

  .main .block11-box .item-text {
    font-size: 14px;
  }

  .main .tariffs {
    margin-bottom: 70px;
  }

  .main .block12 {
    margin-bottom: 70px;
  }

  .main .block12 .countries {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 8px;
  }

  .main .block12 .countries .country {
    height: 52px;
    font-size: 16px;
    padding-left: 12px;
    padding-right: 5px;
  }

  .main .block12 .countries .country .flag {
    height: 10px;
    margin-right: 4px;
    transform: translateY(3px);
  }

  .main .block12 .countries .country .arrow {
    width: 32px;
    height: 32px;
  }

  .main .block13 .counter-head {
    height: 50px;
    border-radius: 10px;
  }

  .main .block13 .tariffs {
    grid-template-columns: repeat(1, 1fr);
  }

  .main .privacyPolicy {
    padding: 100px 0 32px;
  }

  .main .privacyPolicy .title-text {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .main .privacyPolicy .title-text br {
    display: block;
  }

  .main .privacyPolicy__item {
    margin-bottom: 12px;
  }

  .main .privacyPolicy__item .item-title {
    font-size: 20px;
  }

  .main .privacyPolicy__item .item-subtitle {
    font-size: 16px;
  }

  .main .privacyPolicy__item .item-text {
    font-size: 14px;
    line-height: 132%;
    font-weight: 400;
  }

  .main .privacyPolicy__item .item-list {
    padding-left: 10px;
  }

  .main .privacyPolicy__item .item-list li {
    font-size: 14px;
    line-height: 132%;
    font-weight: 400;
  }

  .main .block-photo {
    margin-top: 90px;
  }

  .main .block-photo .photo {
    height: 91px;
    border-radius: 12px;
  }

  .main .block-photo .photo:first-child {
    display: none;
  }

  .main .block-photo .photo:last-child {
    display: block;
  }

  .main .noFound {
    margin: 64px 0 70px;
  }

  .main .noFound .container {
    flex-direction: column;
  }

  .main .noFound-box {
    flex-direction: column-reverse;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .main .noFound .title-text {
    font-size: 100px;
    line-height: 108%;
  }

  .main .noFound .back-home {
    width: 100%;
  }

  .main .noFound-text {
    font-size: 20px;
    margin: 0 0 20px;
  }

  .main .sample {
    margin: 24px 0 86px;
  }

  .main .sample .title-text {
    font-size: 22px;
    text-align: left;
  }

  .main .sample .title-text br {
    display: block;
  }

  .main .sample-text {
    font-size: 14px;
    line-height: 132%;
    margin-top: 24px;
  }

  .main .sample-img {
    height: 308px;
  }

  .main .sample-images .sample-img {
    height: 165px;
  }

  .main .sample-title {
    font-size: 18px;
    line-height: 122%;
    margin-top: 32px;
  }

  .main .sample-subtitle {
    font-size: 16px;
    line-height: 122%;
    font-weight: 400;
  }

  .main .devices {
    margin-bottom: 65px;
  }

  .main .devices .title-text {
    font-size: 22px;
  }

  .main .devices-btns {
    margin: 32px 0 20px;
  }

  .main .devices-btns .devices-btn {
    margin: 0 4px 4px 0;
    padding: 0 24px;
  }

  .main .devices-btns .show-more {
    padding: 0 10px;
    margin-right: 0;
  }

  .main .devices-list {
    grid-gap: 4px;
  }

  .main .devices-list .devices-card {
    padding: 10px;
  }

  .main .devices-list .devices-card .card-photo {
    border-radius: 10px;
    height: 121px;
  }

  .main .devices-list .devices-card .card-name {
    font-size: 14px;
    line-height: 132%;
    margin: 10px 0 4px;
  }

  .main .devices-list .devices-card .card-text {
    font-size: 10px;
  }

  .footer {
    padding-top: 0;
  }

  .footer .circle {
    display: none;
  }

  .footer-box {
    position: relative;
    padding: 32px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-item .logo img {
    width: 128px;
  }

  .footer-item .copyRight {
    transform: none;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-item .item-list li {
    margin-top: 8px;
  }

  .footer-item .item-list li a {
    font-size: 14px;
  }

  .footer-item:nth-child(1) {
    width: 100%;
  }

  .footer-item:nth-child(2) {
    width: 100%;
  }

  .footer-item:nth-child(3) {
    width: 100%;
    margin-top: 20px;
  }

  .footer-item:nth-child(4) {
    margin-top: 32px;
  }

  .verificationCode .popUp-content {
    width: 96%;
  }

  .verificationCode .verificationCode-inputs input[type=number] {
    margin-right: 12px;
  }

  .verificationCode .verificationCode-inputs input[type=number]:last-child {
    margin-right: 0;
  }

  .verificationCode .submit-btn {
    width: 100%;
  }
}

@media (max-width: 475px) {
  .header .menu-content {
    width: 100%;
  }
}

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